body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.splice-2 {
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.splice-3 {
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slick-dots {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  display: none !important;
}

.slick-dots button:not(.section-slider button) {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(150, 154, 153, 0.2);
  font-size: 0;
  border: none;
  outline: none;
}

h1:not(.page-content h1),
h2:not(.page-content h2),
h3:not(.page-content h3),
h4:not(.page-content h4),
h5:not(.page-content h5),
h6:not(.page-content h6),
ul:not(.page-content ul),
p:not(.page-content p),
ul:not(.page-content ul) {
  /* margin: 0; */
  padding: 0;
  list-style-type: none;
}

ul:not(.page-content ul) {
  margin-bottom: 0;
}

a:not(.page-content a) {
  text-decoration: none;
  /* color: inherit; */
}

.page-content p {
  color: rgb(52, 52, 52);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.custom-col {
  flex: 0 0 calc(20% - 20px);
  max-width: calc(20% - 20px);
}


@media screen and (max-width: 992px) {
  .custom-col {
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
  }
}
/* @media screen and (max-width: 992px) {
  .custom-col {
    flex: 0 0 calc(33.3333% - 20px);
    max-width: calc(33.3333% - 20px);
  }
} */
@media screen and (max-width: 768px) {
  .custom-col {
    flex: 0 0 calc(33.3333% - 20px);
    max-width: calc(33.3333% - 20px);
  }
}
@media screen and (max-width: 576px) {
  .custom-col {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
/* @media screen and (max-width: 480px) {
  .custom-col {
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
} */

.container {
  width: 100%;
  max-width: 1360px;
  padding: 0 20px;
  margin: 0 auto;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 80px;
}

.header-logo img {
  height: 56px;
  object-fit: contain;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;

}

.header-menu a {
  position: relative;
  color: rgb(17, 60, 47);
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}

.header-menu a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #0e4464;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.header-menu a:hover::after,
.header-menu a.active::after {
  transform: scaleX(1);
}

.header-logo-only,
.header-burger {
  display: none;
}
.header-lang {
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
  color: #0e4464;
  font-size: 16px;
  font-weight: 400;
  line-height: 15px;
  text-transform: uppercase;
  position: relative;
  padding: 10px;
  height: 44px;
}

.header-lang span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(39, 70, 137);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.header-lang img:not(.header-lang span img) {
  opacity: 0.5;
}

.header-lang-dropdown {
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 10;
}

.header-lang:hover .header-lang-dropdown {
  opacity: 1;
  visibility: visible;
}

.header-lang-dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: column;
  gap: 0;
}

.header-lang-dropdown ul li a {
  width: auto;
  border-radius: 0;
  background-color: #fff;
  transition: 0.3s;
  padding: 10px 18px;
  display: inline-block;
  color: #343434;
  text-decoration: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.header-lang-dropdown ul li a.active {
  color: #0e4464;
}

.header-lang-dropdown ul li a:hover {
  background-color: #f0f0f0;
}


.section-slider {
  position: relative;
}

.section-slider .navigation-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-slider .slick-dots {
  position: absolute;
  bottom: 20px;
  display: flex !important;
}

.section-slider .slick-dots button {
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: #ffffff70;
  font-size: 20px;
  font-weight: 700;
}

.section-slider .slick-dots .slick-active button {
  color: #ffffff !important;
  font-size: 24px;
}

.section-slider .carousel-inner {
  height: calc(100vh - 96px);
  max-height: 700px;
}

.section-slider .section-slider-item {
  height: calc(100vh - 96px);
  max-height: 700px;
  width: 100vw;
}

.section-slider .section-slider-item .container {
  padding: 0;
}

.section-slider .section-slider-item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  position: relative;
  z-index: 1;
}

.section-slider .section-slider-item::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  border-radius: 0 700px 700px 0;
  top: 0;
  left: 0;
  background-color: rgba(17, 60, 47, 0.8);
  z-index: -1;
}

.section-slider .section-slider-item h2 {
  color: rgb(255, 255, 255);
  width: 50%;
  font-size: 60px;
  font-weight: 700;
  line-height: 64px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-slider .section-slider-item p {
  color: rgb(255, 255, 255);
  font-size: 22px;
  font-weight: 500;
  line-height: 27px;
}

.section-slider .section-slider-item small {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 34px;
}

.section-slider .section-slider-item a {
  padding: 16px 30px;
  background-color: #fff;
  padding: 16px 30px;
  color: rgb(39, 70, 137);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}

.section-slider .slick-arrow,
.section-slider .slick-arrow:active {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #113C2F;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.section-slider .custom-prev {
  background-color: #ffffff76;
}

.section-slider .slick-arrow img {
  height: 20px;
}

.section-slider .navigation-container {
  padding: 0 10px;
}

.section-about,
.section-service,
.section-partner,
.section-feedback {
  padding: 80px 0;
}

.section-service h2,
.section-partner h2,
.section-feedback h2 {
  text-align: center;
  margin-bottom: 40px;
}

.section-service h2 {
  color: #fff;
}

.section-about h2 {
  margin-bottom: 18px;
  color: #113c2f;
  font-family: Montserrat;
  font-size: 34px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
}

.section-about p {
  color: rgb(52, 52, 52);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 30px;
}


.section-about ul li {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  padding: 8px 0 8px 20px;
}

.section-about ul li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #113c2f;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.section-about-video {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-about-mission{
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.section-about-video-poster{
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1 1 auto;
}

.about-player {
  position: absolute;
  height: 60px;
  object-fit: contain;
}

.section-body-more .section-body-video {
  display: block;
  height: 100%;
}

.section-service {
  background-color: #113C2F;

}

.service-item {
  display: flex;
  align-items: flex-end;
  background: var(--bg-image-url) no-repeat center center / cover;
  height: 440px;
  border-radius: 12px;
  overflow: hidden;
}

.service-item-info {
  padding: 30px 50px;
  background-color: rgba(255, 255, 255, 0.8);
}

.service-item-info h3 {
  color: rgb(17, 60, 47);
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.service-item-info p {
  color: rgb(17, 60, 47);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0;
}

.service-item-info button {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-transform: uppercase;
  padding: 0;
  border-radius: 12px;
  background-color: #113C2F;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  height: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.service-item:hover .service-item-info button {
  height: auto;
  padding: 20px 30px;
  opacity: 1;
  pointer-events: auto;
  margin-top: 20px;
}

.service-item:hover .service-item-info {
  background-color: rgba(255, 255, 255, 1);
}

.section-partner h2 {
  margin-bottom: 26px;
  color: rgb(17, 60, 47);
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  text-transform: uppercase;
}

.section-partner .custom-col {
  background-color: #F1F4F3;
  height: 140px;
  display: flex;
}

.section-partner .custom-col img {
  max-width: 70%;
  max-height: 80%;
  object-fit: contain;
  margin: auto;
  display: block;
}

.section-feedback {
  background: url('../image/form-bg.jpeg') no-repeat center center / cover;
}

.section-feedback h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  text-transform: uppercase;
}

.section-feedback form {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #ffffff6b;
}

.section-feedback form input,
.section-feedback form textarea {
  border-radius: 12px;
  background-color: #ffffff20;
  padding: 20px 30px;
  color: #fff;
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  border: none;
  margin-bottom: 20px;
  width: 100%;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.section-feedback form textarea {
  height: 190px;
  resize: none;
}

.section-feedback form input::placeholder,
.section-feedback form textarea::placeholder {
  color: #fff;
  opacity: 0.7;
}

.section-feedback form button {
  background-color: #fff;
  color: #113C2F;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  text-transform: uppercase;
  padding: 16px 30px;
  height: 50px;
  border-radius: 12px;
  border: none;
  display: block;
  width: max-content;
  margin: 0 auto;
}

.section-feedback ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-feedback ul li {
  flex: 1;
}

.section-feedback ul a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

footer {
  background-color: #113A2D;
}

.footer-top {
  padding: 60px 0;
  border-bottom: 1px solid #ffffff6b;
}

.footer-top {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

.footer-top img {
  width: 230px;
}

.footer-top ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-top ul a svg {
  fill: #fff;
}

.footer-top ul a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff20;
  transition: all 0.3s ease-in-out;
  color: #fff;
}

.footer-top ul a:hover {
  background-color: #fff;
  color: #113C2F;
}

.footer-top ul a:hover svg {
  fill: #113C2F;
}

.footer-bottom {
  padding: 24px 0;
  color: #A0B0AB;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom span {
  color: #A0B0AB;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}


.header-mobile {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  z-index: 11;
  background-color: #00000050;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.header-mobile.active {
  left: 0;
}

.header-mobile-menu {
  background-color: #fff;
  width: max-content;
  width: 80%;
  height: 100vh;
}
.header-mobile-header {
  background-color: #f2f4f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 18px;
}

.header-mobile-header ul a {
  background-color: #fff !important;
}
.header-mobile-body {
  height: calc(100vh - 60px);
  overflow: scroll;
}

.header-mobile-body ul {
  width: 100%;
}

.header-mobile-body ul a,
.header-mobile-body ul span {
  padding: 25px 30px;
  color: #113c2f;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  display: block;
  border-bottom: 1px solid #d9d9d9;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}

.header-mobile-body ul a.active {
  background-color: #113c2f;
  color: #fff;
}

.header-mobile-body ul li ul {
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header-mobile-body ul li:hover ul,
.header-mobile-body ul li.show ul {
  height: max-content;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header-mobile-body ul li ul a {
  padding: 20px 30px;
  color: 113c2f;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  display: block;
  border-bottom: none;
}
.header-mobile-body ul li ul a:hover {
  background-color: #113c2f;
  color: #fff;
}
.header-mobile-body ul li ul a.active {
  background-color: #113c2f;
  color: #fff;
}
.header-mobile-body ul li ul a::after {
  display: none;
}
.header-mobile-body ul li ul a:last-child {
  border-bottom: none;
}
.header-mobile-body ul li ul a:hover {
  background-color: #113c2f;
  color: #fff;
}
.header-mobile-body ul li ul a.active {
  background-color: #113c2f;
  color: #fff;
}
.header-mobile-body ul li ul a::after {
  display: none;
}
.header-mobile-body ul li ul a:last-child {
  border-bottom: none;
}
.header-mobile-body ul li ul a:hover {
  background-color: #113c2f;
  color: #fff;
}
.header-mobile-body ul li ul a.active {
  background-color: #113c2f;
  color: #fff;
}
.header-mobile-body ul li ul a::after {
  display: none;
}

.modal-dialog {
  width: 100%;
  max-width: 730px;
}

.modal-content {
  border-radius: 24px;
  overflow: hidden;
}

.modal-body {
  padding: 50px;
}

.modal-body input,
.modal-body textarea,
.modal-body input:focus,
.modal-body textarea:focus {
  width: 100%;
  padding: 16px;
  border-radius: 5px;
  border: 2px solid #113C2F;
  background-color: #ffffff30;
  color: #113C2F;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 14px;
  outline: none;
}

.modal-body input::placeholder,
.modal-body textarea::placeholder {
  color: #113C2F;
}

.modal-body h4 {
  color: #113C2F;
  font-size: 40px;
  font-weight: 500;
  line-height: 49px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.modal-body p {
  color: #113C2F;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
  text-align: center;
  margin-bottom: 30px;
}

.modal-body form {
  margin-bottom: 20px;
}

.modal-body button{
  display: block;
  text-transform: uppercase;
  padding: 20px 24px;
  background-color: #113C2F;
  width: 100%;
  border: none;
  margin: auto;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  line-height: 32px;
}


@media screen and (max-width: 1550px) {
  .section-slider .section-slider-item h2,
  .section-slider .section-slider-item p{
    padding-left: 50px; 
  }
}

@media screen and (max-width: 1200px) {
  header .container{
    gap: 30px;
  }
}
@media screen and (max-width: 1120px) {
  .header-logo img{
    height: 46px;
  }
  .header-lang{
    margin-left: auto;
  }
  .header-menu{
    display: none;
  }
  .header-burger{
    display: block !important; 
    cursor: pointer;
  }
}

@media screen and (max-width: 992px) {
  .section-slider  .section-slider-item{
    justify-content: flex-end !important;
  }
  .section-slider .section-slider-item::after{
    border-radius:0;
    width: 100%;
    height: 30%;
    bottom: 0;
    top: auto;
    display: none;
  }
  .section-slider .section-slider-item p,
  .section-slider .slick-dots,
  .section-slider .slick-arrow, .section-slider .slick-arrow:active,
  .navigation-container{
    display: none !important;
  }
  .section-slider .section-slider-item h2{
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    background-color: #113A2D;
    padding: 20px;
    font-size: 34px;
    line-height: 40px;
  }

  .section-slider .carousel-inner,
  .section-slider .section-slider-item{
    height: 400px;
  }

  .section-feedback ul{
    flex-direction: column;
    gap: 30px;
  }
  .section-feedback ul a{
    gap: 6px;
  }
  .footer-bottom{
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 576px){
  .header-logo img{
    display: none;
  }
  .header-logo-only{
    display: block !important;
    height: 58px !important;
  }
  header .container{
    padding: 14px 20px;
  }

  .section-slider .section-slider-item h2{
    font-size: 24px;
    line-height: 40px;
    padding: 10px;
  }
  .section-slider .carousel-inner,
  .section-slider .section-slider-item{
    height: 200px;
  }
  .section-about, .section-service, .section-partner, .section-feedback{
    padding: 50px 0;
  }
  .service-item-info{
    padding: 20px;
  }
  .section-about h2{
    font-size: 28px;
  }
  .section-about ul li{
    font-size: 16px;
    padding: 0px 0 5px 20px;
  }
  .section-partner h2,
  .section-feedback h2{
    font-size: 26px;
    line-height: 40px;
  }
}