body {
  font-family: 'Ubuntu', sans-serif;
  color: #444444;
}

a {
  color: #1267a7;
  text-decoration: none;
}

a:hover {
  color: #22d8b6;
  text-decoration: none;
}
::-webkit-scrollbar-thumb {
 background: #2f2d39;
 border-radius: 0px;
}
::-webkit-scrollbar {
 width: 10px;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1267a7;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ed1a61;
  color: #fff;
}
section.about-home img {
 width: 90%;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
section.about-home {
 border-bottom: 4px solid #fdf7e1;
 background: #fffbee;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  background: #1a47ad;
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 80px;
  border-radius: 0px 0px 10px 10px;
}

@media (max-width: 992px) {
  #header {
    height: 80px;
  }
}

/*--------------------------------------------------------------
# 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>ul>li+li {
  margin-left: 30px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 1);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

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



.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffffff;
  font-weight: bold;
}

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

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

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

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

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

.navbar .dropdown:hover>ul {
  opacity: 1;
  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: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@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(16, 31, 29, 0.9);
  transition: 0.3s;
  z-index: 0;
}

.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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li+li {
  margin: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

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

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

.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: #fff;
  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: #1267a7;
}

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

.portfolio-wrap img.img-fluid {
  width: 100%;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(90vh - 70px);
  background: url("../img/cws-header.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 70px;
  padding: 0;
}
#hero-inner {
 width: 100%;
 height: calc(60vh - 70px);
 background: url("../img/cws-header.jpg") center center;
 background-size: cover;
 position: relative;
 margin-top: 70px;
 padding: 0;
}
#hero-inner:before {
 content: "";
 background: rgba(0, 0, 0, 0.3);
 position: absolute;
 bottom: 0;
 top: 0;
 left: 0;
 right: 0;
}
#hero-inner h1 {
 font-family: 'Julee', cursive;
 margin: 0 0 10px 0;
 font-size: 60px;
 font-weight: 700;
 line-height: 1.5;
 color: #fff;
}
main#about {
  padding: 50px 0px;
}

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

#hero .container {
  z-index: 2;
}

#hero h1 span {
  font-size: 60px;
}

#hero h1 {
  font-family: 'Julee', cursive;
  margin: 0 0 10px 0;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  border-color: #1267a7;
  background: #1267a7;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-top: 60px;
    height: calc(60vh - 60px);
  }
}

@media (max-width: 768px) {
 section.about-home h1 {

   font-size: 35px !important;
   
}
.bx-1b h3 span {
 font-size: 16px !important;

}
.bx-1b h1 {
 font-size: 22px;
  
}
section.about-home p {

 width: 100% !important;

}
section.about-home {
 padding-bottom: 10px;
 text-align: center;
}
section.about-home img {
 width: 100%;
}
section.about-home ul {

 display: none;
}
  .cntnt5 p {

    width: 100% !important;

  }

  .cntnt5 p {

    text-align: center !important;

  }

  .bg1 {

    text-align: center;
  }

  h1.hdg-2 {

    text-align: center !important;

  }

  #hero h1 {
    font-size: 48px;
    line-height: 63px;
  }

  #hero h1 span {
    font-size: 40px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}



section.about-home h1  {
 color: #000;
 font-size: 45px;
 font-weight: 700;
 margin: 20px 0px 10px;

 line-height: 49px;
 margin-bottom: 30px;
}
section.about-home p {
 font-family: 'Roboto', sans-serif;
 font-size: 17px;
 line-height: 28px;
 width: 90%;
 color: #000;
 font-weight: 400;
 margin-bottom: 30px;
}

section.about-home  ul {
 width: 40%;
 float: left;
 padding: 0;
}
section.about-home ul li {
 list-style: none;
 font-family: 'Roboto', sans-serif;
 font-size: 17px;
 line-height: 48px;
 color: #000;
 font-weight: 400;
}

section.about-home  ul li i {
 font-size: 20px;
 width: 30px;
 color: #de2261;
}








/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color:#efefef;
}

.section-title {
  padding-bottom: 40px;
  text-align: center;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #2e3133;
  font-weight: bold;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonial-item1 {
  padding: 40px 0px 50px 0px;
  background: #dceff5;
  border-radius: 0px 0px 20px 20px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 0px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonial-item1 h2 {
  font-size: 18px;
  font-weight: bold;
  color: #111;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;

  color: #111;
}

.testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;

}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #a8d3cc;
  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: 0 15px 0 15px;
  padding: 20px 20px 20px 20px;

  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.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 #ed1a61;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed1a61;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 8px 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #1267a7;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
  width: 100%;
  height: 100%;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  align-items: center;
  align-content: center;
  display: grid;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #4ae3c6;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1267a7;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1267a7;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(33, 65, 60, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #1267a7;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #09273c;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #0d3756;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 5px;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {

  color: #94969b;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.button6:hover {
  background-color: #1267a7;
}

.button3:hover {
  background-color: #66be4d;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #16a2d3;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 15px;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #34dfbf;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1267a7;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #14806c;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.cntnt5 img {
  max-width: 200px;
}

.button3 {
  color: #fff;
  background-color: #e31c5f;
  border-radius: 0px 0px;
  padding: 10px 37px;
  border: 0px solid #fff;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 30px;
  text-transform: uppercase;
  font-size: 14px;
}

.cntnt5 p {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  text-align: left;
  line-height: 30px;
  width: 50%;

  color: #fff;
  font-weight: 400;
}

.wht-txt {
  color: #fff;
}

h1.hdg-2 {
  font-size: 40px;
  text-align: left;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.bg1 {
  padding: 100px 0px 100px;
  background-image: url(../img/bg-bottom.jpg);
  background-attachment: fixed;
  background-position: center center;
  position: relative;
  background-size: cover;
}

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


.bx-1b {
  padding-bottom: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 7px 8px #ccc;
  margin-bottom: 30px;
}

.content {
  position: relative;
  margin: auto;
  overflow: hidden;
  margin-bottom: 10px;
}

h1.hdg-3 {
  margin-top: 0px !important;
  text-transform: capitalize;
}

.bx-1b h1 {
  font-size: 20px;
  line-height: 28px;
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 30px;
  text-align: center;
}

.bx-1b h3 {
  text-align: center;
  font-size: 20px;
  margin-top: 4px;
  color: #e8165d;
  margin-bottom: 0;
}

.bx-1b h4 {
  font-size: 13px;
  line-height: 28px;
  color: #686666;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 0px;
  text-align: center;
}

.bx-1b h3 span {
  font-size: 14px;
  color: #353132;
}

.content-image {
  width: 100%;
}

.fadeIn-bottom {
  top: 80%;
}

.button7 {
  color: #fff;
  background-color: transparent;
  border-radius: 0px 0px 0px 0px;
  padding: 6px 20px;
  border: 2px solid #fff;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 13px;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.content .content-overlay {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.button6 {
  color: #ffffff;
  background-color: #6bba43;
  border-radius: 0px 0px 0px 0px;
  padding: 6px 20px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 13px;
  border: none;
}






.p-100 {
  padding: 100px 0px;
}

.bg2 {
  padding: 40px 0px;
  background-position: center center;
  background: #efefef;
}

.advs h3 {
  color: #000;
  font-size: 30px;
  line-height: 53px;
}
.box-inner h2 {
 color: #000000;
 margin-bottom: 30px;
 margin-top: 20px;
}
.box-inner h3 {
 font-size: 20px;
 margin-top: 4px;
 color: #322f30;
 margin-bottom: 12px;
}
.box-inner h3 span {
 font-size: 17px;
 color: #858d8d;
}
.box-inner h4 {
 font-size: 17px;
 margin-top: 4px;
 color: #322f30;
 margin-bottom: 12px;
}
.box-inner h4 span {
 color: #1a47ad;
}
.box-inner p {
 font-family: 'Roboto', sans-serif;
 font-size: 17px;
 line-height: 28px;
 color: #000;
 font-weight: 400;
 margin-bottom: 0px;
 text-align: justify;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.inner-head-section h2 {
 color: #000;
}
.contact .info {
 width: 100%;
}
.contact button {
 background:#1a47ad;
}

.contact .info i {
 font-size: 20px;
 background:#1a47ad;
 color: #fff;
 float: left;
 width: 44px;
 height: 44px;
 display: flex;
 justify-content: center;
 align-items: center;
 border-radius: 50px;
 transition: all 0.3s ease-in-out;
}

.contact .info h4 {
 padding: 0 0 0 60px;
 font-size: 20px;
 font-weight: 700;
 margin-bottom: 5px;
 color: #043c6d;
}

.contact .info p {
 padding: 0 0 0 60px;
 margin-bottom: 0;
 font-size: 18px;
 color: #444444;
}

.contact .info .email,
.contact .info .phone {
 margin-top: 40px;
}


.inner-banner {
 height: calc(60vh - 70px);
}


.tt_event_items_list label {
 width: 43%;
 font-size: 16px;
 line-height: 1.41em;
 letter-spacing: .1em;
 font-weight: 600;
 text-transform: uppercase;
 color: #222
}
.tt_event_text {
 color: #000;
 font-size: 16px;
 font-weight: 500;
 line-height: 20px;
 text-align: left;
 margin-left: 20px;
 width: calc(57% - 20px);
 margin-bottom: 0;
}
.timetable_clearfix:after {
 font-size: 0;
 content: ".";
 display: block;
 height: 0;
 visibility: hidden;
 clear: both;
}
.tt_event_items_list li.type_info {
 border-bottom: 1px dashed #cdcdcd;
 padding: 0;
 margin-bottom: 22px;
 display: flex;
}
.tt_event_items_list {
 list-style: none;
 padding: 0px 0;
 margin: 0;
 width: 70%;
}




.video-two {
 background-color: #063a7a;
 background-repeat: no-repeat;
 background-position: bottom left;
 position: relative;
}

.video-two__swimmer {
 position: absolute;
 top: 10%;
 left: 40%;
 z-index: 10;
 -webkit-animation:   7s linear infinite;
         animation:   7s linear infinite;
}

.video-two .container {
 padding-top: 120px;
 padding-bottom: 120px;
 position: relative;
}

.video-two__box {
 position: absolute;
 right: 15px;
 bottom: -60px;
 z-index: 15;
}


@media(min-width: 992px) {

 .video-two__content {
   padding-right: 40px;
 }
}

.video-two__content .block-title {
 margin-bottom: 30px;
}

.video-two__content .block-title p {
 color: #c1cfe1;
}

.video-two__content .block-title h3 {
 color: #fff;
}

.video-two__content>p {
 color: #c1cfe1;
 margin: 0;
}

.video-two__btn {
 margin-top: 50px;
}


.video-two .video-popup {
 width: 121px;
 height: 121px;
 background-color:#febf0f;
 display: -webkit-box;
 display: flex;
 -webkit-box-pack: center;
 justify-content: center;
 -webkit-box-align: center;
 align-items: center;
 position: absolute;
 left: -60.5px;
 bottom: 60px;
 font-size: 20px;
 color: var(--thm-black);
 -webkit-transition: all 500ms ease;
 transition: all 500ms ease;
}
.block-title h3 {
 margin: 0;
 font-size: 70px;
 font-weight: bold;
 font-family: var(--thm-font);
 color: var(--thm-black);
}
.video-two .video-popup::before {
 content: '';
 width: 100%;
 height: 100%;
 background-color: #fff;
 opacity: 0.1;
 position: absolute;
 top: -10px;
 left: -10px;
 -webkit-transition: all 500ms ease;
 transition: all 500ms ease;
}
.video-two .video-popup:hover::before {
 top: 0;
 left: 0;
}
.ride-box ul {
  margin: 0;
  width: 45%;
}
.scuba-table {
 padding: 30px;
 background: #72be40;
 display: inline-block;
}
.ride-box h3 {
  padding-right: 30px;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  width: 50%;
  text-shadow: 1px 1px 0px #0006;
}
.ride-box h4 {
 font-size: 18px;
 color: #ffffff;
 width: 15%;
}
.ride-box {
 border: 1px dotted #fff;
 padding: 20px;
 margin-bottom: 20px;
 display: inline-flex;
 height: 100%;
 width: 100%;
 background: #63a936;
}
.ride-box ul li {
  font-size: 15px;
  color: #fff;
  display: list-item;
  list-style: circle;
  font-weight: 400;
}



@media (max-width:567.9px){
  .ride-box {
    display: grid !important;
    width: 100% !important;
}
.ride-box ul {
  margin: 0;
  width: 100%;
}
.ride-box h3 {
  width: 100%;
}
.ride-box h4 {
  width: 100%;
}
.block-title h3 {
  font-size: 40px;
}
.video-two .container {
  padding-top: 0px;
  padding-bottom:  20px;
  position: relative;
}
}

@media (min-width:568px){
  .swmng-bx:nth-child(even) .swmg-img {
    order: 1;
    padding: 0 30px;
}
}
@media (max-width:567.9px){
.swmng-bx p {
    text-align: justify;
}
}
.swmg-img {
  display: grid;
  align-content: center;
}
.swmg-cntnt  {
  padding: 0;
}
.swmng-bx {
  margin-bottom: 60px;
}

.swmng-bx h2 {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  line-height: 49px;
  margin-bottom: 10px;
}
.swmng-bx h3 {
  font-family: 'Roboto', sans-serif;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
}
.swmng-bx p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #000;
  font-weight: 400;
  margin-bottom: 30px;
}

table {
  border-collapse: collapse;
  
}
.h{
    font-weight: 700;
}

td,
th {
  border: 1px solid black;
  padding: 10px 20px;
  width: 20rem;
}

/* slider---------------- */
/* Container for the slider */
.slider-container {
  position: relative;
  overflow: hidden;
}

/* Wrapper for the slides */
.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Each slide item */
.slider-item {
  flex: 0 0 100%; /* Each item takes full width */
  text-align: center;
}

/* Button styles */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: #575757;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}
.slider-item img {
  max-width: 20%;
  height: auto;
}

/* Ensure responsiveness */
@media (max-width: 768px) {
  .slider-item img {
    max-width: 25%;
    height: auto;
  }
  .slider-item h3{
    font-size: 20px;
    line-height: 25px;
  }
 
}
