@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Roboto: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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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: "Roboto";
}

.container {
  padding: 0 40px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header .container {
  padding: 0 50px;
}
@media (max-width: 768px) {
  .header .container {
    padding: 0 20px;
  }
}
.header__top {
  background-color: rgb(37, 81, 98);
  padding: 18px 0;
  position: relative;
}
.header__bottom {
  padding: 10px 0;
  background-color: white;
}
.header__bottom .container {
  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;
  gap: 20px;
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 100px;
  }
}
.header__menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.header__menu > ul > li {
  position: relative;
}
.header__menu > ul > li > a {
  font-size: 16px;
  color: #255162;
  text-decoration: none;
  font-weight: 700;
}
.header__menu > ul > li > a:hover {
  color: #132831;
}
.header__menu > ul > li:hover .sub-menu {
  display: block;
}
.header__menu > ul > li.current-menu-item > a {
  color: #132831;
}
.header__menu > ul .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 10px;
  display: none;
}
.header__menu > ul .sub-menu li {
  background-color: rgb(19, 40, 49);
  padding: 5px 20px 5px 20px;
  border-left: 1px solid rgb(6, 73, 77);
  border-right: 1px solid rgb(6, 73, 77);
}
.header__menu > ul .sub-menu li:first-child {
  padding-top: 20px;
  border-top: 1px solid rgb(6, 73, 77);
}
.header__menu > ul .sub-menu li:last-child {
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(6, 73, 77);
}
.header__menu > ul .sub-menu li a {
  text-wrap: nowrap;
  color: #7EA7B7;
  font-size: 15px;
  text-decoration: none;
}
.header__menu > ul .sub-menu li a:hover {
  color: white;
}
@media (max-width: 1100px) {
  .header__menu {
    display: none;
  }
}
.header__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
  background-color: rgb(56, 121, 147);
  gap: 5px;
  padding: 7px 15px;
  font-size: 15px;
  color: white;
  font-weight: 700;
  text-decoration: none;
}
.header__phone:hover {
  background-color: #AB9362;
  color: black;
}
.header__phone img {
  width: 18px;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(19deg) brightness(103%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(19deg) brightness(103%) contrast(101%);
}
@media (max-width: 768px) {
  .header__phone {
    background-color: transparent !important;
  }
  .header__phone span {
    display: none;
  }
  .header__phone img {
    -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(95%) saturate(30%) hue-rotate(267deg) brightness(104%) contrast(100%);
            filter: brightness(0) saturate(100%) invert(0%) sepia(95%) saturate(30%) hue-rotate(267deg) brightness(104%) contrast(100%);
  }
}
.header__burger {
  display: none;
  cursor: pointer;
  width: 26px;
}
@media (max-width: 1100px) {
  .header__burger {
    display: block;
  }
}
.header .m-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: none;
}
.header .m-menu__close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  cursor: pointer;
}
.header .m-menu__close:hover {
  background-color: #255162;
}
.header .m-menu__close:hover img {
  rotate: 90deg;
}
.header .m-menu__close img {
  -webkit-transition: rotate 0.3s linear;
  transition: rotate 0.3s linear;
  width: 13px;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(572%) hue-rotate(220deg) brightness(116%) contrast(100%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(572%) hue-rotate(220deg) brightness(116%) contrast(100%);
}
.header .m-menu__menu {
  width: 100%;
  padding: 60px 30px 30px 30px;
}
.header .m-menu__menu > ul > li {
  padding: 10px;
  text-align: center;
  background-color: rgb(11, 40, 50);
  border-bottom: 1px solid rgb(126, 167, 183);
  position: relative;
}
.header .m-menu__menu > ul > li > a {
  font-size: 20px;
  color: #7ea7b7;
  text-decoration: none;
  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;
  display: flex;
}
.header .m-menu__menu > ul > li > a > span {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.header .m-menu__menu > ul > li > a > img {
  position: absolute;
  top: 20px;
  right: 10px;
  width: 12px;
  -webkit-filter: brightness(0) saturate(100%) invert(68%) sepia(25%) saturate(370%) hue-rotate(151deg) brightness(89%) contrast(94%);
          filter: brightness(0) saturate(100%) invert(68%) sepia(25%) saturate(370%) hue-rotate(151deg) brightness(89%) contrast(94%);
}
.header .m-menu__menu > ul > li.open {
  padding: 10px 0 0 0;
}
.header .m-menu__menu > ul > li.open > a > img {
  rotate: 180deg;
}
.header .m-menu__menu > ul > li.open .sub-menu {
  display: block;
}
.header .m-menu__menu > ul > li .sub-menu {
  padding-top: 10px;
  display: none;
}
.header .m-menu__menu > ul > li .sub-menu > li {
  padding: 10px;
  background-color: #29424b;
}
.header .m-menu__menu > ul > li .sub-menu > li > a {
  font-size: 15px;
  color: white;
  text-decoration: none;
}
.header .m-menu__menu > ul > li .sub-menu > li > a:hover {
  color: rgb(126, 167, 183);
}
.header.open .m-menu {
  display: block;
}

.lg {
  width: 110px;
  border-radius: 9px;
  border: 1px solid rgba(56, 121, 147, 0.36);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  position: absolute;
  left: 50px;
  top: 5px;
}
@media (max-width: 768px) {
  .lg {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.lg__item {
  color: rgb(37, 81, 98);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-family: sans-serif;
  padding: 5px 14px;
  display: none;
  background-color: rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid white;
}
.lg__item:last-child {
  border-bottom: none;
}
.lg__item:hover {
  background-color: rgb(201, 179, 126);
  color: white;
}
.lg.open .lg__item {
  display: block;
}
.lg__current {
  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;
  cursor: pointer;
  padding: 5px 14px;
  background-color: rgba(255, 255, 255, 0.22);
}
.lg__current:hover {
  background-color: rgb(37, 81, 98);
}
.lg__current:hover span {
  color: #eed39b;
}
.lg__current:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(80%) sepia(28%) saturate(364%) hue-rotate(2deg) brightness(100%) contrast(96%);
          filter: brightness(0) saturate(100%) invert(80%) sepia(28%) saturate(364%) hue-rotate(2deg) brightness(100%) contrast(96%);
}
.lg__current span {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-family: sans-serif;
}
.lg__current img {
  width: 12px;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(164%) hue-rotate(14deg) brightness(116%) contrast(88%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(164%) hue-rotate(14deg) brightness(116%) contrast(88%);
}
.lg.open .lg__current {
  background-color: rgb(201, 179, 126);
  border-bottom: 1px solid white;
}
.lg.open .lg__current span {
  color: white;
}
.lg.open .lg__current img {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(164%) hue-rotate(14deg) brightness(116%) contrast(88%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(164%) hue-rotate(14deg) brightness(116%) contrast(88%);
}

.wrapper {
  margin-top: 157px;
}
@media (max-width: 768px) {
  .wrapper {
    margin-top: 121px;
  }
}

.sub {
  background-color: rgb(11, 40, 50);
  padding: 24px 0;
}
@media (max-width: 768px) {
  .sub {
    padding: 40px 0;
  }
}
.sub .container {
  padding: 0 200px;
}
@media (max-width: 1024px) {
  .sub .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .sub .container {
    padding: 0 20px;
  }
}
.sub__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;
  gap: 50px;
}
@media (max-width: 768px) {
  .sub__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.sub__title {
  font-size: 33px;
  color: #7EA7B7;
  font-family: "Cinzel";
}
@media (max-width: 1024px) {
  .sub__title {
    font-size: 20px;
  }
}
.sub__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 15px;
  width: 50%;
}
@media (max-width: 768px) {
  .sub__form {
    width: 100%;
  }
}
.sub__input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.sub__input label {
  font-size: 12px;
  color: rgb(126, 167, 183);
}
.sub__input input {
  padding: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background-color: transparent;
  color: white;
}
.sub__input input:hover {
  border-bottom: 1px solid rgb(255, 255, 255);
}
.sub__btn {
  font-size: 16px;
  color: rgb(184, 155, 99);
  border: 1px solid rgb(184, 155, 99);
  background-color: transparent;
  padding: 11px 40px;
  border-radius: 100px;
  cursor: pointer;
}
.sub__btn:hover {
  background-color: rgb(184, 155, 99);
  color: rgb(11, 40, 50);
}
@media (max-width: 768px) {
  .sub__btn {
    padding: 11px 15px;
  }
}

.copyright {
  background-color: rgb(11, 40, 50);
  padding: 20px 0;
}
.copyright__text {
  font-size: 12px;
  color: rgb(126, 167, 183);
  text-align: center;
}

.footer .container {
  padding: 0 50px;
}
@media (max-width: 768px) {
  .footer .container {
    padding: 0 20px;
  }
}
.footer__top {
  padding: 40px 0;
  background-color: rgb(15, 81, 100);
}
.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1024px) {
  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.footer__title {
  font-size: 19px;
  color: rgb(126, 167, 183);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 5px;
}
@media (max-width: 1024px) {
  .footer__title {
    margin-bottom: 20px;
  }
}
.footer__menu li {
  margin-bottom: 20px;
}
.footer__menu li:last-child {
  margin-bottom: 0;
}
.footer__menu li a {
  font-size: 15px;
  color: rgb(126, 167, 183);
  text-decoration: none;
}
.footer__menu li a:hover {
  color: rgb(171, 147, 98);
}
.footer__locs {
  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;
}
.footer__locs .loc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.footer__locs .loc__name {
  font-size: 16px;
  color: rgb(126, 167, 183);
  text-transform: uppercase;
}
.footer__locs .loc__address {
  font-size: 16px;
  color: rgb(19, 40, 49);
  text-decoration: none;
}
.footer__locs .loc__phone {
  font-size: 16px;
  font-weight: 700;
  color: rgb(126, 167, 183);
  text-decoration: none;
}
.footer__col:last-child {
  width: 40%;
}
@media (max-width: 1024px) {
  .footer__col:last-child {
    width: 100%;
  }
}
.footer__bottom {
  background-color: rgb(15, 81, 100);
  padding-bottom: 20px;
}
.footer__bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .footer__bottom .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
.footer__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.footer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
@media (max-width: 768px) {
  .footer__policy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__policy a {
  text-decoration: none;
  font-size: 12px;
  color: rgb(19, 40, 49);
}

.first {
  background-size: cover;
  background-position: center;
}
.first__body {
  padding: 250px 0 100px 200px;
}
@media (max-width: 1024px) {
  .first__body {
    padding: 100px 0 100px 0px;
  }
}
@media (max-width: 768px) {
  .first__body {
    padding: 70px 0;
  }
}
.first__title {
  font-size: 33px;
  color: white;
  font-family: "Cinzel";
}
@media (max-width: 768px) {
  .first__title {
    font-size: 27px;
  }
}

.about {
  background-color: rgb(19, 40, 49);
}
.about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .about__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about__left {
  width: 50%;
  position: relative;
}
@media (max-width: 768px) {
  .about__left {
    width: 100%;
    height: 300px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.about__left img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about__right {
  width: 50%;
  padding: 150px 100px;
  font-size: 15px;
  color: rgb(126, 167, 183);
}
@media (max-width: 768px) {
  .about__right {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 100px 50px;
  }
}

.team {
  background-color: rgb(19, 40, 49);
  padding: 50px 0 100px 0;
}
@media (max-width: 768px) {
  .team {
    padding: 50px 0;
  }
}
.team__title {
  font-size: 33px;
  color: white;
  font-family: "Cinzel";
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .team__title {
    font-size: 27px;
  }
}
.team__link {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .team__link {
    margin-bottom: 40px;
  }
}
.team__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 50px;
}
@media (max-width: 1024px) {
  .team__items {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }
}
@media (max-width: 768px) {
  .team__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.team .item {
  padding: 40px 40px 40px 40px;
  border: 1px solid rgb(37, 81, 98);
  border-radius: 3px;
  overflow: hidden;
}
.team .item:hover .item__img::before {
  opacity: 1;
}
@media (max-width: 1024px) {
  .team .item {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .team .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding: 0;
  }
}
.team .item__img {
  position: relative;
  padding-bottom: 100%;
  min-height: 200px;
  margin-bottom: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .team .item__img {
    height: 275px;
    padding-bottom: 0;
    width: 45%;
    margin-bottom: 0;
  }
}
@media (max-width: 425px) {
  .team .item__img {
    width: 50%;
    height: 200px;
  }
}
.team .item__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  top: 0;
  left: 0;
}
.team .item__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 40, 49, 0.231372549);
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
}
.team .item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .team .item__info {
    padding: 10px 10px 15px 0;
  }
}
.team .item__name {
  font-size: 31px;
  color: white;
  font-family: "Cinzel";
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .team .item__name {
    font-size: 20px;
  }
}
.team .item__position {
  font-size: 15px;
  color: rgb(126, 167, 183);
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .team .item__position {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.team .item__read {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media (max-width: 768px) {
  .team .item__read {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid white;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
  top: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}
.link:hover {
  top: 5px;
  border-bottom: 1px solid transparent;
}
.link span {
  color: white;
  font-size: 15px;
}
.link img {
  width: 16px;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(147deg) brightness(117%) contrast(110%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(147deg) brightness(117%) contrast(110%);
}

.bio {
  background-color: rgb(11, 40, 50);
}
.bio__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 1024px) {
  .bio__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bio__left {
  width: 50%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .bio__left {
    width: 100%;
    height: 500px;
    background-attachment: local;
  }
}
.bio__right {
  width: 50%;
  padding: 300px 0;
}
@media (max-width: 1024px) {
  .bio__right {
    width: 100%;
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .bio__right {
    padding: 30px 0 50px 0;
  }
}
.bio__position {
  font-size: 15px;
  color: white;
  margin-bottom: 10px;
}
.bio__name {
  font-size: 86px;
  color: white;
  font-family: "Cinzel";
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .bio__name {
    font-size: 40px;
  }
}
.bio__contact {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 60px;
}
.bio__title {
  font-size: 33px;
  color: white;
  font-family: "Cinzel";
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .bio__title {
    font-size: 20px;
  }
}
.bio__text {
  font-size: 16px;
  color: rgb(126, 167, 183);
  line-height: 1.5;
}

.talk__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;
  gap: 40px;
  padding: 40px 0;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .talk__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.talk__left {
  font-size: 33px;
  color: rgb(19, 40, 49);
  font-family: "Cinzel";
}
@media (max-width: 768px) {
  .talk__left {
    font-size: 27px;
  }
}
.talk__right {
  font-size: 15px;
  color: rgb(19, 40, 49);
}

.rfirst {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.rfirst__body {
  padding: 100px 0 300px 0;
}
@media (max-width: 1024px) {
  .rfirst__body {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .rfirst__body {
    padding: 50px 0;
  }
}
.rfirst__title {
  font-size: 80px;
  color: white;
  font-family: "Cinzel";
}
@media (max-width: 1024px) {
  .rfirst__title {
    font-size: 40px;
  }
}

.reviews {
  background-color: rgb(11, 40, 50);
  padding: 50px 0 20px 0;
}
@media (max-width: 768px) {
  .reviews {
    padding: 20px;
  }
}
.reviews__title {
  font-size: 33px;
  color: white;
  font-family: "Cinzel";
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .reviews__title {
    font-size: 27px;
    margin-bottom: 20px;
  }
}
.reviews__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: 1024px) {
  .reviews__items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .reviews__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.reviews__items .item {
  border: 1px solid rgb(37, 81, 98);
  padding: 30px;
}
@media (max-width: 768px) {
  .reviews__items .item {
    padding: 20px;
  }
}
.reviews__items .item__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .reviews__items .item__stars {
    margin-bottom: 40px;
  }
}
.reviews__items .item__stars img {
  width: 16px;
  -webkit-filter: brightness(0) saturate(100%) invert(63%) sepia(30%) saturate(528%) hue-rotate(1deg) brightness(95%) contrast(87%);
          filter: brightness(0) saturate(100%) invert(63%) sepia(30%) saturate(528%) hue-rotate(1deg) brightness(95%) contrast(87%);
}
.reviews__items .item__stars span {
  font-size: 15px;
  color: rgb(126, 167, 183);
}
.reviews__items .item__name {
  font-size: 20px;
  color: white;
  margin-bottom: 20px;
}
.reviews__items .item__text {
  color: rgb(126, 167, 183);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .reviews__items .item__text {
    margin-bottom: 30px;
  }
}
.reviews__items .item__google {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reviews__items .item__google span {
  font-size: 12px;
  color: white;
}

.cfirst {
  background-color: rgb(11, 40, 50);
  background-size: cover;
}
.cfirst__body {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .cfirst__body {
    padding: 50px 0;
  }
}
.cfirst__title {
  font-size: 80px;
  color: white;
  font-family: "Cinzel";
}
@media (max-width: 768px) {
  .cfirst__title {
    font-size: 50px;
  }
}

.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;
}
.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  overflow: hidden;
}
.form__row > * {
  width: 50%;
}
.form__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.form__input label {
  font-size: 13px;
  color: rgb(133, 191, 224);
}
.form__input input, .form__input textarea {
  background-color: transparent;
  border-bottom: 1px solid rgb(255, 255, 255);
  padding: 10px;
  color: white;
}
.form__input input:hover, .form__input textarea:hover {
  border-color: rgb(19, 40, 49);
}
.form__input input:focus, .form__input textarea:focus {
  border-color: rgb(19, 40, 49);
}
.form__input select {
  background-color: transparent;
  color: white;
  border-bottom: 1px solid rgb(255, 255, 255);
  height: 100%;
}
.form__btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-size: 15px;
  color: white;
  background-color: rgb(171, 147, 98);
  padding: 10px 80px;
  border-radius: 50px;
  cursor: pointer;
}
.form__btn:hover {
  background-color: rgb(19, 40, 49);
}
@media (max-width: 1024px) {
  .form__btn {
    padding: 10px 40px;
  }
}

.cform {
  background-color: rgb(11, 40, 50);
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .cform {
    padding: 50px 0;
  }
}
.cform__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media (max-width: 1024px) {
  .cform__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cform__left {
  width: 50%;
  font-size: 33px;
  color: #E0C48C;
  font-family: "Cinzel";
}
@media (max-width: 1024px) {
  .cform__left {
    width: 100%;
  }
}
.cform__right {
  width: 50%;
}
@media (max-width: 1024px) {
  .cform__right {
    width: 100%;
  }
}
.cform .form input, .cform .form textarea, .cform .form select {
  background-color: #0f5164;
}

.cinfo {
  background-color: rgb(11, 40, 50);
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .cinfo {
    padding-bottom: 50px;
  }
}
.cinfo .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cinfo__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cinfo__text {
  font-size: 20px;
  color: white;
  margin-bottom: 40px;
}
.cinfo__title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: #7EA7B7;
  margin-bottom: 5px;
}
.cinfo__subtitle {
  font-size: 16px;
  color: white;
  margin-bottom: 20px;
}
.cinfo__address {
  color: white;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 20px;
}
.cinfo__phone {
  color: white;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
}

.map {
  background-color: rgb(11, 40, 50);
}

.books__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.books .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 800px;
}
@media (max-width: 1024px) {
  .books .item {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .books .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
.books .item:nth-child(even) .item__left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.books .item:nth-child(even) .item__right {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  background-color: rgb(11, 40, 50);
}
.books .item:nth-child(odd) .item__right {
  background: linear-gradient(18deg, #5396BD 0%, #20474B 65.0116502193%, #255162 99.4997258772%);
}
.books .item__left {
  width: 50%;
  position: relative;
}
.books .item__left img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .books .item__left {
    width: 100%;
    height: 400px;
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
}
.books .item__right {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .books .item__right {
    width: 100%;
    padding: 100px 50px;
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
}
.books .item__title {
  font-size: 78px;
  color: white;
  font-family: "Cinzel";
  margin-bottom: 40px;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  .books .item__title {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .books .item__title {
    font-size: 37px;
    margin-bottom: 30px;
  }
}
.books .item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.books .item__link img {
  width: 40px;
  rotate: -90deg;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(53%) saturate(2%) hue-rotate(326deg) brightness(114%) contrast(100%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(53%) saturate(2%) hue-rotate(326deg) brightness(114%) contrast(100%);
}
.books .item__link span {
  font-size: 29px;
  color: rgb(224, 196, 140);
}
@media (max-width: 768px) {
  .books .item__link img {
    width: 30px;
  }
  .books .item__link span {
    font-size: 20px;
  }
}

.author {
  background-color: rgb(11, 40, 50);
}
.author__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .author__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.author__left {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}
@media (max-width: 768px) {
  .author__left {
    width: 100%;
    padding: 40px 20px 0 20px;
  }
}
.author__right {
  width: 50%;
  padding: 40px 40px 40px 0;
}
@media (max-width: 768px) {
  .author__right {
    width: 100%;
    padding: 20px;
  }
}
.author__title {
  font-size: 20px;
  color: #EED39B;
  margin-bottom: 10px;
}
.author__subtitle {
  font-size: 33px;
  color: white;
  font-family: "Cinzel";
}
.author__text {
  font-size: 26px;
  color: #85BFE0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .author__text {
    font-size: 22px;
  }
}

.sfirst {
  position: relative;
}
.sfirst__arrows img {
  position: absolute;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(53%) saturate(2%) hue-rotate(326deg) brightness(114%) contrast(100%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(53%) saturate(2%) hue-rotate(326deg) brightness(114%) contrast(100%);
  width: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
.sfirst__arrows .prev {
  left: 50px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media (max-width: 768px) {
  .sfirst__arrows .prev {
    left: 20px;
  }
}
.sfirst__arrows .next {
  right: 50px;
}
@media (max-width: 768px) {
  .sfirst__arrows .next {
    right: 20px;
  }
}

.sfirst .slide img {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.labor {
  background-color: #071b21;
}
.labor__body {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 100px 0 50px 0;
}
@media (max-width: 1024px) {
  .labor__body {
    padding: 50px 0;
  }
}
.labor__title {
  font-size: 60px;
  color: rgb(224, 196, 140);
  font-family: "Cinzel";
  text-align: center;
}
@media (max-width: 1024px) {
  .labor__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .labor__title {
    font-size: 30px;
  }
}
.labor__download {
  font-size: 21px;
  color: rgb(19, 40, 49);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 40px;
  background-color: rgb(201, 173, 116);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.labor__download:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .labor__download {
    font-size: 18px;
    padding: 10px 15px;
  }
}

.download {
  background-color: rgb(19, 40, 49);
}
.download .container {
  max-width: 1200px;
}
.download__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .download__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.download__left {
  width: 50%;
  position: relative;
}
@media (max-width: 768px) {
  .download__left {
    width: 100%;
    height: 400px;
  }
}
.download__left img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.download__right {
  width: 50%;
  padding: 300px 0 300px 100px;
}
@media (max-width: 768px) {
  .download__right {
    width: 100%;
    padding: 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.download__btn {
  font-size: 19px;
  color: rgb(19, 40, 49);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 40px;
  background-color: rgb(201, 173, 116);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.download__btn:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .download__btn {
    font-size: 18px;
    padding: 10px 15px;
  }
}

.phone {
  padding: 40px;
  background-color: white;
}
.phone__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.phone__phone {
  text-decoration: none;
  font-size: 21px;
  font-weight: 700;
  color: rgb(37, 81, 98);
}

.bform {
  background-color: rgb(11, 40, 50);
  padding: 100px 0;
}
.bform__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bform__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;
  width: 580px;
}
.bform__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.bform__input label {
  font-size: 14px;
  color: white;
}
.bform__input input, .bform__input textarea {
  padding: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background-color: transparent;
  color: white;
}
.bform__input input:hover, .bform__input textarea:hover {
  border-bottom: 1px solid rgb(255, 255, 255);
}
.bform__btn {
  background-color: rgb(171, 147, 98);
  color: rgb(19, 40, 49);
  font-size: 16px;
  border-radius: 30px;
  padding: 10px;
  cursor: pointer;
}
.bform__btn:hover {
  opacity: 0.8;
}

.sfirst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sfirst__top img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sfirst__bottom {
  padding: 30px 20px;
  font-size: 19px;
  color: rgb(255, 255, 255);
  background-color: rgb(25, 122, 152);
  display: none;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .sfirst__bottom {
    display: block;
  }
}

.services {
  padding: 100px 0 50px 0;
}
@media (max-width: 1024px) {
  .services {
    padding: 50px 0;
  }
}
.services__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: 1500px) {
  .services__items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .services__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.services .item {
  position: relative;
  padding: 50px 40px 80px 40px;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .services .item {
    padding: 40px 20px 40px 20px;
  }
}
.services .item::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 82, 100, 0.631372549);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.services .item:hover::before {
  background-color: rgba(201, 173, 116, 0.651);
}
.services .item:hover .item__title::before {
  background-color: #0f5264;
}
.services .item__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.services .item__info {
  position: relative;
  z-index: 1;
}
.services .item__title {
  font-size: 33px;
  color: white;
  font-family: "Cinzel";
  margin-bottom: 300px;
  position: relative;
}
@media (max-width: 1024px) {
  .services .item__title {
    margin-bottom: 150px;
  }
}
.services .item__title::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: rgb(201, 173, 116);
  border-radius: 50%;
  top: -20px;
  left: 10px;
}
.blog {
  background: linear-gradient(315deg, #255162 34.7827576754%, #255162 45.6208881579%, #387993 75.0822368421%, #AB9362 97.539747807%);
}
.blog__bg {
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .blog__bg {
    padding: 50px 0;
  }
}
.blog__title {
  font-size: 80px;
  color: white;
  font-family: "Cinzel";
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .blog__title {
    font-size: 60px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .blog__title {
    font-size: 40px;
  }
}
.blog__subtitle {
  font-size: 20px;
  color: white;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .blog__subtitle {
    font-size: 18px;
  }
}
.blog__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog__cat {
  font-size: 17px;
  color: rgb(126, 167, 183);
  text-decoration: none;
}
.blog__cat.current {
  color: rgb(171, 147, 98);
}
.blog__cat:hover {
  color: rgb(171, 147, 98);
}
.blog__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1024px) {
  .blog__items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .blog__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.blog .item {
  border: 1px solid rgb(15, 83, 104);
}
.blog .item__img img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blog .item__info {
  padding: 20px 20px 40px 20px;
}
.blog .item__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}
.blog .item__cat {
  background-color: rgb(126, 167, 183);
  color: rgb(19, 40, 49);
  font-size: 12px;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 3px;
}
.blog .item__cat:hover {
  color: white;
  background-color: rgb(229, 21, 59);
}
.blog .item__link {
  text-decoration: none;
}
.blog .item__title {
  color: white;
  font-family: "Cinzel";
  font-size: 22px;
  margin-bottom: 15px;
}
.blog .item__link:hover .item__title {
  color: rgb(171, 147, 98);
}
.blog .item__text {
  color: white;
  font-size: 16px;
  line-height: 1.5;
}
.blog .item__link:hover .item__text {
  color: rgb(171, 147, 98);
}

.post-wrapper {
  background: linear-gradient(353deg, #132831 44.0652412281%, #7EA7B7 99.5271381579%);
}

.post .container {
  max-width: 740px;
}
.post__bg {
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .post__bg {
    padding: 50px 0;
  }
}
.post__title {
  font-size: 38px;
  color: white;
  font-family: "Cinzel";
  margin-bottom: 30px;
}
.post__img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 20px;
}
.post__content {
  color: white;
  line-height: 1.5;
  margin-bottom: 20px;
}
.post__content ul {
  list-style: disc;
  padding-left: 20px;
}
.post__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.post__tag {
  color: rgb(126, 167, 183);
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid white;
  border-radius: 3px;
  text-decoration: none;
}
.post__tag:hover {
  border-color: transparent;
  color: white;
}
.post__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.post__media {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(53%) saturate(2%) hue-rotate(326deg) brightness(114%) contrast(100%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(53%) saturate(2%) hue-rotate(326deg) brightness(114%) contrast(100%);
}
.post__media:hover {
  -webkit-filter: brightness(0) saturate(100%) invert(26%) sepia(9%) saturate(3624%) hue-rotate(148deg) brightness(93%) contrast(94%);
          filter: brightness(0) saturate(100%) invert(26%) sepia(9%) saturate(3624%) hue-rotate(148deg) brightness(93%) contrast(94%);
}
.post__copy {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(53%) saturate(2%) hue-rotate(326deg) brightness(114%) contrast(100%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(53%) saturate(2%) hue-rotate(326deg) brightness(114%) contrast(100%);
  cursor: pointer;
}
.post__copy:hover {
  -webkit-filter: brightness(0) saturate(100%) invert(80%) sepia(4%) saturate(4270%) hue-rotate(358deg) brightness(76%) contrast(74%);
          filter: brightness(0) saturate(100%) invert(80%) sepia(4%) saturate(4270%) hue-rotate(358deg) brightness(76%) contrast(74%);
}

.recent .container {
  max-width: 940px;
}
.recent__top {
  margin-bottom: 20px;
  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;
  gap: 20px;
}
.recent__title {
  font-size: 18px;
  color: white;
}
.recent__all {
  color: white;
  font-size: 14px;
  text-decoration: none;
}
.recent__all:hover {
  color: rgb(171, 147, 98);
}
.recent__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.recent .item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 1024px) {
  .recent .item:nth-child(3) {
    display: none;
  }
}
@media (max-width: 768px) {
  .recent .item:nth-child(2) {
    display: none;
  }
}
.recent .item__img img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.recent .item__info {
  padding: 24px;
}
.recent .item__title {
  font-size: 18px;
  color: white;
  text-decoration: none;
  font-family: "Cinzel";
}
.recent .item__title:hover {
  color: rgb(171, 147, 98);
}

.info .item {
  padding: 100px 0;
  border-bottom: 2px solid rgb(19, 40, 49);
}
@media (max-width: 1024px) {
  .info .item {
    padding: 50px 0;
  }
}
.info .item:last-child {
  border-bottom: none;
}
.info .item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  color: rgb(19, 40, 49);
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .info .item__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.info .item__body h3 {
  font-size: 24px;
  color: rgb(19, 40, 49);
}
@media (max-width: 768px) {
  .info .item__body h3 {
    font-size: 20px;
  }
}
.info .item__title {
  font-size: 33px;
  color: rgb(56, 121, 147);
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .info .item__title {
    font-size: 24px;
  }
}

.ffirst__top {
  background-size: cover;
}
.ffirst__title {
  font-size: 69px;
  color: white;
  font-family: "Cinzel";
  padding: 250px 0 50px 0;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  .ffirst__title {
    font-size: 40px;
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .ffirst__title {
    font-size: 36px;
    padding: 70px 0;
  }
}
.ffirst__bottom {
  background-color: rgb(66, 113, 140);
  padding: 50px 0;
}
.ffirst__bottom .container {
  max-width: 990px;
}
.ffirst__subtitle {
  font-size: 23px;
  color: white;
  font-family: "Cinzel";
  margin-bottom: 20px;
}
.ffirst__text {
  font-size: 23px;
  color: white;
  line-height: 1.5;
}

.faq {
  padding: 40px 0;
}
.faq .container {
  max-width: 810px;
}

.faq .item {
  padding: 20px 0;
  border-bottom: 1px solid black;
}
.faq .item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.faq .item__title:hover span {
  color: #C9AD74;
}
.faq .item__title:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(66%) sepia(50%) saturate(299%) hue-rotate(2deg) brightness(98%) contrast(83%);
          filter: brightness(0) saturate(100%) invert(66%) sepia(50%) saturate(299%) hue-rotate(2deg) brightness(98%) contrast(83%);
}
.faq .item__title span {
  font-size: 25px;
  color: rgb(56, 121, 147);
  font-weight: 700;
}
.faq .item__title img {
  width: 12px;
}
.faq .item.open .item__title img {
  rotate: 180deg;
}
.faq .item__text {
  font-size: 16px;
  color: rgb(19, 40, 49);
  line-height: 1.5;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.faq .item.open .item__text {
  height: auto;
  margin-top: 20px;
}

.ftext {
  padding: 50px 0 100px 0;
}
.ftext .container {
  max-width: 1000px;
}
.ftext__body {
  font-size: 14px;
  color: #132831;
  line-height: 1.5;
}

.hfirst {
  position: relative;
}
.hfirst__arrows img {
  position: absolute;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(53%) saturate(2%) hue-rotate(326deg) brightness(114%) contrast(100%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(53%) saturate(2%) hue-rotate(326deg) brightness(114%) contrast(100%);
  width: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
.hfirst__arrows .prev {
  left: 50px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media (max-width: 768px) {
  .hfirst__arrows .prev {
    left: 20px;
  }
}
.hfirst__arrows .next {
  right: 50px;
}
@media (max-width: 768px) {
  .hfirst__arrows .next {
    right: 20px;
  }
}

.hfirst .slide {
  position: relative;
  padding: 100px 0 400px 100px;
}
@media (max-width: 1024px) {
  .hfirst .slide {
    padding: 100px 0 250px 100px;
  }
}
@media (max-width: 768px) {
  .hfirst .slide {
    padding: 100px 0 250px 50px;
  }
}
.hfirst .slide img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hfirst .slide__title {
  font-size: 33px;
  color: white;
  font-family: "Cinzel";
  position: relative;
}
@media (max-width: 1024px) {
  .hfirst .slide__title {
    font-size: 28px;
  }
}

.side {
  background-color: rgb(28, 59, 72);
}
.side .container {
  max-width: 760px;
}
.side__body {
  padding: 20px 0 100px 0;
  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: 768px) {
  .side__body {
    padding: 50px 0;
  }
}
.side__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .side__top {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.side__btn {
  padding: 15px 70px;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  background-color: rgb(171, 147, 98);
}
@media (max-width: 768px) {
  .side__btn {
    padding: 15px 30px;
  }
}
.side__btn:hover {
  background-color: white;
}
.side__btn:hover span {
  color: #132831;
}
.side__btn:hover img {
  -webkit-filter: brightness(0) saturate(100%) invert(12%) sepia(14%) saturate(1808%) hue-rotate(153deg) brightness(96%) contrast(93%);
          filter: brightness(0) saturate(100%) invert(12%) sepia(14%) saturate(1808%) hue-rotate(153deg) brightness(96%) contrast(93%);
}
.side__btn span {
  font-size: 15px;
  color: white;
}
.side__btn img {
  width: 16px;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7458%) hue-rotate(44deg) brightness(95%) contrast(94%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7458%) hue-rotate(44deg) brightness(95%) contrast(94%);
}
.side__text {
  font-size: 24px;
  line-height: 1.5;
  color: white;
  font-weight: 700;
}
@media (max-width: 768px) {
  .side__text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 20px;
  }
}

.areas__body {
  padding: 50px 0 100px 0;
}
.areas__title {
  font-size: 33px;
  color: rgb(37, 81, 98);
  font-family: "Cinzel";
  border-bottom: 1px solid #255162;
  padding-bottom: 10px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .areas__title {
    margin-bottom: 50px;
  }
}
.areas__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .areas__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.areas__item {
  font-size: 25px;
  color: rgb(37, 81, 98);
  font-family: "Cinzel";
  border-bottom: 2px solid #255162;
  padding-bottom: 10px;
  text-decoration: none;
}

.hreviews {
  background-color: rgb(19, 40, 49);
}
.hreviews__body {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .hreviews__body {
    padding: 50px 0;
  }
}
.hreviews__title {
  text-align: center;
  font-size: 33px;
  color: white;
  font-family: "Cinzel";
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hreviews__title {
    text-align: left;
    font-size: 25px;
  }
}
.hreviews__link {
  margin: 0 auto;
  padding: 0 20px 10px 20px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .hreviews__link {
    margin: 0 0 30px 0;
  }
}

.values {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.values__body {
  padding: 200px 0;
}
@media (max-width: 1024px) {
  .values__body {
    padding: 150px 0 50px 0;
  }
}
.values__title {
  text-align: center;
  font-size: 80px;
  color: white;
  font-family: "Cinzel";
}
@media (max-width: 1024px) {
  .values__title {
    font-size: 60px;
    text-align: left;
  }
}

.valuesi {
  background-color: rgb(174, 151, 94);
}
.valuesi__body {
  padding: 50px 0;
}
.valuesi__items {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.valuesi .item__star {
  width: 30px;
  height: 30px;
  color: white;
  background-color: rgb(15, 81, 100);
  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;
  margin-bottom: 10px;
  border-radius: 50%;
}
.valuesi .item__star span {
  padding-top: 4px;
}
.valuesi .item__title {
  color: white;
  font-size: 20px;
  font-family: "Cinzel";
}

.news {
  background: linear-gradient(315deg, #255162 34.7827576754%, #255162 45.6208881579%, #387993 75.0822368421%, #AB9362 97.539747807%);
}
.news__body {
  padding: 100px 0 30px 0;
}
@media (max-width: 1024px) {
  .news__body {
    padding: 50px 0 30px 0;
  }
}
.news__title {
  color: white;
  font-size: 80px;
  font-family: "Cinzel";
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .news__title {
    font-size: 60px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .news__title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.news__link {
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .news__link {
    margin-bottom: 40px;
  }
}
.news__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1440px) {
  .news__items {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .news__items {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .news__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.news .item {
  position: relative;
}
.news .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 79, 106, 0.5);
  z-index: 1;
}
.news .item__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news .item:hover .item__title {
  color: rgb(126, 167, 183);
}
.news .item__title {
  position: relative;
  font-size: 23px;
  color: white;
  font-family: "Cinzel";
  padding: 70% 20px 20px 20px;
  text-decoration: none;
  display: inline-block;
  z-index: 2;
}

.form__input select option {
  color: black;
}

.post__content p {
  margin: 10px 0;
}

.ppage {
  padding: 100px 0;
  background-color: #132831;
}

.ppage .container {
  max-width: 1000px;
}

.ppage__title {
  font-size: 80px;
  font-family: "Cinzel";
  margin-bottom: 50px;
  color: white;
  text-transform: uppercase;
}

.ppage__content {
  color: rgb(126, 167, 183);
  font-size: 15px;
}

.ppage__content ul {
  list-style: disc;
  padding-left: 20px;
}

@media (max-width: 1024px) {
  .ppage {
    padding: 50px 0;
  }
  .ppage__title  {
    font-size: 40px;
    margin-bottom: 25px;
  }
}
.just-validate-error-label {
  color: white !important;
}
.loading {
  position: relative;
}

.loading::before {
  content: "";
  position: absolute;
  z-index: 999;
  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;
  }
}