:root {
  --body-color: #545049;
  --theme-color: #c39953;
  --heading-color: #15110b;
  --white: white;
  --antique-white: #f4ead9;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--body-color);
  font-family: Cormorant, sans-serif;
  font-size: 20px;
  line-height: 34px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Cormorant, sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 72px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Cormorant, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 62px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: underline;
  transition: color .3s;
}

ul {
  margin-top: 20px;
  margin-bottom: 30px;
  padding-left: 0;
  list-style-type: none;
}

li {
  background-image: url('../images/tick.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 26px;
}

blockquote {
  background-color: var(--theme-color);
  color: #fffaf2;
  background-image: url('../images/quate-icon.svg');
  background-position: 4% 30%;
  background-repeat: no-repeat;
  background-size: auto;
  border-left: 0 #000;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 35px 36px 40px 110px;
  font-size: 22px;
  line-height: 31px;
}

.page-wrapper {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.container-design {
  background-color: #f3f3f3;
  justify-content: center;
  align-items: center;
  height: 100px;
  display: flex;
}

.light-section {
  float: right;
  width: 80%;
  margin-top: 125px;
  position: relative;
  overflow: auto;
}

.text-black {
  color: var(--heading-color);
}

.type-col {
  background-color: #f3f3f3;
  border-radius: 4px;
  width: 31%;
  margin-bottom: 20px;
  margin-right: 20px;
  padding: 10px;
  font-family: Cormorant, sans-serif;
  display: flex;
}

.light-block-flat {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  padding: 0 20px;
}

.light-block-flat.rounded-bottom {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-bottom: 45px;
}

.paragraph-container {
  background-color: rgba(0, 0, 0, 0);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  width: 100%;
  padding: 20px;
}

.paragraph-container.bg-theme {
  background-color: var(--theme-color);
  border-radius: 0;
}

.paragraph-container.bottom {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0 0 10px 10px;
}

.style-guide-heading {
  color: #244d4d;
  font-weight: 400;
}

.button-primary {
  background-color: var(--theme-color);
  color: #fff;
  text-align: center;
  letter-spacing: .2em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  min-width: 140px;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
  padding: 13px 29px;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 30px;
  text-decoration: none;
  transition: background-color .3s, transform .3s;
  display: inline-block;
}

.button-primary:hover {
  color: #fff;
  background-color: #000;
  transform: translate(0, -5px);
}

.button-primary.booking-button {
  padding-left: 34px;
  padding-right: 34px;
}

.button-primary.visa-button {
  background-color: var(--white);
  color: var(--heading-color);
  transition: color .3s, background-color .3s, transform .3s;
}

.button-primary.visa-button:hover {
  color: var(--white);
  background-color: #000;
}

.button-primary.visa-button.banner-button {
  border-radius: 5px;
  min-width: 264px;
  padding-left: 50px;
  padding-right: 50px;
}

.button-primary.course-button {
  padding-left: 45px;
  padding-right: 45px;
}

.button-primary.contact-button {
  align-self: center;
  margin-top: 50px;
}

.button-primary.password-button {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.button-primary.error-button {
  margin-left: auto;
  margin-right: auto;
}

.color-block-parent {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  width: 20%;
  display: flex;
}

.heading-description {
  padding-top: 10px;
  padding-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

.dark-block {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0 20px;
}

.dark-block.first-block {
  margin-top: 0;
  margin-bottom: 20px;
}

.style-guide-text-block {
  color: var(--heading-color);
  font-family: Cormorant, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.style-guide-text-block.secondary {
  font-family: DM Sans, sans-serif;
}

.content-row {
  clear: left;
  width: 100%;
  margin-top: 45px;
  position: relative;
}

.contant-row {
  text-transform: none;
  flex-flow: wrap;
  align-items: center;
  font-weight: 700;
  display: flex;
}

.praimary-color {
  background-color: var(--theme-color);
  border-radius: 4px;
  width: 100%;
  height: 85px;
  padding: 10px;
  display: flex;
}

.praimary-color.body-color {
  background-color: var(--body-color);
  color: #1e1e1e;
}

.praimary-color.secondery-color {
  background-color: var(--heading-color);
  color: #67b930;
}

.text-highlight {
  background-color: #f3f3f3;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 30%;
  padding-top: 35px;
  padding-bottom: 35px;
  display: flex;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 0;
  padding-left: 15px;
  padding-right: 15px;
}

.container.navbar-container {
  max-width: 100%;
}

.container.contact-container {
  padding-top: 0;
}

.container.faq-page-container {
  max-width: 850px;
}

.side-panel {
  background-color: #f3f3f3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20%;
  height: 100vh;
  padding: 75px 35px 35px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.button-row {
  margin-top: 60px;
}

.style-guide-label {
  text-transform: none;
}

.guide-block {
  color: var(--heading-color);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 25px;
  padding-right: 25px;
  font-family: DM Sans, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
}

.guide-block.secondary {
  font-family: DM Sans, sans-serif;
  font-weight: 700;
}

.color-row {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 35px;
  padding: 25px 0 15px;
  display: flex;
}

.text-link {
  color: var(--heading-color);
  margin-bottom: 10px;
  font-family: DM Sans, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.text-link.w--current {
  color: var(--theme-color);
}

.type-row {
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 35px;
  padding: 25px 0 15px;
  display: flex;
}

.another-container {
  padding-left: 15px;
  padding-right: 15px;
}

.another-container.ptb-80px {
  margin-top: 80px;
  margin-bottom: 80px;
  position: relative;
}

.text-white {
  color: #fff;
}

.heading-row {
  clear: left;
  width: 100%;
  margin-top: 25px;
  position: relative;
}

.color-name {
  color: var(--heading-color);
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
}

.primary-typography-title {
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Cormorant, sans-serif;
}

.secondry-font-title {
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
}

.header-section {
  z-index: 2;
  background-color: var(--white);
  width: 100%;
  position: absolute;
  top: 0;
}

.nav-dropdown-toggle {
  color: var(--heading-color);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  padding: 0 17px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 100px;
  transition: border-color .3s, color .3s;
}

.nav-dropdown-toggle:hover {
  border-bottom-color: var(--theme-color);
  color: var(--theme-color);
}

.nav-dropdown-toggle:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  display: flex;
}

.nav-dropdown-link {
  color: var(--heading-color);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: 700;
  transition: color .3s;
}

.nav-dropdown-link:hover {
  color: var(--theme-color);
}

.nav-dropdown-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-link.w--current {
  color: var(--theme-color);
}

.nav-dropdown-icon {
  margin-right: 0;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide {
  transition: top .3s;
  top: 102%;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
  border-radius: 5px;
  width: 190px;
  max-width: 190px;
  padding-top: 15px;
  padding-bottom: 15px;
  top: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.nav-menu-two {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  color: var(--heading-color);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  font-family: APTOS, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 100px;
  text-decoration: none;
  transition: border-color .3s, color .3s;
  display: inline-block;
}

.nav-link:hover {
  border-bottom-color: var(--theme-color);
  color: var(--theme-color);
}

.nav-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link.w--current {
  border-bottom-color: var(--theme-color);
  color: var(--theme-color);
}

.navbar-left.d-lg-none {
  display: none;
}

.navbar {
  background-color: rgba(0, 0, 0, 0);
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.logo-image {
  padding-bottom: 20px;
}

.mobile-margin-top-10 {
  background-image: none;
  padding-left: 0;
}

.slider-section {
  z-index: 1;
  background-image: url('../images/slider-bg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 688px;
  position: relative;
}

.slider-wrapper {
  padding-top: 200px;
  padding-bottom: 20px;
}

.slider-content {
  text-align: center;
  width: 100%;
  max-width: 450px;
}

.slider-image-block {
  width: 100%;
  max-width: 437px;
  position: absolute;
  top: 300px;
  bottom: 0;
  right: 0;
}

.slider-heading {
  color: var(--heading-color);
  font-size: 60px;
  line-height: 72px;
}

.slider-details {
  color: var(--heading-color);
  margin-top: 25px;
  margin-bottom: 35px;
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
}

.slider-image {
  width: 100%;
  height: 100%;
  margin-top: -20px;
}

.slider-inner {
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.work-proccess-section {
  padding-top: 20px;
}

.work-proccess-wrapper {
  z-index: 6;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.single-work-proccess {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #fcfaf6;
  background-image: url('../images/bg-1.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 585px;
  padding: 40px 30px 35px;
  transition: background-color .3s;
  display: flex;
}

.single-work-proccess:hover {
  background-color: var(--theme-color);
}

.work-proccess-icon-wrapper {
  background-color: #f2e9da;
  justify-content: center;
  align-items: center;
  width: 100px;
  min-width: 100px;
  height: 100px;
  min-height: 100px;
  display: flex;
}

.work-proccess-content {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  align-items: flex-start;
  font-family: APTOS, sans-serif;
  display: flex;
}

.work-proccess-title {
  color: var(--heading-color);
  text-transform: uppercase;
  font-size: 16px;
}

.work-proccess-summary {
  color: #524e47;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.about-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-wrapper-block {
  grid-column-gap: 30px;
  align-items: center;
  display: flex;
}

.about-left-block {
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  min-width: 540px;
  max-width: 610px;
  display: flex;
  position: relative;
}

.about-right-block {
  width: 100%;
  max-width: 500px;
}

.about-first-image-block {
  width: 100%;
  max-width: 250px;
}

.about-second-image-block {
  z-index: 2;
  width: 100%;
  max-width: 250px;
  padding-top: 115px;
  padding-bottom: 100px;
  position: relative;
}

.about-text-block {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 259px;
  display: flex;
}

.about-title {
  color: var(--heading-color);
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 600;
  line-height: 52px;
}

.facilities-block {
  grid-column-gap: 10px;
  grid-row-gap: 19px;
  display: flex;
}

.facilities-icon {
  width: 28px;
  height: 28px;
}

.facilities-text {
  color: #675b4a;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
}

.about-frist-image {
  z-index: 3;
  position: relative;
  overflow: hidden;
}

.about-us-text {
  color: var(--theme-color);
  letter-spacing: .1em;
  font-size: 25px;
  font-weight: 600;
  line-height: 60px;
}

.long-line-shape {
  background-color: rgba(195, 153, 83, .15);
  justify-content: center;
  width: 100%;
  max-width: 220px;
  height: 1px;
  display: flex;
}

.shot-line-shape {
  background-color: var(--theme-color);
  width: 100%;
  max-width: 20px;
  height: 1px;
}

.about-text-block-wrapper {
  z-index: 1;
  background-color: #faf7f2;
  width: 100%;
  max-width: 435px;
  padding-top: 69px;
  padding-bottom: 28px;
  padding-left: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.theme-color {
  color: var(--theme-color);
}

.facilities-block-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 26px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 455px;
  margin-top: 25px;
  margin-bottom: 40px;
  display: grid;
}

.services-section {
  background-image: url('../images/section-bg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}

.services-section.service-page {
  background-image: none;
  padding-top: 60px;
}

.section-title-block {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  margin-bottom: 40px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section-title {
  color: var(--heading-color);
  text-transform: uppercase;
  font-family: APTOS, sans-serif;
  font-weight: 600;
}

.section-title.testimonial-title {
  color: var(--white);
}

.section-title.password-title {
  margin-top: 30px;
}

.section-subtitle {
  color: var(--theme-color);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 17px;
  font-family: APTOS, sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
}

.service-collection-wrapper {
  margin-top: 56px;
}

.service-collection-list {
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.service-inner {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  background-color: var(--white);
  flex-direction: column;
  padding: 25px 20px 30px;
  display: flex;
  box-shadow: 0 0 20px rgba(0, 0, 0, .04);
}

.service-inner.service-page {
  background-image: none;
  font-family: APTOS, sans-serif;
  box-shadow: 0 0 50px rgba(0, 0, 0, .09);
}

.service-thumbnail {
  align-self: flex-start;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.service-thumbnail-image {
  width: 100%;
}

.service-icon-block {
  background-color: var(--theme-color);
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.service-content-block {
  background-image: linear-gradient(#f2e9de, #f2e9de);
  max-width: 303px;
  padding: 7px;
}

.service-link-block {
  color: var(--heading-color);
  text-transform: uppercase;
  text-decoration: none;
}

.service-link-block:hover {
  color: var(--theme-color);
}

.service-link-title {
  color: var(--theme-color);
  text-align: center;
  margin-top: 10px;
  font-family: APTOS, sans-serif;
  font-size: 20px;
  line-height: 26.64px;
}

.service-summary {
  color: var(--body-color);
  text-align: center;
  background-image: linear-gradient(#f2e9de, #f2e9de);
  margin-top: 15px;
  margin-bottom: 20px;
  font-family: APTOS, sans-serif;
}

.service-button-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #595959;
  align-items: center;
  max-width: 190px;
  line-height: 18px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.service-button-block:hover {
  color: #244d4d;
}

.read-more-text {
  color: var(--theme-color);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  line-height: 28px;
}

.arrow-image, .arrow-hover-image {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.service-button-icon-block {
  background-color: #f8f1e6;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: relative;
}

.visa-assessment-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.visa-assessment-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.visa-assessment-left-side {
  width: 100%;
  max-width: 560px;
  position: relative;
}

.visa-assessment-right-side {
  width: 100%;
  max-width: 590px;
}

.visa-assessment-thumbnail-block {
  overflow: hidden;
}

.visa-assessment-counter-wrapper {
  background-color: var(--white);
  width: 100%;
  max-width: 180px;
  height: 100%;
  max-height: 190px;
  padding: 30px 33px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.visa-assessment-counter-wrapper.bg-color-theme {
  background-color: var(--theme-color);
}

.visa-assessment-counter-inner {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.visa-success-text {
  color: var(--heading-color);
  margin-top: 16px;
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
}

.visa-success-text.text-white {
  color: var(--white);
}

.progress-bar {
  width: 102px;
  height: 102px;
  display: flex;
  position: relative;
}

.counter-number-text {
  color: var(--heading-color);
  font-family: DM Sans, sans-serif;
  font-size: 26px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.counter-number-text.text-white {
  color: var(--white);
}

.visa-assessment-top-block {
  background-color: var(--theme-color);
  background-image: url('../images/Visa-assessment-block-bg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 590px;
  padding: 30px 45px 41px;
}

.visa-assessment-bottom-block {
  background-color: var(--antique-white);
  width: 100%;
  max-width: 590px;
  padding: 36px 40px 25px;
}

.visa-assessment-title {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 48px;
}

.visa-assessment-bottom-inner {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.live-video-block {
  background-color: rgba(255, 255, 255, .2);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 82px;
  height: 82px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.live-video-block-inner {
  background-color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  display: flex;
}

.team-section {
  z-index: 1;
  background-color: #faf7f2;
  background-image: url('../images/team-bg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 60px;
  padding-top: 0;
  padding-bottom: 100px;
  position: relative;
}

.team-collection-wrapper {
  padding-top: 67px;
}

.team-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 90px;
  grid-template: "."
                 "."
                 "."
                 "."
                 / 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.single-team {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  background-color: var(--white);
  text-align: center;
  flex-direction: column;
  align-items: center;
  height: auto;
  padding-top: 43px;
  padding-bottom: 43px;
  transition: background-color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .04);
}

.single-team:hover {
  background-color: var(--theme-color);
}

.single-team-thumbnail {
  z-index: 2;
  border-radius: 5px;
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.single-team-image {
  aspect-ratio: auto;
  object-fit: fill;
  flex: 0 auto;
  min-width: 230px;
  max-width: 100px;
  font-family: APTOS, sans-serif;
}

.single-team-content {
  z-index: 3;
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.single-team-link-block {
  color: var(--heading-color);
  text-transform: uppercase;
  text-decoration: none;
}

.single-team-link-block:hover {
  color: var(--theme-color);
}

.single-team-name {
  color: var(--heading-color);
  text-align: left;
  padding-bottom: 10px;
  padding-left: 0;
  font-family: APTOS, sans-serif;
  font-size: 22px;
  line-height: 26.64px;
}

.single-team-job-title {
  color: #817d78;
  text-align: left;
  letter-spacing: .15em;
  padding-bottom: 0;
  padding-left: 0;
  font-family: APTOS, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 17px;
}

.circle-one {
  background-color: rgba(255, 255, 255, .08);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  position: absolute;
  bottom: -29px;
  right: -28px;
}

.circle-two {
  background-color: rgba(255, 255, 255, .08);
  border-radius: 50%;
  width: 82px;
  height: 82px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.circle-three {
  background-color: rgba(255, 255, 255, .08);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 23px;
  right: 30px;
}

.course-section {
  padding-top: 100px;
}

.course-section.category-page {
  padding-bottom: 100px;
}

.course-collection-wrapper {
  padding-top: 50px;
}

.course-collection-wrapper.category-page {
  padding-top: 0;
}

.course-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.course-collection-item {
  width: 100%;
  max-width: 210px;
}

.single-course-wrapper {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  text-align: center;
  background-color: #faf7f2;
  background-image: url('../images/course-bg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  align-items: center;
  padding-top: 31px;
  padding-bottom: 31px;
  transition: background-color .3s;
  display: flex;
}

.single-course-wrapper:hover {
  background-color: #c39953;
}

.single-course-icon-inner {
  background-color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
}

.single-course-link-block {
  color: var(--heading-color);
  text-decoration: none;
  transition-property: none;
}

.single-course-title {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 24px;
}

.cta-section {
  z-index: 1;
  background-color: var(--theme-color);
  justify-content: flex-end;
  width: 100%;
  max-width: 100%;
  margin-top: 46px;
  position: relative;
  top: 54px;
}

.cta-container {
  grid-column-gap: 149px;
  grid-row-gap: 149px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 53px;
  padding-bottom: 53px;
  display: flex;
}

.cta-content {
  width: 100%;
  max-width: 722px;
}

.cta-button-block {
  width: 100%;
  max-width: 190px;
}

.cta-title {
  color: var(--white);
  text-transform: uppercase;
  font-size: 32px;
  line-height: 42px;
}

.button-link-block {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  background-color: var(--white);
  color: var(--heading-color);
  justify-content: center;
  align-items: center;
  max-width: 190px;
  min-height: 58px;
  text-decoration: none;
  transition: background-color .3s, transform .3s, color .3s;
  display: flex;
}

.button-link-block:hover {
  background-color: var(--heading-color);
  color: var(--white);
  transform: translate(0, -3px);
}

.button-text {
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-right: 9px;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
}

.button-icon {
  width: 15px;
  min-width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button-icon.white {
  opacity: 0;
}

.testimonial-section {
  background-image: url('../images/testimonial-bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

.testimonial-left-side {
  width: 100%;
  max-width: 500px;
}

.testimonial-right-side {
  width: 100%;
  max-width: 840px;
}

.testimonial-thumbnail-block {
  position: relative;
}

.testimonial-title-block {
  margin-top: 100px;
  margin-bottom: 40px;
}

.client-meta {
  grid-column-gap: 15px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.slider-arrow {
  background-color: #d9d9d9;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  transition: background-color .3s;
  display: none;
}

.slider-arrow:hover {
  background-color: #244d4d;
}

.slider-arrow.arrow-right {
  bottom: -185px;
}

.slider-arrow.arrow-left {
  bottom: -185px;
  right: -73%;
}

.testimonial-text {
  color: #bebdba;
  margin-bottom: 18px;
  font-size: 19px;
  font-weight: 400;
  line-height: 28px;
}

.client-slider-dots {
  font-size: 10px;
}

.rating-image {
  align-self: center;
}

.client-testimonial-slider-item {
  padding-bottom: 50px;
}

.client-title {
  color: #c2964c;
  letter-spacing: .4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 14px;
}

.testimonial-inner {
  grid-column-gap: 57px;
  grid-row-gap: 57px;
  background-color: #312e29;
  padding: 42px;
  display: flex;
}

.client-name {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 600;
  line-height: 25px;
}

.client-testimonial-slider {
  background-color: rgba(0, 0, 0, 0);
  height: auto;
  position: relative;
  overflow: hidden;
}

.author-image {
  border-radius: 50%;
}

.slider-icon {
  font-size: 12px;
}

.testimonial-client-image-block {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 126px;
  display: flex;
}

.testimonial-content-block {
  width: 100%;
  max-width: 546px;
}

.blog-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.blog-collection-wrapper {
  padding-top: 50px;
}

.blog-collection-wrapper.tage-page {
  padding-top: 0;
}

.blog-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.single-blog-wrapper {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  background-color: #faf7f2;
  flex-direction: column;
  display: flex;
}

.blog-thumbnail {
  position: relative;
}

.blog-thumbnail.popular-post {
  min-width: 65px;
}

.blog-thumbnail-image.popular-post {
  object-fit: cover;
  width: 68px;
  min-height: 65px;
}

.blog-date-block {
  background-color: var(--theme-color);
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 70px;
  min-height: 70px;
  display: flex;
  position: absolute;
  bottom: -14px;
  left: 34px;
}

.blog-date {
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 50px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
}

.blog-content-wrapper {
  padding-bottom: 33px;
  padding-left: 34px;
  padding-right: 20px;
}

.blog-title-link-block {
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
}

.blog-title-link-block:hover {
  color: var(--theme-color);
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
}

.blog-summary {
  color: #7a7367;
  margin-top: 10px;
  margin-bottom: 31px;
  line-height: 28px;
}

.blog-button {
  background-color: var(--white);
  color: var(--theme-color);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  min-width: 112px;
  height: 40px;
  font-family: DM Sans, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 40px;
  text-decoration: none;
  transition: background-color .3s, transform .3s, color .3s;
  display: inline-block;
}

.blog-button:hover {
  background-color: var(--heading-color);
  color: var(--white);
  transform: translate(0, -3px);
}

.footer-section {
  background-image: url('../images/footer-bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 38px;
}

.footer-content-block {
  padding-top: 60px;
  padding-bottom: 100px;
}

.footer-botton-block {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-contact-wrapper {
  background-color: var(--theme-color);
  color: var(--white);
  justify-content: space-between;
  padding: 30px 40px;
  display: flex;
  position: relative;
  top: -14px;
}

.single-content-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  align-items: center;
  display: flex;
}

.content-icon-block {
  background-color: rgba(255, 255, 255, .12);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 61px;
  height: 61px;
  display: flex;
}

.icon-inner {
  background-color: rgba(255, 255, 255, .3);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.cumtent-text-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  display: flex;
}

.content-text {
  text-transform: uppercase;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}

.content-link {
  color: var(--white);
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
  text-decoration: none;
}

.rectangle-right {
  position: absolute;
  top: 0;
  right: -14px;
}

.rectangle-left {
  position: absolute;
  top: 0;
  left: -14px;
}

.footer-wrapper {
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 234px;
  display: flex;
}

.footer-title {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

.footer-link {
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  line-height: 40px;
  text-decoration: none;
  transition: padding .3s;
}

.footer-link:hover {
  padding-left: 5px;
}

.footer-copyright {
  z-index: 1;
  color: #b0ada6;
  background-color: #16110b;
  border: 1px dashed rgba(255, 255, 255, .15);
  border-radius: 10px;
  padding-left: 25px;
  padding-right: 25px;
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  line-height: 40px;
  position: relative;
}

.footer-link-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #b0ada6;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

.footer-link-block:hover {
  color: var(--theme-color);
}

.gallery-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 9px;
  display: grid;
}

.single-gallery-thumb {
  overflow: hidden;
}

.company-link {
  color: #b0ada6;
  font-weight: 500;
  text-decoration: none;
}

.company-link:hover {
  color: var(--theme-color);
}

.footer-line-shape {
  z-index: 1;
  text-align: center;
  border-bottom: 1px dashed rgba(255, 255, 255, .15);
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.breadcrumb-link-block {
  grid-column-gap: 10px;
  letter-spacing: .15em;
  align-items: center;
  margin-top: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 15px;
  display: flex;
}

.breadcrumb-wrapper {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  flex-direction: column;
  align-items: center;
  padding-top: 220px;
  padding-bottom: 0;
  display: flex;
}

.breadcrumb-backlink {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-backlink:hover {
  color: var(--theme-color);
}

.breadcrumb-title {
  color: #fcf7ee;
  margin-top: 0;
  margin-bottom: 13px;
  font-size: 60px;
}

.breadcrumb-section {
  z-index: 1;
  background-image: url('../images/breadcrumb-bg.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 420px;
  min-height: 420px;
  margin-top: 100px;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.line-shape-block {
  background-color: #fff;
  width: 5px;
  height: 1px;
}

.breadcrumb-title-border {
  background-image: linear-gradient(256deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, 0) 100%, rgba(255, 255, 255, 0) 0%);
  width: 100%;
  max-width: 340px;
  height: 1px;
}

.counter-section {
  background-color: var(--theme-color);
  background-image: url('../images/counter-bg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}

.counter-container {
  max-width: 930px;
}

.counter-wrapper {
  justify-content: space-between;
  display: flex;
}

.single-counter {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.counter-icon {
  background-color: rgba(255, 255, 255, .15);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 68px;
  min-width: 68px;
  height: 68px;
  min-height: 68px;
  display: flex;
}

.counter-number {
  color: var(--white);
  margin-top: 5px;
  font-family: DM Sans, sans-serif;
  font-size: 48px;
}

.counter-sub-text {
  color: #fbf3e7;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-family: DM Sans, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 15.62px;
}

.pagination-wrapper {
  margin-top: 50px;
}

.pagination-wrapper.tage-page {
  margin-top: 0;
}

.service-details-section {
  padding-top: 100px;
  padding-bottom: 114px;
}

.service-page-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.service-page-left {
  width: 100%;
  max-width: 335px;
}

.service-page-content-right {
  width: 100%;
  max-width: 793px;
}

.service-page-sidebar {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: column;
  display: flex;
}

.service-page-sidebar.blog-post {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.sidebar-service-list {
  flex-direction: column;
  display: flex;
}

.sidebar-service-link-block {
  z-index: 1;
  color: var(--heading-color);
  text-transform: uppercase;
  background-color: #f5f8fb;
  border-bottom: 1px solid #e5e8ef;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.8px;
  text-decoration: none;
  transition: border-color .3s, background-color .3s, color .3s;
  display: block;
  position: relative;
}

.sidebar-service-link-block:hover {
  border-bottom-color: var(--theme-color);
  background-color: var(--theme-color);
  color: #fff;
}

.angle-black-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.angle-white-image {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.image-block {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translate(0, -50%);
}

.download-title {
  color: var(--heading-color);
  text-transform: uppercase;
  font-size: 22px;
  line-height: 26.64px;
}

.download-title.download-blog-title {
  padding-left: 20px;
}

.download-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #f6f0e6;
  padding: 30px;
  display: flex;
}

.single-download {
  background-color: var(--white);
  text-align: center;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 25px;
  display: flex;
}

.download-icon {
  align-self: center;
}

.download-text {
  color: var(--heading-color);
  width: 100%;
  max-width: 86px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.download-inner {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-direction: column;
  display: flex;
}

.download-size-inner {
  text-align: center;
  background-color: #f7f5f5;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.file-size {
  color: var(--theme-color);
  border-top: 1px solid #dcdcdc;
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
}

.download-link {
  width: 100%;
  max-width: 128px;
  text-decoration: none;
}

.single-service-sidebar-thumbnail-block {
  display: inline-block;
  position: relative;
}

.single-service-sidebar-thumbnail-image {
  border-radius: 8px;
}

.single-service-sidebar-thumbnail-content {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  color: #fff;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 265px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.emergency-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  line-height: 49px;
}

.emergency-number {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 46px;
  text-decoration: none;
}

.design-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.design-line-shape {
  background-color: rgba(255, 255, 255, .5);
  width: 55px;
  height: 2px;
}

.design-icon-block {
  background-color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.service-details-title {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 36px;
}

.service-details-summary-two {
  margin-top: 45px;
}

.visa-proccess-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 45px;
  margin-bottom: 30px;
  display: flex;
}

.single-proccess {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #f6f0e6;
  align-items: center;
  width: 100%;
  max-width: 250px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  display: flex;
}

.check-icon {
  background-color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
}

.visa-proccess-text {
  color: var(--heading-color);
  font-size: 23px;
  font-weight: 500;
  line-height: 23px;
}

.choose-block {
  margin-top: 50px;
}

.choose-title {
  color: var(--heading-color);
  text-transform: uppercase;
  font-size: 32px;
  line-height: 36px;
}

.choose-wrapper {
  grid-column-gap: 34px;
  grid-row-gap: 34px;
  flex-direction: column;
  margin-top: 34px;
  margin-bottom: 30px;
  display: flex;
}

.choose-image-block {
  width: 100%;
  max-width: 354px;
}

.choose-content {
  width: 100%;
  max-width: 100%;
}

.choose-reason-block {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  margin-top: 30px;
  display: flex;
}

.single-reason {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  align-items: center;
  display: flex;
}

.choose-icon-inner {
  background-color: var(--theme-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 17px;
  min-width: 17px;
  height: 17px;
  display: flex;
}

.analyzing-block {
  margin-top: 50px;
}

.faq-block {
  margin-top: 40px;
}

.single-faq-wrapper {
  width: 100%;
  overflow: hidden;
}

.faq-heading-block {
  background-color: var(--theme-color);
  color: var(--white);
  white-space: break-spaces;
  align-items: center;
  width: 100%;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  display: flex;
}

.faq-heading-block.w--open {
  background-color: var(--theme-color);
  color: var(--white);
}

.faq-icon {
  z-index: 2;
  width: 24px;
  margin-right: 16px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.faq-body-wrapper {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  display: block;
  position: relative;
}

.faq-body-wrapper.w--open {
  background-color: rgba(0, 0, 0, 0);
}

.faq-container {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  flex-direction: column;
  display: flex;
}

.faq-title {
  z-index: 2;
  position: relative;
}

.faq-body-inner {
  padding: 25px 30px 20px;
}

.analyzing-title-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: var(--heading-color);
  text-transform: uppercase;
  padding-bottom: 10px;
  display: flex;
}

.analyzing-default-title, .analyzing-title {
  font-size: 32px;
  line-height: 36px;
}

.blog-page-section {
  padding-top: 100px;
  padding-bottom: 114px;
}

.blog-page-section.tags-page {
  padding-top: 0;
}

.blog-details-page {
  padding-top: 100px;
  padding-bottom: 114px;
}

.blog-details-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.blog-details-content-block {
  max-width: 790px;
}

.blog-details-sidebar-block {
  width: 100%;
  max-width: 335px;
}

.blog-meta {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-bottom: 1px solid #e9e9ee;
  align-items: center;
  margin-top: 34px;
  margin-bottom: 34px;
  padding-bottom: 22px;
  display: flex;
}

.single-meta {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #898a9c;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
}

.dot-shape {
  background-color: #898a9c;
  border-radius: 30px;
  width: 4px;
  height: 4px;
}

.blog-ricetext h2 {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 38px;
  line-height: 46px;
}

.blog-ricetext p {
  margin-bottom: 30px;
}

.blog-ricetext h4 {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 38px;
  line-height: 46px;
}

.nav-list-item {
  background-image: none;
  padding-left: 0;
}

.tag-text-block {
  color: #383838;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

.tag-share-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-top: 1px solid #e3e0e0;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 25px;
  display: flex;
}

.single-tag-item-list {
  display: flex;
}

.tag-side {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
  display: flex;
}

.single-tag-item {
  margin-left: 10px;
  font-size: 14px;
  line-height: 14px;
}

.tage-name {
  color: var(--body-color);
  background-color: #faf7f2;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  padding: 1px 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
  transition: transform .3s, color .3s;
  display: inline-block;
}

.tage-name:hover {
  transform: translate(0, -3px);
}

.sidebar-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.blog-search-form {
  margin-bottom: 0;
  position: relative;
}

.property-search-single-field {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(1, 97, 78, .6);
  border-radius: 8px;
  height: 48px;
  margin-bottom: 0;
  padding-left: 40px;
  transition: box-shadow .2s, border-color .2s;
}

.property-search-single-field:focus {
  border-color: #ff6500;
  box-shadow: 0 6px 15px rgba(0, 0, 0, .1);
}

.property-search-single-field::placeholder {
  color: #494949;
}

.property-search-single-field.blog-search-field {
  border-style: none;
  border-width: 0;
  border-bottom-color: rgba(36, 77, 77, .5);
  border-right-color: rgba(36, 77, 77, .5);
  border-left-color: var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white);
  border-radius: 0;
  height: 57px;
  padding-left: 24px;
  padding-right: 65px;
  font-size: 20px;
  line-height: 24px;
}

.property-search-single-field.blog-search-field::placeholder {
  color: var(--white);
  font-weight: 700;
}

.search-button {
  background-color: var(--theme-color);
  background-image: url('../images/search-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-left: 1px solid rgba(255, 255, 255, .51);
  min-width: 60px;
  height: 25px;
  padding: 0;
  font-size: 14px;
  line-height: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.blog-box-title-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: center;
  margin-bottom: 21px;
  display: flex;
  position: relative;
}

.category-list {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-direction: column;
  display: flex;
}

.category-item {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  flex-direction: row;
  display: flex;
}

.single-sidebar-blog-box {
  background-color: #f5f8fb;
  padding: 33px 32px 40px 20px;
}

.sidebar-title {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 26px;
}

.sidebar-title-shape {
  background-color: var(--theme-color);
  width: 3px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translate(0, -50%);
}

.sidebar-title-shape.download-title {
  left: 0;
}

.popular-post-content {
  flex-direction: column;
  display: flex;
}

.popular-post-title {
  color: var(--heading-color);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.38px;
  text-decoration: none;
}

.popular-post-title:hover {
  color: var(--theme-color);
}

.course-details-section {
  padding-top: 100px;
  padding-bottom: 114px;
}

.course-details-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

.course-details-content {
  width: 100%;
  max-width: 790px;
}

.course-details-sidebar {
  width: 100%;
  max-width: 335px;
}

.course-details-title-block {
  border-bottom: 1px solid #e9e9ee;
  padding-bottom: 19px;
}

.course-details-heading {
  color: var(--heading-color);
  text-transform: uppercase;
  line-height: 46px;
}

.course-details-meta {
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.instructor-meta {
  grid-column-gap: 15px;
  align-items: center;
  display: flex;
}

.instructor-meta-text-block {
  line-height: 22px;
}

.instructor-text {
  color: var(--heading-color);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.instructor-link {
  color: #898a9c;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  line-height: 22px;
  text-decoration: none;
  display: inline-block;
}

.instructor-link:hover {
  color: var(--theme-color);
}

.course-line-shape {
  background-color: #dcdce0;
  width: 2px;
  height: 40px;
}

.course-details-meta-block {
  grid-column-gap: 34px;
  grid-row-gap: 34px;
  align-items: center;
  display: flex;
}

.course-details-richtext h2 {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-top: 34px;
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 46px;
}

.course-details-richtext p {
  margin-bottom: 30px;
}

.course-details-richtext h4 {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 32px;
}

.course-inner {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.course-features-inner {
  background-color: #f5f8fb;
}

.single-course-features {
  border-bottom: 1px solid #e5e8ef;
  justify-content: space-between;
  align-items: center;
  padding: 19px 20px;
  font-size: 16px;
  line-height: 20px;
  display: flex;
}

.course-features-title-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: var(--heading-color);
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
}

.course-features-value {
  color: #545352;
  font-family: DM Sans, sans-serif;
}

.top-course-list {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-direction: column;
  display: flex;
}

.top-course-item {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.related-heading {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 60px;
}

.course-page-section {
  padding-top: 100px;
  padding-bottom: 114px;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  max-height: 643px;
  overflow: hidden;
}

.map-inner {
  flex-wrap: wrap;
  align-items: stretch;
}

.contact-content {
  line-height: 26px;
}

.contact-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-radius: 10px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 114px;
  padding: 40px;
  display: grid;
  box-shadow: 0 13px 77px rgba(0, 0, 0, .1);
}

.contact-addres-text {
  font-family: DM Sans, sans-serif;
  font-size: 16px;
}

.email-link {
  color: var(--body-color);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  line-height: 26px;
  text-decoration: none;
  transition: color .3s;
}

.email-link:hover {
  color: var(--theme-color);
}

.single-contact {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #f6f0e6;
  border-radius: 5px;
  align-items: center;
  padding: 35px 20px;
  display: flex;
}

.contact-title {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 26px;
}

.contact-icon-image {
  background-color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 65px;
  min-width: 65px;
  height: 65px;
  display: flex;
}

.call-wrapper {
  flex-direction: column;
  display: flex;
}

.call-inner {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  display: flex;
}

.contact-section {
  padding-top: 0;
}

.contact-form-wrapper {
  margin-top: 50px;
}

.form {
  flex-direction: column;
  display: flex;
}

.contact-form-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-input-field {
  color: #646465;
  background-color: #f7f7f7;
  border: 1px solid #dddde4;
  border-radius: 8px;
  width: 100%;
  height: 54px;
  margin-bottom: 0;
  padding-left: 20px;
  font-family: DM Sans, sans-serif;
  transition: background-color .4s, border-color .4s;
}

.form-input-field:focus {
  border-color: var(--theme-color);
  background-color: rgba(0, 0, 0, 0);
}

.form-input-field::placeholder {
  color: #646465;
  text-transform: capitalize;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
}

.form-textarea {
  color: #646465;
  background-color: #f7f7f7;
  border: 1px solid #dddde4;
  border-radius: 8px;
  min-height: 196px;
  padding-left: 20px;
  font-family: DM Sans, sans-serif;
  transition: background-color .4s, border-color .4s;
}

.form-textarea:focus {
  border-color: var(--theme-color);
  background-color: rgba(0, 0, 0, 0);
}

.form-textarea::placeholder {
  color: #646465;
  text-transform: capitalize;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
}

.contact-number {
  color: var(--theme-color);
  letter-spacing: .04em;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: color .3s;
}

.contact-number:hover {
  color: var(--theme-color);
}

.agent-achievement {
  width: 25%;
  height: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.agent-details-content {
  width: 42%;
  margin-left: 40px;
  padding-left: 15px;
  padding-right: 15px;
}

.agent-profile {
  width: 32%;
}

.agent-details {
  background-color: #fffdfc;
  border-bottom: 5px solid #01614e;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  flex-direction: column;
  align-items: center;
  margin-top: -2px;
  padding-top: 20px;
  padding-bottom: 20px;
  line-height: 1;
  display: flex;
  position: relative;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
}

.agent-details.agent-details-page {
  border-bottom-color: var(--heading-color);
  background-color: var(--theme-color);
  color: #fff;
  margin-top: -10px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.agent-birography, .agent-overview {
  margin-bottom: 20px;
}

.birography-title {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
}

.birography-details {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  font-family: APTOS, sans-serif;
}

.single-counter-2 {
  margin-right: 60px;
}

.single-counter-2.agent-details-page {
  flex-direction: column;
  align-items: center;
  margin-right: 0;
  display: flex;
}

.single-counter-2.agent-details-page.gap-between {
  margin-top: 65px;
  margin-bottom: 65px;
}

.counter-wrap {
  margin-top: 47px;
  display: flex;
}

.counter-wrap.agent-details-page {
  color: var(--antique-white);
  background-color: #f4f4f4;
  border-radius: 8px;
  flex-flow: column wrap;
  max-width: 230px;
  height: auto;
  margin-top: 0;
  padding-top: 75px;
  padding-bottom: 75px;
}

.agency-star-image {
  margin-right: 2px;
}

.contact-heading {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
}

.agent-thumbnail {
  background-color: #f4f4f4;
}

.overview-heading {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.agent-thumbnail-image {
  width: 100%;
}

.agent-profession {
  font-size: 14px;
  font-weight: 400;
}

.agent-profession.agent-details-page {
  margin-bottom: 10px;
  font-size: 18px;
}

.section-color-shape {
  color: var(--heading-color);
  text-transform: uppercase;
  font-size: 24px;
}

.counter-text-2 {
  color: var(--heading-color);
  margin-top: 0;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}

.counter-number-2 {
  color: var(--theme-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-family: DM Sans, sans-serif;
  font-size: 28px;
  line-height: 36px;
}

.agent-social-network {
  z-index: 1;
  display: flex;
  position: absolute;
  top: -22px;
}

.agent-name {
  color: #01614e;
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.agent-name.w--current {
  color: #fff;
  margin-top: 20px;
  font-size: 24px;
}

.agent-name.agent-details-page {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 400;
}

.agent-name.agent-details-page.w--current {
  text-transform: uppercase;
  font-weight: 700;
}

.agent-details-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.agent-social-link {
  background-color: #fff6f0;
  border-radius: 50%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  margin-left: 15px;
  transition: box-shadow .3s;
  display: flex;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .25);
}

.agent-social-link:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, .4);
}

.agent-social-link.agent-details-page {
  box-shadow: none;
  background-color: #fff;
  width: 43px;
  height: 43px;
}

.agent-social-link.agent-details-page:hover {
  box-shadow: 0 4px 25px rgba(0, 0, 0, .1);
}

.agent-social-link.agent-details-page.first-item {
  margin-left: 0;
}

.agent-meta-info {
  z-index: 2;
  text-align: center;
  position: relative;
  overflow: visible;
}

.team-page-section {
  padding-top: 100px;
  padding-bottom: 20px;
}

.agent-message {
  align-items: center;
  display: flex;
}

.agent-property-amenitie {
  width: 38%;
}

.agent-message-details {
  max-width: 460px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.property-amenities-icon {
  width: 16px;
  height: 16px;
  margin-top: 5px;
  margin-right: 15px;
}

.button-primary-2 {
  color: #fff;
  text-align: center;
  background-color: #244d4d;
  justify-content: center;
  align-items: center;
  min-width: 140px;
  margin-left: 0;
  margin-right: 0;
  padding: 15px 19px;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  text-decoration: none;
  transition: transform .3s;
}

.button-primary-2:hover {
  color: #fff;
  transform: translate(0, -5px);
}

.property-amenities-text {
  max-width: 315px;
}

.agent-message-heading {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-top: 0;
  margin-right: 5px;
  font-size: 24px;
  line-height: 32px;
}

.agent-message-heading.theme-color {
  color: var(--theme-color);
  text-transform: uppercase;
}

.agent-contact-side {
  width: 56%;
  margin-left: 50px;
}

.property-amenities-list {
  margin-top: 30px;
  margin-bottom: -30px;
}

.form-field {
  color: #494949;
  background-color: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0);
  height: 56px;
  margin-bottom: 0;
  padding-left: 15px;
  transition: box-shadow .3s, border-color .3s;
}

.form-field:focus {
  border-color: #ff8b43;
  box-shadow: 0 6px 15px rgba(0, 0, 0, .1);
}

.form-field::placeholder {
  color: #595959;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
}

.property-single-amenities {
  margin-bottom: 30px;
  display: flex;
}

.agent-contact-section {
  padding-top: 100px;
  padding-bottom: 114px;
}

.agent-contact-wrapper {
  flex-wrap: wrap;
  display: flex;
}

.property-amenities-title {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 48px;
}

.agency-form {
  grid-column-gap: 10px;
  grid-row-gap: 25px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.license-single-item {
  background-color: #fff;
  border: 1px solid rgba(195, 153, 83, .6);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, .1);
}

.section-title-block-2 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 528px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.section-title-block-2.license-block {
  max-width: 620px;
}

.license-inner {
  flex: 0 auto;
}

.license-link {
  color: var(--theme-color);
  text-transform: capitalize;
  margin-top: 10px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
  display: inline-block;
}

.license-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  margin-top: 60px;
  display: grid;
}

.licenses-title {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
}

.license-section {
  padding-top: 100px;
  padding-bottom: 114px;
}

.section-details {
  margin-top: 20px;
}

.relesed {
  background-color: var(--theme-color);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  width: auto;
  height: 44px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 18px;
  line-height: 44px;
  display: inline-block;
}

.changelog-section {
  padding-top: 100px;
  padding-bottom: 114px;
}

.released-date {
  color: var(--heading-color);
  margin-left: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
}

.bold-text {
  color: var(--heading-color);
  margin-top: 20px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  display: inline-block;
}

.changelog-wrapper {
  text-align: center;
  background-color: #fff;
  border: 1px solid rgba(195, 153, 83, .5);
  border-radius: 10px;
  max-width: 550px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, .1);
}

.bold-text-2 {
  font-weight: 700;
}

.version-title {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-wrap.error-page {
  width: 100%;
  height: 100%;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 100%;
  max-width: 35%;
  display: flex;
}

.utility-page-content.error-page {
  max-width: 100%;
  padding-top: 100px;
  padding-bottom: 114px;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.search-link-item {
  color: var(--theme-color);
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
}

.search-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 30px;
  display: flex;
}

.search-section {
  padding-top: 100px;
  padding-bottom: 114px;
}

.password-label {
  color: var(--heading-color);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
}

.error-text {
  margin-bottom: 30px;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.error-title {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 1.2;
}

.error-image {
  width: 100%;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.line-design-wrapper {
  z-index: -1;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
}

.single-line {
  background-color: rgba(195, 153, 83, .3);
  width: 1px;
  height: 100%;
}

.faq-section {
  padding-top: 100px;
  padding-bottom: 114px;
}

.footer-bottom-text {
  color: #b0ada6;
  margin-top: 30px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

.bottom-link {
  color: #b0ada6;
  font-weight: 700;
  text-decoration: none;
  transition: color .3s;
}

.bottom-link:hover {
  color: var(--theme-color);
}

.progress-bar-wrapper {
  position: relative;
}

.blog-thumbnail-inner, .about-first-image-inner {
  overflow: hidden;
}

.icon-block {
  line-height: 0;
  position: relative;
}

.footer-link-icon {
  width: 10px;
}

.heading, .heading-2, .paragraph {
  font-family: Cormorant, sans-serif;
}

.slider-heading-copy {
  color: var(--heading-color);
  padding-bottom: 20px;
  font-family: APTOS, sans-serif;
  font-size: 60px;
  line-height: 72px;
}

.slider-details-copy {
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 35px;
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
}

.work-proccess-summary-copy {
  color: #524e47;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
}

.work-proccess-title-copy {
  color: var(--heading-color);
  text-transform: uppercase;
  font-size: 16px;
}

.work-proccess-summary-copy {
  color: #524e47;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.slider-heading-copy {
  color: var(--heading-color);
  font-size: 60px;
  line-height: 72px;
}

.slider-details-copy {
  float: none;
  clear: left;
  color: var(--body-color);
  text-align: left;
  margin-top: 40px;
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 10px;
  font-family: APTOS, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
}

.section-title-copy {
  color: var(--heading-color);
  text-transform: uppercase;
  font-family: APTOS, sans-serif;
  font-weight: 600;
}

.single-team-content-copy {
  z-index: 3;
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  font-family: APTOS, sans-serif;
  display: flex;
  position: relative;
}

.footer-section-copy {
  background-image: url('../images/footer-bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 38px;
  font-family: APTOS, sans-serif;
}

.nav-link-copy {
  color: var(--heading-color);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  font-family: APTOS, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 100px;
  text-decoration: none;
  transition: border-color .3s, color .3s;
  display: inline-block;
}

.nav-link-copy:hover {
  border-bottom-color: var(--theme-color);
  color: var(--theme-color);
}

.nav-link-copy:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link-copy[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link-copy.w--current {
  border-bottom-color: var(--theme-color);
  color: var(--theme-color);
  font-family: APTOS, sans-serif;
  font-size: 30px;
}

.heading-5 {
  text-align: center;
  margin-top: 0;
  padding-bottom: 0;
  font-family: APTOS, sans-serif;
}

.breadcrumb-title-copy {
  color: #fcf7ee;
  margin-top: 0;
  margin-bottom: 13px;
  font-family: APTOS, sans-serif;
  font-size: 60px;
}

.single-team-content-copy {
  z-index: 3;
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.birography-title-copy {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: APTOS, sans-serif;
}

.birography-details-copy {
  text-align: left;
  font-family: APTOS, sans-serif;
}

.agent-meta-info-copy {
  z-index: 2;
  text-align: center;
  font-family: APTOS, sans-serif;
  position: relative;
  overflow: visible;
}

.agent-thumbnail-image-copy {
  width: 275px;
  height: 375px;
  font-family: APTOS, sans-serif;
}

.agent-thumbnail-copy {
  background-color: #f4f4f4;
}

.section-title-block-copy {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section-title-copy {
  color: var(--heading-color);
  text-transform: uppercase;
  font-weight: 600;
}

.section-title-copy.testimonial-title {
  color: var(--white);
}

.section-title-copy.password-title {
  margin-top: 30px;
}

.success-message, .error-message {
  font-family: APTOS, sans-serif;
}

.single-team-image-copy {
  aspect-ratio: auto;
  object-fit: fill;
  flex: 0 auto;
  min-width: 230px;
  max-width: 100px;
  font-family: APTOS, sans-serif;
}

.paragraph-2 {
  text-align: left;
  padding-bottom: 60px;
  font-family: APTOS, sans-serif;
  font-weight: 400;
}

.team-section-copy {
  z-index: 1;
  background-color: #faf7f2;
  background-image: url('../images/team-bg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 100px;
  position: relative;
}

.contact-section-copy {
  padding-top: 60px;
}

.breadcrumb-title-copy {
  color: #fcf7ee;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 60px;
}

.text-block-3 {
  font-family: APTOS, sans-serif;
}

.cell {
  text-align: left;
  align-items: center;
  transition: background-color .3s;
}

.cell-2 {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 60px;
}

.image {
  width: 260px;
}

.image-2 {
  width: 268px;
  margin-top: 0;
}

.text-block-4 {
  margin-top: 0;
  font-family: APTOS, sans-serif;
  font-size: 18px;
}

.container-2 {
  margin-top: 0;
}

.grid {
  grid-template-rows: auto auto auto;
}

.image-3, .image-4 {
  align-self: center;
}

.quick-stack-2 {
  grid-row-gap: 79px;
}

.image-5 {
  align-self: center;
}

.quick-stack-3 {
  grid-row-gap: 53px;
}

.image-6, .image-7, .image-8 {
  align-self: center;
}

.section {
  margin-top: 60px;
}

.birography-details-copy {
  text-align: left;
  margin-left: 100px;
  margin-right: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: APTOS, sans-serif;
}

.section-2 {
  margin-top: 60px;
}

.slider-details-copy-copy {
  float: none;
  clear: left;
  color: var(--heading-color);
  height: 3%;
  margin-top: 20px;
  margin-bottom: 35px;
  font-family: APTOS, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
}

.paragraph-3 {
  text-decoration: none;
}

.image-9 {
  margin-top: 30px;
}

.paragraph-3-copy {
  text-decoration: none;
}

.work-proccess-content-copy {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  align-items: flex-start;
  font-family: APTOS, sans-serif;
  display: flex;
}

.heading-5-copy {
  text-align: center;
  margin-top: 0;
  padding-bottom: 0;
  font-family: APTOS, sans-serif;
}

.birography-details-copy-copy {
  text-align: left;
  margin: 10px 100px 40px 120px;
  padding-left: 10px;
  font-family: APTOS, sans-serif;
}

.column {
  padding-right: 0;
}

.link {
  color: #00f;
  font-size: 16px;
  text-decoration: none;
}

.slider-details-copy-copy {
  color: var(--heading-color);
  float: none;
  clear: left;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 10px;
  font-family: APTOS, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
}

.slider-content-copy {
  text-align: center;
  width: 100%;
  max-width: 450px;
}

.slider-details-copy-copy {
  color: var(--body-color);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
}

.slider-image-copy {
  width: 100%;
  height: 140%;
  margin-top: -20px;
}

.image-9-copy {
  margin-top: 30px;
}

.birography-details-plot-a-course {
  text-align: left;
  margin: 10px 100px 40px 120px;
  padding-left: 10px;
  font-family: APTOS, sans-serif;
  font-weight: 400;
}

.slider-image-new {
  width: 100%;
  height: 200%;
  margin-top: -30px;
}

.image-9-copy-copy, .image-9-copy-copy-copy {
  margin-top: 30px;
}

.slider-details-copy-copy {
  float: none;
  clear: left;
  color: var(--body-color);
  text-align: left;
  margin-top: 40px;
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 10px;
  font-family: APTOS, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
}

.slider-details-copy-copy-copy {
  float: none;
  clear: left;
  color: var(--theme-color);
  float: none;
  clear: left;
  text-align: left;
  height: 3%;
  margin-top: 40px;
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 10px;
  font-family: APTOS, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
}

.slider-details-copy-copy-copy-copy {
  float: none;
  clear: left;
  color: var(--heading-color);
  float: none;
  clear: left;
  height: 3%;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: APTOS, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
}

.slider-image-new-ai {
  width: 100%;
  height: 140%;
  margin-top: -30px;
}

.slider-image-new-unlock-value, .slider-image-new-plot-a-course {
  width: 100%;
  height: 200%;
  margin-top: -30px;
}

.image-9-unlock-value {
  margin-top: 30px;
}

.text-span, .text-span-2, .text-span-3, .text-span-4, .text-span-5, .text-span-6, .text-span-7, .text-span-8 {
  color: var(--theme-color);
}

@media screen and (min-width: 1280px) {
  ul {
    list-style-type: none;
  }

  li {
    background-image: url('../images/tick.svg');
    background-position: 0%;
    background-repeat: no-repeat;
    background-size: auto;
    padding-left: 26px;
  }

  blockquote {
    background-color: var(--theme-color);
    color: #fffaf2;
    background-image: url('../images/quate-icon.svg');
    background-position: 4% 30%;
    background-repeat: no-repeat;
    background-size: auto;
    border-left: 0 rgba(0, 0, 0, 0);
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 35px 36px 40px 110px;
    font-size: 22px;
    line-height: 31px;
    display: inline-block;
  }

  .button-primary {
    min-width: 140px;
    min-height: 50px;
    display: inline-block;
  }

  .button-primary.course-button {
    padding-left: 55px;
    padding-right: 55px;
  }

  .container {
    text-align: center;
    max-width: 1200px;
    padding-top: 0;
    padding-left: 0;
  }

  .container.navbar-container {
    max-width: 1506px;
  }

  .container.custom-container {
    max-width: 1280px;
  }

  .container.about-container {
    justify-content: flex-end;
    max-width: 1320px;
    display: flex;
  }

  .container.contact-container {
    max-width: 1260px;
  }

  .header-section {
    z-index: 2;
    width: 100%;
    position: absolute;
  }

  .nav-menu-two {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .nav-link {
    font-family: APTOS, sans-serif;
    font-size: 30px;
  }

  .mobile-margin-top-10 {
    background-image: none;
    padding-left: 0;
  }

  .slider-section {
    min-height: 750px;
    padding-bottom: 0;
  }

  .slider-wrapper {
    padding-top: 250px;
    padding-bottom: 20px;
  }

  .slider-content {
    max-width: 626px;
  }

  .slider-image-block {
    max-width: 580px;
    top: 350px;
  }

  .slider-heading {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 70px;
    line-height: 80px;
  }

  .slider-details {
    margin-top: 25px;
    margin-bottom: 30px;
    font-size: 26px;
    line-height: 50px;
  }

  .slider-image {
    max-width: 100%;
    height: 100%;
  }

  .slider-inner {
    max-width: 1500px;
  }

  .work-proccess-section {
    padding-top: 0;
  }

  .work-proccess-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .single-work-proccess {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    background-position: 100%;
    background-size: cover;
    flex-direction: column;
    align-items: flex-start;
    padding: 42px 40px 35px;
  }

  .work-proccess-icon-wrapper {
    width: 100px;
    min-width: 100px;
  }

  .work-proccess-content {
    text-align: left;
    font-family: APTOS, sans-serif;
    text-decoration: none;
  }

  .work-proccess-title {
    font-size: 20px;
  }

  .work-proccess-summary {
    font-size: 20px;
    line-height: 34px;
  }

  .about-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .about-wrapper-block {
    grid-column-gap: 119px;
  }

  .about-left-block {
    min-width: 610px;
  }

  .about-first-image-block {
    max-width: 270px;
  }

  .about-second-image-block {
    max-width: 270px;
    padding-top: 130px;
    padding-bottom: 115px;
  }

  .about-title {
    font-size: 52px;
    line-height: 62px;
  }

  .facilities-block {
    grid-column-gap: 19px;
  }

  .facilities-text {
    font-size: 23px;
    line-height: 25px;
  }

  .about-text-block-wrapper {
    max-width: 435px;
    padding-top: 69px;
    padding-bottom: 28px;
    padding-left: 38px;
  }

  .facilities-block-wrapper {
    margin-top: 35px;
    margin-bottom: 50px;
  }

  .services-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .services-section.service-page {
    padding-top: 60px;
  }

  .section-subtitle {
    font-family: APTOS, sans-serif;
    font-size: 25px;
  }

  .service-collection-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .service-inner {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    padding: 34px 32px 39px 35px;
  }

  .service-link-title {
    font-size: 22px;
  }

  .service-summary {
    margin-top: 22px;
    margin-bottom: 28px;
  }

  .visa-assessment-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .visa-assessment-top-block {
    padding-top: 39px;
    padding-bottom: 53px;
  }

  .visa-assessment-bottom-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .visa-assessment-title {
    margin-top: 5px;
    font-size: 46px;
    line-height: 58px;
  }

  .team-section {
    padding-top: 20px;
  }

  .team-collection-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 2.25fr;
  }

  .single-team-image {
    height: 350px;
  }

  .course-section {
    padding-top: 130px;
  }

  .course-section.category-page {
    padding-bottom: 130px;
  }

  .course-collection-wrapper {
    padding-top: 67px;
  }

  .course-collection-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .cta-section {
    margin-top: 86px;
  }

  .cta-container {
    max-width: 1170px;
  }

  .cta-title {
    font-size: 42px;
  }

  .testimonial-left-side {
    max-width: 555px;
  }

  .testimonial-title-block {
    margin-top: 152px;
    margin-bottom: 63px;
  }

  .slider-arrow.arrow-left {
    right: -78%;
  }

  .testimonial-text {
    font-size: 20px;
    font-weight: 500;
  }

  .blog-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .blog-collection-wrapper {
    padding-top: 67px;
  }

  .blog-content-wrapper {
    padding-right: 30px;
  }

  .blog-title {
    font-size: 23px;
    line-height: 35px;
  }

  .footer-content-block {
    text-align: left;
  }

  .footer-contact-wrapper {
    padding-left: 85px;
    padding-right: 85px;
  }

  .footer-wrapper {
    aspect-ratio: auto;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .counter-section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .counter-container {
    max-width: 1017px;
  }

  .service-details-section {
    padding-top: 140px;
    padding-bottom: 154px;
  }

  .service-details-title, .choose-title {
    font-size: 38px;
    line-height: 46px;
  }

  .choose-wrapper {
    flex-direction: row;
  }

  .choose-content {
    max-width: 402px;
  }

  .faq-heading-block {
    font-size: 20px;
    line-height: 24px;
  }

  .analyzing-default-title, .analyzing-title {
    font-size: 38px;
    line-height: 46px;
  }

  .blog-page-section {
    padding-top: 140px;
    padding-bottom: 154px;
  }

  .blog-details-page {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .blog-details-wrapper {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
    flex-direction: row;
    align-items: flex-start;
  }

  .blog-details-content-block {
    max-width: 790px;
  }

  .single-meta {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    color: #898a9c;
    align-items: center;
    font-family: DM Sans, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    display: flex;
  }

  .dot-shape {
    background-color: #898a9c;
    border-radius: 30px;
    width: 100%;
    max-width: 4px;
    height: 4px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .blog-ricetext h2 {
    color: var(--heading-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 46px;
  }

  .blog-ricetext p {
    margin-bottom: 30px;
  }

  .blog-ricetext h4 {
    color: var(--heading-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 38px;
    line-height: 46px;
  }

  .nav-list-item {
    background-image: none;
    padding-left: 0;
  }

  .tag-share-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: row;
  }

  .course-details-section {
    padding-top: 130px;
    padding-bottom: 144px;
  }

  .course-details-wrapper {
    grid-column-gap: 45px;
    grid-row-gap: 45px;
    justify-content: space-between;
  }

  .course-page-section {
    padding-top: 140px;
    padding-bottom: 154px;
  }

  .map-section {
    position: relative;
  }

  .contact-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: var(--white);
    align-items: center;
    width: 100%;
    max-width: 1260px;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    position: absolute;
    bottom: -136px;
    left: 50%;
    transform: translate(-50%);
    box-shadow: 0 0 77px 13px rgba(0, 0, 0, .1);
  }

  .email-link:hover {
    color: #08d565;
  }

  .single-contact {
    width: 32%;
  }

  .contact-section {
    padding-top: 60px;
    padding-bottom: 144px;
  }

  .birography-title {
    margin-bottom: 20px;
  }

  .birography-details {
    text-align: left;
    padding-right: 10px;
  }

  .agency-star-image {
    margin-right: 2px;
  }

  .agent-thumbnail {
    justify-content: center;
    display: flex;
  }

  .overview-heading {
    margin-bottom: 20px;
  }

  .agent-details-wrapper {
    align-items: center;
  }

  .team-page-section {
    padding-top: 130px;
    padding-bottom: 20px;
  }

  .agent-message {
    align-items: center;
    display: flex;
  }

  .agent-property-amenitie {
    width: 38%;
  }

  .agent-message-details {
    max-width: 460px;
    margin-top: 15px;
    margin-bottom: 30px;
  }

  .button-primary-2 {
    text-align: center;
    min-width: 140px;
    min-height: 50px;
    font-size: 16px;
  }

  .agent-message-heading {
    margin-right: 5px;
  }

  .agent-contact-side {
    width: 57%;
    margin-left: 50px;
  }

  .property-amenities-list {
    margin-top: 35px;
    margin-bottom: -30px;
  }

  .property-single-amenities {
    margin-bottom: 35px;
  }

  .agent-contact-section {
    padding-top: 130px;
    padding-bottom: 144px;
  }

  .agent-contact-wrapper {
    flex-wrap: wrap;
    display: flex;
  }

  .agency-form {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .single-line {
    background-color: rgba(195, 153, 83, .3);
  }

  .faq-section {
    padding-top: 130px;
    padding-bottom: 144px;
  }

  .slider-heading-copy {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 20px;
    font-size: 70px;
    line-height: 80px;
  }

  .work-proccess-summary-copy {
    font-size: 20px;
    line-height: 34px;
    text-decoration: none;
  }

  .work-proccess-title-copy {
    font-size: 20px;
  }

  .work-proccess-summary-copy {
    font-size: 20px;
    line-height: 34px;
  }

  .slider-heading-copy {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 70px;
    line-height: 80px;
  }

  .slider-details-copy {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 100%;
  }

  .section-title-copy, .single-team-content-copy, .footer-section-copy {
    font-family: APTOS, sans-serif;
  }

  .nav-link-copy, .nav-link-copy.w--current {
    font-family: APTOS, sans-serif;
    font-size: 30px;
  }

  .heading-5, .breadcrumb-title-copy {
    font-family: APTOS, sans-serif;
  }

  .birography-title-copy {
    margin-bottom: 20px;
  }

  .birography-details-copy {
    text-align: left;
  }

  .agent-thumbnail-image-copy {
    width: 275px;
    height: 375px;
  }

  .agent-thumbnail-copy {
    justify-content: center;
    display: flex;
  }

  .success-message, .error-message {
    font-family: APTOS, sans-serif;
  }

  .single-team-image-copy {
    height: 350px;
  }

  .paragraph-2 {
    padding-bottom: 60px;
  }

  .team-section-copy {
    padding-top: 60px;
  }

  .contact-section-copy {
    padding-top: 60px;
    padding-bottom: 144px;
  }

  .image-2 {
    text-align: left;
  }

  .text-block-4 {
    text-align: left;
    font-size: 20px;
  }

  .image-3, .image-4, .image-5 {
    align-self: center;
  }

  .birography-details-copy {
    text-align: left;
    margin-top: 0;
    padding-right: 10px;
  }

  .paragraph-3, .paragraph-3-copy {
    text-decoration: none;
  }

  .work-proccess-content-copy {
    text-align: left;
    font-family: APTOS, sans-serif;
    font-style: normal;
    text-decoration: none;
  }

  .heading-5-copy {
    font-family: APTOS, sans-serif;
  }

  .birography-details-copy-copy {
    text-align: left;
    margin: 0 60px 40px 100px;
    padding-right: 10px;
    font-size: 20px;
  }

  .column {
    padding-left: 60px;
  }

  .column-2 {
    padding-left: 0;
  }

  .link {
    font-size: 22px;
  }

  .slider-details-copy-copy {
    text-align: center;
    text-align: center;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 26px;
    line-height: 50px;
  }

  .slider-content-copy {
    max-width: 626px;
  }

  .slider-details-copy-copy {
    text-align: center;
    color: var(--body-color);
    text-align: center;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 25px;
    line-height: 50px;
  }

  .slider-image-copy {
    max-width: 100%;
    height: 100%;
  }

  .birography-details-plot-a-course {
    text-align: left;
    margin: 20px 60px 40px 100px;
    padding-right: 10px;
    font-size: 20px;
  }

  .slider-image-new {
    width: 100%;
    max-width: 100%;
    height: 140%;
    padding-right: 20px;
  }

  .image-9-copy-copy, .image-9-copy-copy-copy {
    margin-top: 10px;
  }

  .slider-details-copy-copy, .slider-details-copy-copy-copy {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 100%;
  }

  .slider-details-copy-copy-copy-copy {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 25px;
    line-height: 50px;
  }

  .slider-image-new-ai {
    width: 100%;
    max-width: 100%;
    height: 140%;
    padding-right: 20px;
  }

  .slider-image-new-unlock-value {
    width: 100%;
    max-width: 100%;
    height: 180%;
    padding-right: 20px;
  }

  .slider-image-new-plot-a-course {
    width: 100%;
    max-width: 100%;
    height: 200%;
    padding-right: 20px;
  }

  .image-9-unlock-value {
    margin-top: 10px;
  }
}

@media screen and (min-width: 1440px) {
  .container {
    padding-top: 60px;
  }

  .container.custom-container {
    max-width: 1440px;
    padding-left: 10px;
  }

  .nav-link {
    font-family: APTOS, sans-serif;
    font-size: 30px;
  }

  .slider-section {
    background-position: 50% 25%;
    min-height: 825px;
  }

  .slider-wrapper {
    padding-top: 269px;
    padding-bottom: 20px;
  }

  .slider-image-block {
    max-width: 642px;
    top: 350px;
  }

  .slider-heading {
    font-size: 90px;
    line-height: 100px;
  }

  .slider-details {
    margin-top: 34px;
    margin-bottom: 40px;
  }

  .slider-image {
    width: 90%;
    height: 100%;
  }

  .slider-inner {
    height: 82%;
  }

  .work-proccess-section {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
    display: flex;
  }

  .work-proccess-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .single-work-proccess {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    background-image: none;
    flex-direction: row;
    align-items: center;
    padding: 35px 30px;
    text-decoration: none;
  }

  .work-proccess-content {
    text-align: left;
    font-family: APTOS, sans-serif;
  }

  .section-title-block {
    font-family: APTOS, sans-serif;
  }

  .section-subtitle {
    font-family: APTOS, sans-serif;
    font-size: 25px;
  }

  .counter-number-text {
    z-index: 5;
  }

  .team-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .team-collection-wrapper {
    text-align: left;
    height: 700px;
  }

  .team-collection-list {
    aspect-ratio: 2 / 3;
    grid-template-columns: 1fr 1.5fr .25fr;
    width: 100%;
    height: 600px;
  }

  .team-collection-item {
    height: 600px;
  }

  .single-team-image {
    height: 350px;
  }

  .cta-container {
    padding-right: 0;
  }

  .testimonial-container {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .testimonial-left-side {
    max-width: 645px;
  }

  .client-testimonial-slider-item {
    padding-bottom: 70px;
  }

  .footer-content-block {
    padding-top: 20px;
  }

  .footer-wrapper {
    flex-direction: row;
    justify-content: center;
  }

  .breadcrumb-backlink, .current-page-name {
    font-family: APTOS, sans-serif;
  }

  .contact-section {
    padding-top: 20px;
  }

  .agent-details-content {
    align-self: flex-start;
  }

  .birography-details {
    text-align: left;
  }

  .team-page-section {
    padding-bottom: 20px;
  }

  .slider-heading-copy {
    padding-bottom: 20px;
    font-size: 90px;
    font-weight: 400;
    line-height: 100px;
  }

  .slider-details-copy {
    text-align: center;
    margin-top: 34px;
    margin-bottom: 40px;
  }

  .heading-4 {
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  }

  .slider-heading-copy {
    font-family: Cormorant, sans-serif;
    font-size: 90px;
    line-height: 100px;
  }

  .slider-details-copy {
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    font-size: 25px;
    line-height: 100%;
  }

  .section-title-copy, .single-team-content-copy, .footer-section-copy {
    font-family: APTOS, sans-serif;
  }

  .nav-link-copy, .nav-link-copy.w--current {
    font-family: APTOS, sans-serif;
    font-size: 30px;
  }

  .heading-5 {
    padding-bottom: 20px;
    font-family: APTOS, sans-serif;
  }

  .breadcrumb-title-copy {
    font-family: APTOS, sans-serif;
  }

  .agent-thumbnail-image-copy {
    width: 275px;
    height: 375px;
  }

  .section-title-block-copy, .success-message, .error-message {
    font-family: APTOS, sans-serif;
  }

  .single-team-image-copy {
    height: 350px;
  }

  .team-section-copy {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .contact-section-copy {
    padding-top: 20px;
  }

  .text-block-4 {
    font-size: 20px;
  }

  .image-5 {
    align-self: center;
  }

  .birography-details-copy {
    text-align: left;
  }

  .slider-details-copy-copy {
    margin-top: 34px;
    margin-bottom: 40px;
    font-size: 25px;
  }

  .paragraph-3, .link-block, .paragraph-3-copy {
    text-decoration: none;
  }

  .work-proccess-content-copy {
    text-align: left;
    font-family: APTOS, sans-serif;
  }

  .heading-5-copy {
    padding-bottom: 20px;
    font-family: APTOS, sans-serif;
  }

  .birography-details-copy-copy {
    text-align: left;
    margin-left: 140px;
    margin-right: 100px;
  }

  .link {
    font-size: 22px;
  }

  .slider-details-copy-copy {
    text-align: left;
    text-align: center;
    color: var(--body-color);
    text-align: center;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 25px;
    line-height: 100%;
  }

  .slider-image-copy {
    width: 90%;
    height: 100%;
  }

  .image-9-copy {
    margin-top: 5px;
  }

  .birography-details-plot-a-course {
    text-align: left;
    margin-left: 140px;
    margin-right: 100px;
  }

  .slider-image-new {
    width: 100%;
    height: 120%;
    margin-top: 20px;
    padding-right: 20px;
  }

  .image-9-copy-copy, .image-9-copy-copy-copy {
    margin-top: 5px;
  }

  .slider-details-copy-copy, .slider-details-copy-copy-copy {
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    font-size: 25px;
    line-height: 100%;
  }

  .slider-details-copy-copy-copy-copy {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 25px;
  }

  .slider-image-new-ai {
    width: 100%;
    height: 120%;
    margin-top: 20px;
    padding-right: 20px;
  }

  .slider-image-new-unlock-value, .slider-image-new-plot-a-course {
    width: 100%;
    height: 150%;
    margin-top: 20px;
    padding-right: 20px;
  }

  .image-9-unlock-value {
    margin-top: 5px;
  }
}

@media screen and (min-width: 1920px) {
  .page-wrapper {
    z-index: 2;
  }

  .container {
    padding-top: 60px;
  }

  .container.custom-container {
    max-width: 1865px;
  }

  .nav-link, .nav-link.w--current {
    font-family: APTOS, sans-serif;
    font-size: 30px;
  }

  .slider-section {
    background-position: 50% 25%;
    background-size: auto;
  }

  .slider-wrapper {
    padding-bottom: 20px;
    font-weight: 400;
  }

  .slider-content {
    font-family: APTOS, sans-serif;
  }

  .slider-image-block {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
    top: 350px;
    right: 0;
  }

  .slider-image {
    width: 100%;
    height: 130%;
    margin-top: 20px;
    position: static;
  }

  .work-proccess-section {
    padding-top: 0;
  }

  .work-proccess-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .single-work-proccess {
    z-index: 1;
    grid-column-gap: 53px;
    grid-row-gap: 53px;
    padding: 42px 53px;
    position: relative;
  }

  .work-proccess-icon-wrapper {
    width: 100px;
    min-width: 100px;
  }

  .section-title-block {
    padding-bottom: 0;
  }

  .section-subtitle {
    font-family: APTOS, sans-serif;
    font-size: 25px;
  }

  .team-section {
    padding-top: 0;
  }

  .team-collection-wrapper {
    height: auto;
  }

  .team-collection-list {
    aspect-ratio: auto;
    grid-template: "."
                   "."
                   / 1.25fr 4fr;
  }

  .single-team-image {
    aspect-ratio: 2 / 3;
  }

  .cta-section {
    justify-content: flex-end;
    max-width: 1545px;
    display: flex;
  }

  .cta-container {
    grid-column-gap: 149px;
    grid-row-gap: 149px;
    justify-content: flex-start;
    max-width: 1172px;
    margin-left: 0;
    margin-right: 0;
    padding-right: 110px;
  }

  .testimonial-text {
    font-weight: 500;
  }

  .client-testimonial-slider-item {
    padding-bottom: 80px;
  }

  .breadcrumb-link-block {
    color: #fff;
    line-height: 36px;
  }

  .breadcrumb-backlink {
    font-family: DM Sans, sans-serif;
  }

  .map-inner {
    height: 500px;
    min-height: 500px;
    max-height: 550px;
  }

  .contact-section {
    padding-top: 20px;
  }

  .birography-details {
    text-align: left;
    font-size: 24px;
  }

  .agent-details-wrapper {
    align-items: flex-start;
  }

  .team-page-section {
    padding-bottom: 20px;
  }

  .button-primary-2 {
    font-size: 16px;
  }

  .heading-3 {
    font-family: DM Sans, sans-serif;
  }

  .slider-heading-copy {
    padding-bottom: 20px;
    font-family: APTOS, sans-serif;
  }

  .slider-details-copy {
    text-align: center;
    font-family: DM Sans, sans-serif;
    font-size: 25px;
  }

  .nav-menu-wrapper-copy {
    font-family: DM Sans, sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
  }

  .text-block {
    font-size: 20px;
  }

  .text-block-2 {
    font-family: Cormorant, sans-serif;
    font-size: 15px;
  }

  .work-proccess-title-copy {
    font-family: DM Sans, sans-serif;
  }

  .work-proccess-summary-copy {
    text-align: left;
    font-family: DM Sans, sans-serif;
  }

  .heading-4 {
    font-family: Cormorant, sans-serif;
  }

  .slider-details-copy {
    text-align: left;
    height: 63%;
    margin-bottom: 5px;
    font-family: Open Sans, sans-serif;
  }

  .section-title-copy, .single-team-content-copy, .footer-section-copy {
    font-family: APTOS, sans-serif;
  }

  .nav-link-copy, .nav-link-copy.w--current {
    font-family: APTOS, sans-serif;
    font-size: 30px;
  }

  .breadcrumb-title-copy {
    font-family: APTOS, sans-serif;
  }

  .birography-details-copy {
    text-align: left;
  }

  .agent-thumbnail-image-copy {
    width: 275px;
    height: 375px;
  }

  .agent-thumbnail-copy {
    width: 379.328px;
  }

  .success-message, .error-message {
    font-family: APTOS, sans-serif;
  }

  .single-team-image-copy {
    aspect-ratio: 2 / 3;
  }

  .contact-section-copy {
    padding-top: 60px;
  }

  .image-2 {
    width: 400px;
    padding-right: 0;
  }

  .text-block-4 {
    padding-top: 35px;
    font-size: 24px;
  }

  .quick-stack {
    margin-bottom: 220px;
  }

  .quick-stack-2 {
    grid-column-gap: 0px;
  }

  .image-5 {
    align-self: center;
  }

  .birography-details-copy {
    text-align: left;
    font-size: 24px;
  }

  .slider-details-copy-copy {
    font-family: Open Sans, sans-serif;
  }

  .birography-details-copy-copy {
    text-align: left;
    margin-left: 260px;
    margin-right: 140px;
    padding-left: 100px;
    padding-right: 60px;
    font-size: 24px;
  }

  .link {
    text-align: center;
    font-size: 22px;
  }

  .slider-details-copy-copy {
    text-align: left;
    text-align: center;
    height: 3%;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-family: APTOS, sans-serif;
    font-size: 25px;
  }

  .slider-content-copy {
    font-family: APTOS, sans-serif;
  }

  .slider-details-copy-copy {
    text-align: center;
    text-align: center;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
    font-family: Open Sans, sans-serif;
    font-size: 25px;
  }

  .image-10-copy {
    margin-bottom: 30px;
  }

  .slider-image-copy {
    width: 100%;
    height: 130%;
    margin-top: 20px;
    position: static;
  }

  .image-9-copy {
    margin-top: 5px;
  }

  .birography-details-plot-a-course {
    text-align: left;
    margin-top: 10px;
    margin-left: 260px;
    margin-right: 140px;
    padding-left: 100px;
    padding-right: 60px;
    font-size: 24px;
  }

  .slider-image-new {
    width: 100%;
    height: 150%;
    margin-top: 20px;
    position: static;
  }

  .image-9-copy-copy, .image-9-copy-copy-copy {
    margin-top: 5px;
  }

  .slider-details-copy-copy {
    text-align: left;
    height: 63%;
    margin-bottom: 5px;
    font-family: Open Sans, sans-serif;
  }

  .slider-details-copy-copy-copy {
    text-align: left;
    height: 63%;
    margin-top: 0;
    margin-bottom: 5px;
    padding-top: 10px;
    font-family: Open Sans, sans-serif;
  }

  .slider-details-copy-copy-copy-copy {
    margin-top: 0;
    font-family: Open Sans, sans-serif;
  }

  .slider-image-new-ai {
    width: 100%;
    height: 150%;
    margin-top: 20px;
    padding-bottom: 40px;
    position: static;
  }

  .slider-image-new-unlock-value, .slider-image-new-plot-a-course {
    width: 100%;
    height: 150%;
    margin-top: 20px;
    position: static;
  }

  .image-9-unlock-value {
    width: 90%;
    margin-top: 5px;
  }
}

@media screen and (max-width: 991px) {
  .light-section {
    float: none;
    clear: left;
    width: 100%;
    margin-top: 60px;
    padding-top: 25px;
    padding-bottom: 25px;
    overflow: visible;
  }

  .type-col {
    width: 46%;
  }

  .button-primary {
    padding: 10px 25px;
    font-size: 12px;
  }

  .color-block-parent {
    width: 30%;
  }

  .text-highlight {
    padding: 20px;
  }

  .container {
    margin-top: 60px;
    padding-top: 0;
  }

  .side-panel {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 140px 10px 25px;
    display: flex;
    position: relative;
  }

  .color-row {
    flex-wrap: wrap;
  }

  .text-link {
    margin-right: 50px;
  }

  .header-section {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .menu-button {
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 5px;
    padding: 12px;
  }

  .menu-button.w--open {
    background-color: var(--theme-color);
    color: #fff;
  }

  .nav-dropdown-toggle {
    line-height: 25px;
  }

  .nav-menu-wrapper {
    background-color: #ddd;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
    top: 30px;
    left: 5px;
  }

  .nav-menu-two {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    background-color: #ddd;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 15px;
    display: flex;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
    line-height: 25px;
  }

  .navbar-left.d-lg-none {
    background-color: #ddd;
    justify-content: center;
    display: flex;
  }

  .navbar-left.d-lg-block {
    display: none;
  }

  .slider-section {
    min-height: 558px;
  }

  .slider-wrapper {
    padding-top: 150px;
    padding-bottom: 20px;
  }

  .slider-content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 350px;
    padding-top: 60px;
    display: flex;
  }

  .slider-image-block {
    max-width: 375px;
  }

  .slider-heading {
    font-size: 50px;
    line-height: 60px;
  }

  .slider-details {
    font-size: 16px;
    line-height: 28px;
  }

  .slider-image {
    width: 100%;
    height: 100%;
  }

  .work-proccess-section {
    padding-top: 0;
  }

  .work-proccess-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .work-proccess-title {
    font-size: 18px;
  }

  .about-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about-wrapper-block {
    grid-row-gap: 50px;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-right-block {
    max-width: 100%;
  }

  .facilities-block {
    grid-column-gap: 19px;
  }

  .facilities-text {
    font-size: 23px;
    line-height: 25px;
  }

  .facilities-block-wrapper {
    flex-wrap: wrap;
    max-width: 100%;
    margin-top: 35px;
    margin-bottom: 50px;
    display: flex;
  }

  .services-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-title.testimonial-title {
    line-height: 42px;
  }

  .section-title.password-title {
    margin-top: 20px;
  }

  .service-collection-wrapper {
    margin-top: 40px;
  }

  .service-collection-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .visa-assessment-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .visa-assessment-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    align-items: center;
  }

  .visa-assessment-right-side {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    display: flex;
  }

  .team-section {
    margin-top: 60px;
    padding-top: 0;
    padding-bottom: 80px;
  }

  .team-collection-wrapper {
    padding-top: 50px;
  }

  .team-collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .single-team {
    height: auto;
  }

  .single-team-image {
    min-width: auto;
    max-width: 200px;
    height: auto;
  }

  .single-team-name {
    padding-left: 0;
  }

  .single-team-job-title {
    padding-left: 0;
    padding-right: 0;
  }

  .course-section {
    padding-top: 80px;
  }

  .course-section.category-page {
    padding-bottom: 94px;
  }

  .course-collection-wrapper {
    padding-top: 40px;
  }

  .course-collection-list {
    justify-content: center;
  }

  .cta-section {
    margin-top: 20px;
  }

  .cta-container {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .cta-content {
    justify-content: center;
    display: flex;
  }

  .testimonial-section {
    padding-bottom: 70px;
  }

  .testimonial-container {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-direction: column;
    align-items: center;
  }

  .testimonial-left-side {
    max-width: 645px;
  }

  .testimonial-right-side {
    padding-left: 15px;
    padding-right: 15px;
  }

  .testimonial-thumbnail-block {
    width: 100%;
    max-width: 100%;
  }

  .testimonial-title-block {
    margin-top: 0;
  }

  .slider-arrow.arrow-left {
    right: -79%;
  }

  .blog-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .blog-collection-wrapper {
    padding-top: 40px;
  }

  .blog-collection-list {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .blog-title {
    font-size: 20px;
  }

  .footer-content-block {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .footer-contact-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-wrap: wrap;
  }

  .footer-wrapper {
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .breadcrumb-wrapper {
    height: auto;
    padding-top: 220px;
    padding-bottom: 0;
  }

  .breadcrumb-title {
    font-size: 48px;
    line-height: 60px;
  }

  .breadcrumb-section {
    height: 350px;
    min-height: 350px;
    margin-top: 78px;
  }

  .counter-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .counter-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .counter-number {
    font-size: 36px;
    line-height: 48px;
  }

  .service-details-section {
    padding-top: 80px;
    padding-bottom: 94px;
  }

  .service-page-wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }

  .choose-wrapper {
    flex-direction: row;
  }

  .choose-content {
    max-width: 402px;
  }

  .faq-container {
    width: 100%;
    min-width: 0;
  }

  .blog-page-section, .blog-details-page {
    padding-top: 80px;
    padding-bottom: 94px;
  }

  .blog-meta {
    margin-bottom: 25px;
  }

  .blog-ricetext h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .blog-ricetext p {
    margin-bottom: 20px;
  }

  .blog-ricetext h4 {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 36px;
  }

  .course-details-section {
    padding-top: 80px;
    padding-bottom: 94px;
  }

  .course-details-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: column;
    align-items: center;
  }

  .course-details-heading {
    font-size: 32px;
    line-height: 42px;
  }

  .course-details-richtext h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .related-heading {
    margin-bottom: 40px;
    font-size: 42px;
  }

  .course-page-section {
    padding-top: 80px;
    padding-bottom: 94px;
  }

  .map-wrapper {
    max-height: 400px;
  }

  .contact-content {
    margin-left: 0;
  }

  .contact-wrapper {
    margin-top: 80px;
    margin-bottom: 94px;
  }

  .single-contact {
    display: block;
  }

  .contact-icon-image {
    margin-bottom: 20px;
  }

  .contact-section {
    padding-top: 60px;
    padding-bottom: 94px;
  }

  .contact-form-wrapper {
    margin-top: 40px;
  }

  .form-block {
    margin-bottom: 0;
  }

  .agent-achievement {
    width: 100%;
    margin-top: 60px;
  }

  .agent-details-content {
    width: 58%;
    margin-left: 0;
  }

  .agent-profile {
    width: 41.667%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .birography-details {
    padding-left: 0;
    padding-right: 0;
  }

  .single-counter-2.agent-details-page {
    width: 33.33%;
  }

  .single-counter-2.agent-details-page.gap-between {
    margin-top: 0;
    margin-bottom: 0;
  }

  .counter-wrap {
    margin-top: 30px;
  }

  .counter-wrap.agent-details-page {
    flex-direction: row;
    max-width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .counter-number-2 {
    font-size: 22px;
    line-height: 32px;
  }

  .agent-details-wrapper {
    flex-wrap: wrap;
  }

  .team-page-section {
    padding-top: 80px;
  }

  .property-amenities-details {
    max-width: 460px;
  }

  .agent-property-amenitie {
    width: 100%;
  }

  .button-primary-2 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .agent-contact-side {
    width: 100%;
    margin-top: 60px;
    margin-left: 0;
  }

  .form-field {
    padding-left: 20px;
  }

  .agent-contact-section {
    padding-top: 50px;
    padding-bottom: 94px;
  }

  .license-wrapper {
    margin-top: 40px;
  }

  .license-section, .changelog-section {
    padding-top: 80px;
    padding-bottom: 94px;
  }

  .released-date {
    font-size: 18px;
    font-weight: 500;
  }

  .changelog-wrapper {
    margin-top: 30px;
  }

  .utility-page-content {
    max-width: 50%;
  }

  .utility-page-content.error-page, .search-section {
    padding-top: 80px;
    padding-bottom: 94px;
  }

  .single-line {
    background-color: rgba(195, 153, 83, .1);
  }

  .faq-section {
    padding-top: 80px;
    padding-bottom: 94px;
  }

  .slider-details-copy {
    font-size: 16px;
    line-height: 28px;
  }

  .nav-menu-wrapper-copy {
    background-color: #ddd;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .work-proccess-title-copy {
    font-size: 18px;
  }

  .slider-heading-copy {
    font-size: 50px;
    line-height: 60px;
  }

  .slider-details-copy {
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
    line-height: 28px;
  }

  .nav-link-copy {
    padding-left: 5px;
    padding-right: 5px;
    line-height: 25px;
  }

  .heading-5 {
    padding-bottom: 20px;
    font-family: APTOS, sans-serif;
  }

  .breadcrumb-title-copy {
    margin-bottom: 0;
    font-size: 48px;
    line-height: 60px;
  }

  .birography-details-copy {
    text-align: left;
  }

  .section-title-copy {
    font-size: 32px;
  }

  .section-title-copy.testimonial-title {
    line-height: 42px;
  }

  .section-title-copy.password-title {
    margin-top: 20px;
  }

  .single-team-image-copy {
    min-width: auto;
    max-width: none;
    height: auto;
  }

  .team-section-copy {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .contact-section-copy {
    padding-top: 60px;
    padding-bottom: 94px;
  }

  .breadcrumb-title-copy {
    font-size: 48px;
    line-height: 60px;
  }

  .birography-details-copy {
    padding-left: 10px;
    padding-right: 10px;
  }

  .slider-details-copy-copy {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
  }

  .heading-5-copy {
    margin-left: 20px;
    margin-right: 10px;
    padding-bottom: 20px;
    font-family: APTOS, sans-serif;
  }

  .birography-details-copy-copy {
    margin-top: 40px;
    margin-left: 60px;
    margin-right: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .slider-details-copy-copy {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
    line-height: 28px;
  }

  .slider-content-copy {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 350px;
    padding-top: 60px;
    display: flex;
  }

  .slider-details-copy-copy {
    font-size: 16px;
    line-height: 28px;
  }

  .slider-image-copy {
    width: 100%;
    height: 100%;
  }

  .birography-details-plot-a-course {
    margin-top: 40px;
    margin-left: 60px;
    margin-right: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .slider-image-new {
    width: 100%;
    height: 100%;
    padding-right: 20px;
  }

  .image-9-copy-copy-copy {
    margin-top: 10px;
  }

  .slider-details-copy-copy {
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
    line-height: 28px;
  }

  .slider-details-copy-copy-copy {
    text-align: center;
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    font-size: 18px;
    line-height: 28px;
  }

  .slider-details-copy-copy-copy-copy {
    text-align: center;
    text-align: center;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
  }

  .slider-image-new-ai, .slider-image-new-unlock-value, .slider-image-new-plot-a-course {
    width: 100%;
    height: 100%;
    padding-right: 20px;
  }

  .image-9-unlock-value {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  li {
    background-position: 0 25%;
  }

  .type-col {
    width: 100%;
  }

  .color-block-parent {
    width: 45%;
  }

  .text-highlight {
    padding: 9px;
  }

  .container {
    margin-top: 0;
  }

  .side-panel {
    padding-bottom: 0;
    padding-right: 35px;
    overflow: auto;
  }

  .another-container {
    padding: 20px 5px;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-dropdown-toggle {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px rgba(0, 0, 0, .05);
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
    position: absolute;
  }

  .nav-menu-two {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-radius: 20px;
    flex-direction: column;
    margin-top: 0;
  }

  .nav-link {
    padding-top: 5px;
    padding-bottom: 5px;
    display: inline-block;
  }

  .logo-image {
    max-width: 80%;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .slider-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    display: flex;
  }

  .slider-content {
    max-width: 400px;
  }

  .slider-image-block {
    align-self: center;
    max-width: 400px;
    position: static;
  }

  .slider-image {
    text-align: center;
    width: 100%;
  }

  .work-proccess-section {
    padding-top: 10px;
  }

  .work-proccess-wrapper {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .single-work-proccess {
    max-width: 100%;
  }

  .about-left-block {
    grid-column-gap: 30px;
    min-width: auto;
    max-width: 100%;
    padding-bottom: 240px;
  }

  .about-first-image-block {
    max-width: 100%;
  }

  .about-second-image-block {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .about-text-block-wrapper {
    justify-content: center;
    max-width: 100%;
    display: flex;
  }

  .services-section.service-page {
    padding-top: 0;
  }

  .section-title-block {
    margin-top: 40px;
  }

  .section-title {
    font-size: 28px;
    line-height: 48px;
  }

  .section-title.testimonial-title {
    font-size: 24px;
    line-height: 32px;
  }

  .service-collection-list {
    grid-template-columns: 1fr;
  }

  .service-inner.service-page {
    padding-top: 0;
  }

  .service-content-block {
    align-self: center;
  }

  .team-collection-wrapper {
    width: 538px;
    padding-top: 40px;
    position: static;
  }

  .single-team {
    height: auto;
    padding-bottom: 0;
  }

  .single-team-name, .single-team-job-title {
    align-self: center;
  }

  .cta-title {
    font-size: 24px;
    line-height: 32px;
  }

  .testimonial-inner {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .blog-collection-list {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .blog-thumbnail-image {
    width: 100%;
  }

  .blog-title {
    font-size: 24px;
  }

  .footer-wrapper {
    grid-column-gap: 30px;
  }

  .footer-title {
    font-size: 20px;
  }

  .breadcrumb-wrapper {
    flex-flow: column;
    height: auto;
    padding-top: 160px;
    padding-bottom: 0;
  }

  .breadcrumb-title {
    font-size: 36px;
    line-height: 48px;
  }

  .breadcrumb-section {
    height: 250px;
    min-height: 250px;
  }

  .counter-wrapper {
    grid-row-gap: 50px;
    flex-wrap: wrap;
  }

  .single-counter {
    width: 50%;
  }

  .choose-wrapper {
    flex-direction: column;
  }

  .choose-image-block {
    max-width: 100%;
  }

  .choose-image {
    width: 100%;
  }

  .choose-content {
    max-width: 100%;
  }

  .tag-share-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-direction: column;
  }

  .single-tag-item {
    margin-left: 10px;
  }

  .course-details-heading {
    font-size: 28px;
    line-height: 32px;
  }

  .course-details-meta {
    grid-column-gap: 10px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
  }

  .course-details-richtext h2 {
    margin-top: 20px;
    font-size: 28px;
    line-height: 32px;
  }

  .course-details-richtext h4 {
    font-size: 24px;
    line-height: 28px;
  }

  .related-heading {
    font-size: 32px;
    line-height: 48px;
  }

  .contact-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    grid-template-columns: 1fr;
  }

  .email-link {
    font-size: 16px;
  }

  .single-contact, .agent-details-content {
    width: 100%;
  }

  .agent-profile {
    width: 75%;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .birography-details {
    padding-left: 10px;
    padding-right: 10px;
  }

  .counter-text-2 {
    font-size: 16px;
  }

  .counter-number-2 {
    font-size: 24px;
  }

  .agent-details-wrapper {
    flex-direction: column;
  }

  .license-inner {
    width: 100%;
  }

  .license-wrapper {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .licenses-title {
    font-size: 24px;
  }

  .changelog-wrapper {
    margin-top: 20px;
  }

  .utility-page-content {
    max-width: 60%;
  }

  .error-text {
    font-size: 16px;
  }

  .error-title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 36px;
  }

  .slider-details-copy {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    font-size: 17px;
  }

  .nav-link-copy {
    padding-top: 5px;
    padding-bottom: 5px;
    display: inline-block;
  }

  .breadcrumb-title-copy {
    margin-bottom: auto;
    font-size: 36px;
    line-height: 48px;
  }

  .agent-thumbnail-copy {
    text-align: center;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }

  .section-title-copy {
    font-size: 28px;
    line-height: 48px;
  }

  .section-title-copy.testimonial-title {
    font-size: 24px;
    line-height: 32px;
  }

  .single-team-image-copy {
    aspect-ratio: auto;
  }

  .paragraph-2 {
    padding-bottom: 0;
  }

  .team-section-copy {
    padding-top: 0;
  }

  .breadcrumb-title-copy {
    font-size: 36px;
    line-height: 48px;
  }

  .image-4 {
    margin-top: 40px;
  }

  .quick-stack-2 {
    grid-row-gap: 40px;
  }

  .image-5 {
    margin-top: 40px;
  }

  .quick-stack-3 {
    grid-row-gap: 35px;
  }

  .bold-text-4 {
    font-size: 18px;
  }

  .birography-details-copy {
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .slider-details-copy-copy {
    margin-top: 0;
    font-size: 17px;
  }

  .birography-details-copy-copy {
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 16px;
  }

  .slider-details-copy-copy {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    font-size: 17px;
  }

  .slider-content-copy {
    max-width: 400px;
  }

  .image-10, .image-10-copy {
    margin-bottom: 5px;
  }

  .slider-image-copy {
    text-align: center;
    width: 100%;
  }

  .birography-details-plot-a-course {
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 16px;
  }

  .slider-image-new {
    text-align: center;
    width: 100%;
  }

  .slider-details-copy-copy {
    text-align: center;
    margin-top: 10px;
    padding-left: 0;
    padding-right: 0;
    font-size: 17px;
  }

  .slider-details-copy-copy-copy {
    text-align: center;
    margin-top: 15px;
    padding-left: 0;
    padding-right: 0;
    font-size: 17px;
  }

  .slider-details-copy-copy-copy-copy {
    margin-top: 0;
    font-size: 17px;
  }

  .slider-image-new-ai, .slider-image-new-unlock-value, .slider-image-new-plot-a-course {
    text-align: center;
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .light-section {
    margin-top: 0;
  }

  .type-col {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .button-primary {
    align-self: center;
    padding: 15px 10px;
  }

  .button-primary.course-button {
    padding-left: 40px;
    padding-right: 40px;
  }

  .button-primary.contact-button {
    margin-top: 40px;
  }

  .color-block-parent {
    width: 90%;
    margin-right: 3%;
  }

  .praimary-color {
    width: 100%;
    height: 55px;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .text-highlight {
    width: 50%;
    padding: 20px 10px;
  }

  .container {
    margin-top: 0;
    padding-top: 20px;
  }

  .side-panel {
    flex-flow: column wrap;
    padding-left: 0;
    padding-right: 0;
  }

  .guide-block {
    width: 50%;
  }

  .color-row {
    flex-direction: row;
  }

  .type-row {
    flex-direction: column;
  }

  .another-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .nav-menu-two {
    flex-direction: column;
  }

  .logo-image {
    max-width: 70%;
  }

  .slider-wrapper {
    padding-top: 130px;
    padding-bottom: 10px;
  }

  .slider-content {
    text-align: center;
    align-items: center;
    max-width: 300px;
  }

  .slider-heading {
    font-size: 36px;
    line-height: 48px;
  }

  .slider-image {
    width: 100%;
  }

  .work-proccess-section {
    padding-top: 0;
  }

  .work-proccess-title {
    font-size: 16px;
  }

  .about-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-left-block {
    grid-column-gap: 20px;
  }

  .about-title {
    font-size: 35px;
    line-height: 42px;
  }

  .services-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-title {
    font-size: 24px;
    line-height: 36px;
  }

  .section-subtitle {
    margin-bottom: 10px;
  }

  .service-inner.service-page {
    padding-top: 0;
  }

  .visa-assessment-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .visa-assessment-wrapper, .visa-assessment-right-side {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .visa-assessment-counter-wrapper {
    max-width: 150px;
    max-height: 160px;
    padding: 20px;
  }

  .progress-bar {
    width: 80px;
    height: 80px;
  }

  .counter-number-text {
    font-size: 20px;
    line-height: 28px;
  }

  .visa-assessment-top-block {
    padding: 25px 20px 30px;
  }

  .visa-assessment-bottom-block {
    padding: 20px;
  }

  .visa-assessment-title {
    font-size: 24px;
    line-height: 36px;
  }

  .live-video-block {
    width: 55px;
    height: 55px;
  }

  .live-video-block-inner {
    width: 45px;
    height: 45px;
  }

  .team-section {
    margin-top: 0;
    padding-top: 0;
  }

  .team-collection-list {
    grid-row-gap: 30px;
    grid-template-rows: 341px auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .team-collection-item {
    display: block;
  }

  .single-team {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    align-items: center;
    width: 400px;
    height: auto;
    padding-top: 35px;
    padding-bottom: 35px;
    position: relative;
  }

  .single-team-image {
    width: auto;
    min-width: auto;
    max-width: 275px;
    height: auto;
    min-height: auto;
  }

  .single-team-content {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .single-team-name {
    align-self: center;
    font-size: 16px;
  }

  .single-team-job-title {
    text-align: left;
    align-self: center;
    font-size: 14px;
  }

  .course-section {
    padding-top: 60px;
  }

  .course-section.category-page {
    padding-bottom: 74px;
  }

  .cta-section {
    margin-top: 6px;
  }

  .cta-button-block {
    max-width: 160px;
  }

  .button-link-block {
    min-height: 50px;
  }

  .testimonial-section {
    padding-bottom: 50px;
  }

  .testimonial-container {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .slider-arrow.arrow-right {
    width: 30px;
    height: 30px;
    bottom: -193px;
  }

  .slider-arrow.arrow-left {
    width: 30px;
    height: 30px;
    bottom: -193px;
    right: -65%;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .testimonial-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .client-testimonial-slider {
    padding-bottom: 5px;
  }

  .slider-icon {
    font-size: 14px;
  }

  .blog-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-collection-list {
    grid-row-gap: 40px;
  }

  .single-blog-wrapper {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .blog-date-block {
    max-width: 55px;
    left: 15px;
  }

  .blog-date {
    max-width: 40px;
    font-size: 16px;
    line-height: 24px;
  }

  .blog-content-wrapper {
    padding-left: 15px;
    padding-right: 10px;
  }

  .blog-title, .blog-summary {
    font-size: 18px;
  }

  .footer-content-block {
    padding-top: 46px;
    padding-bottom: 60px;
  }

  .footer-contact-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .single-content-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .content-icon-block {
    width: 51px;
    height: 51px;
  }

  .icon-inner {
    width: 40px;
    height: 40px;
  }

  .content-link {
    font-size: 20px;
    line-height: 25px;
  }

  .footer-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
  }

  .breadcrumb-link-block {
    grid-column-gap: 10px;
    grid-row-gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 15px;
  }

  .breadcrumb-wrapper {
    padding-top: 140px;
    padding-bottom: 20px;
  }

  .breadcrumb-title {
    font-size: 32px;
    line-height: 42px;
  }

  .breadcrumb-section {
    height: auto;
  }

  .counter-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .counter-wrapper {
    grid-row-gap: 30px;
  }

  .single-counter {
    width: 100%;
  }

  .service-details-section {
    padding-top: 60px;
    padding-bottom: 74px;
  }

  .service-page-sidebar {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .download-title {
    font-size: 20px;
  }

  .single-download {
    padding-top: 15px;
  }

  .download-text {
    font-size: 16px;
  }

  .single-service-sidebar-thumbnail-content {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .emergency-number {
    font-size: 22px;
  }

  .service-details-title {
    font-size: 28px;
  }

  .service-details-summary-two, .choose-block {
    margin-top: 30px;
  }

  .choose-title {
    font-size: 28px;
  }

  .choose-wrapper {
    margin-top: 30px;
  }

  .single-reason {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-items: flex-start;
  }

  .choose-icon-inner {
    margin-top: 10px;
  }

  .faq-container {
    grid-row-gap: 20px;
  }

  .faq-body-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .analyzing-title-block {
    flex-direction: column;
  }

  .analyzing-default-title {
    font-size: 28px;
    line-height: 28px;
  }

  .analyzing-title {
    font-size: 28px;
  }

  .blog-page-section, .blog-details-page {
    padding-top: 60px;
    padding-bottom: 74px;
  }

  .blog-ricetext h2, .blog-ricetext h4 {
    font-size: 24px;
    line-height: 32px;
  }

  .tag-share-wrapper {
    flex-direction: column;
  }

  .single-tag-item-list {
    grid-column-gap: 3px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .tag-side {
    align-items: flex-start;
    margin-bottom: 0;
  }

  .single-tag-item {
    margin-left: 5px;
  }

  .category-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .single-sidebar-blog-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sidebar-title {
    font-size: 24px;
    line-height: 24px;
  }

  .sidebar-title-shape {
    left: -20px;
  }

  .course-details-section {
    padding-top: 60px;
    padding-bottom: 74px;
  }

  .course-details-heading {
    font-size: 24px;
    line-height: 32px;
  }

  .course-details-meta-block {
    grid-column-gap: 15px;
  }

  .course-details-richtext h2 {
    font-size: 24px;
    line-height: 28px;
  }

  .course-details-richtext p {
    font-size: 18px;
    line-height: 30px;
  }

  .course-details-richtext h4 {
    font-size: 20px;
  }

  .related-heading {
    font-size: 24px;
    line-height: 32px;
  }

  .course-page-section {
    padding-top: 60px;
    padding-bottom: 74px;
  }

  .map-wrapper {
    max-height: 300px;
  }

  .contact-wrapper {
    margin-top: 60px;
    margin-bottom: 74px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .single-contact {
    width: 100%;
  }

  .contact-title {
    font-size: 20px;
  }

  .contact-section {
    padding-top: 60px;
    padding-bottom: 74px;
  }

  .contact-number {
    font-size: 18px;
  }

  .agent-achievement {
    margin-top: 40px;
  }

  .agent-profile {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .birography-title {
    font-size: 20px;
  }

  .birography-details {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
  }

  .single-counter-2 {
    margin-right: 20px;
  }

  .counter-wrap {
    flex-wrap: wrap;
  }

  .overview-heading, .section-color-shape {
    font-size: 20px;
  }

  .counter-text-2 {
    font-size: 15px;
  }

  .counter-number-2 {
    font-size: 20px;
  }

  .team-page-section {
    padding-top: 60px;
  }

  .agent-message {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .button-primary-2 {
    align-self: flex-start;
    padding: 15px 25px;
  }

  .agent-message-heading {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
  }

  .property-amenities-list {
    margin-bottom: -20px;
  }

  .form-field {
    width: 100%;
  }

  .property-single-amenities {
    margin-bottom: 20px;
  }

  .agent-contact-section {
    padding-bottom: 60px;
  }

  .property-amenities-title {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 32px;
  }

  .license-single-item {
    padding: 20px;
  }

  .licenses-title {
    font-size: 20px;
  }

  .license-section, .changelog-section {
    padding-top: 60px;
    padding-bottom: 74px;
  }

  .released-date {
    margin-left: 10px;
    font-size: 16px;
  }

  .bold-text-2 {
    font-size: 16px;
  }

  .utility-page-content {
    max-width: 90%;
  }

  .utility-page-content.error-page {
    max-width: 100%;
    padding: 60px 15px 74px;
  }

  .search-section {
    padding-top: 60px;
    padding-bottom: 74px;
  }

  .error-title {
    font-size: 32px;
  }

  .error-image {
    max-width: 100%;
  }

  .faq-section {
    padding-top: 60px;
    padding-bottom: 74px;
  }

  .work-proccess-title-copy {
    font-size: 16px;
  }

  .slider-heading-copy {
    font-size: 36px;
    line-height: 48px;
  }

  .slider-details-copy {
    text-align: center;
    margin-top: 10px;
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
  }

  .single-team-content-copy {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .birography-title-copy {
    font-size: 20px;
  }

  .section-title-copy {
    font-size: 24px;
    line-height: 36px;
  }

  .single-team-image-copy {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    height: 350px;
    min-height: 350px;
    max-height: 350px;
  }

  .paragraph-2 {
    padding-bottom: 0;
  }

  .team-section-copy {
    padding-top: 0;
  }

  .contact-section-copy {
    padding-top: 60px;
    padding-bottom: 74px;
  }

  .breadcrumb-title-copy {
    font-size: 32px;
    line-height: 42px;
  }

  .text-block-3, .cell-2 {
    font-family: APTOS, sans-serif;
  }

  .text-block-4 {
    font-size: 16px;
    font-weight: 400;
  }

  .image-4 {
    margin-top: 40px;
  }

  .quick-stack-2 {
    grid-row-gap: 32px;
  }

  .image-5 {
    margin-top: 40px;
  }

  .quick-stack-3 {
    grid-row-gap: 18px;
    padding-left: 0;
    padding-right: 8px;
  }

  .image-7, .image-8 {
    margin-top: 20px;
  }

  .bold-text-3 {
    overflow-wrap: normal;
    font-size: 14px;
  }

  .bold-text-4 {
    font-size: 14px;
  }

  .birography-details-copy {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
  }

  .heading-5-copy {
    margin-right: 20px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 48px;
  }

  .birography-details-copy-copy {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
  }

  .column {
    padding-left: 0;
  }

  .column-2 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .slider-details-copy-copy {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
  }

  .slider-content-copy {
    text-align: center;
    align-items: center;
    max-width: 300px;
  }

  .image-10, .image-10-copy {
    margin-bottom: 10px;
  }

  .slider-image-copy {
    width: 100%;
  }

  .birography-details-plot-a-course {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
  }

  .slider-image-new {
    width: 100%;
  }

  .slider-details-copy-copy, .slider-details-copy-copy-copy {
    text-align: center;
    margin-top: 10px;
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
  }

  .slider-image-new-ai, .slider-image-new-unlock-value, .slider-image-new-plot-a-course {
    width: 100%;
  }
}

#w-node-_9a698623-baa6-6da2-95c5-f7242ee28c02-e7fa58ac, #Textarea.w-node-f41bcd60-2489-fccb-0b45-bd5d59fb01b4-e7fa58b4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f1234734-8b08-46c9-b416-c2fddb811e65-e7fa58b6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6fb66b96-d1b3-8fab-256b-8e8c8df70e33-e7fa58b8 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_6767ddf1-0212-3476-6957-9c1ea9d6e418-46b875eb, #w-node-fb53b4c1-6b2c-6536-13d4-2e269c67a903-ca217055 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

@media screen and (min-width: 1920px) {
  #w-node-fb53b4c1-6b2c-6536-13d4-2e269c67a903-ca217055 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1.25fr;
  }
}

@media screen and (min-width: 1440px) {
  #w-node-_197a6657-12ba-f43e-7997-9fce165df1d6-ca217055 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_6fb66b96-d1b3-8fab-256b-8e8c8df70e33-e7fa58b8 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_6767ddf1-0212-3476-6957-9c1ea9d6e418-46b875eb, #w-node-fb53b4c1-6b2c-6536-13d4-2e269c67a903-ca217055 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_9a698623-baa6-6da2-95c5-f7242ee28bfc-e7fa58ac, #Email.w-node-_9a698623-baa6-6da2-95c5-f7242ee28c01-e7fa58ac, #First-Name-3.w-node-f41bcd60-2489-fccb-0b45-bd5d59fb01b0-e7fa58b4, #Last-Name.w-node-f41bcd60-2489-fccb-0b45-bd5d59fb01b1-e7fa58b4, #Phone-3.w-node-f41bcd60-2489-fccb-0b45-bd5d59fb01b2-e7fa58b4, #Email-5.w-node-f41bcd60-2489-fccb-0b45-bd5d59fb01b3-e7fa58b4, #w-node-f41bcd60-2489-fccb-0b45-bd5d59fb01b5-e7fa58b4 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_6fb66b96-d1b3-8fab-256b-8e8c8df70e33-e7fa58b8 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_6767ddf1-0212-3476-6957-9c1ea9d6e418-46b875eb, #w-node-fb53b4c1-6b2c-6536-13d4-2e269c67a903-ca217055 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'APTOS';
  src: url('../fonts/27160079615.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}