Style * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  background-color: #fff;
  min-height: 100vh;
  font-family: "SpaceGrotesk-Regular";
}

h1 {
  font-size: 3.7rem;
}
@media (max-width: 575px) {
  h1 {
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 2.4rem;
}
@media (max-width: 575px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.2rem;
}

ul {
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: "SpaceGrotesk-Regular";
  src: url("../fonts/SpaceGrotesk-Regular.ttf");
}
@font-face {
  font-family: "SpaceGrotesk-Bold";
  src: url("../fonts/SpaceGrotesk-Bold.ttf");
}
@font-face {
  font-family: "SpaceGrotesk-Medium";
  src: url("../fonts/SpaceGrotesk-Medium.ttf");
}
@media (min-width: 1601px) {
  .container {
    max-width: 1400px !important;
  }
}
@media (min-width: 1601px) {
  .container-lg {
    max-width: 1400px !important;
  }
}
@media (min-width: 1601px) {
  .container-xl {
    max-width: 1400px !important;
  }
}
@media (min-width: 1601px) {
  .container-xxl {
    max-width: 1400px !important;
  }
}
.header {
  background-color: #fff;
}
.header .header-nav {
  min-height: 123px;
}
@media (max-width: 991px) {
  .header .header-nav {
    min-height: unset;
    padding: 25px 20px;
  }
}
@media (max-width: 991px) {
  .header .header-nav {
    padding: 25px 0;
  }
}
.header .header-nav .header-logo img {
  height: 100%;
  width: 340px;
}
@media (max-width: 575px) {
  .header .header-nav .header-logo img {
    width: 100%;
    max-width: 250px;
  }
}
@media (max-width: 991px) {
  .header .header-nav .header-logo {
    padding-right: 70px;
  }
}
.header .header-nav #nav {
  width: 100%;
  justify-content: center;
}
.header .header-nav .navbar-nav {
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1600px) {
  .header .header-nav .navbar-nav {
    padding: 0 20px;
  }
}
@media (max-width: 991px) {
  .header .header-nav .navbar-nav {
    padding: 20px 0;
  }
}
@media (max-width: 991px) {
  .header .header-nav .navbar-nav .nav-item {
    border-bottom: 1px solid #7a2324;
  }
}
.header .header-nav .navbar-nav .nav-item .nav-link {
  font-family: "SpaceGrotesk-Bold";
  font-size: 18px;
  font-weight: 600;
  color: #2d3135;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
  position: relative;
}
@media (max-width: 1399px) {
  .header .header-nav .navbar-nav .nav-item .nav-link {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .header .header-nav .navbar-nav .nav-item .nav-link {
    padding-left: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.header .header-nav .navbar-nav .nav-item .nav-link::before {
  content: "";
  width: calc(100% - 2rem);
  height: 3px;
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.25rem;
  background: #7a2324;
  transition: 0.3s transform ease;
  transform: scale3d(0, 1, 1);
  transform-origin: 0 50%;
}
@media (min-width: 992px) {
  .header .header-nav .navbar-nav .nav-item .nav-link:hover::before {
    transform: scale3d(1, 1, 1);
  }
}
.header .header-nav .navbar-nav .nav-item.active .nav-link, .header .header-nav .navbar-nav .nav-item .nav-link:hover {
  color: #7a2324;
}
@media (max-width: 991px) {
  .header .header-nav .navbar-nav .nav-item {
    width: 100%;
    margin: 0 auto;
  }
}
.header .header-nav .navbar-nav .nav-item .active {
  color: #7a2324;
}
.header .header-nav .navbar-nav .nav-item-border {
  border: 2px solid #7a2324;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.header .header-nav .navbar-nav .nav-item-border:hover {
  box-shadow: inset 300px 0 0 0 #7a2324;
}
.header .header-nav .navbar-nav .nav-item-border:hover .nav-link {
  color: #fff;
}
.header .header-nav .navbar-nav .nav-item-border:hover .nav-link::before {
  display: none;
}
.header .header-nav .navbar-nav .nav-item-border .nav-link {
  color: #7a2324;
}
@media (max-width: 991px) {
  .header .header-nav .navbar-nav .nav-item-border {
    border: none;
  }
}
.header .header-nav .header-social-networks {
  padding-right: 25px;
}
@media (max-width: 991px) {
  .header .header-nav .header-social-networks {
    padding-right: 0;
  }
}
.header .header-nav .header-social-networks .header-social-networks-item {
  text-decoration: none;
}
.header .header-nav .header-social-networks .header-social-networks-item svg {
  fill: #38aebd;
  transition: all 0.2s ease;
}
.header .header-nav .header-social-networks .header-social-networks-item svg:hover {
  fill: #297d88;
}
.header .header-nav .header-rightbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  row-gap: 15px;
}
.header .header-nav .header-rightbox .languages .header-rightbox-lang {
  font-family: "SpaceGrotesk-Bold";
  color: #000;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .header .header-nav .header-rightbox .languages .header-rightbox-lang {
    padding: 0.4rem 1.25rem;
  }
}
@media (max-width: 575px) {
  .header .header-nav .header-rightbox .languages .header-rightbox-lang {
    min-height: unset;
  }
}
.header .header-nav .header-rightbox .languages .header-rightbox-lang::after {
  color: #7a2324;
}
.header .header-nav .header-rightbox .languages .header-rightbox-lang svg {
  fill: #61bfca;
  transition-duration: 0.1s;
  transform: rotate(90deg);
}
.header .header-nav .header-rightbox .languages .show svg {
  transform: rotate(270deg);
}
.header .header-nav .header-rightbox .languages .dropdown-toggle::after {
  display: none;
}
.header .header-nav .header-rightbox .languages .dropdown-menu {
  border-radius: 10px;
  min-width: 100%;
}
.header .header-nav .header-rightbox .languages .dropdown-menu .dropdown-item {
  text-align: left;
}
.header .header-nav .header-rightbox .languages .dropdown-menu .dropdown-item:active {
  background-color: #7a2324;
}
.header .header-nav .header-rightbox .header-rightbox-phone {
  height: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  min-height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 0.8rem 2.25rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.35s;
}
@media (max-width: 1399px) {
  .header .header-nav .header-rightbox .header-rightbox-phone {
    padding: 0.8rem 1rem;
  }
}
@media (max-width: 575px) {
  .header .header-nav .header-rightbox .header-rightbox-phone {
    padding: 0.4rem 1.25rem;
    min-height: unset;
  }
}
.header .header-nav .header-rightbox .header-rightbox-phone:hover {
  background-color: #fff;
  border-color: var(--section-light-color);
  color: #7a2324;
  box-shadow: inset 15rem 0 0 0 #fff;
}
.header .header-nav .header-rightbox .header-rightbox-phone:hover .header-rightbox-phone-icon svg {
  fill: #7a2324;
}
.header .header-nav .header-rightbox .header-rightbox-phone .header-rightbox-phone-icon svg {
  width: 14px;
  fill: #fff;
  transition: 0.35s;
}
.header .navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  position: absolute;
  right: 25px;
  top: 35px;
}
@media (max-width: 991px) {
  .header .navbar-toggler {
    top: 30px;
    right: 0;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .header .navbar-toggler {
    top: 25px;
  }
}
.header .navbar-toggler .animated-icon {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.header .navbar-toggler .animated-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  background: #7a2324;
}
.header .navbar-toggler .animated-icon span:nth-child(1) {
  top: 0px;
}
.header .navbar-toggler .animated-icon span:nth-child(2) {
  top: 10px;
}
.header .navbar-toggler .animated-icon span:nth-child(3) {
  top: 20px;
}
.header .navbar-toggler .animated-icon.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.header .navbar-toggler .animated-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.header .navbar-toggler .animated-icon.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.section-dropdown {
  padding-top: 35px;
  padding-bottom: 35px;
  border-top: 1px solid #e3e3e3;
  min-height: 95px;
}
@media (max-width: 991px) {
  .section-dropdown {
    width: 100%;
    padding-top: 10px;
    border-top: none;
    border-bottom: 1px solid #e3e3e3;
  }
}
.section-dropdown .section-dropdown-item .section-dropdown-header {
  min-height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.section-dropdown .section-dropdown-item .section-dropdown-header .section-dropdown-title {
  max-width: 90%;
  color: #38aebd;
  font-family: "SpaceGrotesk-Bold";
  text-transform: uppercase;
  padding-left: 45px;
  margin-bottom: 0;
  background-image: url("../img/k-ico.svg");
  background-repeat: no-repeat;
  background-position: center left;
}
.section-dropdown .section-dropdown-item .section-dropdown-body h3 {
  color: #000;
  font-family: "SpaceGrotesk-Bold";
}
.section-dropdown .section-dropdown-item .section-dropdown-body p {
  color: #5f5f5f;
  font-family: "SpaceGrotesk-Medium";
  font-size: 1.1rem;
  line-height: 30px;
  margin-bottom: 2rem;
}
.section-dropdown .section-dropdown-item .section-dropdown-body p strong {
  font-size: 1.3rem;
  color: #432229;
  font-family: "SpaceGrotesk-Bold";
}
.section-dropdown .section-dropdown-item .section-dropdown-body img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}
.section-dropdown .section-dropdown-item .section-dropdown-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1000ms linear, max-height 100ms linear;
  will-change: opacity, max-height;
}
.section-dropdown .section-dropdown-item .section-dropdown-body .row:first-child {
  padding-top: 50px;
}
@media (max-width: 575px) {
  .section-dropdown .section-dropdown-item .section-dropdown-body .row:first-child {
    padding-top: 30px;
  }
}
.section-dropdown .section-dropdown-item .section-dropdown-body .img-center {
  width: 100%;
  text-align: center;
}
.section-dropdown .section-dropdown-item .section-dropdown-body .img-half-width img {
  max-width: 50%;
}
@media (max-width: 767px) {
  .section-dropdown .section-dropdown-item .section-dropdown-body .img-half-width img {
    max-width: 100%;
  }
}
.section-dropdown .active .section-dropdown-header .cross-box .cross-line-2 {
  transform: rotate(0deg);
}
.section-dropdown .active .section-dropdown-body {
  opacity: 1;
  max-height: 100%;
}

.subsection-dropdown {
  min-height: 50px;
  margin-bottom: 50px;
}
.subsection-dropdown .subsection-dropdown-item {
  border-top: 1px solid #e3e3e3;
}
.subsection-dropdown .subsection-dropdown-item:last-child {
  border-bottom: 1px solid #e3e3e3;
}
.subsection-dropdown .subsection-dropdown-item .subsection-dropdown-header {
  min-height: 50px;
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.subsection-dropdown .subsection-dropdown-item .subsection-dropdown-header .subsection-dropdown-title {
  max-width: 90%;
  color: #432229;
  font-family: "SpaceGrotesk-Bold";
  text-transform: uppercase;
  margin-bottom: 0;
}
.subsection-dropdown .subsection-dropdown-item .subsection-dropdown-body p {
  color: #5f5f5f;
  font-family: "SpaceGrotesk-Medium";
  font-size: 1.1rem;
  line-height: 30px;
  padding-right: 40px;
}
.subsection-dropdown .subsection-dropdown-item .subsection-dropdown-body p strong {
  font-size: 1.3rem;
  color: #432229;
  font-family: "SpaceGrotesk-Bold";
}
.subsection-dropdown .subsection-dropdown-item .subsection-dropdown-body img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.subsection-dropdown .subsection-dropdown-item .subsection-dropdown-body .row {
  padding: 0 !important;
}
.subsection-dropdown .subsection-dropdown-item .subsection-dropdown-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1000ms linear, max-height 100ms linear;
  will-change: opacity, max-height;
}
.subsection-dropdown .subsection-dropdown-item .subsection-dropdown-body .row {
  padding: 30px 0;
}
.subsection-dropdown .active .subsection-dropdown-header .cross-box .cross-line-2 {
  transform: rotate(0deg);
}
.subsection-dropdown .active .subsection-dropdown-body {
  opacity: 1;
  max-height: 100%;
}

.cross-box {
  position: relative;
  width: 23px;
  height: 23px;
}
.cross-box .cross-line-1 {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #7a2324;
  top: calc(50% - 1px);
}
.cross-box .cross-line-2 {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #7a2324;
  top: calc(50% - 1px);
  transform: rotate(90deg);
  transition: all 0.3s ease;
}

.section-dropdown-item-1 {
  text-align: center;
  margin-bottom: 2rem;
}
.section-dropdown-item-1 .section-dropdown-item-img-1 {
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 0 !important;
}
@media (max-width: 575px) {
  .section-dropdown-item-1 .section-dropdown-item-img-1 {
    width: 70% !important;
  }
}
.section-dropdown-item-1 .section-dropdown-item-img-1-title {
  font-family: "SpaceGrotesk-Bold";
  font-size: 1.3rem;
  color: #000;
  margin-top: 10px;
  margin-bottom: 0;
}
.section-dropdown-item-1 .section-dropdown-item-img-1-text {
  font-family: "SpaceGrotesk-Regular";
  font-size: 1rem;
  color: #686868;
  padding: 0;
}

.footer {
  background-color: #7a2324;
  padding-top: 70px;
}
.footer p {
  color: #fff;
  font-size: 1.2rem;
  font-family: "SpaceGrotesk-Medium";
}
.footer a {
  color: #fff;
  font-size: 1.2rem;
  font-family: "SpaceGrotesk-Medium";
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer span {
  padding: 0 20px;
}
.footer .foooter-text {
  text-align: center;
}
.footer .foooter-contact {
  color: #fff;
  font-size: 1rem;
  font-family: "SpaceGrotesk-Medium";
  text-align: center;
}
.footer .foooter-contact a {
  font-size: 1rem;
}
.footer .footer-copyright {
  padding: 90px 0 50px 0;
  text-align: center;
}
@media (max-width: 575px) {
  .footer .footer-copyright {
    padding: 25px 0 25px 0;
  }
}
.footer .footer-copyright p {
  color: #b77273;
  font-size: 0.9rem;
  font-family: "SpaceGrotesk-Regular";
  text-transform: uppercase;
}
.footer .footer-copyright p a {
  color: #b77273;
  font-size: 0.9rem;
  font-family: "SpaceGrotesk-Regular";
  text-decoration: none;
  text-transform: uppercase;
}
.footer .footer-copyright p a:hover {
  text-decoration: underline;
}

.section-intro {
  position: relative;
  width: 100%;
  height: 785px;
  padding: 100px 0;
  background-image: url("../img/hp-bg-img-1.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}
@media (max-width: 1399px) {
  .section-intro {
    height: auto;
  }
}
@media (max-width: 991px) {
  .section-intro {
    padding: 50px 0;
  }
}
.section-intro .section-intro-col-left {
  text-align: right;
  padding-right: 80px;
}
@media (max-width: 991px) {
  .section-intro .section-intro-col-left {
    text-align: left;
    padding-right: 12px;
  }
}
.section-intro .section-intro-col-left .section-intro-img-name {
  padding-top: 80px;
  padding-bottom: 40px;
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .section-intro .section-intro-col-left .section-intro-img-name {
    padding: 0;
  }
}
.section-intro .section-intro-col-left h2 {
  color: #fff;
  font-family: "SpaceGrotesk-Bold";
  padding: 30px 0;
  margin-bottom: 0;
}
.section-intro .section-intro-col-left p {
  color: #fff;
  font-family: "SpaceGrotesk-Regular";
  font-size: 1.1rem;
  line-height: 28px;
}
.section-intro img {
  width: 100%;
}

.section {
  padding-bottom: 35px;
}
@media (max-width: 575px) {
  .section {
    padding-bottom: 15px;
  }
}
.section:last-of-type {
  padding-bottom: 0;
}

.section-title-col {
  position: relative;
  margin-top: 35px;
}

.section-order {
  color: #9d9d9d;
  font-size: 1.2rem;
  font-family: "SpaceGrotesk-Medium";
  position: absolute;
  top: -30px;
  left: 12px;
}

.section-title {
  color: #432229;
  font-family: "SpaceGrotesk-Bold";
  line-height: 60px;
  max-width: 340px;
}

.section-title-center {
  text-align: center;
  margin: auto;
  padding: 75px 0;
}
@media (max-width: 991px) {
  .section-title-center {
    padding: 50px 0;
  }
}

.sections-pad {
  padding: 135px 0;
}
@media (max-width: 991px) {
  .sections-pad {
    padding: 50px 0;
  }
}

.section-news {
  background-color: #c6f0f7;
  padding-bottom: 135px;
}
@media (max-width: 1199px) {
  .section-news .row > div {
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .section-news {
    padding-bottom: 50px;
  }
}
.section-news .container > div {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1600px) {
  .section-news .container > div {
    padding-left: 0;
    padding-right: 0;
  }
}
.section-news .section-news-item {
  background-color: #fff;
  height: 100%;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1254901961);
  position: relative;
}
@media (max-width: 1199px) {
  .section-news .section-news-item {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .section-news .section-news-item {
    margin-bottom: 0;
  }
}
.section-news .section-news-item .section-news-item-img {
  display: block;
  width: 100%;
  height: 300px;
  text-decoration: none;
  overflow: hidden;
}
.section-news .section-news-item .section-news-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.section-news .section-news-item .section-news-item-content {
  padding: 50px 30px;
}
.section-news .section-news-item .section-news-item-content .section-news-item-date {
  color: #737373;
  font-size: 0.9rem;
  font-family: "SpaceGrotesk-Medium";
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-news .section-news-item .section-news-item-content .section-news-item-title {
  display: block;
  color: #432229;
  font-family: "SpaceGrotesk-Bold";
  margin-top: 20px;
  text-decoration: none;
}
.section-news .section-news-item .section-news-item-content .section-news-item-title:hover {
  text-decoration: underline;
}
.section-news .section-news-item .section-news-item-content .section-news-item-text {
  color: #5f5f5f;
  font-size: 1.1rem;
  line-height: 30px;
  margin-top: 20px;
  font-family: "SpaceGrotesk-Medium";
}
.section-news .section-news-item .section-news-item-content .section-news-item-btn {
  position: absolute;
  right: 30px;
  bottom: 20px;
  transition: all 0.2s ease;
}
.section-news .section-news-item .section-news-item-content .section-news-item-btn:hover {
  right: 25px;
}
.section-news .section-news-item:hover .section-news-item-img img {
  transform: scale(1.1);
}