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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-overflow: "";
}

body {
  font-family: "Comfortaa", cursive;
}

h1 {
  text-align: center;
  text-transform: capitalize;
  font-family: "Comfortaa", cursive;
  padding: 1rem;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
}

.max-width {
  max-width: 1170px;
  margin: 0 auto;
}

.header {
  height: 50px;
  background: #fff;
  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;
  padding: 2rem 1rem 2rem 1rem;
  position: fixed;
  width: 100%;
  z-index: 2;
  -webkit-box-shadow: 0px 1px 5px 1px rgba(221, 221, 221, 0.5);
          box-shadow: 0px 1px 5px 1px rgba(221, 221, 221, 0.5);
}

.header .header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 50px;
}

.header .header-left .burger-middle {
  height: 2px;
  width: 25px;
  background: #000;
  margin-right: 0.5rem;
}

.header .header-left .burger-middle::before {
  content: "";
  height: 2px;
  width: 25px;
  background: #000;
  position: absolute;
  top: 16px;
}

.header .header-left .burger-middle::after {
  content: "";
  height: 2px;
  width: 25px;
  background: #000;
  position: absolute;
  top: 32px;
}

.header .header-left .logo {
  padding-left: 0.5rem;
}

.header .header-right {
  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;
  position: relative;
  height: 50px;
}

.header .header-right .fa-search {
  font-size: 1.5rem;
  padding-right: 0.5rem;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.header .header-right .spin-search {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.header .header-right .lang {
  border-radius: 50%;
  padding: 0.5rem;
  color: #fff;
  background: #0473db;
  border: none;
  font-size: 1rem;
  margin-right: 0.5rem;
  text-align: center;
  outline: none;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.header .header-right .dot-menu {
  padding: 0.5rem;
  cursor: pointer;
}

.header .header-right .dot-menu .middle-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #000;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.header .header-right .dot-menu .middle-dot-open::before {
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
  background-color: #fff;
}

.header .header-right .dot-menu .middle-dot-open::after {
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
}

.header .header-right .dot-menu .middle-dot::before {
  content: "";
  position: absolute;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #000;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.header .header-right .dot-menu .middle-dot::after {
  content: "";
  position: absolute;
  top: 30px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #000;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.search {
  position: fixed;
  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;
  top: 64px;
  width: 100%;
  height: 0px;
  background: #fff;
  padding: 0rem 1rem;
  -webkit-box-shadow: 0px -5px 9px -4px rgba(0, 0, 0, 0.3);
          box-shadow: 0px -5px 9px -4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  overflow: hidden;
  z-index: 2;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.search #search {
  width: 100%;
  border: none;
  font-size: 1rem;
  outline: none;
  font-family: Poppins;
}

.search .fa-search {
  font-size: 1.7rem;
  cursor: pointer;
}

.nav-contact {
  position: fixed;
  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;
  z-index: 2;
  top: 64px;
  right: 0;
  height: 0;
  background: #fff;
  padding: 0rem 1rem;
  -webkit-box-shadow: 0px -5px 9px -4px rgba(0, 0, 0, 0.3);
          box-shadow: 0px -5px 9px -4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.nav-contact .blue-text {
  color: #0473db;
  font-weight: bold;
}

.nav-contact h3 {
  color: grey;
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: Poppins;
  font-weight: 200;
}

.showHeaderItem {
  opacity: 1;
  height: 64px;
}

.swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.swiper .swiper-one, .swiper .swiper-two {
  height: 360px;
  background: url("../img/slide-1.jpg") center/cover no-repeat;
  padding: 1rem;
  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;
  margin-top: 2rem;
  overflow: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.swiper .swiper-one h1, .swiper .swiper-two h1 {
  color: #fff;
  font-size: 2rem;
  line-height: 3.5rem;
  padding: 0;
}

.swiper .swiper-one h3, .swiper .swiper-two h3 {
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  font-weight: lighter;
  padding-bottom: 1.5rem;
  text-align: center;
}

.swiper .swiper-one .swiper-btn, .swiper .swiper-two .swiper-btn {
  background: #f8ea49;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
  letter-spacing: 0.15rem;
  cursor: pointer;
  -webkit-transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out, opacity 0.5s ease-in-out 0.75s, -webkit-transform 0.5s ease-in-out 0.75s !important;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out, opacity 0.5s ease-in-out 0.75s, -webkit-transform 0.5s ease-in-out 0.75s !important;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out, transform 0.5s ease-in-out 0.75s, opacity 0.5s ease-in-out 0.75s !important;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out, transform 0.5s ease-in-out 0.75s, opacity 0.5s ease-in-out 0.75s, -webkit-transform 0.5s ease-in-out 0.75s !important;
}

.swiper .swiper-one .swiper-btn:hover, .swiper .swiper-two .swiper-btn:hover {
  background-color: #0473db;
  color: #fff;
}

.swiper .swiper-one .swiper__item--one, .swiper .swiper-two .swiper__item--one {
  -webkit-transform: translateX(-10vw);
          transform: translateX(-10vw);
  opacity: 0;
}

.swiper .swiper-one .showItems, .swiper .swiper-two .showItems {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.swiper .swiper-one .swiper__item--one:nth-child(1), .swiper .swiper-two .swiper__item--one:nth-child(1) {
  -webkit-transition: opacity 0.5s ease-in-out 0.35s, -webkit-transform 0.5s ease-in-out 0.35s;
  transition: opacity 0.5s ease-in-out 0.35s, -webkit-transform 0.5s ease-in-out 0.35s;
  transition: transform 0.5s ease-in-out 0.35s, opacity 0.5s ease-in-out 0.35s;
  transition: transform 0.5s ease-in-out 0.35s, opacity 0.5s ease-in-out 0.35s, -webkit-transform 0.5s ease-in-out 0.35s;
}

.swiper .swiper-one .swiper__item--one:nth-child(2), .swiper .swiper-two .swiper__item--one:nth-child(2) {
  -webkit-transition: opacity 0.5s ease-in-out 0.55s, -webkit-transform 0.5s ease-in-out 0.55s;
  transition: opacity 0.5s ease-in-out 0.55s, -webkit-transform 0.5s ease-in-out 0.55s;
  transition: transform 0.5s ease-in-out 0.55s, opacity 0.5s ease-in-out 0.55s;
  transition: transform 0.5s ease-in-out 0.55s, opacity 0.5s ease-in-out 0.55s, -webkit-transform 0.5s ease-in-out 0.55s;
}

.swiper .swiper-one .swiper__item--one:nth-child(3), .swiper .swiper-two .swiper__item--one:nth-child(3) {
  -webkit-transition: opacity 0.5s ease-in-out 0.75s, -webkit-transform 0.5s ease-in-out 0.75s;
  transition: opacity 0.5s ease-in-out 0.75s, -webkit-transform 0.5s ease-in-out 0.75s;
  transition: transform 0.5s ease-in-out 0.75s, opacity 0.5s ease-in-out 0.75s;
  transition: transform 0.5s ease-in-out 0.75s, opacity 0.5s ease-in-out 0.75s, -webkit-transform 0.5s ease-in-out 0.75s;
}

@media screen and (min-width: 768px) {
  .swiper .swiper-one, .swiper .swiper-two {
    height: 500px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 1rem;
  }
  .swiper .swiper-one h1, .swiper .swiper-two h1 {
    font-size: 3rem;
    text-align: left;
    line-height: 5rem;
  }
  .swiper .swiper-one .swiper__item--one, .swiper .swiper-two .swiper__item--one {
    margin-left: 2rem;
    max-width: 60%;
  }
  .swiper .swiper-one .swiper-btn, .swiper .swiper-two .swiper-btn {
    font-size: 1rem;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .swiper .swiper-one h3, .swiper .swiper-two h3 {
    font-size: 1.1rem;
    text-align: left;
  }
  .swiper .swiper-two .swiper__item--two {
    margin-left: 2rem;
    max-width: 60%;
  }
}

.swiper .swiper-two {
  background: url("../img/slide-2.jpg") center/cover no-repeat;
  position: absolute;
  width: 100%;
  top: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.swiper .swiper-two .swiper__item--two {
  -webkit-transform: translateX(-10vw);
          transform: translateX(-10vw);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.swiper .swiper-two .showItems {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.swiper .swiper-two .swiper__item--two:nth-child(1) {
  -webkit-transition: opacity 0.5s ease-in-out 0.35s, -webkit-transform 0.5s ease-in-out 0.35s;
  transition: opacity 0.5s ease-in-out 0.35s, -webkit-transform 0.5s ease-in-out 0.35s;
  transition: transform 0.5s ease-in-out 0.35s, opacity 0.5s ease-in-out 0.35s;
  transition: transform 0.5s ease-in-out 0.35s, opacity 0.5s ease-in-out 0.35s, -webkit-transform 0.5s ease-in-out 0.35s;
}

.swiper .swiper-two .swiper__item--two:nth-child(2) {
  -webkit-transition: opacity 0.5s ease-in-out 0.55s, -webkit-transform 0.5s ease-in-out 0.55s;
  transition: opacity 0.5s ease-in-out 0.55s, -webkit-transform 0.5s ease-in-out 0.55s;
  transition: transform 0.5s ease-in-out 0.55s, opacity 0.5s ease-in-out 0.55s;
  transition: transform 0.5s ease-in-out 0.55s, opacity 0.5s ease-in-out 0.55s, -webkit-transform 0.5s ease-in-out 0.55s;
}

.swiper .swiper-two .swiper__item--two:nth-child(3) {
  -webkit-transition: opacity 0.5s ease-in-out 0.75s, -webkit-transform 0.5s ease-in-out 0.75s;
  transition: opacity 0.5s ease-in-out 0.75s, -webkit-transform 0.5s ease-in-out 0.75s;
  transition: transform 0.5s ease-in-out 0.75s, opacity 0.5s ease-in-out 0.75s;
  transition: transform 0.5s ease-in-out 0.75s, opacity 0.5s ease-in-out 0.75s, -webkit-transform 0.5s ease-in-out 0.75s;
}

.swiper .swiper-pagination-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: absolute;
  bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .swiper .swiper-pagination-dots {
    bottom: 1.5rem;
  }
}

.swiper .swiper-pagination--single {
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.swiper #swiper-pargination-one {
  background: #f8ea49;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  margin: 0 0.25rem;
}

.swiper #swiper-pargination-two {
  margin: 0 0.25rem;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.swiper .showRightSwiper {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.swiper .hideLeftSwiper {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.destinations-container {
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 1170px;
  margin: 0 auto;
}

.destinations-container .destination-one, .destinations-container .destination-two, .destinations-container .destination-three {
  text-align: center;
  padding-top: 3rem;
  display: inline-block;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.destinations-container .destination-one .destination-img, .destinations-container .destination-two .destination-img, .destinations-container .destination-three .destination-img {
  display: block;
  margin: 0 auto 2rem auto;
  outline: 1px solid lightgrey;
  outline-offset: 15px;
  max-width: 280px;
}

.destinations-container .destination-one h2, .destinations-container .destination-two h2, .destinations-container .destination-three h2 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.destinations-container .destination-one h3, .destinations-container .destination-two h3, .destinations-container .destination-three h3 {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.destinations-container .destination-one .destination-btn, .destinations-container .destination-two .destination-btn, .destinations-container .destination-three .destination-btn {
  text-transform: uppercase;
  color: rgba(100, 100, 100, 0.5);
  font-family: Poppins;
  border-bottom: 2px solid grey;
  display: inline;
  padding: 0.4rem 0;
}

.destinations-container .destination-two {
  position: absolute;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  left: 0;
  right: 0;
}

.destinations-container .destination-three {
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
}

.destinations-container .hideDestinationLeft {
  -webkit-transform: translateX(-100vw);
          transform: translateX(-100vw);
}

.destinations-container .hideDestinationRight {
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
}

.destinations-container .showDestination {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.destinations-container .moveLeft {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}

.destination-pagination-dots {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
}

.destination-pagination-dot {
  width: 15px;
  height: 15px;
  background: #dadada;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 0.25rem;
}

#destination-pag-1 {
  background: #0473db;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

#destination-pag-2 {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

#destination-pag-3 {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

@media screen and (min-width: 1024px) {
  .single-destination-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .single-destination-wrapper img {
    width: 100%;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .destination-one, .destinations-container .destination-two, .destinations-container .destination-three {
    width: 290px;
  }
  .destination-one h3, .destinations-container .destination-two h3, .destinations-container .destination-three h3 {
    color: #777777;
  }
  .destination-one:hover img, .destinations-container .destination-two:hover img, .destinations-container .destination-three:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .destination-one:hover .destination-img, .destinations-container .destination-two:hover .destination-img, .destinations-container .destination-three:hover .destination-img {
    outline-offset: 0;
  }
  .destination-one:hover .destination-btn, .destinations-container .destination-two:hover .destination-btn, .destinations-container .destination-three:hover .destination-btn {
    border: 2px solid #0473db;
    border-radius: 5px;
    padding: 0.4rem 1rem;
    color: #0473db;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .destination-one:hover .destination-one, .destinations-container .destination-two:hover .destination-one, .destinations-container .destination-three:hover .destination-one, .destination-one:hover .destinations-container .destination-two, .destinations-container .destination-one:hover .destination-two, .destinations-container .destination-two:hover .destination-two, .destinations-container .destination-three:hover .destination-two, .destination-one:hover .destinations-container .destination-three, .destinations-container .destination-one:hover .destination-three, .destinations-container .destination-two:hover .destination-three, .destinations-container .destination-three:hover .destination-three {
    border: 1px solid black !important;
    width: 310px !important;
  }
  .destination-btn {
    font-size: 1rem !important;
  }
  .destination-two {
    all: unset !important;
    padding-top: 3rem !important;
    width: 290px !important;
  }
  .destination-three {
    all: unset !important;
    padding-top: 3rem !important;
    width: 290px !important;
  }
  .destination-pagination-dots {
    display: none;
  }
}

.features {
  background: #eff3f8;
}

.features-wrapper {
  text-align: center;
  padding: 2rem;
  position: relative;
  max-width: 1170;
  margin: 0 auto;
}

.features .single-feature {
  padding: 1rem;
}

.features .feature-img {
  display: block;
  margin: 0 auto;
  padding-bottom: 1rem;
}

.features p {
  font-family: "Poppins";
  color: #77778c;
  font-size: 0.9rem;
}

@media screen and (min-width: 768px) {
  .features-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-row-gap: 2rem;
        grid-template-areas: "a c" "b d";
    padding: 4rem;
  }
  .features-wrapper #feature-1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: a;
  }
  .features-wrapper #feature-2 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: b;
  }
  .features-wrapper #feature-3 {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: c;
  }
  .features-wrapper #feature-4 {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    grid-area: d;
  }
  .features-wrapper p {
    max-width: 70%;
    margin: 0 auto;
  }
  .single-feature {
    position: relative;
  }
  .feature-line {
    height: 1px;
    width: 90%;
    margin: 0 auto;
    background-color: #e1e1e1;
    position: absolute;
    bottom: -0.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .features {
    background: url("../img/features-bg.jpg") center/cover no-repeat;
    height: 631px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .features img {
    margin: 0 !important;
    padding: 0 !important;
    -o-object-fit: contain;
    object-fit: contain;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .features h1 {
    padding: 0 0 1rem 0;
  }
  .features-wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: "a . c" "b . d";
    row-gap: 5rem;
    padding: 0;
  }
  .features-wrapper p {
    max-width: 100%;
  }
  #feature-1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: a;
    text-align: right;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #feature-2 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: b;
    text-align: right;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #feature-3 {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: c;
    text-align: left;
  }
  #feature-4 {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
    grid-area: d;
    text-align: left;
  }
  .single-feature {
    min-width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    position: relative;
  }
  .h1-right {
    text-align: end;
  }
  .h1-left {
    text-align: start;
  }
  .feature-line {
    height: 1px;
    width: 90%;
    margin: 0 auto;
    background-color: #e1e1e1;
    position: absolute;
    bottom: -2.5rem;
  }
}

.counter {
  padding: 0 2rem 0 1rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05))), url("../img/parallax.jpeg") center/cover fixed no-repeat;
  background: linear-gradient(rgba(255, 255, 255, 0.05)), url("../img/parallax.jpeg") center/cover fixed no-repeat;
  color: #fff;
}

.counter-wrapper {
  height: 380px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-row-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  max-width: 1170px;
  margin: 0 auto;
}

.counter-single-line {
  width: 2rem;
  height: 2px;
  background: #fff;
  margin: 1rem auto;
}

.counter .line-3 {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.counter .line-4 {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.counter h1 {
  font-size: 2rem;
  padding-bottom: 0;
}

.counter h2 {
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .counter-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
  .counter-wrapper .line-3 {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .counter-wrapper .line-4 {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@media screen and (min-width: 1200px) {
  .counter h1 {
    font-size: 3rem;
  }
}

.image-slider {
  margin: 5rem 1rem;
}

.image-slider .container {
  position: relative;
  padding-bottom: 3rem;
}

.image-slider .image-slider-container {
  padding: 0 2rem;
}

.image-slider .slider-img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.image-slider .slider-img-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.image-slider .slider-img-3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.image-slider .image-slider-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 0;
}

.image-slider .image-slider-pagination-dot {
  width: 15px;
  height: 15px;
  background: #dadada;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 0.25rem;
}

.image-slider #slider-pag-1 {
  background: #0473db;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.image-slider #slider-pag-2 {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.image-slider #slider-pag-3 {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.image-slider .showSlider {
  opacity: 1;
}

.image-slider .hideSlider {
  opacity: 1;
}

.image-slider__dropdown {
  padding: 1rem;
  max-width: 370px;
}

.image-slider__dropdown h3 {
  border-bottom: 1px solid #e1e1e1;
  padding: 0.5rem;
  font-size: 0.9rem;
  text-transform: capitalize;
  font-family: "Poppins";
  font-weight: 500;
}

.image-slider__dropdown .fa-chevron-right {
  color: #0473db;
  padding: 0.5rem 0.65rem;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 15px 1px #e5e5e5;
          box-shadow: 0px 0px 15px 1px #e5e5e5;
  margin-right: 1rem;
  font-size: 0.8rem;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.image-slider__dropdown .chevron-animate {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: #0473db;
  color: #fff;
}

.image-slider__dropdown .hidden-wrapper {
  height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.image-slider__dropdown .hidden-wrapper .hidden {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  padding: 1rem;
  color: #777777;
}

.image-slider__dropdown .showHidden {
  position: relative;
  height: 160px;
  min-height: 100% !important;
  padding-bottom: 3rem;
  opacity: 1;
}

.image-slider .image-slider__single-card {
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid lightgray;
  text-align: center;
}

.image-slider .image-slider__single-card h2 {
  font-size: 1rem;
  text-transform: capitalize;
  padding: 0.2rem;
}

.image-slider .image-slider__single-card .fas {
  font-size: 3rem;
  color: #0473db;
  margin-bottom: 0.5rem;
}

.image-slider .image-slider__single-card p {
  text-transform: capitalize;
  font-family: "Poppins";
  font-size: 0.8rem;
  color: #777777;
}

@media screen and (min-width: 768px) {
  .flexbox-1 {
    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;
    padding: 0 5rem;
    margin: 0 auto;
    max-width: 1024px;
  }
  .flexbox-1 .image-slider__dropdown {
    width: 500px;
  }
  .flexbox-1 .image-slider__dropdown h1 {
    font-size: 1.5rem;
    text-align: left;
  }
  .flexbox-1 .image-slider__dropdown h3 {
    padding: 1.5rem;
  }
  .flexbox-1 .container {
    width: 60%;
    min-width: 300px;
  }
  .image-slider__cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
    padding: 2rem;
    max-width: 80%;
    margin: 0 auto;
  }
  .image-slider__single-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    padding: 1rem !important;
    margin: 0 !important;
    min-width: 360px;
  }
  .image-slider__single-card h2 {
    font-size: 1.25rem !important;
  }
  .image-slider__single-card p {
    font-size: 1rem !important;
  }
  .image-slider__text {
    text-align: left;
  }
}

@media screen and (min-width: 1200px) {
  .image-slider__cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .image-slider__single-card {
    padding: 2rem !important;
  }
  .flexbox-1 {
    max-width: 1920px;
  }
  .container {
    padding: 0;
    -ms-grid-column-align: end;
        justify-self: end;
    max-width: 600px;
  }
  .image-slider__dropdown h1 {
    font-size: 2.5rem !important;
  }
  .image-slider__dropdown h3 {
    font-size: 1.1rem;
  }
  .image-slider-pagination {
    bottom: 5rem !important;
  }
}

.testimonials {
  background: #eff3f8;
  padding: 2rem 1rem;
  position: relative;
}

.testimonials img {
  border-radius: 50%;
  margin-bottom: 1rem;
}

.testimonials p {
  font-family: "Poppins";
  color: #777777;
  font-size: 1rem;
  line-height: 2rem;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.testimonials h2 {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bolder;
  letter-spacing: 0.15rem;
  font-family: "Poppins";
}

.testimonials h3 {
  font-size: 0.8rem;
  text-transform: capitalize;
  font-style: italic;
  color: #0473db;
  font-weight: 600;
}

.testimonial-person__track {
  display: none;
}

.testimonial-person {
  padding-top: 3rem;
}

.testimonial-container {
  width: 100%;
  overflow: hidden;
}

.testimonial-wrapper {
  position: relative;
  height: 450px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.single-testimonial {
  text-align: center;
  padding: 0 2rem;
  line-height: 1.7rem;
  font-size: 1.2rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 100%;
}

.single-testimonial.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.single-testimonial.next {
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
}

.single-testimonial.last {
  -webkit-transform: translateX(-100vw);
          transform: translateX(-100vw);
}

.prev-btn {
  position: absolute;
  top: 50%;
}

.next-btn {
  position: absolute;
  top: 50%;
  right: 1rem;
}

.btn {
  cursor: pointer;
}

.underline {
  width: 100%;
  height: 2px;
  margin: 0 auto;
  background: #a9a9a9;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.prev-btn p,
.next-btn p {
  font-weight: bold;
}

.prev-btn:hover .btn,
.next-btn:hover .btn {
  color: #000;
}

.prev-btn:hover .underline,
.next-btn:hover .underline {
  background: #000;
  width: 70%;
}

@media screen and (min-width: 768px) {
  .testimonial-person {
    display: none;
  }
  .testimonial-btns {
    display: none;
  }
  .testimonial-person__track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 1.5rem 0;
    max-width: 800px;
    margin: 0 auto;
  }
  .testimonial-person-md {
    text-align: center;
    width: 170px;
    opacity: 0.5;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .testimonial-person-md:hover {
    opacity: 1;
    cursor: pointer;
  }
  .testimonial-person-md img {
    width: 50%;
  }
  .testimonial-wrapper {
    height: 120px;
  }
  .single-testimonial {
    padding: 1rem 2rem;
  }
  .single-testimonial p {
    font-size: 1.1rem;
  }
  .testimonials {
    padding: 4rem 1rem;
  }
  .testimonials h1 {
    font-size: 1.5rem;
  }
}

.active {
  opacity: 1;
}

@media screen and (min-width: 1200px) {
  .single-testimonial p {
    max-width: 900px;
    margin: 0 auto;
  }
}

.gallery {
  padding: 3rem 0;
}

.gallery__single-picture {
  max-width: 270px;
  margin: 0 auto;
  text-align: center;
  background: #f9faf9;
  margin-bottom: 3rem;
}

.gallery h1 {
  padding-bottom: 2rem;
}

.gallery h2 {
  font-size: 1.1rem;
  padding-bottom: 1rem;
  text-transform: capitalize;
}

.gallery img {
  width: 100%;
  padding-bottom: 1rem;
}

.gallery .fas {
  background: #0473db;
  border-radius: 50%;
  padding: 1rem;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 2rem;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.gallery .fas:hover {
  background: #f8ea49;
  color: #000;
}

.gallery__bigscreen {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.gallery__bigscreen-arrows {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 50%;
  color: #fff;
}

.showItem {
  z-index: 2;
  opacity: 1;
}

.arrow-left,
.arrow-right {
  width: 50px;
  height: 45px;
  position: absolute;
  top: 50%;
  background: rgba(0, 0, 0, 0.5);
  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;
  color: #838282;
  cursor: pointer;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.arrow-left .fas,
.arrow-right .fas {
  font-size: 1.3rem;
}

.arrow-left:hover,
.arrow-right:hover {
  color: #fff;
}

.arrow-right {
  right: 1rem;
}

.arrow-left {
  left: 1rem;
}

.gallery__bigscreen-container {
  position: relative;
  width: 100%;
  height: 85%;
}

.gallery__bigscreen-images {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 100%;
  height: 100%;
}

.gallery_bigscreen-img-1,
.gallery_bigscreen-img-2,
.gallery_bigscreen-img-3,
.gallery_bigscreen-img-4,
.gallery_bigscreen-img-5,
.gallery_bigscreen-img-6,
.gallery_bigscreen-img-7 {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.gallery_bigscreen-img-1 {
  background: url("../img/gallery1.jpg") center/contain no-repeat;
}

.gallery_bigscreen-img-2 {
  background: url("../img/gallery2.jpg") center/contain no-repeat;
}

.gallery_bigscreen-img-3 {
  background: url("../img/gallery3.jpg") center/contain no-repeat;
}

.gallery_bigscreen-img-4 {
  background: url("../img/gallery4.jpg") center/contain no-repeat;
}

.gallery_bigscreen-img-5 {
  background: url("../img/gallery5.jpg") center/contain no-repeat;
}

.gallery_bigscreen-img-6 {
  background: url("../img/gallery6.jpg") center/contain no-repeat;
}

.gallery_bigscreen-img-7 {
  background: url("../img/gallery7.jpg") center/contain no-repeat;
}

.gallery__bigscreen-carousel {
  position: absolute;
  bottom: 0;
  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;
  height: 0;
  width: 100%;
  background: #000;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.showCarousel {
  height: 100px;
}

.gallery__bigscreen-carousel--1,
.gallery__bigscreen-carousel--2,
.gallery__bigscreen-carousel--3,
.gallery__bigscreen-carousel--4,
.gallery__bigscreen-carousel--5,
.gallery__bigscreen-carousel--6,
.gallery__bigscreen-carousel--7 {
  min-width: 100px;
  height: 80px;
  border: 3px solid #fff;
  border-radius: 5px;
  margin: 0.2rem;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.gallery__bigscreen-carousel--1:hover,
.gallery__bigscreen-carousel--2:hover,
.gallery__bigscreen-carousel--3:hover,
.gallery__bigscreen-carousel--4:hover,
.gallery__bigscreen-carousel--5:hover,
.gallery__bigscreen-carousel--6:hover,
.gallery__bigscreen-carousel--7:hover {
  border-color: #0473db;
}

.gallery__bigscreen-carousel--1 {
  background: url("../img/gallery1tn.jpg") center/cover no-repeat;
}

.gallery__bigscreen-carousel--2 {
  background: url("../img/gallery2tn.jpg") center/cover no-repeat;
}

.gallery__bigscreen-carousel--3 {
  background: url("../img/gallery3tn.jpg") center/cover no-repeat;
}

.gallery__bigscreen-carousel--4 {
  background: url("../img/gallery4tn.jpg") center/cover no-repeat;
}

.gallery__bigscreen-carousel--5 {
  background: url("../img/gallery5tn.jpg") center/cover no-repeat;
}

.gallery__bigscreen-carousel--6 {
  background: url("../img/gallery6tn.jpg") center/cover no-repeat;
}

.gallery__bigscreen-carousel--7 {
  background: url("../img/gallery7tn.jpg") center/cover no-repeat;
}

.active-thumbnail {
  border-color: #0473db;
}

.gallery__bigscreen-header {
  position: absolute;
  height: 50px;
  width: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}

.gallery__bigscreen-header .close-btn {
  display: block;
}

.gallery__bigscreen-header .fas {
  color: #9b9b9b;
  position: absolute;
  right: 1rem;
  font-size: 1.6rem;
  cursor: pointer;
}

@media screen and (min-width: 576px) {
  .gallery__pictures-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "a b" "a b" "a b" "c b" "c b" "c d" "e d" "e d" "e f" "g f" "g f";
    gap: 1rem;
  }
  #gallery-1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
    grid-area: a;
    -ms-grid-column-align: end;
        justify-self: end;
  }
  #gallery-2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 5;
    -ms-grid-column: 2;
    grid-area: b;
  }
  #gallery-3 {
    -ms-grid-row: 4;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
    grid-area: c;
    -ms-grid-column-align: end;
        justify-self: end;
  }
  #gallery-4 {
    -ms-grid-row: 6;
    -ms-grid-row-span: 3;
    -ms-grid-column: 2;
    grid-area: d;
  }
  #gallery-5 {
    -ms-grid-row: 7;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
    grid-area: e;
    -ms-grid-column-align: end;
        justify-self: end;
  }
  #gallery-6 {
    -ms-grid-row: 9;
    -ms-grid-row-span: 3;
    -ms-grid-column: 2;
    grid-area: f;
  }
  #gallery-7 {
    -ms-grid-row: 10;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    grid-area: g;
    -ms-grid-column-align: end;
        justify-self: end;
  }
  .gallery__single-picture {
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .gallery__single-picture {
    min-width: 330px;
  }
  .gallery__single-picture img {
    padding: 0;
  }
}

@media screen and (min-width: 1124px) {
  .gallery__pictures-container {
    -ms-grid-columns: (330px)[3];
        grid-template-columns: repeat(3, 330px);
        grid-template-areas: "a b c" "d b e" "f g g";
    gap: 1rem;
    width: 1026px;
    margin: 0 auto;
  }
  .gallery__pictures-container img {
    padding: 0;
    height: 310px;
  }
  .gallery__single-picture {
    height: auto;
    position: relative;
  }
  .gallery__single-picture:hover .gallery__single-picture--info {
    opacity: 1;
  }
  .gallery__single-picture:hover .gallery__single-picture--info h2 {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .gallery__single-picture:hover .gallery__single-picture--info i {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .gallery__single-picture .gallery__single-picture--info {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    opacity: 0;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .gallery__single-picture .gallery__single-picture--info h2 {
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .gallery__single-picture .gallery__single-picture--info i {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  #gallery-1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: a;
    -ms-grid-column-align: end;
        justify-self: end;
  }
  #gallery-2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    grid-area: b;
    -ms-grid-column-align: center;
        justify-self: center;
  }
  #gallery-3 {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: c;
    -ms-grid-column-align: start;
        justify-self: start;
  }
  #gallery-4 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: d;
    -ms-grid-column-align: end;
        justify-self: end;
  }
  #gallery-5 {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
    grid-area: e;
    -ms-grid-column-align: start;
        justify-self: start;
  }
  #gallery-6 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: f;
  }
  #gallery-7 {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-area: g;
    -ms-grid-column-align: start;
        justify-self: start;
    min-width: calc(660px + 1rem);
  }
  .gallery {
    margin: 0 auto;
    width: 1100px;
  }
  #gallery-7-img {
    position: relative;
    width: 676px;
  }
  #gallery-2-img {
    height: 640px;
  }
}

@media screen and (min-width: 1200px) {
  .gallery__pictures-container {
    -ms-grid-columns: (270px)[4];
        grid-template-columns: repeat(4, 270px);
    -ms-grid-rows: (250px)[3];
        grid-template-rows: repeat(3, 250px);
        grid-template-areas: "a b c d" "e b f f" "g g f f";
    gap: 1rem;
    width: calc(1080px + 1rem);
    margin: 0 auto;
  }
  .gallery__pictures-container img {
    padding: 0;
    height: 250px;
  }
  .gallery__single-picture {
    min-width: 270px;
  }
  #gallery-2-img {
    height: calc(500px + 1rem);
  }
  #gallery-7-img {
    width: calc(540px + 1rem);
  }
  #gallery-7 {
    min-width: calc(540px + 1rem);
  }
  #gallery-6-img {
    width: calc(540px + 1rem);
    height: calc(500px + 1rem);
  }
  #gallery-6 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-area: f;
    min-width: calc(540px + 1rem);
    min-height: calc(500px + 1rem);
  }
}

.wrapper {
  background: url("../img/parallax2.jpg") center/cover no-repeat;
  padding: 3rem 1rem 0 1rem;
}

.newsletter {
  color: #fff;
  max-width: 1170px;
  margin: 0 auto;
}

.newsletter__title {
  text-align: center;
  padding-bottom: 2rem;
}

.newsletter__title p {
  font-family: "Comfortaa", cursive;
  font-weight: bolder;
  color: #afc4d5;
}

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

.newsletter__form--email {
  position: relative;
}

.newsletter__form--email .email-feedback {
  position: absolute;
  bottom: 1.1rem;
  right: 0;
  font-size: 0.6rem;
}

.newsletter__form ::-webkit-input-placeholder {
  color: #fff;
  text-align: center;
  letter-spacing: 0.2rem;
}

.newsletter__form :-ms-input-placeholder {
  color: #fff;
  text-align: center;
  letter-spacing: 0.2rem;
}

.newsletter__form ::-ms-input-placeholder {
  color: #fff;
  text-align: center;
  letter-spacing: 0.2rem;
}

.newsletter__form ::placeholder {
  color: #fff;
  text-align: center;
  letter-spacing: 0.2rem;
}

.newsletter__form input {
  background: transparent;
  border: none;
  padding: 1rem;
  margin-bottom: 1rem;
  outline: none;
  color: #fff;
  font-size: 1rem;
  border-bottom: 1px solid red;
  text-align: center;
  width: 100%;
}

.newsletter__form button {
  text-transform: uppercase;
  padding: 1rem;
  background: #f8ea49;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.newsletter__form button:hover {
  background: #0473db;
  color: #fff;
}

.email-sent {
  background: #000;
  padding: 1rem;
  text-align: center;
  text-transform: capitalize;
  width: 200px;
  margin: 0 auto;
  opacity: 0;
  color: #fff;
}

.showFeedback {
  opacity: 1 !important;
}

@media screen and (min-width: 768px) {
  .wrapper {
    padding: 3rem 2rem 1rem 2rem;
  }
  .newsletter {
    max-width: 70vw;
  }
  .newsletter h1 {
    text-align: left;
    padding-left: 0;
  }
  .newsletter p {
    text-align: left;
  }
  .newsletter__form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .newsletter__form--email {
    width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .wrapper {
    padding: 6rem 2rem 1rem 2rem;
  }
  .newsletter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem;
  }
  .newsletter h1 {
    font-size: 3rem;
    padding: 0 0 1rem 0;
  }
  .newsletter button {
    margin: 0;
    padding: 2rem 3rem;
  }
  .newsletter__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .newsletter__form--email {
    width: 650px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
}

.instructors {
  padding: 3rem 1rem;
  height: 550px;
  overflow: hidden;
}

.instructors img {
  display: block;
}

.instructors__track {
  height: 450px;
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.instructors__track .instructor {
  text-align: center;
  position: absolute;
}

.instructors-wrapper {
  position: relative;
  width: 270px;
  margin: 0 auto;
}

.instructors-wrapper .instructors-pagination {
  position: absolute;
  bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.instructors-wrapper .instructors-pagination .dot {
  width: 15px;
  height: 15px;
  background: #dadada;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 0.25rem;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.instructors-wrapper .instructors-pagination .dot:hover {
  background: #0473db;
}

.instructors-wrapper .instructors-pagination .active {
  background: #0473db;
}

.instructors h1 {
  padding: 0 0 2rem 0;
}

.instructors h2 {
  text-transform: capitalize;
  padding: 1rem 0;
  font-size: 1rem;
}

.instructors p {
  font-family: "Lato", sans-serif;
  color: #777777;
  padding-bottom: 1rem;
  font-size: 0.9rem;
}

.instructors i {
  font-size: 1.2rem;
  padding: 0 0.25rem;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.instructors i:hover {
  color: #0473db;
}

@media screen and (min-width: 768px) {
  .instructors-wrapper {
    width: 570px;
    overflow: hidden;
  }
  .instructor {
    width: 270px;
  }
  .instructors-pagination .dot:nth-child(2) {
    display: none;
  }
  .instructors-pagination .dot:nth-child(4) {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .instructors-wrapper {
    width: 870px;
  }
  .instructors-pagination .dot:nth-child(2) {
    display: block;
  }
  .instructors-pagination .dot:nth-child(3) {
    display: none;
  }
  .instructors-pagination .dot:nth-child(4) {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .instructors-wrapper {
    width: 1170px;
  }
  .instructors-pagination {
    visibility: hidden;
  }
  img {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  img:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .img-container {
    overflow: hidden;
  }
}

.blog {
  background: #eff3f8;
  padding: 3rem 0;
  position: relative;
}

.blog-wrapper {
  max-width: 330px;
  height: 530px;
  margin: 0 auto;
  overflow: hidden;
}

.blog-wrapper h1 {
  padding-bottom: 2rem;
}

.blog-wrapper .blogs-pagination {
  position: absolute;
  bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.blog-wrapper .blogs-pagination .dot {
  width: 15px;
  height: 15px;
  background: #dadada;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 0.25rem;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.blog-wrapper .blogs-pagination .dot:hover {
  background: #0473db;
}

.blog-wrapper .blogs-pagination .active {
  background: #0473db;
}

.blog-track {
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.blog-card {
  background: #fff;
  position: absolute;
  max-width: 330px;
}

.blog-card-text {
  padding: 1rem;
}

.blog-card-text h3 {
  font-family: "Lato", sans-serif;
  color: #777777;
  font-size: 0.9rem;
  font-weight: lighter;
  padding-bottom: 0.5rem;
  letter-spacing: 0.02rem;
}

.blog-card-text h2 {
  font-size: 1rem;
  padding-bottom: 0.5rem;
}

.blog-card .img-container-1 {
  width: 330px;
  height: 213.16px;
  background: url("../img/blog1.jpg") center/cover no-repeat;
}

.blog-card .img-container-2 {
  width: 330px;
  height: 213.16px;
  background: url("../img/blog2.jpg") center/cover no-repeat;
}

.blog-card .img-container-3 {
  width: 330px;
  height: 213.16px;
  background: url("../img/blog3.jpg") center/cover no-repeat;
}

@media screen and (min-width: 576px) {
  .blog-wrapper {
    width: 510px;
    max-width: 510px;
    height: 500px;
  }
  .blog-card {
    width: 240px;
  }
  .img-container-1 {
    width: 240px !important;
    height: 155.02px !important;
  }
  .img-container-2 {
    width: 240px !important;
    height: 155.02px !important;
  }
  .img-container-3 {
    width: 240px !important;
    height: 155.02px !important;
  }
  .blogs-pagination .dot:nth-child(3) {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .blog-wrapper {
    width: 690px;
    max-width: 690px;
    height: 600px;
  }
  .blog-wrapper h2 {
    font-size: 1.4rem;
    padding-bottom: 1.5rem;
    line-height: 2rem;
  }
  .blog-wrapper h3 {
    font-size: 1rem;
    padding-bottom: 1.5rem;
    letter-spacing: 0.05rem;
  }
  .blog-card {
    width: 330px;
  }
  .img-container-1 {
    width: 330px !important;
    height: 213.16px !important;
  }
  .img-container-2 {
    width: 330px !important;
    height: 213.16px !important;
  }
  .img-container-3 {
    width: 330px !important;
    height: 213.16px !important;
  }
}

@media screen and (min-width: 992px) {
  .blog-wrapper {
    width: 930px;
    max-width: 930px;
  }
  .blog-card {
    width: 290px;
  }
  .img-container-1 {
    width: 290px !important;
    height: 187.31px !important;
  }
  .img-container-2 {
    width: 290px !important;
    height: 187.31px !important;
  }
  .img-container-3 {
    width: 290px !important;
    height: 187.31px !important;
  }
  .blogs-pagination {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .blog-wrapper {
    width: 1170px;
    max-width: 1170px;
  }
  .blog-card {
    width: 370px;
    max-width: 370px;
  }
  .img-container-1 {
    width: 370px !important;
    height: 239px !important;
  }
  .img-container-2 {
    width: 370px !important;
    height: 239px !important;
  }
  .img-container-3 {
    width: 370px !important;
    height: 239px !important;
  }
  .blogs-pagination {
    display: none !important;
  }
}

.footer {
  background: #2a333f;
  color: #fff;
  padding: 1rem;
}

.footer .footer-content {
  max-width: 1170px;
  margin: 0 auto;
}

.footer h1 {
  font-size: 1rem;
}

.footer .gallery {
  padding: 1rem 0;
}

.footer .gallery-thumbnails {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[3];
      grid-template-columns: repeat(3, auto);
  -ms-grid-rows: (auto)[2];
      grid-template-rows: repeat(2, auto);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}

.footer .gallery-thumbnails img {
  padding: 0;
}

.footer .gallery-thumbnails .img {
  max-width: 137.53px;
  max-height: 143.33px;
  position: relative;
  overflow: hidden;
}

.footer .gallery-thumbnails .img::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(rgba(255, 255, 255, 0.5));
  width: 150%;
  height: 150%;
  position: absolute;
  -webkit-transform: rotate(-45deg) translate(100%, -25%);
          transform: rotate(-45deg) translate(100%, -25%);
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.footer .gallery-thumbnails .img:hover::before {
  -webkit-transform: rotate(-45deg) translate(-100%, -25%);
          transform: rotate(-45deg) translate(-100%, -25%);
}

.footer .gallery-thumbnails .img:hover {
  cursor: pointer;
}

.footer .gallery .footer-img-1 {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.footer .gallery .footer-img-1:hover {
  cursor: pointer;
}

.footer .contact {
  text-align: center;
}

.footer .contact-icon {
  color: #f8ea49;
  padding: 0.5rem 0;
}

.footer .contact p {
  padding: 0.5rem 0;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  line-height: 1.2rem;
}

.footer .social-icons i {
  border: 1px solid #95999f;
  color: #95999f;
  padding: 0.5rem;
  border-radius: 50%;
  margin: 1rem 0.25rem;
  display: inline-block;
  width: 34px;
  height: 34px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.footer .social-icons i:hover {
  color: #0473db;
  border: 1px solid #0473db;
  cursor: pointer;
}

.footer .quicklinks {
  padding: 1rem 0;
}

.footer .quicklinks .links ul {
  text-transform: capitalize;
  line-height: 2rem;
  font-size: 0.8rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
      grid-template-columns: repeat(2, auto);
  -ms-grid-rows: (auto)[4];
      grid-template-rows: repeat(4, auto);
  font-family: "Lato", sans-serif;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  list-style-type: none;
}

.footer .quicklinks .links ul li {
  position: relative;
}

.footer .quicklinks .links ul a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: #555c65;
  left: -20px;
  top: 50%;
}

.footer .quicklinks .links ul a {
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.footer .quicklinks .links ul a:hover {
  color: #0473db;
}

.rights {
  border-top: 1px solid #555c65;
  padding: 1rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  color: #777777;
  background: #2a333f;
}

@media screen and (min-width: 576px) {
  .footer .footer-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  .footer .gallery {
    grid-column: 1 / -1;
  }
  .footer .gallery-thumbnails {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer .gallery .img {
    width: 80px;
    height: 80px;
  }
  .footer .quicklinks {
    padding: 0;
  }
  .footer .quicklinks .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .quicklinks .links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 1rem 2rem;
  }
  .footer .footer-content {
    width: 720px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    justify-items: flex-start;
    padding: 1rem;
  }
  .footer .gallery .img {
    width: 90px;
    height: 90px;
  }
  .footer .gallery-thumbnails {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer h1 {
    text-align: left;
    padding: 2rem 0;
    font-size: 1.5rem;
  }
  .footer .quicklinks {
    padding: 0;
  }
  .footer .quicklinks .links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer .quicklinks .links ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (auto)[2];
        grid-template-columns: repeat(2, auto);
    -ms-grid-rows: (auto)[4];
        grid-template-rows: repeat(4, auto);
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    font-size: 1rem;
    grid-column-gap: 6rem;
  }
  .footer .contact {
    text-align: left;
    padding: 0;
    -ms-grid-column-align: center;
        justify-self: center;
  }
  .footer .contact .single-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .contact .single-contact i {
    margin-right: 1rem;
  }
  .footer .social-icons i {
    margin: 0.5rem 0.1rem;
  }
}

@media screen and (min-width: 992px) {
  .footer .footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    width: auto;
  }
  .footer .footer-content .gallery {
    width: calc(198px + 1rem);
    margin: 0;
    padding: 0;
  }
  .footer .footer-content .gallery-thumbnails {
    display: -ms-grid;
    display: grid;
  }
  .footer .footer-content .gallery-thumbnails .img {
    width: 66px;
    height: 66px;
  }
  .footer .footer-content .quicklinks ul {
    grid-column-gap: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  .footer .footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer .footer-content .gallery {
    width: calc(288px + 1rem);
    margin: 0;
    padding: 0;
  }
  .footer .footer-content .gallery-thumbnails {
    display: -ms-grid;
    display: grid;
  }
  .footer .footer-content .gallery-thumbnails .img {
    width: 96px;
    height: 96px;
  }
  .footer .footer-content .quicklinks ul {
    grid-column-gap: 8rem;
  }
}
/*# sourceMappingURL=main.css.map */