@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
@import url("http://fonts.cdnfonts.com/css/samsungone");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

.bg-img {
  margin-bottom: 40px;
}
.bg-img img {
  width: 100vw;
  height: 60vh;
  object-fit: cover;
}

body {
  overflow-x: hidden;
}

.top-address {
  background-color: #13F667;
  height: 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
.top-address .max-width {
  max-width: 1300px;
  padding-inline: 18px;
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-address .max-width .text {
  display: flex;
  align-items: center;
  gap: 40px;
  color: #fff;
}
.top-address .max-width .text p i{
  margin-right: 4px;
}

@media screen and (max-width: 600px) {
  .top-address {
    height: auto !important;
  }
  .top-address .max-width {
    padding-block: 8px;
  }
  .top-address .max-width .text {
    flex-wrap: wrap;
    gap: 2px;
    align-items: center;
    justify-content: space-between;
  }
  .top-address .max-width .text .full{
    width: 100%;
    
  }
}
nav {
  width: 100vw;
  height: 10vh;
  font-size: 16px;
  padding-block: 10px;
  font-family: Samsung Sharp Sans;
  position: sticky;
  z-index: 1020;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 3px 1rem rgba(0, 0, 0, 0.1);
}
nav .container {
  height: 100%;
}
nav .container .wrapper {
  height: 100%;
  max-width: 1300px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
nav .container .wrapper .logo img {
  width: 150px;
  height: 60px;
  object-fit: contain;
}
nav .container .wrapper .nav-links {
  display: flex;
  width: 65%;
  height: 100%;
  justify-content: space-around;
  align-items: center;
}
nav .container .wrapper .nav-links li {
  list-style: none;
}
nav .container .wrapper .nav-links li .nav-active {
  color: black;
  text-decoration: none;
  position: relative;
  padding-block: 10px;
}
nav .container .wrapper .nav-links li .nav-active::after {
  content: "";
  width: 90%;
  height: 2px;
  border-radius: 2px;
  background-color: #13F667;
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translate(-50%, -50%);
}
nav .container .wrapper .nav-links li a {
  color: black;
  text-decoration: none;
  padding-block: 10px;
  position: relative;
}
nav .container .wrapper .nav-links li a::after {
  content: "";
  width: 0px;
  height: 2px;
  background-color: #13F667;
  position: absolute;
  bottom: 3px;
  left: 0px;
  transition: all 0.4s ease;
}
nav .container .wrapper .nav-links li a:hover::after {
  width: 100%;
}
nav .container .wrapper .nav-links .btn {
  display: none;
}
nav .container .wrapper .btn {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #13F667;
  font-family: Samsung Sharp Sans;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.6px;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 11;
  height: 40px;
  width: 138px;
  font-size: 14px;
}
nav .container .wrapper .btn a {
  color: #fff;
}
nav .container .wrapper .btn:hover {
  color: black;
  border: 2px solid black;
  background-color: transparent;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.25)) !important;
}
nav .container .wrapper .btn:hover a {
  color: black;
}
nav .container .wrapper .hamburger {
  cursor: pointer;
  height: 2.6rem;
  width: 3rem;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1030;
  display: none;
  background-color: #13F667;
}
nav .container .wrapper .hamburger .line {
  border-radius: 2px;
  width: 1.9rem;
  height: 1.8px;
  background-color: #fff;
  transition: all 0.4s;
}
nav .container .wrapper .hamburger .line::after, nav .container .wrapper .hamburger .line::before {
  content: "";
  height: inherit;
  width: inherit;
  background-color: #fff;
  position: absolute;
  transition: all 0.4s;
}
nav .container .wrapper .hamburger .line::after {
  transform: translateY(9px);
}
nav .container .wrapper .hamburger .line::before {
  transform: translateY(-9px);
}

nav .overlay {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1020;
}

nav .overlay.overlay-open {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1025px) {
  nav .container .wrapper {
    justify-content: space-between;
    padding-inline: 30px;
  }
  nav .container .wrapper .btn {
    display: none;
  }
  nav .container .wrapper .nav-links {
    z-index: 1060;
    transform: translateX(-100%);
    transition: 0.4s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 65%;
    background-color: #fff;
    display: block;
    padding-top: 2vh;
    overflow-x: hidden;
    overflow-y: auto;
  }
  nav .container .wrapper .nav-links li {
    display: block;
    width: 100%;
    padding: 1rem 0 1.1rem 0.7rem;
    margin-inline: 1.1rem;
    list-style: none;
    position: relative;
  }
  nav .container .wrapper .nav-links li::after {
    content: "";
    width: 85%;
    height: 1px;
    position: absolute;
    bottom: 0.2rem;
    left: 0;
    background-color: #F9F9F9;
  }
  nav .container .wrapper .nav-links li a {
    font-size: 14px;
    letter-spacing: 0.8px;
    color: #222;
    padding-block: 0px;
  }
  nav .container .wrapper .nav-links li a::after {
    display: none;
  }
  nav .container .wrapper .nav-links .btn {
    display: block;
    height: 50px;
    width: 150px;
    margin: 10px 0 0 10px;
  }
  nav .container .wrapper .hamburger {
    display: flex;
    z-index: 1030;
  }
  .wrapper.active .line {
    background-color: transparent !important;
  }
  .wrapper.active .line::before {
    transform: rotate(45deg) translateY(0) !important;
  }
  .wrapper.active .line::after {
    transform: rotate(-45deg) translateY(0) !important;
  }
  .nav-links.nav-open {
    transform: translateX(0) !important;
  }
}
nav .container .wrapper .dropdown li .nav-active::after {
  display: none !important;
}

.remove-margin {
  margin-bottom: -5px !important;
}

.about, .testimonials {
  padding: 80px 0px;
  background-color: #1CA94D;
  color: #fff;
}
.about .max-width, .testimonials .max-width {
  max-width: 1300px;
  padding: 0 40px;
  margin-inline: auto;
}
.about .max-width .header, .testimonials .max-width .header {
  font-size: 40px;
  font-family: Samsung Sharp Sans;
  text-align: center;
  margin-bottom: 40px;
}
.about .max-width .header .vector, .testimonials .max-width .header .vector {
  position: relative;
  display: inline;
  z-index: 10;
}
.about .max-width .header .vector::before, .testimonials .max-width .header .vector::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  height: 9px;
  width: 100%;
  background-color: #13F667;
  border-radius: 10px;
  transform: translate(0, -40%) rotate(-6deg);
  z-index: -1;
}
.about .max-width .header p, .testimonials .max-width .header p {
  font-family: "Lora";
  font-size: 16px;
  font-weight: 200;
  color: #94989A;
  max-width: 460px;
  margin-inline: auto;
  margin-top: 6px;
}
.about .max-width .header .vector::before, .testimonials .max-width .header .vector::before {
  background-color: #A59191;
}
.about .max-width .header p, .testimonials .max-width .header p {
  color: rgba(255, 255, 255, 0.7);
}

.about-us-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, 350px);
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}
.about-us-content .card {
  background-color: #EBF7F2;
  color: black;
}
.about-us-content .card .box .about-des {
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 6 !important;
  -webkit-box-orient: vertical !important;
  padding-inline: 10px;
}
.about-us-content .card .box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.about-us-content .card .box h5 {
  padding-inline: 10px;
  font-family: Samsung Sharp Sans;
  font-size: 20px;
  margin-block: 10px;
  text-align: center;
}
.about-us-content .card .box p {
  width: 90%;
  margin-inline: auto;
  font-family: Lora;
  font-size: 14px;
  text-align: center;
}
.about-us-content .card .box button {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #13F667;
  font-family: Samsung Sharp Sans;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.6px;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 11;
  height: 48px;
  width: 164px;
  border-radius: 15px;
  margin-block: 20px;
  margin-inline: auto;
  font-size: 16px;
}
.about-us-content .card .box button a {
  color: #fff;
}
.about-us-content .card .box button:hover {
  color: black;
  border: 2px solid black;
  background-color: transparent;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.25)) !important;
}
.about-us-content .card .box button:hover a {
  color: black;
}

@media screen and (max-width: 650px) {
  .about, .testimonials {
    padding: 40px 0px;
  }
  .about .max-width, .testimonials .max-width {
    padding: 0 0;
    width: 90%;
  }
  .about .max-width .header, .testimonials .max-width .header {
    font-size: 35px;
  }
  .about-content .right .icon {
    height: 50px;
    width: 50px;
    left: -20px;
  }
  .about-content .right .icon i {
    font-size: 20px;
  }
}
.testimonials-content .swiper {
  width: 100%;
  height: 100%;
}
.testimonials-content .swiper .swiper-wrapper {
  padding-bottom: 20px;
}
.testimonials-content .swiper .swiper-wrapper .swiper-pagination {
  bottom: 4px;
}
.testimonials-content .swiper .swiper-wrapper .swiper-slide .col {
  display: flex;
  gap: 20px;
}
.testimonials-content .swiper .swiper-wrapper .swiper-slide .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.testimonials-content .swiper .swiper-wrapper .swiper-slide .right .text-1 {
  font-size: 20px;
  font-family: "Samsung Sharp Sans";
  letter-spacing: 0.4px;
}
.testimonials-content .swiper .swiper-wrapper .swiper-slide .right .text-2 {
  font-family: Lora;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}
.testimonials-content .swiper .swiper-wrapper .swiper-slide .right p {
  font-family: Lora;
  font-style: italic;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.01em;
  position: relative;
}
.testimonials-content .swiper .swiper-wrapper .swiper-slide .right p::after {
  content: "";
  width: 80%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: -5px;
  left: 0;
}
.testimonials-content .swiper .swiper-wrapper .swiper-slide .left .img-container {
  padding-bottom: 12px;
  position: relative;
  display: inline-block;
  margin-inline: auto;
}
.testimonials-content .swiper .swiper-wrapper .swiper-slide .left .img-container img {
  width: 225px;
  height: 225px;
  object-fit: cover;
  border-radius: 50%;
  object-position: top center;
  border: 10px solid #fff;
  box-shadow: 10px 10px 4px rgba(0, 0, 0, 0.22);
  margin-inline: auto;
}
.testimonials-content .swiper .swiper-wrapper .swiper-slide .left .img-container .icon {
  position: absolute;
  top: 5%;
  right: 24px;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials-content .swiper .swiper-wrapper .swiper-slide .left .img-container .icon i {
  color: #1CA94D;
  font-size: 24px;
}

@media screen and (max-width: 1130px) {
  .testimonials-content .swiper .swiper-wrapper .swiper-slide .col {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .testimonials-content .swiper .swiper-wrapper .swiper-slide .right {
    width: 100%;
    align-items: center;
  }
}
.director {
  background-color: #EBF7F2;
  padding: 80px 0px;
}
.director .max-width {
  max-width: 1300px;
  padding: 0 40px;
  margin-inline: auto;
}
.director .max-width .header {
  font-size: 40px;
  font-family: Samsung Sharp Sans;
  text-align: center;
  margin-bottom: 40px;
}
.director .max-width .header .vector {
  position: relative;
  display: inline;
  z-index: 10;
}
.director .max-width .header .vector::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  height: 9px;
  width: 100%;
  background-color: #13F667;
  border-radius: 10px;
  transform: translate(0, -40%) rotate(-6deg);
  z-index: -1;
}
.director .max-width .header p {
  font-family: "Lora";
  font-size: 16px;
  font-weight: 200;
  color: #94989A;
  max-width: 460px;
  margin-inline: auto;
  margin-top: 6px;
}

.director-content {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.director-content .left {
  width: calc(46% - 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.director-content .left .img-container {
  position: relative;
}
.director-content .left .img-container img {
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid white;
  box-shadow: 10px 10px 4px rgba(0, 0, 0, 0.22);
}
.director-content .left .img-container .icon {
  position: absolute;
  top: 10%;
  right: 45px;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.director-content .left .img-container .icon i {
  color: #1CA94D;
  font-size: 24px;
}
.director-content .right {
  width: calc(54% - 20px);
}
.director-content .right .text-1 {
  font-family: Samsung Sharp Sans;
  font-size: 21px;
  font-weight: 700;
  position: relative;
}
.director-content .right .text-1::after {
  content: "";
  width: 50%;
  height: 2px;
  background-color: black;
  position: absolute;
  bottom: -12px;
  left: 0;
}
.director-content .right p {
  margin-top: 20px;
  font-family: Lora;
  font-style: italic;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.01em;
  position: relative;
}

@media screen and (max-width: 960px) {
  .director {
    padding: 40px 0px;
  }
  .director .max-width {
    padding: 0 0;
    width: 90%;
  }
  .director .max-width .header {
    font-size: 30px;
  }
  .director-content .left .img-container .icon {
    right: 27px;
  }
  .director-content {
    flex-direction: column;
  }
  .director-content .dir-col {
    width: 100%;
  }
  .director-content .right {
    margin-top: 33px;
  }
  .director-content .left .img-container img {
    width: 300px;
    height: 300px;
  }
}
.end {
  padding: 70px 0px;
  padding-bottom: 0px;
  font-family: Samsung Sharp Sans;
  color: #fff;
  background-color: #1A1A1A;
}

.end .max-width {
  max-width: 1320px;
  padding: 0 60px;
  margin-inline: auto;
}

.foot-1 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-around;
  margin-bottom: 40px;
}

.foot-1 .col {
  width: calc(25% - 23px);
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  list-style: none;
}

.foot-1 .col:nth-child(2) .secondary {
  margin-top: 8px;
  line-height: 14px;
}

.foot-1 .col:nth-child(3) .secondary {
  margin-top: 8px;
  line-height: 14px;
}

.foot-1 .col:nth-child(4) .secondary {
  margin-top: 8px;
  line-height: 14px;
}

.foot-1 .col .text-1 {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.foot-1 .col .primary {
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 8px;
}

.foot-1 .col .secondary {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
}

.foot-2 {
  padding: 20px 0px;
  border-top: 2px solid #545454;
}

.foot-2 .foot-2_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foot-2 .foot-2_content .text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.foot-2 .foot-2_content .icons {
  display: inline-flex;
  gap: 3px;
}

.foot-2 .foot-2_content .icons li {
  font-size: 14px;
  list-style: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.secondary a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.7px;
}

.details .secondary i {
  margin-right: 8px;
  color: #fff;
}

.foot-2 .foot-2_content .icons li a {
  color: #fff;
  letter-spacing: 0.7px;
}

.col img {
  width: 150px;
  height: 60px;
  object-fit: contain;
}

/* backto top styling */
.scroll-up-button {
  position: fixed;
  height: 45px;
  width: 42px;
  border-radius: 15px;
  background-color: #13F667;
  right: 30px;
  bottom: 10px;
  text-align: center;
  line-height: 45px;
  color: #fff;
  z-index: 1111;
  font-size: 28px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.scroll-up-button.active {
  opacity: 1;
  pointer-events: all;
  bottom: 30px;
}

@media screen and (max-width: 1020px) {
  .foot-1 .col {
    width: calc(50% - 23px);
  }
}
@media screen and (max-width: 400px) {
  .foot-1 .col {
    width: calc(100% - 33px);
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  .end .max-width {
    padding: 0 0;
    width: 95%;
  }
}
@media screen and (max-width: 500px) {
  .foot-2 .foot-2_content {
    flex-direction: column;
  }
}
.hero .swiper {
  width: 100vw;
  height: 80vh;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
}
.swiper-slide .max-width {
  max-width: 1300px;
  padding: 0 40px;
  margin-inline: auto;
}
.swiper-slide .max-width .hero-content {
  max-width: 50%;
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
}
.swiper-slide .max-width .hero-content h1 {
  max-width: 90%;
  font-family: Samsung Sharp Sans;
  font-size: 40px;
  line-height: 56px;
}
.swiper-slide .max-width .hero-content .btn {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #13F667;
  font-family: Samsung Sharp Sans;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.6px;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 11;
  width: 199px;
  height: 58px;
  margin-top: 20px;
}
.swiper-slide .max-width .hero-content .btn a {
  color: #fff;
}
.swiper-slide .max-width .hero-content .btn:hover {
  color: black;
  border: 2px solid black;
  background-color: transparent;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.25)) !important;
}
.swiper-slide .max-width .hero-content .btn:hover a {
  color: black;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

.swiper-pagination-bullet {
  height: 3px;
  width: 60px;
  border-radius: 0px;
}

.swiper-pagination-bullet-active {
  background-color: rgba(19, 246, 103, 0.8);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: white;
}

@media screen and (max-width: 970px) {
  .swiper-slide .max-width .hero-content h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .swiper-slide .max-width .hero-content .btn {
    height: 50px;
    width: 146px;
    font-size: 16px;
  }
}
@media screen and (max-width: 720px) {
  .hero .swiper {
    width: 100%;
    height: 80%;
  }
  .swiper-slide {
    background-color: #1CA94D;
  }
  .swiper-slide .max-width {
    padding: 0 0;
    width: 90%;
  }
  .swiper-slide .max-width .hero-content {
    padding-block: 20px;
    padding-bottom: 30px;
    max-width: 100%;
    position: static;
    transform: translateY(0px);
    color: #fff;
  }
  .swiper-slide .max-width .hero-content h1 {
    max-width: 100%;
    font-size: 24px;
    line-height: normal;
    text-align: center;
  }
  .swiper-slide .max-width .hero-content .btn {
    height: 40px;
    width: 150px;
    font-size: 14px;
    margin-inline: auto;
  }
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right !important;
  }
  .swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
  }
}
.services,
.top-destination,
.courses {
  padding: 80px 0px;
  background-color: #F9F9F9;
}
.services .max-width,
.top-destination .max-width,
.courses .max-width {
  max-width: 1300px;
  padding: 0 40px;
  margin-inline: auto;
}
.services .max-width .header,
.top-destination .max-width .header,
.courses .max-width .header {
  font-size: 40px;
  font-family: Samsung Sharp Sans;
  text-align: center;
  margin-bottom: 40px;
}
.services .max-width .header .vector,
.top-destination .max-width .header .vector,
.courses .max-width .header .vector {
  position: relative;
  display: inline;
  z-index: 10;
}
.services .max-width .header .vector::before,
.top-destination .max-width .header .vector::before,
.courses .max-width .header .vector::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  height: 9px;
  width: 100%;
  background-color: #13F667;
  border-radius: 10px;
  transform: translate(0, -40%) rotate(-6deg);
  z-index: -1;
}
.services .max-width .header p,
.top-destination .max-width .header p,
.courses .max-width .header p {
  font-family: "Lora";
  font-size: 16px;
  font-weight: 200;
  color: #94989A;
  max-width: 460px;
  margin-inline: auto;
  margin-top: 6px;
}

.services-content {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, 300px);
  gap: 50px 30px;
}
.services-content .card {
  cursor: pointer;
  width: 300px;
  height: 300px;
  position: relative;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 10px 0px, rgba(0, 0, 0, 0.5) 0px 2px 25px 0px;
}
.services-content .card .box img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}
.services-content .card .box .content {
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: -100%;
  height: 100%;
  background-color: rgba(28, 169, 77, 0.8);
  color: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  opacity: 0.4;
}
.services-content .card .box .content h4 {
  width: 90%;
  margin-inline: auto;
  font-family: Samsung Sharp Sans;
  font-size: 20px;
  margin-block: 10px;
  text-align: center;
  transition: 0.3s ease-in-out;
  opacity: 0.1;
}
.services-content .card .box .content .description {
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 6 !important;
  -webkit-box-orient: vertical !important;
}
.services-content .card .box .content p {
  width: 90%;
  margin-inline: auto;
  font-family: Lora;
  font-size: 14px;
  text-align: center;
  transition: 0.3s ease-in-out;
  opacity: 0.1;
}
.services-content .card .box .content .btn {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #13F667;
  font-family: Samsung Sharp Sans;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.6px;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 11;
  height: 48px;
  width: 160px;
  border-radius: 15px;
  margin-block: 20px;
  margin-inline: auto;
  font-size: 16px;
}
.services-content .card .box .content .btn a {
  color: #fff;
}
.services-content .card .box .content .btn:hover {
  color: black;
  border: 2px solid black;
  background-color: transparent;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.25)) !important;
}
.services-content .card .box .content .btn:hover a {
  color: black;
}
.services-content .card .box .content .btn:hover {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.services-content .card .box .content .btn:hover a {
  color: #fff;
}
.services-content .card .box:hover .content {
  opacity: 1;
  bottom: 0px;
}
.services-content .card .box:hover .content h4 {
  opacity: 1;
}
.services-content .card .box:hover .content p {
  opacity: 1;
}
.services-content .card:hover .box img {
  transform: scale(1.5);
  transition: transform 5s ease;
}

@media screen and (max-width: 650px) {
  .services-content {
    gap: 20px;
  }
  .services-content .card .box .content {
    opacity: 1;
    bottom: 0px;
  }
  .services-content .card .box .content h4 {
    opacity: 1;
  }
  .services-content .card .box .content p {
    opacity: 1;
  }
  .services,
.top-destination,
.courses {
    padding: 40px 0px;
  }
  .services .max-width,
.top-destination .max-width,
.courses .max-width {
    padding: 0 0;
    width: 90%;
  }
  .services .max-width .header,
.top-destination .max-width .header,
.courses .max-width .header {
    font-size: 30px;
  }
}
.top-destination {
  background-color: #EBF7F2;
  margin-top: -44px;
}

.top-destination-content {
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
}
.top-destination-content div:nth-child(odd) .img-container {
  margin-top: 80px;
  position: relative;
}
.top-destination-content div:nth-child(odd) .img-container img {
  width: calc(55% - 10px);
  height: 390px;
  object-fit: cover;
  border: 20px solid #fff;
}
.top-destination-content div:nth-child(odd) .textarea {
  width: calc(55% - 30px);
  background-color: #fff;
  padding: 35px 36px;
  box-shadow: 8px 8px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}
.top-destination-content div:nth-child(odd) .textarea .text-1 {
  font-size: 24px;
  font-family: Samsung Sharp Sans;
  font-weight: 800;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}
.top-destination-content div:nth-child(odd) .textarea .text-1::after {
  content: "";
  height: 3px;
  width: 105%;
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: #13F667;
}
.top-destination-content div:nth-child(odd) .textarea .country-des {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top-destination-content div:nth-child(odd) .textarea p {
  font-family: Lora;
  line-height: 25px;
  font-size: 16px;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}
.top-destination-content div:nth-child(odd) .textarea a {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #13F667;
  font-family: Samsung Sharp Sans;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.6px;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 11;
  width: 137px;
  height: 45px;
  text-decoration: none;
  font-size: 18px !important;
  font-weight: 400;
}
.top-destination-content div:nth-child(odd) .textarea a a {
  color: #fff;
}
.top-destination-content div:nth-child(odd) .textarea a:hover {
  color: black;
  border: 2px solid black;
  background-color: transparent;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.25)) !important;
}
.top-destination-content div:nth-child(odd) .textarea a:hover a {
  color: black;
}
.top-destination-content div:nth-child(even) .img-container {
  margin-top: 80px;
  position: relative;
  top: 160px;
}
.top-destination-content div:nth-child(even) .img-container img {
  width: calc(55% - 10px);
  height: 390px;
  object-fit: cover;
  border: 20px solid #fff;
  position: absolute;
  right: -15px;
  top: 0px;
  transform: translateY(-50%);
  z-index: 1;
}
.top-destination-content div:nth-child(even) .textarea {
  position: relative;
  z-index: 11;
  width: calc(55% - 50px);
  background-color: #fff;
  padding: 35px 36px;
  box-shadow: 8px 8px 4px rgba(0, 0, 0, 0.25);
}
.top-destination-content div:nth-child(even) .textarea .text-1 {
  font-size: 24px;
  font-family: Samsung Sharp Sans;
  font-weight: 800;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}
.top-destination-content div:nth-child(even) .textarea .text-1::after {
  content: "";
  height: 3px;
  width: 105%;
  position: absolute;
  bottom: -5px;
  left: 0;
  background-color: #13F667;
}
.top-destination-content div:nth-child(even) .textarea .country-des {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top-destination-content div:nth-child(even) .textarea p {
  font-family: Lora;
  line-height: 25px;
  font-size: 16px;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}
.top-destination-content div:nth-child(even) .textarea a {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #13F667;
  font-family: Samsung Sharp Sans;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.6px;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 11;
  width: 137px;
  height: 45px;
  text-decoration: none;
}
.top-destination-content div:nth-child(even) .textarea a a {
  color: #fff;
}
.top-destination-content div:nth-child(even) .textarea a:hover {
  color: black;
  border: 2px solid black;
  background-color: transparent;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.25)) !important;
}
.top-destination-content div:nth-child(even) .textarea a:hover a {
  color: black;
}

@media screen and (max-width: 1200px) {
  .top-destination-content div:nth-child(odd) .img-container {
    margin-top: 20px;
    position: static;
  }
  .top-destination-content div:nth-child(odd) .img-container img {
    width: 100%;
  }
  .top-destination-content div:nth-child(odd) .img-container .textarea {
    transform: translateY(0);
    width: 100%;
    position: static;
    box-shadow: none;
    padding: 20px 12px;
  }
  .top-destination-content div:nth-child(even) .img-container {
    display: flex;
    flex-direction: column-reverse !important;
    position: static;
    margin-top: 20px;
  }
  .top-destination-content div:nth-child(even) .img-container img {
    width: 100%;
    transform: translateY(0);
    position: static;
  }
  .top-destination-content div:nth-child(even) .img-container .textarea {
    position: static;
    z-index: inherit;
    width: 100%;
    box-shadow: none;
    padding: 20px 12px;
    transform: translateY(0px);
    order: -1;
  }
}
.blogs,
.blogs-page {
  padding: 80px 0px;
  background-color: #fff;
}
.blogs .max-width,
.blogs-page .max-width {
  max-width: 1300px;
  padding: 0 40px;
  margin-inline: auto;
}
.blogs .max-width .link,
.blogs-page .max-width .link {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #13F667;
  font-family: Samsung Sharp Sans;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.6px;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 11;
  width: 171px;
  height: 55px;
  text-decoration: none;
  margin-inline: auto;
  margin-top: 20px;
}
.blogs .max-width .link a,
.blogs-page .max-width .link a {
  color: #fff;
}
.blogs .max-width .link:hover,
.blogs-page .max-width .link:hover {
  color: black;
  border: 2px solid black;
  background-color: transparent;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.25)) !important;
}
.blogs .max-width .link:hover a,
.blogs-page .max-width .link:hover a {
  color: black;
}
.blogs .max-width .header,
.blogs-page .max-width .header {
  font-size: 40px;
  font-family: Samsung Sharp Sans;
  text-align: center;
  margin-bottom: 40px;
}
.blogs .max-width .header .vector,
.blogs-page .max-width .header .vector {
  position: relative;
  display: inline;
  z-index: 10;
}
.blogs .max-width .header .vector::before,
.blogs-page .max-width .header .vector::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  height: 9px;
  width: 100%;
  background-color: #13F667;
  border-radius: 10px;
  transform: translate(0, -40%) rotate(-6deg);
  z-index: -1;
}
.blogs .max-width .header p,
.blogs-page .max-width .header p {
  font-family: "Lora";
  font-size: 16px;
  font-weight: 200;
  color: #94989A;
  max-width: 460px;
  margin-inline: auto;
  margin-top: 6px;
}
.blogs .max-width .header p,
.blogs-page .max-width .header p {
  color: #94989A;
}

.blogs-content {
  display: grid;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, 259px);
}
.blogs-content .card {
  border-bottom: 2px solid #E9E3DE;
  cursor: pointer;
}
.blogs-content .card:hover .box .img-container img {
  opacity: 0.5;
}
.blogs-content .card .box .img-container {
  overflow: hidden;
}
.blogs-content .card .box .img-container img {
  width: 259px;
  height: 172px;
  object-fit: cover;
}
.blogs-content .card .box .text {
  margin-top: 8px;
  font-family: "Lora";
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: black;
}
.blogs-content .card .box .writer {
  color: black;
}

@media screen and (max-width: 660px) {
  .blogs,
.blogs-page {
    padding: 40px 0px;
  }
  .blogs .max-width,
.blogs-page .max-width {
    padding: 0 0;
    width: 90%;
  }
  .blogs .max-width .header,
.blogs-page .max-width .header {
    font-size: 30px;
  }
  .blogs-content {
    gap: 10px;
  }
  .blogs-content .card {
    margin-top: 20px;
  }
  .blogs-content .card:hover .box .img-container img {
    opacity: 1;
  }
  .blogs-content .card .box .img-container img {
    object-fit: cover;
  }
  .blogs-content .card .box .text {
    font-family: "Lora";
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
  }
  .blogs-content .card .box .writer {
    margin-top: 5px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 587px) {
  .blogs-content {
    display: block;
  }
  .blogs-content .card .img-container img {
    max-width: 100% !important;
    display: block;
    margin-inline: auto;
    height: auto !important;
  }
}
.partners {
  padding: 80px 0px;
}
.partners .max-width {
  max-width: 1300px;
  padding: 0 40px;
  margin-inline: auto;
}
.partners .max-width .header {
  font-size: 40px;
  font-family: Samsung Sharp Sans;
  text-align: center;
  margin-bottom: 40px;
}
.partners .max-width .header .vector {
  position: relative;
  display: inline;
  z-index: 10;
}
.partners .max-width .header .vector::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  height: 9px;
  width: 100%;
  background-color: #13F667;
  border-radius: 10px;
  transform: translate(0, -40%) rotate(-6deg);
  z-index: -1;
}
.partners .max-width .header p {
  font-family: "Lora";
  font-size: 16px;
  font-weight: 200;
  color: #94989A;
  max-width: 460px;
  margin-inline: auto;
  margin-top: 6px;
}

.partners-content {
  display: grid;
  gap: 20px 15px;
  grid-template-columns: repeat(auto-fit, 200px);
  align-items: center;
  justify-content: center;
}
.partners-content img {
  width: 200px;
  height: 70px;
  object-fit: contain;
  filter: grayscale(90%);
  transition: 0.2s all ease;
}
.partners-content img:hover {
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  filter: grayscale(0%);
  filter: grayscale(0%);
}

@media screen and (max-width: 600px) {
  .partners .max-width {
    padding: 0 0;
    width: 90%;
  }
  .partners .max-width .header {
    font-size: 30px;
  }
}
.course-bg {
  margin-bottom: -25px !important;
}

.courses-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, 280px);
  align-items: flex-start;
  justify-content: center;
  gap: 43px 18px;
  background-color: #F9F9F9;
}
.courses-content .card {
  padding: 15px 15px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.courses-content .card .box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.courses-content .card .box img {
  width: 255px;
  height: 170px;
  object-fit: cover;
  border-radius: 15px;
}
.courses-content .card .box .text-1 {
  font-family: Samsung Sharp Sans;
  font-size: 21px;
  text-align: center;
}
.courses-content .card .box .course-des {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.courses-content .card .box p {
  font-family: Lora;
  font-size: 12px;
  line-height: 15px;
  font-weight: 500;
  text-align: justify;
}
.courses-content .card .box a {
  font-style: italic;
  color: black;
  position: relative;
}
.courses-content .card .box a::after {
  content: "";
  width: 0px;
  height: 1px;
  background-color: black;
  transition: 0.2s ease-in;
  position: absolute;
  left: 0px;
  bottom: -3px;
}
.courses-content .card .box a:hover::after {
  width: 100%;
}
.courses-content .card .box a i {
  margin-left: 8px;
}
.courses-content .card .box .btn {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #13F667;
  font-family: Samsung Sharp Sans;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.6px;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 11;
  width: 88px;
  height: 27px;
  border-radius: 15px;
  font-size: 12px;
  color: black;
  display: block;
  margin-inline-start: auto;
}
.courses-content .card .box .btn a {
  color: #fff;
}
.courses-content .card .box .btn:hover {
  color: black;
  border: 2px solid black;
  background-color: transparent;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.25)) !important;
}
.courses-content .card .box .btn:hover a {
  color: black;
}

@media screen and (max-width: 700px) {
  .bg-img img {
    height: 40vh;
  }
  .courses-content {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  .courses-content .card .box {
    gap: 9px;
  }
}
.blogs-page .max-width .header {
  position: relative;
}

.blogs-page .max-width .header::after {
  content: "";
  width: 60%;
  height: 3px;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #13F667;
}

.blogs-page {
  padding: 0 110px;
}
.blogs-page a {
  color: black;
  position: relative;
}
.blogs-page a::after {
  content: "";
  width: 0px;
  height: 1px;
  background-color: black;
  transition: 0.2s ease-in;
  position: absolute;
  left: 0px;
  bottom: -3px;
}
.blogs-page a:hover::after {
  width: 100%;
}
.blogs-page a i {
  margin-left: 8px;
}

.blogs-page-content img {
  border-radius: 15px;
  display: block;
  width: 80% !important;
  height: 350px !important;
  object-fit: cover;
  margin-inline: auto;
  margin-bottom: 30px;
}
.blogs-page-content p {
  margin-block: 20px;
  line-height: 17px;
  font-family: Lora;
  text-align: justify;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 700px) {
  .blogs-page {
    padding: 0px 0px;
  }
  .blogs-page-content img {
    border-radius: 15px;
    display: block;
    width: 80% !important;
    height: 100% !important;
    object-fit: cover;
    margin-inline: auto;
  }
}
.sub {
  font-size: 18px;
  text-transform: capitalize;
  text-align: center;
  font-family: Samsung Sharp Sans;
}

.margin-decrease {
  margin-bottom: 10px !important;
}

.deMargin {
  margin-bottom: 20px !important;
}

.color-bright {
  color: rgb(0, 0, 0) !important;
}

.contact .max-width {
  max-width: 1300px;
  padding: 0 40px;
  margin-inline: auto;
}
.contact .header {
  font-size: 40px;
  font-family: Samsung Sharp Sans;
  text-align: center;
  margin-bottom: 40px;
  text-align: start;
}
.contact .header .vector {
  position: relative;
  display: inline;
  z-index: 10;
}
.contact .header .vector::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  height: 9px;
  width: 100%;
  background-color: #13F667;
  border-radius: 10px;
  transform: translate(0, -40%) rotate(-6deg);
  z-index: -1;
}
.contact .header p {
  font-family: "Lora";
  font-size: 16px;
  font-weight: 200;
  color: #94989A;
  max-width: 460px;
  margin-inline: auto;
  margin-top: 6px;
}
.contact .header p {
  text-align: start;
  max-width: 1025px;
  color: black;
  margin-inline: 0px;
  margin-top: 15px;
  font-size: 21px;
  font-style: Lora;
  position: relative;
}
.contact .header p::after {
  content: "";
  width: 31%;
  height: 3px;
  background-color: #13F667;
  position: absolute;
  bottom: -22px;
  left: 0px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-block: 35px;
  margin-top: 70px;
}
.contact-content .column {
  width: calc(50% - 15px);
  height: 620px;
}
.contact-content .left img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.contact-content .right {
  border: 3px solid #13F667;
  border-radius: 15px;
  padding: 30px;
}
.contact-content .right form .form-title {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 40px;
}
.contact-content .right form .form-title .text {
  font-family: Samsung Sharp Sans;
  font-size: 21px;
}
.contact-content .right form .form-title p {
  font-family: Lora;
  font-size: 14px;
}
.contact-content .right form .feilds {
  display: flex;
  flex-direction: column;
}
.contact-content .right form .feilds button {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #13F667;
  font-family: Samsung Sharp Sans;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.6px;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 11;
  width: 137px;
  height: 45px;
  margin-top: 30px;
}
.contact-content .right form .feilds button a {
  color: #fff;
}
.contact-content .right form .feilds button:hover {
  color: black;
  border: 2px solid black;
  background-color: transparent;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.25)) !important;
}
.contact-content .right form .feilds button:hover a {
  color: black;
}
.contact-content .right form .feilds .feild {
  position: relative;
  height: 45px;
  width: 100%;
  margin-bottom: 15px;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.contact-content .right form .feilds .feild input,
.contact-content .right form .feilds .feild select {
  height: 100%;
  width: 100%;
  border: none;
  border-bottom: 2.5px solid #13F667;
  outline: none;
  padding: 0 14px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  font-family: Samsung Sharp Sans;
}
.contact-content .right form .feilds .feild input::-webkit-outer-spin-button,
.contact-content .right form .feilds .feild input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.contact-content .right form .feilds .feild input[type=number] {
  -moz-appearance: textfield;
}
.contact-content .right form .feilds .group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-content .right form .feilds .fname, .contact-content .right form .feilds .lname {
  width: calc(50% - 10px);
}
.contact-content .right form .feilds .form__input {
  font-family: Samsung Sharp Sans;
  font-size: 14px;
}
.contact-content .right form .feilds .form__input:hover {
  border-bottom-color: rgba(28, 169, 77, 0.5);
}
.contact-content .right form .feilds .form__input:focus {
  border-bottom-color: #1ca94d;
}
.contact-content .right form .feilds .label {
  position: absolute;
  top: 12px;
  left: 15px;
  color: rgba(0, 0, 0, 0.6);
  font-family: Samsung Sharp Sans;
  font-size: 14px;
  cursor: text;
  transition: top 0.3s ease-in, left 0.3s ease-in, font-size 0.3s ease-in;
}
.contact-content .right form .feilds .form__input:focus ~ .label,
.contact-content .right form .feilds .form__input:not(:placeholder-shown).form__input:not(:focus) ~ .label {
  font-size: 12px;
  top: -8px;
  left: 10px;
}

.contact-bottom {
  font-family: Samsung Sharp Sans;
  width: 99%;
  padding: 20px 30px;
  border: 3px solid #13F667;
  border-radius: 15px;
  margin-top: -15px;
  margin-bottom: 20px;
}
.contact-bottom .text-1 {
  font-size: 21px;
  margin-bottom: 20px;
}
.contact-bottom .contact-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-bottom .contact-bottom-content .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.contact-bottom .contact-bottom-content .icon i {
  font-size: 21px;
}
.contact-bottom .contact-bottom-content .icon p {
  font-size: 16px;
}

@media screen and (max-width: 800px) {
  .contact .header {
    font-size: 30px;
  }
  .contact .header p {
    font-size: 14px;
    margin-top: 10px;
  }
  .contact .max-width {
    padding: 0 0;
    width: 90%;
  }
  .contact-content {
    margin-block: 20px;
    margin-top: 50px;
  }
  .contact-content .column {
    width: 100%;
    height: auto;
  }
  .contact-content .right {
    padding: 12px;
  }
  .contact-content .right form .form-title {
    margin-bottom: 18px;
    gap: 8px;
  }
  .contact-content .right form .feilds .feild {
    margin-bottom: 17px;
    height: 35px;
  }
  .contact-content .right form .feilds button {
    margin-top: 10px;
  }
  .contact-bottom {
    width: 100%;
    padding: 15px 25px;
  }
  .contact-bottom .text-1 {
    margin-bottom: 15px;
  }
  .contact-bottom .contact-bottom-content {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
  }
  .contact-bottom .contact-bottom-content p {
    font-size: 14px;
  }
}
.scholarship .max-width {
  max-width: 1300px;
  padding: 0 40px;
  margin-inline: auto;
}
.scholarship .header {
  font-size: 40px;
  font-family: Samsung Sharp Sans;
  text-align: center;
  margin-bottom: 40px;
}
.scholarship .header .vector {
  position: relative;
  display: inline;
  z-index: 10;
}
.scholarship .header .vector::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  height: 9px;
  width: 100%;
  background-color: #13F667;
  border-radius: 10px;
  transform: translate(0, -40%) rotate(-6deg);
  z-index: -1;
}
.scholarship .header p {
  font-family: "Lora";
  font-size: 16px;
  font-weight: 200;
  color: #94989A;
  max-width: 460px;
  margin-inline: auto;
  margin-top: 6px;
}

.scholarship-content {
  margin-bottom: 40px;
}
.scholarship-content .scholarship-table {
  width: 98%;
  border-collapse: collapse;
  font-family: Lora;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.scholarship-content .scholarship-table tr {
  border-radius: 15px;
}
.scholarship-content .scholarship-table tr:nth-child(even) {
  background-color: rgba(19, 246, 103, 0.2);
}
.scholarship-content .scholarship-table tr:hover {
  background-color: rgba(19, 246, 103, 0.5);
}
.scholarship-content .scholarship-table th, .scholarship-content .scholarship-table td {
  text-align: Start;
  padding: 12px 8px;
}
.scholarship-content .scholarship-table th:first-child, .scholarship-content .scholarship-table td:first-child {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.scholarship-content .scholarship-table th:last-child, .scholarship-content .scholarship-table td:last-child {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.scholarship-content .scholarship-table th {
  background-color: #fff;
}
.scholarship-content .scholarship-table td a {
  color: black;
}

@media screen and (max-width: 750px) {
  .scholarship .max-width {
    padding: 0 0;
    width: 90%;
  }
  td a i {
    position: absolute;
    right: 5000px;
  }
  .scholarship-content .scholarship-table {
    font-size: 14px;
  }
  .scholarship-content .scholarship-table th, .scholarship-content .scholarship-table td {
    padding: 8px;
  }
}
.all-blogs {
  padding-bottom: 80px;
}
.all-blogs .max-width {
  max-width: 1300px;
  padding: 0 40px;
  margin-inline: auto;
}
.all-blogs .max-width .header {
  font-size: 40px;
  font-family: Samsung Sharp Sans;
  text-align: center;
  margin-bottom: 40px;
}
.all-blogs .max-width .header .vector {
  position: relative;
  display: inline;
  z-index: 10;
}
.all-blogs .max-width .header .vector::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  height: 9px;
  width: 100%;
  background-color: #13F667;
  border-radius: 10px;
  transform: translate(0, -40%) rotate(-6deg);
  z-index: -1;
}
.all-blogs .max-width .header p {
  font-family: "Lora";
  font-size: 16px;
  font-weight: 200;
  color: #94989A;
  max-width: 460px;
  margin-inline: auto;
  margin-top: 6px;
}

.all-blog-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  align-items: flex-start;
  justify-content: center;
  gap: 50px 20px;
}
.all-blog-content .card .box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.all-blog-content .card .box .img-container img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.all-blog-content .card .box .text-1 {
  font-family: Samsung Sharp Sans;
  font-size: 18px;
}
.all-blog-content .card .box .text-2 {
  font-size: Samsung Sharp Sans;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}
.all-blog-content .card .box .blog-des {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}
.all-blog-content .card .box p {
  font-size: 14px;
  font-family: Lora;
  letter-spacing: 0.3px;
}
.all-blog-content .card .box .inline {
  display: inline;
}
.all-blog-content .card .box .after-line {
  font-style: italic;
  color: black;
  position: relative;
}
.all-blog-content .card .box .after-line::after {
  content: "";
  width: 0px;
  height: 1px;
  background-color: black;
  transition: 0.2s ease-in;
  position: absolute;
  left: 0px;
  bottom: -3px;
}
.all-blog-content .card .box .after-line:hover::after {
  max-width: 100%;
}
.all-blog-content .card .box .after-line i {
  margin-left: 8px;
}

@media screen and (max-width: 800px) {
 
  .all-blog-content .card {
    padding: 0px 40px;
  }
  .all-blog-content .card .box .img-container img {
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .all-blog-content .card {
    padding: 0px 0px;
  }
  .all-blogs {
    padding-bottom: 40px;
  }
  .all-blogs .max-width {
    padding: 0 0;
    width: 90%;
  }
  .all-blogs .max-width .header {
    font-size: 30px;
  }
}
.service-page,
.about-page,
.faq,
.single-country-page {
  padding-bottom: 55px;
}
.service-page .max-width,
.about-page .max-width,
.faq .max-width,
.single-country-page .max-width {
  max-width: 1300px;
  padding: 0 40px;
  margin-inline: auto;
}
.service-page .max-width .header,
.about-page .max-width .header,
.faq .max-width .header,
.single-country-page .max-width .header {
  margin-bottom: 80px;
}
.service-page .max-width .header h4,
.about-page .max-width .header h4,
.faq .max-width .header h4,
.single-country-page .max-width .header h4 {
  font-size: 40px;
  font-family: Samsung Sharp Sans;
  text-align: center;
  margin-bottom: 28px;
}
.service-page .max-width .header p,
.about-page .max-width .header p,
.faq .max-width .header p,
.single-country-page .max-width .header p {
  font-size: 16px;
  font-family: Lora;
  max-width: 1025px;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
.service-page .max-width .header p::after,
.about-page .max-width .header p::after,
.faq .max-width .header p::after,
.single-country-page .max-width .header p::after {
  content: "";
  width: 40%;
  height: 3px;
  background-color: #13F667;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}

.service-page-content .wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.service-page-content .wrapper .colService {
  width: calc(50% - 12px);
}
.service-page-content .wrapper .serviceLeft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.service-page-content .wrapper .serviceLeft .text-1 {
  font-family: Samsung Sharp Sans;
  font-size: 26px;
}
.service-page-content .wrapper .serviceLeft .service-des {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}
.service-page-content .wrapper .serviceLeft p {
  font-size: 16px;
  font-family: Lora;
}
.service-page-content .wrapper .serviceLeft button {
  width: 100%;
  height: 100%;
  border: none;
  background-color: #13F667;
  font-family: Samsung Sharp Sans;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.6px;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 11;
  font-size: 16px;
  height: 45px;
  width: 137px;
}
.service-page-content .wrapper .serviceLeft button a {
  color: #fff;
}
.service-page-content .wrapper .serviceLeft button:hover {
  color: black;
  border: 2px solid black;
  background-color: transparent;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.25)) !important;
}
.service-page-content .wrapper .serviceLeft button:hover a {
  color: black;
}
.service-page-content .wrapper .serviceLeft a {
  color: #fff;
}
.service-page-content .wrapper .serviceRight img {
  width: 550px;
  height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

@media screen and (max-width: 1100px) {
  .service-page, .faq {
    padding-bottom: 40px;
  }
  .service-page .max-width, .faq .max-width {
    padding: 0 0;
    width: 90%;
  }
  .service-page .max-width .header h4, .faq .max-width .header h4 {
    font-size: 28px;
  }
  .service-page .max-width .header p, .faq .max-width .header p {
    font-size: 16px;
  }
  .service-page-content .wrapper {
    margin-bottom: 40px;
    flex-direction: column-reverse;
  }
  .service-page-content .wrapper .colService {
    width: calc(100% - 20px);
  }
  .service-page-content .wrapper .serviceLeft {
    gap: 10px;
  }
  .service-page-content .wrapper .serviceLeft .text-1 {
    font-size: 21px;
  }
  .service-page-content .wrapper .serviceLeft p {
    font-size: 16px;
  }
  .service-page-content .wrapper .serviceLeft button {
    height: 38px;
    width: 120px;
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .service-page-content .wrapper .serviceRight img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}
.about-page .header {
  margin-block: 30px !important;
}
.about-page .max-width .header p::before {
  content: "";
  width: 40%;
  height: 3px;
  background-color: #13F667;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}
.about-page .max-width .header p::after {
  display: none;
}

.about-page-content .wrapper {
  display: flex;
  max-width: 1300px;
  padding: 30px 80px;
  margin-inline: auto;
  gap: 30px;
}
.about-page-content .wrapper .col {
  width: calc(50% - 10px);
}
.about-page-content .wrapper .left .text-1 {
  font-size: 26px;
  font-family: Samsung Sharp Sans;
  margin-bottom: 10px;
}
.about-page-content .wrapper .left p {
  font-family: Lora;
  font-size: 16px;
}
.about-page-content .wrapper .right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page-content .wrapper .right img {
  height: 300px !important;
  width: 500px !important;
  object-fit: cover;
  border-radius: 15px;
}
.about-page-content:nth-child(odd) .right {
  order: -1;
}
.about-page-content:nth-child(even) .left {
  order: -1;
}

@media screen and (max-width: 900px) {
  .about-page .max-width {
    padding: 0 0;
    width: 90%;
  }
  .about-page .max-width .header {
    margin-bottom: 40px;
  }
  .about-page .max-width .header h4 {
    font-size: 28px;
  }
  .about-page .max-width .header p {
    font-size: 16px;
  }
  .about-page-content .wrapper {
    padding: 40px 0px;
    flex-direction: column;
    width: 90%;
  }
  .about-page-content .wrapper .col {
    width: 100%;
  }
  .about-page-content .wrapper .left .text-1 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .about-page-content .wrapper .left p {
    font-size: 16px;
  }
}
@media screen and (max-width: 650px) {
  .about-page-content .wrapper .right img {
    max-width: 100%;
    display: block;
    height: auto;
  }
}
.why h3 {
  font-size: 40px;
  font-family: Samsung Sharp Sans;
}
.why p {
  font-size: 16px;
  font-family: Lora;
  margin-block: 24px;
}
.why .advantage h5 {
  font-family: Samsung Sharp Sans;
  font-size: 21px;
}
.why .advantage .advantage-content {
  margin-block: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, 280px);
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.why .advantage .advantage-content .card {
  border: 3px solid #13F667;
  border-radius: 15px;
}
.why .advantage .advantage-content .card .box {
  padding: 15px 10px;
}
.why .advantage .advantage-content .card .box p {
  font-size: 14px;
}

.border-para {
  border: 3px solid #13F667;
  padding-inline: 30px;
  border-radius: 15px;
  margin-block: 24px;
}
.border-para p {
  font-family: Lora;
  font-size: 14px;
  margin-block: 14px;
}

.text-end {
  text-align: center;
  font-size: 40px;
  font-family: Samsung Sharp Sans;
  margin-block: 40px;
}

@media screen and (max-width: 900px) {
  .text-end {
    font-size: 28px;
    margin-block: 25px;
  }
  .why h3 {
    font-size: 24px;
  }
  .why p {
    font-size: 16px;
    margin-block: 18px;
  }
  .why .advantage h5 {
    font-size: 18px;
  }
  .why .advantage-content {
    margin-block: 18px;
    gap: 18px;
  }
  .border-para {
    padding-inline: 18px;
    margin-block: 18px;
  }
}
.faq-content .box {
  padding: 20px;
}
.faq-content .box .common {
  font-size: 20px;
  font-family: Lora;
}
.faq-content .box .common div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.faq-content .box .common div .big {
  font-size: 50px;
  color: #1CA94D;
  font-family: Samsung Sharp Sans;
  padding-left: 30px;
  margin-right: 30px;
}
.faq-content .box .question {
  border-left: 5px solid #1CA94D;
}
.faq-content .box .answer {
  border-left: 5px solid rgba(0, 0, 0, 0.8);
  font-size: 18px !important;
  color: rgba(0, 0, 0, 0.8);
}
.faq-content .box .answer .big {
  color: rgba(0, 0, 0, 0.8) !important;
}

@media screen and (max-width: 900px) {
  .box {
    padding-inline: 0px !important;
  }
  .box .common div {
    align-items: flex-start !important;
  }
  .box .common div .big {
    font-size: 42px !important;
    padding-left: 15px !important;
    margin-right: 15px !important;
  }
}

/*# sourceMappingURL=style.css.map */
