@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

ol,
ul {
  list-style: none;
}

img,
svg,
video,
canvas,
picture {
  display: block;
  max-width: 100%;
}

input,
button,
select,
textarea {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span {
  overflow-wrap: break-word;
}

* {
  font-family: "Raleway";
}

.container {
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
}

.core {
  text-align: center;
  padding: 6em 0 3em 0;
  background-color: #f9f9f8;
}

.core__title {
  font-size: 0.85rem;
  margin-bottom: 2.6rem;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 2px;
  color: #323232;
}
.core__title::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100px;
  left: 50%;
  bottom: -20px;
  background-color: black;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.core__subtitle {
  font-weight: 700;
  color: #323232;
  font-size: 2.5rem;
  margin-bottom: 1.3rem;
}

.core__text {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 2rem;
  color: #323232;
  font-weight: 300;
}

.btn {
  border: 0;
  border-radius: 0;
  font-size: 1.05em;
  font-weight: 500;
  padding: 9px 20px;
  -webkit-transition: background-color 0.15s linear;
  transition: background-color 0.15s linear;
  background-color: #007d94;
  color: white;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn:hover {
  background-color: #007085;
}

.lux {
  height: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 850px) {
  .lux {
    height: 550px;
  }
}

.lux__body {
  width: 370px;
  background-color: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 32px;
  text-align: right;
}
@media (max-width: 850px) {
  .lux__body {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.lux__btn {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media (max-width: 850px) {
  .lux__btn {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

.lux__title {
  font-weight: 600;
  margin-bottom: 1.3rem;
  color: white;
  font-size: 2rem;
}

.lux__text {
  font-size: 1.1rem;
  line-height: 26px;
  margin: 0 0 20px;
  color: white;
}

.feat {
  padding: 3rem 30px 0 30px;
  background-color: #f9f9f8;
}
@media (max-width: 850px) {
  .feat {
    padding: 3rem 15px 0 15px;
  }
}

.feat__title {
  font-weight: 600;
  margin-bottom: 3rem;
  line-height: 1.1;
  font-size: 2rem;
  color: #323232;
  text-align: center;
}

.feat__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 850px) {
  .feat__items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 425px) {
  .feat__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.feat .item {
  padding: 175px 0;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: rgba(249, 249, 248, 0);
}
@media (max-width: 425px) {
  .feat .item {
    padding: 90px 0;
  }
}
.feat .item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.feat .item:hover::after {
  opacity: 1;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.feat .item__title {
  text-align: center;
  font-weight: 600;
  text-shadow: 1px 1px 1px #444;
  position: relative;
  z-index: 1;
  line-height: 1.1;
  color: white;
  font-size: 1.75rem;
}

.areas {
  padding: 3em 0;
}

.areas__title {
  font-weight: 300;
  text-align: center;
  font-size: 2.2em;
  color: #323232;
  margin-bottom: 0.5rem;
}

.areas__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
}

.areas__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
.areas__item a {
  font-size: 0.85rem;
  font-weight: 300;
  color: #007d94;
  text-decoration: none;
}
.areas__item a:hover {
  text-decoration: underline;
}

.areas__show {
  font-size: 0.85rem;
  font-weight: 300;
  color: #007d94;
  text-align: center;
  cursor: pointer;
}
.areas__show:hover {
  text-decoration: underline;
}

.areas.more .more {
  display: none;
}

.areas .less {
  display: none;
}

.areas.more .less {
  display: block;
}

.areas__items_more {
  display: none;
}

.areas.more .areas__items_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.first {
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .first {
    height: 750px;
  }
}
.first__body {
  text-align: center;
}

.first__title {
  font-weight: 500;
  margin: 0 0 10px;
  color: #fff;
  font-size: 3em;
}

.line {
  background-color: #007d94;
  background-image: -webkit-gradient(linear, left top, right top, from(#00677b), to(#0093ae));
  background-image: linear-gradient(90deg, #00677b, #0093ae);
  padding: 20px 0;
}

.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-transition: 0.15s background-color linear;
  transition: 0.15s background-color linear;
}

.header .container {
  max-width: 1440px;
}

.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__burger {
  display: none;
}

.header__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px;
  width: 22px;
  display: none;
  border: 1px solid white;
  padding: 8px;
  cursor: pointer;
}
@media (max-width: 990px) {
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__burger span {
  width: 100%;
  height: 1px;
  background-color: white;
}

.header__logo {
  max-width: 175px;
}

@media (max-width: 990px) {
  .header__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
  }
}

.header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media (max-width: 990px) {
  .header__menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.header__menu ul a {
  font-size: 0.9em;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.15s linear;
  transition: color 0.15s linear;
}
.header__menu ul a:hover {
  color: #007d94 !important;
}
@media (max-width: 990px) {
  .header__menu ul a {
    color: #323232;
  }
}

@media (max-width: 990px) {
  .header__menu ul li {
    padding: 10px 15px;
  }
}

.header.scroll, body.pad .header {
  background-color: white;
}

.header.scroll .header__menu ul a, body.pad .header__menu ul a {
  color: #323232;
}

.header.scroll .header__burger, body.pad .header__burger {
  border-color: #323232;
}

.header.scroll .header__burger span, body.pad .header__burger span {
  background-color: #323232;
}

.footer__top {
  background-color: #1a1a1a;
  padding: 3em 0;
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header__login {
  font-size: 0.9em;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.15s linear;
  transition: color 0.15s linear;
}
.header__login:hover {
  text-decoration: underline;
}

.header.scroll .header__login, body.pad .header__login {
  color: #323232;
}

.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__left {
  width: 50%;
}
@media (max-width: 768px) {
  .footer__left {
    width: 100%;
    text-align: center;
  }
}

.footer__right {
  width: 50%;
}
@media (max-width: 768px) {
  .footer__right {
    width: 100%;
  }
}

.footer__title {
  font-weight: 400;
  margin: 0 0 8px;
  font-size: 1.5em;
  color: white;
}

.footer__contacts a {
  font-size: 0.85rem;
  font-weight: 300;
  color: white;
  text-decoration: none;
}
.footer__contacts a:hover {
  text-decoration: underline;
}

.footer__contacts {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}

.footer__support {
  font-size: 11px;
  line-height: 26px;
  color: hsla(0, 0%, 100%, 0.6);
}
.footer__support a {
  font-weight: 700;
  color: white;
  text-decoration: none;
}
.footer__support a:hover {
  text-decoration: underline;
}

.footer__disclaimer {
  font-weight: 400;
  margin: 0 0 8px;
  font-size: 1.5em;
  color: white;
}
@media (max-width: 768px) {
  .footer__disclaimer {
    text-align: center;
  }
}

.footer__text {
  color: #b1b1b1;
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 20px;
}

.footer__copy {
  color: white;
  font-size: 14px;
  line-height: 26px;
}

.footer__bottom {
  padding: 25px 0;
  background-color: black;
}

.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__link {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}
.footer__link:hover {
  text-decoration: underline;
}

.footer__menu span {
  color: hsla(0, 0%, 100%, 0.4);
}

.banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}

.banner__title {
  color: #ffffff;
  font-size: 23px;
  font-weight: 700;
}

body.pad {
  padding-top: 114px;
}

.max {
  padding: 60px 0;
}

.max__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .max__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.max__left {
  position: relative;
  width: 50%;
}
@media (max-width: 768px) {
  .max__left {
    height: 300px;
    width: 100%;
  }
}
.max__left img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.max__right {
  width: 50%;
}
@media (max-width: 768px) {
  .max__right {
    width: 100%;
  }
}

.max__title {
  color: #2f4950;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.max__text {
  font-size: 1.05em;
  line-height: 26px;
  color: #6d6d6d;
  margin-bottom: 30px;
}

.btn-brown {
  color: #ffffff;
  word-break: break-word;
  font-size: 14px;
  padding: 10px 20px;
  background-color: #ba9472;
  display: inline-block;
  text-decoration: none;
}

.info__title {
  font-size: 23px;
  color: #555555;
  font-weight: 700;
  margin-bottom: 20px;
}

.info__text {
  font-size: 1.05em;
  margin-bottom: 20px;
  font-family: "Arimo";
}

.info__img {
  width: 100%;
}

.info {
  margin-bottom: 20px;
}

.join__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 1024px) {
  .join__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.join__left {
  width: 50%;
}
@media (max-width: 1024px) {
  .join__left {
    width: 100%;
    height: 300px;
  }
}

.join__right {
  width: 50%;
  padding: 60px 0;
}
@media (max-width: 1024px) {
  .join__right {
    width: 100%;
    padding: 30px 0;
  }
}

.join {
  margin-bottom: 10px;
}

.join__title {
  font-size: 30px;
  color: #555555;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "Arimo";
}

.join__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 1024px) {
  .join__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.join__label {
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.join__input input {
  background-color: #ffffff;
  border-bottom: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
  border-radius: 4px;
  border-right: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
  color: #000000;
  padding: 15px 15px 15px 20px;
}

.join__btn {
  margin-top: 40px;
  cursor: pointer;
}

.title {
  background-image: -webkit-gradient(linear, left top, right top, from(#00677b), to(#0093ae));
  background-image: linear-gradient(90deg, #00677b, #0093ae);
  padding: 44px 0;
}

.title__title {
  color: #fff;
  font-size: 2em;
  font-weight: 300;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.header__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.contact {
  padding: 80px 0 60px 0;
  background-color: #f9f9f8;
}

.contact__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .contact__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact__right {
  width: 250px;
}
@media (max-width: 768px) {
  .contact__right {
    width: 100%;
  }
}

.contact__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form {
  padding: 50px 15px;
  background-color: white;
}

.form__title {
  margin-bottom: 0.5rem;
  font-weight: 300;
  color: rgb(50, 50, 50);
  font-size: 28px;
  text-align: center;
}

.form__label {
  color: #666;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.form__input input {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #323232;
  font-size: 14px;
  width: calc(100% - 24px);
  padding: 10px 12px;
}

.form__field {
  margin-bottom: 20px;
}

.form__checbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.form__checbox .form__label {
  margin-bottom: 0;
}

.form__checbox input {
  width: 24px;
  height: 24px;
}

.form__btn {
  margin-top: 30px;
  cursor: pointer;
}

.form__text {
  font-size: 11px;
  margin: 0 0 10px 0;
  line-height: 26px;
  font-weight: 300;
}

.contact__title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 20px;
  margin: 0 0 30px;
  text-align: center;
  color: #323232;
}

.contact__items {
  padding: 10px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.contact__name {
  color: #323232;
  font-size: 13px;
  font-weight: 700;
}

.contact__value {
  color: rgb(50, 50, 50);
  font-weight: 300;
  font-size: 13px;
  text-decoration: none;
}

.acc {
  background-color: #f9f9f8;
  padding: 15px 0 60px 0;
}

.acc__body {
  padding: 20px 30px;
  background-color: white;
}

.acc__top {
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  line-height: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(234, 234, 234);
  color: rgb(50, 50, 50);
}

.acc__bottom {
  padding-top: 20px;
  font-size: 14px;
  color: rgb(50, 50, 50);
  text-align: center;
}

.fair {
  background-color: #f9f9f8;
  padding: 50px 0;
}

.fair__text {
  font-size: 14px;
  font-weight: 300;
  color: rgb(50, 50, 50);
  line-height: 26px;
}

.privacy {
  background-color: #f9f9f8;
  padding: 50px 0;
}

.privacy__text {
  font-size: 14px;
  color: #323232;
  font-weight: 300;
}

.privacy__text p {
  margin-bottom: 20px;
  line-height: 26px;
}

.privacy__text h2 {
  font-size: 16px;
  color: #323232;
  font-weight: 700;
  margin-bottom: 15px;
}

.login {
  background-color: #f9f9f8;
}

.login .form {
  max-width: 650px;
  background-color: #f9f9f8;
}

.login .form__title {
  text-align: left;
  margin-bottom: 50px;
}

.login .form__btn {
  background-color: #373737;
  padding: 20px 90px;
}

.agents {
  padding: 50px 0;
  background-color: #f9f9f8;
}

.agents__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .agents__items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .agents__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.agents .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.agents .item__left {
  position: relative;
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-left: 7px solid #ccc;
}
@media (max-width: 768px) {
  .agents .item__left {
    width: 50%;
  }
}

.agents .item__left img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.agents .item__name {
  font-size: 25px;
  font-weight: 500;
  color: #333a56;
  text-decoration: none;
}
.agents .item__name:hover {
  text-decoration: underline;
}

.agents .item__phone {
  font-size: 12px;
  line-height: 1.3;
  text-decoration: underline;
  color: #333a56;
}

.agents .item__mail {
  font-size: 12px;
  line-height: 1.3;
  text-decoration: underline;
  color: #333a56;
}

.agents .item__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .agents .item__right {
    width: 50%;
  }
}

.agents__pag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}

.agents__pag a, .agents__pag span {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #BFBFBF;
  color: rgb(51, 58, 86);
  text-decoration: none;
}

.agents__pag span {
  border-color: black;
  color: black;
}

.agent {
  padding: 50px 0;
  background-color: #f9f9f8;
}

.agent__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 1024px) {
  .agent__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.agent__left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  .agent__left {
    width: 100%;
  }
}

.agent__right {
  width: 50%;
}
@media (max-width: 1024px) {
  .agent__right {
    width: 100%;
  }
}

.agent__name {
  font-size: 30px;
  font-weight: 500;
  color: #333a56;
  text-transform: uppercase;
}

.agent__phone, .agent__email {
  color: #333a56;
  font-size: 14px;
  text-decoration: none;
}
.agent__phone:hover, .agent__email:hover {
  text-decoration: underline;
}

.agent__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.agent__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .agent__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.agent__input input {
  padding: 15px 20px;
  border: solid 1px #333;
  background-color: #fff;
  font-size: 14px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.agent__input textarea {
  padding: 15px 20px;
  border: solid 1px #333;
  background-color: #fff;
  font-size: 14px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.agent__input {
  width: 100%;
}

.agent__btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.agent__checkbox input {
  margin-right: 5px;
}

.agent__checkbox label {
  color: #666;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
}

.agent__btn {
  background-color: rgb(51, 58, 86);
}
.agent__btn:hover {
  background-color: rgb(51, 58, 86);
}

.current-menu-item a {
  color: #007d94 !important;
}

.loading {
    position: relative;
}

.loading::before {
    content: "";
    position: absolute;
    z-index: 100000;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(40%, #eeeeee), color-stop(50%, #dddddd), color-stop(60%, #eeeeee));
    background: linear-gradient(to bottom right, #eeeeee 40%, #dddddd 50%, #eeeeee 60%);
    background-size: 200% 200%;
    background-repeat: no-repeat;
    -webkit-animation: placeholderShimmer 2s infinite linear;
    animation: placeholderShimmer 2s infinite linear;
    height: 100%;
    width: 100%;
    opacity: 0.6;
}

@-webkit-keyframes placeholderShimmer {
    0% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0 0;
    }
}

@keyframes placeholderShimmer {
    0% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0 0;
    }
}

.agents .item__right p a {
	font-size: 12px;
	color: #333a56;
}

.agent .agent__left p a {
	color: #333a56;
	text-decoration: none;
}

.first__searcch {
	margin-bottom: 20px;
}

.first::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.2;
}

.first {
	position: relative;
}

.first .container {
	position: relative;
}