@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
}

#header .logo {
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #008688;
}

#header .logo img {
  max-height: 40px;
}

/**
* Get Startet Button 
*/
.get-started-btn {
  margin-left: 22px;
  background: #008688;
  color: white;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  box-shadow: rgba(0, 0, 0, 0.36) 0px 3px 6px, rgba(0, 0, 0, 0.43) 0px 3px 6px;
}

.get-started-btn:hover {
  background: #00266d;
  color: white;
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}
.sticky-section {
  position: sticky;
  top: 150px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 1rem;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #008688;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: white;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #302b2b;
}

.navbar .dropdown ul a i {
  font-size: 1rem;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #008688;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #37423b;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.uil-times {
  color: white;
}

.mobile-nav-toggle.uil-list-ul {
  color: white;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(32, 38, 34, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: white;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37423b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #008688;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: white;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #008688;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.header.sticked {
  background: white;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}
.header.sticked .navbar a,
.header.sticked .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #37423b;
  white-space: nowrap;
  transition: 0.3s;
}
.header.sticked .mobile-nav-toggle.uil-list-ul {
  color: #302b2b;
}

/*--------------------------------------------------------------
# breadcumbs Section
--------------------------------------------------------------*/
.breadcrumbs .page-name {
  height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(https://images.pexels.com/photos/733852/pexels-photo-733852.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
  background-size: cover;
  background-position: top;
}
.breadcrumbs .page-name h1 {
  font-size: 3.5rem;
  color: #00266d;
}
.breadcrumbs .breadcrumb {
  background-color: lightgrey;
  padding: 10px;
  font-size: 14px;
  color: #00266d;
}
.breadcrumbs .breadcrumb a {
  text-decoration: none;
  color: #008688;
  transition: color 0.3s;
  font-weight: 600;
}
.breadcrumbs .breadcrumb a:hover {
  color: #00266d;
}
.breadcrumbs .breadcrumb a:last-child {
  font-weight: bold;
}
.breadcrumbs .breadcrumb span {
  font-weight: bold;
  color: #000;
  margin-left: 5px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url(/assets/imgaes/pexels-idriss-meliani-2982449-min.jpg) top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 72px;
  text-align: center;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 62px;
  }
}
#hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 500;
  line-height: 56px;
  color: white;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  color: #eee;
  margin: 10px 0 0 0;
  font-size: 1.5rem;
}

#hero .btn-get-started {
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
  border: 2px solid white;
  color: white;
}

#hero .btn-get-started:hover {
  background: #008688;
  border: 2px solid #008688;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
.recent-news-div {
  box-shadow: rgba(255, 255, 255, 0.2) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.35) 0px 50px 100px -20px, rgba(0, 0, 0, 0.4) 0px 30px 60px -30px;
}
.recent-news-div .recent-news {
  box-shadow: rgba(50, 50, 93, 0.5) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.recent-news-div .bar-title-div .bar-title a {
  color: #8c3333;
  font-weight: 500;
  transition: all 0.5 ease;
}
.recent-news-div .bar-title-div .bar-title a:hover {
  color: #00266d;
}

.streams {
  padding: 4rem 0;
  background: url(/assets/imgaes/program-line-bg.png) no-repeat 50% #00266d;
  background-size: cover;
  color: white;
}
.streams .title {
  font-size: 2.7rem;
  font-weight: 100;
}
.streams .content {
  font-weight: 500;
  color: lightgrey;
  text-align: justify;
}
.streams .read {
  color: #008688;
  transition: 0.5s;
  padding: 2px 10px;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 1px;
  position: relative;
}
.streams .read:hover {
  color: white;
  letter-spacing: 1px;
}
.streams .read::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 50px;
  border: 2px solid white;
  transition: width 0.5s;
}
.streams .read:hover::before {
  width: 100%;
}

.intro {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.intro .intro-image {
  height: 25rem;
  border-radius: 5rem;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
@media (max-width: 991px) {
  .intro .intro-image {
    padding: 0.2rem;
  }
}
.intro .logo-section .logo {
  height: 5rem;
}
.intro .title {
  font-size: 3rem;
  color: #00266d;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.intro .content {
  font-size: 1.1rem;
  font-weight: 500;
  color: #707070;
  text-align: justify;
}
.intro .read {
  color: #00266d;
  transition: 0.5s;
  padding: 2px 10px;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 1px;
  position: relative;
}
.intro .read:hover {
  color: #008688;
  letter-spacing: 1px;
}
.intro .read::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 50px;
  border: 2px solid #00266d;
  transition: width 0.5s;
}
.intro .read:hover::before {
  width: 100%;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.courses .section-title {
  padding-bottom: 40px;
}
.courses .section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.courses .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #008688;
  margin: 4px 10px;
}
.courses .section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #00266d;
}
.courses .course-item {
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #eef0ef;
  transition: all 0.5s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  overflow: hidden;
}
.courses .course-item:hover {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.courses .course-item:hover img {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}
.courses .course-content {
  padding: 15px;
}
.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}
.courses .course-content h3 a {
  color: #37423b;
  transition: 0.3s;
}
.courses .course-content h3 a:hover {
  color: #00266d;
}
.courses .course-content p {
  font-size: 14px;
  color: #777777;
}
.courses .course-content h4 {
  font-size: 14px;
  background: #00266d;
  padding: 7px 14px;
  color: #fff;
  margin: 0;
}

/*--------------------------------------------------------------
# Trainers
--------------------------------------------------------------*/
.trainers .section-title {
  padding-bottom: 40px;
}
.trainers .section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.trainers .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #008688;
  margin: 4px 10px;
}
.trainers .section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #00266d;
}
.trainers .member {
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #eef0ef;
  transition: all 0.5s ease-in-out;
}
.trainers .member:hover {
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.trainers .member img {
  margin: -1px -1px 30px -1px;
}
.trainers .member .member-content {
  padding: 0 20px 30px 20px;
}
.trainers .member .member-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #00266d;
}
.trainers .member .member-content span {
  font-style: italic;
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: #707070;
}
.trainers .member .member-content p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}
.trainers .member .member-content .social {
  margin-top: 15px;
}
.trainers .member .member-content .social a {
  color: #7e9486;
  transition: 0.3s;
}
.trainers .member .member-content .social a:hover {
  color: #00266d;
}
.trainers .member .member-content .social i {
  font-size: 1.5rem;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  background: url(https://davcollege.edu.np/images/world-map.png) top center;
  background-size: cover;
  background-position: center;
}
.testimonials .section-title {
  padding-bottom: 40px;
}
.testimonials .section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.testimonials .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #008688;
  margin: 4px 10px;
}
.testimonials .section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #00266d;
}
.testimonials .testimonial-wrap {
  padding-left: 4rem;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  border: 1px solid #eef0ef;
  position: relative;
  background: #008688;
  border-radius: 40px;
  transition: all 0.5s ease-in-out;
}
.testimonials .testimonial-item:hover {
  transform: scale(1.1);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  border: 1px white solid;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #00266d;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: white;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #c1ecce;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #00266d;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00266d;
}
@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

.pictures {
  background: url(/assets/imgaes/program-line-bg.png) no-repeat 50% #00266d;
  background-size: cover;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  /* Responsive Styles */
  /* Modal Styles */
  /* Responsive Styles */
  /* Responsive Styles */
}
.pictures .title .name {
  color: white;
  align-items: center;
}
.pictures .title .name i {
  color: #008688;
}
.pictures .title .read {
  color: white;
  transition: 0.5s;
  padding: 2px 10px;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 1px;
  position: relative;
}
.pictures .title .read:hover {
  color: white;
  letter-spacing: 1px;
}
.pictures .title .read::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 50px;
  border: 2px solid white;
  transition: width 0.5s;
}
.pictures .title .read:hover::before {
  width: 100%;
}
.pictures .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.pictures .gallery-item {
  width: 15rem;
  height: 15rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  border: 4px solid white;
}
.pictures .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.pictures .gallery-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .pictures .gallery-item {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 480px) {
  .pictures .gallery-item {
    width: 150px;
    height: 150px;
  }
}
.pictures .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}
.pictures .modal-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: auto;
  width: 80%;
  max-width: 800px;
  max-height: 90%;
}
.pictures .slide {
  display: none;
}
.pictures .slide img {
  width: 100%;
  max-height: 100%;
}
.pictures .prev,
.pictures .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: #00266d;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s;
  cursor: pointer;
  z-index: 1;
}
.pictures .prev {
  left: 10px;
}
.pictures .next {
  right: 10px;
}
@media (max-width: 768px) {
  .pictures .modal-content {
    width: 90%;
  }
  .pictures .prev,
  .pictures .next {
    font-size: 20px;
    padding: 8px;
  }
}
@media (max-width: 480px) {
  .pictures .modal-content {
    width: 95%;
  }
  .pictures .prev,
  .pictures .next {
    font-size: 16px;
    padding: 6px;
  }
}
.pictures .close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
}
@media (max-width: 768px) {
  .pictures .modal-content {
    width: 90%;
  }
  .pictures .prev,
  .pictures .next {
    font-size: 20px;
    padding: 8px;
  }
  .pictures .close {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .pictures .modal-content {
    width: 95%;
  }
  .pictures .prev,
  .pictures .next {
    font-size: 16px;
    padding: 6px;
  }
  .pictures .close {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #37423b;
  font-size: 14px;
  background: #00266d;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #f9faf9;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 1.8rem;
  margin: 0 0 2rem 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #00266d;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links h4 {
  color: #00266d;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li i {
  padding-right: 2px;
  color: #00266d;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  transition: margin-right 0.3s ease;
}
#footer .footer-top .footer-links ul li:hover i {
  margin-right: 1rem;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul li a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-weight: 500;
}
#footer .footer-top .footer-links ul li a:hover {
  text-decoration: none;
  color: #00266d;
}
#footer .footer-top .footer-newsletter {
  font-size: 15px;
}
#footer .footer-top .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #00266d;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-newsletter iframe {
  border: 2px solid #008688;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 25px 20px -20px;
}
#footer .credits {
  padding-top: 5px;
  font-size: 1rem;
  font-weight: 500;
  color: #008688;
}
#footer .credits a {
  color: white;
  transition: 0.3s;
}
#footer .credits a:hover {
  color: orangered;
}
#footer .social-links a {
  font-size: 2rem;
  display: inline-block;
  background: #00266d;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 3rem;
  height: 3rem;
  transition: 0.5s ease;
}
#footer .social-links a:hover {
  background: white;
  color: #00266d;
  text-decoration: none;
  transform: translateY(-20%);
  box-shadow: rgb(195, 204, 212) 3px 3px 6px 0px inset, rgba(224, 224, 224, 0.7) -3px -3px 6px 1px inset;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #00266d;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #00266d;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #78bcc4;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# About Page css
--------------------------------------------------------------*/
.mission .title h1 {
  text-align: center;
  font-weight: 300;
  color: #00266d;
  font-size: 3rem;
}
.mission .content p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #707070;
}

/*--------------------------------------------------------------
# contact Page css
--------------------------------------------------------------*/
.contact .title h1 {
  text-align: center;
  font-weight: 300;
  color: #00266d;
  font-size: 3rem;
}
.contact .content p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #707070;
}
.contact .detial {
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.contact .detial .form {
  /* CSS */
}
.contact .detial .form label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
  color: #00266d;
}
.contact .detial .form .input-container {
  display: flex;
  align-items: center;
}
.contact .detial .form input {
  border-radius: 0 !important;
}
.contact .detial .form .custom-input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  font-size: 16px;
  background-color: #fff;
  color: #333;
  outline: none;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}
.contact .detial .form .custom-input:focus {
  background-color: #00266d;
  color: #008688;
  box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
}
.contact .detial .form .form-control {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 0.5rem;
  transition: border-color 0.3s ease-in-out;
}
.contact .detial .form .form-control:focus {
  outline: none;
  border-color: #0069d9;
}
.contact .detial .form .text-danger {
  color: #ff0000;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: inline-block;
}
.contact .detial .form .text-success {
  color: #28a745;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: inline-block;
}
.contact .detial .form textarea {
  resize: vertical;
}
.contact .detial .form .button-51 {
  background-color: transparent;
  border: 1px solid #266db6;
  box-sizing: border-box;
  color: #00132c;
  font-family: "Avenir Next LT W01 Bold", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 16px 23px;
  position: relative;
  text-decoration: none;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
}
.contact .detial .form .button-51:hover,
.contact .detial .form .button-51:active {
  outline: 0;
}
.contact .detial .form .button-51:hover {
  background-color: transparent;
  cursor: pointer;
}
.contact .detial .form .button-51:before {
  background-color: #d5edf6;
  content: "";
  height: calc(100% + 3px);
  position: absolute;
  right: -7px;
  top: -9px;
  transition: background-color 300ms ease-in;
  width: 100%;
  z-index: -1;
}
.contact .detial .form .button-51:hover:before {
  background-color: #6dcff6;
}
@media (min-width: 768px) {
  .contact .detial .form .button-51 {
    padding: 16px 32px;
  }
}
.contact .tile {
  margin: 1.5rem 0;
  padding: 0.7rem;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.contact .tile .icon i {
  font-size: 3rem;
  color: #00266d;
}
.contact .tile .info {
  font-size: 1.1rem;
  font-weight: 300;
  color: #008688;
}/*# sourceMappingURL=style.css.map */