


/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@font-face {
	font-family: "Myriad Variable Concept";
	src: url("https://db.onlinewebfonts.com/t/3a86b8ec8855002aad8b288eaba8915d.eot");
	src: url("https://db.onlinewebfonts.com/t/3a86b8ec8855002aad8b288eaba8915d.eot?#iefix")format("embedded-opentype"),
	url("https://db.onlinewebfonts.com/t/3a86b8ec8855002aad8b288eaba8915d.woff2")format("woff2"),
	url("https://db.onlinewebfonts.com/t/3a86b8ec8855002aad8b288eaba8915d.woff")format("woff"),
	url("https://db.onlinewebfonts.com/t/3a86b8ec8855002aad8b288eaba8915d.ttf")format("truetype"),
	url("https://db.onlinewebfonts.com/t/3a86b8ec8855002aad8b288eaba8915d.svg#Myriad Variable Concept")format("svg");
  }


@font-face {
    font-family: 'GE SS Two';
    src: url('../fonts/ge-ss-two-bold/GE-SS-Two-Medium.woff') format('woff');
    font-weight: 300; /* Medium */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GE SS Two';
    src: url('../fonts/ge-ss-two-bold/GE-SS-Two-Bold.woff') format('woff');
    font-weight: 700; /* Bold */
    font-style: normal;
    font-display: swap;
}















/* font-family: 'Barlow Condensed', sans-serif;
font-family: 'Ubuntu', sans-serif; */

:root {
    --thm-font: 'Open Sans', sans-serif;
    --heading-font: 'Poppins', sans-serif;
    --arb-font: 'GE SS Two';
    --thm-base: #244048;
    --thm-base-rgb: 59, 145, 225;
    --thm-primary: #c4b9ad;
    --thm-black: #244048;
    --thm-black-rgb: 5, 27, 53;
    --thm-gray: #deeef3;
}


body {
	font-size: 18px;
	line-height: 1.5;
	color: #244048;
}
body {
	font-family: var(--thm-font);
}
body.arb {
    font-family: var(--arb-font) !important;
}


 h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--heading-font);
} 

 body.arb h1,
body.arb h2,
body.arb h3,
body.arb h4,
body.arb h5,
body.arb h6 {
	font-family: var(--arb-font);
} 

a {
    color: #3c91e1;
}
a,
a:hover,
a:active,
a:focus {
	text-decoration: none;
}
.nav-link:focus, .nav-link:hover {
    color: #ffffff;
}
p{
	padding-bottom:20px;
}
.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	overflow: hidden;
}
img{
	height:auto
}
a {
    color: var(--main-color-3);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}
img{
    max-width: 100%;
}
.main-header {
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
  background: #244048d9;
}

header .nav-link {
    color: #fff;
    margin-right: 20px;
    transition: color 0.3s ease-in-out;
    font-weight: 500;
    transition: 0.4s;
    border-bottom: 2px solid transparent;
    padding: 15px 12px;
    font-size: 17px;
    text-transform: uppercase;
}

header .nav-link:hover {
    /* transform: scale(1.1); */
    color: #ffffff;
    text-decoration: none;
    border-bottom: 2px solid #fff;
}

header .dropdown-menu a {
    color: #fff;
}

header .dropdown-menu a:hover {
    background-color: #fff;
    color: var(--main-color-2);
}

header .btn-outline-secondary {
    margin-right: 10px;
    border-color: var(--main-color-1);
    color: var(--main-color-1);
}

header .btn-outline-secondary:hover {
    background-color: var(--main-color-1);
    color: #ffffff;
}

header .btn-primary {
    background-color: transparent;
    color: #c4b9ad;
    font-weight: bold;
    border: 2px solid #c4b9ad;
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

header .btn-primary:hover {
    background-color: var(--main-color-2);
    border-color: var(--main-color-2);
}




/* .nav-wrapper {
    width: 300px;
    margin: 100px auto;
    text-align: center;
  } */
  .sl-nav {
    display: inline;
  }
  .sl-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    display: inline-block;
  }
  .sl-nav li {
    cursor: pointer;
    margin: 0px;
    margin-right: 30px;
	color: #c4b9ad;
  }
  .sl-nav li ul {
    display: none;
  }
  .sl-nav li:hover ul {
    position: absolute;
    top: 29px;
    right: -15px;
    display: block;
    background: #fff;
    width: 120px;
    padding-top: 0px;
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  }
  .sl-nav li:hover .triangle {
    position: absolute;
    top: 15px;
    z-index: 10;
    height: 14px;
    overflow: hidden;
    width: 30px;
    background: transparent;
  }
  .sl-nav li:hover .triangle:after {
    content: '';
    display: block;
    z-index: 20;
    width: 15px;
    transform: rotate(45deg) translateY(0px) translatex(10px);
    height: 15px;
    background: #fff;
    border-radius: 2px 0px 0px 0px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  }
  .sl-nav li ul li {
    position: relative;
    text-align: left;
    background: transparent;
    padding: 15px 0px;
    padding-left: 10px;
    padding-bottom: 0;
    z-index: 2;
    font-size: 15px;
    color: #3c3c3c;
  }
  .sl-nav li ul li:last-of-type {
    padding-bottom: 15px;
  }
  .sl-nav li ul li span {
    padding-left: 5px;
  }
  .sl-nav li ul li span:hover,
  .sl-nav li ul li span.active {
    color: #146c78;
  }
  .sl-flag {
    display: inline-block;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
    width: 15px;
    height: 15px;
    background: #aaa;
    border-radius: 50%;
    position: relative;
    top: 2px;
    overflow: hidden;
  }
  .flag-usa {
    background-size: cover;
    background-position: center center;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTM0A1t6AAABhUlEQVQ4T2Ows82PjGixsc4LD2tysC/09Kjw8622tyuICG8u0w/cpGSCBzF4e1VmZkzw9anOzOj38a4KCW4IC22ECHYk1l9tn4gHMeTlTnZxLikvm+XiUpKW2hvgX+vnV5OVOQEoOGfOtv94AYOzU3Fd7XxHh6Lq6rlurqUx0W0J8Z1AnbW18yotonaYuOJBDBXls4A+bGpaBCTz86YEBtQCvVBSPAPIbY0oP1/aiAcxABU1Ny+2tclvbFjo5FgUF9uenNwNDLnmpkWEnV1TPRcY1O1tS4H6i4umA/0MDK2K8tlAwRqHpP1uoXgQKKraWpcClTY3LQZaCLQ5NaUX5OaWJY3++SeTC/AgBmA4AXUClUJs9ver8fKsAAYEUJCws4G21dXNB1oFdD/Qz8DQTk4C+bm2dn6DZ9bRiDQ8iAEYt8CoBpK5YBIYw0AEEZwSXX4oMB4PYoC6gCzAcDqrjGzEsMfen2xEmbMv1rSTjRi26dqRjShz9o2+6WQjBrSShQSkZAIADvW/HLrLY6cAAAAASUVORK5CYII=');
  }
  .flag-sa {
    background-size: cover;
    background-position: center center;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTM0A1t6AAADJElEQVQ4T8XUPUgTcRzH8e/5bNZgR5gwAxFgUodnZWoVKksLGxs7c1FJriK1FzsLCrFbEAsGWVvIjYpUd7CJiUlB6q7I8GwYWyXQOxUJQZvBZ8zsZ4zg7Jy2ELOh4pF5f+Yd7Zv9/5z3fXd/Vz70J1UzgbHTwB0K7AU/u6gWghFbOYvQKYTGx1Ech15EbL5nT5nE4/z8cCOZ5nnO4PnD4i8lNzHe6+5VJ+gsCj1dohkUKhV9s6N1kOhkOEwT4Ji8tDx9PxcAahwG3JkMj24ckJExjK3f/4tXxG6SML0OJgVtjBqOiKpLiqdqlc2m9j7TqB7YbI8ZBKu4/oM7ZoWi0c');
  }










#about {
    background-color: #f8f9fa;
    padding: 80px 0;
    background-image: url(../images/water-wave-bg.png);
}

#about h2 {
    color: var(--main-color-1);
    margin-bottom: 30px;
}

#about p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Style for the custom list */
.custom-list {
    list-style-type: none; /* Remove default list styles */
}

/* Icon before each list item */
.custom-list li::before {
    font-family: "Font Awesome 6 Free";
    content: "\f05d";
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
    color: #1e454c;
    font-size: 21px;
}
section.blog-one.blog-block-home-one {
    position: relative;
}
section#services {
  background-image: url(../images/water-wave-bg.png);
  padding-bottom: 45px;
}
.pt-120 {
    padding-top: 100px;
}
#services .col-lg-4 {
    margin-bottom: 40px !important;
}
#services h2 {
    color: var(--main-color-1);
    margin-bottom: 50px;
}


.card{
    border:0px solid;
}
.card-icon i {
    font-size: 25px;
    padding: 12px 5px;
}
.card-title {
    color: #fff;
    font-weight: bold;
    margin-left: 30px;
    font-size: 1.3rem;
}
.card-text {
    color: #fff;
}

.card-body {
    flex: 1 1 auto;
    padding: 0rem;
    /* height: 350px;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-position: center; */
    background-color: #1e454c;
}
.card-text {
    display: flex;
    align-items: center;
}

.card-text {
    width: 100%;
    background:#26525a;
    color: #fff;
}
.card-icon {
    background: #c4b9ad;
    padding: 10px 18px;
}

.card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px 1px rgb(0 0 0 / 26%);
}
.card img {
    transition: transform 1s;

}
/* .card:hover img {
    transition: transform 1s;
    transform: scale(1.2);
} */
.card-im {
    position: relative;
    overflow: hidden;
}

.card-im img {
    width: 100%;
    height: 320px;
}








section#latest-trips .container-fluid {
  padding: 0px;
}



#latest-trips {
    background-color: #f8f9fa;
    background-image: url(../images/water-wave-bg.png);
    padding-bottom: 0;
}

#latest-trips h2 {
    color: #1e454c; /* Main color for section headings */
}

#latest-trips .card {
    border: none; /* Remove default card border */
    box-shadow: 0 0 20px rgba(0,0,0,0.1); /* Soft shadow for cards */
    background-size: cover;
    background-position: center;
    border-radius: 0px;
}

#latest-trips .card-title {
  color: #ffffff;
  font-size: 2.1rem;
  margin-bottom: 15px;
  margin-left: 0;
  margin: 0;
  font-size: 36px;
  font-weight: bold;
}

#latest-trips .card-body {
    padding: 60px !important; /* Padding inside card body */
    color: #ffffff; /* Text color inside card */
    background-size: cover;
	background-position: center;
	position: relative;
	    min-height: 500px;
}
.trip-heading {
    position: relative;
    z-index: 9;
}
.trip-content {
    position: relative;
    z-index: 9;
}
#latest-trips .card{
    position: relative;
}
#latest-trips .card:after {
    content: "";
    /* background: #1e454c4f; */
    background: #389fa5d9;
    background: linear-gradient(to bottom right, #244048dc, #38a0a5cb);

    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
/* #latest-trips .card-body {
  padding: 20px;
  color: #ffffff;
  background-size: cover;
  height: 580px;
  position: relative;
  border: 12px solid #244048;
} */

#latest-trips .card.sdf:before {
    background: #389fa5d9;
}

#latest-trips .card.clr2:after {
    background: #d75c4ccc;
	background: linear-gradient(to bottom right, #d75c4ccc, #99392dcc);
}
#latest-trips .card.clr4:after {
    background: #4b6cacd6;
    background: linear-gradient(to bottom right, #4b6cacd6, #203764d6);
}
#latest-trips .card.clr3:after {
    background: #c17926c2;
    background: linear-gradient(to bottom right, #c17926c2, #60380ac2);
}
#latest-trips .card.clr5:after {
    /* background: #6e8e97cc;
    background: linear-gradient(to bottom right, #6e8e97cc, #273c42cc); */

}
#latest-trips .card.clr5:after {
    /* background: #6e8e97cc; */
    background: linear-gradient(to bottom right, #156d72ba, #2c898fd4);
}
#latest-trips .card.clr1:after {
    background: #27397abf;
    /*background: linear-gradient(to bottom right, #27397abf, #0c1638bf);*/
    background: linear-gradient(to bottom right, #389fa5e3, #244048d1);
}
/* .card-body.fr-sc{
    transition-all: 0.2s !important;
} */
.clr1 .card-body.fr-sc {
	animation: fadeInBackground 35s forwards; /* 5 seconds fade-in */
}
.clr2 .card-body.fr-sc{
	animation: fadeInBackground2 35s forwards; /* 5 seconds fade-in */
}
.clr3 .card-body.fr-sc{
	animation: fadeInBackground 35s forwards; /* 5 seconds fade-in */
}
.clr4 .card-body.fr-sc{
	animation: fadeInBackground2 35s forwards; /* 5 seconds fade-in */
}
.clr5 .card-body.fr-sc{
	animation: fadeInBackground 35s forwards; /* 5 seconds fade-in */
}
@keyframes fadeInBackground {
	0% {
	 background-size: 100%;
	}
	50% {
background-size: 110%;
	}
	100% {
		background-size: 100%;
			}
  }

  @keyframes fadeInBackground2 {
	0% {
	 background-size: 110%;
	}
	50% {
background-size: 100%;
	}
	100% {
		background-size: 110%;
			}
  }


#latest-trips .list-unstyled {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
#latest-trips .list-unstyled li {
    margin-bottom: 10px;
    /* background: #c4b9ad; */
    /* width: 100px; */
    padding: 10px;
    border-radius: 10px;
    flex: 1;
    font-weight: bold;
    font-size: 18px;
	text-align: center;
}
#latest-trips .list-unstyled li {
    text-align: center;
}
#latest-trips .list-unstyled li img {
    margin: auto;
}
#latest-trips .list-unstyled li strong {
    display: block;
    line-height: 19px;
    height: max-content;
    font-size: 15px;
    font-weight: normal;
}

#latest-trips .list-unstyled li i {
    display: block;
    font-size: 40px;
}
#latest-trips .card-text {
    margin-bottom: 15px; /* Space below text content */
}

#latest-trips .card-date {
    margin-top: 10px; /* Space above date */
    font-size: 1.1rem; /* Date font size */
    color: #fff;
    font-weight: bold;
}

#latest-trips .btn-primary {
    background-color: #389fa5; /* Main color for buttons */
    border-color: #389fa5; /* Button border color */
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Smooth transition */
}

#latest-trips .btn-primary:hover {
    background-color: #1e454c; /* Darker color on hover */
    border-color: #1e454c; /* Darker border color on hover */
}

#latest-trips .card-body i {
    margin-bottom: 10px; /* Space between icon and text */
}
p.card-textt {
    font-size: 20px;
    margin-bottom: 0px;
}

.card-body.fr-sc {

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-page-trips .list-unstyled li i {
    display: block;
    font-size: 60px !important;
}

.main-page-trips .list-unstyled li {
    font-size: 25px !important;
}


.main-page-trips .list-unstyled li strong {
    font-size: 18px !important;
    margin-bottom: 5px !important;
}

.main-page-trips .list-unstyled li i{
	margin-bottom: 20px !important;
}













/* Contact Section */
#contact {
    background-color: #f8f9fa;
}

#contact h2 {
    color: #428991;
    font-weight: bold;
}

#contact h3 {
    font-weight: bold;
    font-size: 1.75rem;
}

#contact .form-control {
    border-radius: 0;
    border: 1px solid #428991;
}

#contact .btn-primary {
    background-color: #389fa5;
    border: none;
    border-radius: 0;
}

#contact .btn-primary:hover {
    background-color: #428991;
}

/* Footer Section */
footer {
    background-color: #1e454c;
    color: #fff;
}

footer h5 {
    color: #389fa5;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #389fa5;
}

footer .btn-primary {
    background-color: #389fa5;
    border: none;
    border-radius: 0;
    height: 50px;
    width: 50px;
}

footer .btn-primary:hover {
    background-color: #428991;
}


footer .fab {
    color: #389fa5;
    font-size: 23px;
    text-shadow: 1px 2px 3px #00000041;
}
footer .fab:hover {
    color: #fff;
}

.pl-100{
    padding-left: 100px;
}

.text-center.mt-4 {
    border-top: 1px solid #ffffff2e;
    padding-top: 35px;
}

.subs {
    display: flex;
    align-items: center;
}
.subs input.form-control {
    border-radius: 0px;
    height: 50px
}


footer ul li {
    margin-bottom: 5px;
}


footer{
    padding-top: 60px;
    padding-bottom: 30px;
}
.heading {
position: relative;
padding-bottom: 30px !important;
margin-bottom: 55px !important;
}
.heading:before {
    background-image: url(../images/divider-img.png);
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 63px;
    height: 10px;
    position: absolute;
    bottom: 0;
}


.headingwht {
    position: relative;
    padding-bottom: 30px !important;
    margin-bottom: 55px !important;
    color: #fff !important;
    }
    .headingwht:before {
        background-image: url(../images/gfr.png);
        left: 50%;
        transform: translateX(-50%);
        content: "";
        width: 63px;
        height: 10px;
        position: absolute;
        bottom: 0;
    }



.es-widget > a:last-child {
    filter: opacity(0) !important;
}


section#insta {
    padding: 80px 0px;
    background: #1e454c;
}
section#contact {
    padding: 80px 0px;
}



















.container-contac {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    /* padding: 2rem; */
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #edf2f5;
    padding: 60px 0;
    background-image: url(../images/water-wave-bg.png);
    background-size: contain;
    background-repeat: repeat;
}
.form-contac {
    width: 100%;
    margin: 0px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-form-contac {
  position: relative;
  padding: 50px;
  background: linear-gradient(to bottom right, #244048, #389fa5);
  background-image: url(../images/sa1.jpg);
  position: relative;
}
.contact-form-contac:after {
  content: "";
  /* background: #1e454c4f; */
  background: #389fa5d9;
  background: linear-gradient(to bottom right, #244048dc, #38a0a5cb);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.contact-form-contac .row {
    z-index: 99;
    position: relative;
}
form{
  position: relative;
  z-index: 9;
}
  .circle-contac {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #053231);
    position: absolute;
  }

  .circle-contac.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
  }

  .circle-contac.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
  }

  .contact-form-contac:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #1e454c;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
  }

  form-contac {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
  }

  .title-contac {
    color: #fff;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.7rem;
  }

  .input-container-contac {
    position: relative;
    margin: 1rem 0;
  }

  .input-contac {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 1rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: 0.3s;
  }

  textarea.input-contac {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 5px;
    resize: none;
    overflow-y: auto;
  }

  .input-container-contac label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 18px;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
  }

  .input-container-contac.textarea-contac label {
    top: 1rem;
    transform: translateY(0);
  }

  .btn-contac {
    display: inline-block;
    vertical-align: middle;
    border: none;
    outline: none;
    background-color: var(--thm-primary);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    color: var(--thm-black);
    padding: 25px 61.5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 100%;
  }

  .btn-contac:hover {
    background-color: transparent;
    color: #fff;
    background-color: var(--thm-base);
    color: #fff;
}
div#videoModal {
  z-index: 99999;
}
    /* Modal styles */
   #videoModal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 1; /* Sit on top */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: auto; /* Enable scroll if needed */
        background-color: rgb(0,0,0); /* Fallback color */
        background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    }

    #videoModal .modal-content {
        position: relative;
        margin: auto;
        padding: 0;
        width: 80%;
        height: 80%;
        top: 50%;
        transform: translateY(-50%);
    }

	.close {
		position: absolute;
		top: -17px;
		right: -16px;
		color: #d75c4c;
		font-size: 56px;
		font-weight: bold;
		cursor: pointer;
		z-index: 999;
	}
	.gallery img {
		height: 150px;
		margin-bottom: 25px;
		object-fit: cover;
	}
	section.course-details.two.df {
		padding: 60px 0px;
	}
	.course-details__content.text-left.p-0 {
		padding-left: 50px !important;
	}
	.al-center .row {
		align-items: center;
	}
	.modal-body.text-center {
		padding: 0px;
	}
	@media (min-width: 576px) {
	.modal-dialog {
        /* max-width: 500px; */
        margin: 7.75rem auto;
    }
}
  .input-container-contac span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
  }

  .input-container-contac span:before,
  .input-container-contac span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #389fa5;
    top: 50%;
    transform: translateY(-50%);
  }

  .input-container-contac span:before {
    left: 50%;
  }

  .input-container-contac span:after {
    right: 50%;
  }

  .input-container-contac.focus-contac label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
  }

  .input-container-contac.focus-contac span:before,
  .input-container-contac.focus-contac span:after {
    width: 50%;
    opacity: 1;
  }

  .contact-info-contac {
    padding: 50px;
    position: relative;
  }

  .contact-info-contac .title-contac {
    color: var(--main-color-1);
    margin: 0;
    font-size: 36px;
    font-weight: bold;
    color: var(--thm-black);
    margin-bottom: 50px;
}
  .text-contac {
    color: #6c757d;
    margin: 1.5rem 0 2rem 0;
  }

  .information-contac {
    display: flex;
    color: #555;
    margin: 2.7rem 0;
    align-items: center;
    font-size: 0.95rem;
  }

  .information-contac i {
    /* background: #389fa5;
    padding: 19px 13px;
    width: 67px;
    text-align: center;
    border-radius: 0px; */
    color: #389fa5;
    font-size: 35px;
}
.information-contac p {
  margin-bottom: 0px;
  font-size: 18px;
  padding-bottom: 0;
  color: #244048;
	margin-left: 12px;
    font-family: sans-serif;
}
.information-contac i {
    color: #389fa5;
    font-size: 22px;
}
  .icon-contac {
    width: 28px;
    margin-right: 0.7rem;
  }

  .social-media-contac {
    padding: 2rem 0 0 0;
  }

  .social-media-contac p {
    color: #333;
    font-size: 24px;
    /* color: #6c757d; */
}

  .social-icons-contac {
    display: flex;
    margin-top: 0.5rem;
  }

  .social-icons-contac a {
    width: 40px;
    height: 40px;
    /* background: linear-gradient(45deg, #389fa5, #1aa3a0); */
    color: #389fa5;
    text-align: center;
    line-height: 46px;
    margin-right: 0.5rem;
    transition: 0.3s;
    font-size: 26px;
}

  .social-icons-contac a:hover {
    transform: scale(1.1);
  }
  .information-contac img {
    width: 45px;
}
  .contact-info-contac:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid #389fa5;
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
  }

  .big-circle-contac {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #159b80, #159b80);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
  }

  .big-circle-contac:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
  }

  .square-contac {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
  }

  @media (max-width: 850px) {
    .form-contac {
      grid-template-columns: 1fr;
    }

    .contact-info-contac:before {
      bottom: initial;
      top: -75px;
      right: 65px;
      transform: scale(0.95);
    }

    .contact-form-contac:before {
      top: -13px;
      left: initial;
      right: 70px;
    }

    .square-contac {
      transform: translate(140%, 43%);
      height: 350px;
    }

    .big-circle-contac {
      bottom: 75%;
      transform: scale(0.9) translate(-40%, 30%);
      right: 50%;
    }

    .text-contac {
      margin: 1rem 0 1.5rem 0;
    }

    .social-media-contac {
      padding: 1.5rem 0 0 0;
    }
  }
/*
  @media (max-width: 480px) {
    .container-contac {
      padding: 1.5rem;
    }

    .contact-info-contac:before {
      display: none;
    }

    .square-contac,
    .big-circle-contac {
      display: none;
    }

    form-contac,
    .contact-info-contac {
      padding: 1.7rem 1.6rem;
    }

    .text-contac,
    .information-contac,
    .social-media-contac p {
      font-size: 0.8rem;
    }

    .title-contac {
      font-size: 1.15rem;
    }

    .social-icons-contac a {
      width: 30px;
      height: 30px;
      line-height: 30px;
    }

    .icon-contac {
      width: 23px;
    }

    .input-contac {
      padding: 1rem 1.2rem;
    }

    .btn-contac {
      padding: 1rem 1.2rem;
    }
  }
   */


















/* Responsive adjustments */
@media (max-width: 768px) {
    #about .col-md-6 {
        margin-bottom: 30px;
    }
}


















/* Responsive adjustments */
/* @media (max-width: 768px) {
    header .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    header .nav-link {
        margin-right: 0;
        margin-bottom: 10px;
    }

    header .d-flex {
        flex-direction: column;
        align-items: center;
    }

    header .btn-outline-secondary,
    header .btn-primary {
        margin-bottom: 10px;
    }

    #banner .carousel-caption h1 {
        font-size: 1.5rem;
    }

    #banner .carousel-caption img {
        height: 60px;
    }
} */




.card img{
	display: block;
}






















/*--------------------------------------------------------------
# common
--------------------------------------------------------------*/


@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}

@media(max-width: 1650px) {
	.main-nav-one__infos {
		display: none;
	}
	.cta-three img {
		display: none;
	}
}










.block-title {
	margin-bottom: 45px;
}

.block-title>img {
	display: block;
}

.block-title.text-center>img {
	margin-left: auto;
	margin-right: auto;
}

.block-title p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #244048;
    letter-spacing: .4em;
    line-height: 1em;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.block-title h3 {
	margin: 0;
	font-size: 36px;
	font-weight: bold;
	color: var(--thm-black);
}

.thm-btn {
	display: inline-block;
	vertical-align: middle;
	border: none;
	outline: none;
	background-color: var(--thm-primary);
	text-transform: uppercase;
	font-size: 18px;
	font-weight: bold;
	color: var(--thm-black);
	padding: 18px 61.5px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	border-radius: 40px;
}

.thm-btn:hover {
	background-color: var(--thm-base);
	color: #fff;
}
a.thm-btn.ctn {
    margin-top: 20px;
    background: transparent;
    border: 2px solid white;
    color: #fff;
}
a.thm-btn.ctn:hover {
    margin-top: 20px;
    background: #fff;
    border: 2px solid white;
    color: initial;
}
.contact-form-contac.contactq-form .thm-btn {
    padding: 22px 61.5px !important;
}
/* Cursor*/

.cursor {
	position: absolute;
	background-color: #fff;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	z-index: 1;
	-webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
	transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
	-webkit-transform: scale(1);
	transform: scale(1);
	visibility: hidden;
}

.cursor {
	visibility: visible;
}

.cursor.active {
	opacity: 0.5;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.cursor.hovered {
	opacity: 0.08;
}

.cursor-follower {
	position: absolute;
	background-color: RGBA(255, 255, 255, 0.3);
	width: 50px;
	height: 50px;
	border-radius: 100%;
	z-index: 1;
	-webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
	transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
	visibility: hidden;
}

.cursor-follower {
	visibility: visible;
}

.cursor-follower.active {
	opacity: 0.7;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.cursor-follower.hovered {
	opacity: 0.08;
}

.cursor-follower.close-cursor:before {
	position: absolute;
	content: '';
	height: 25px;
	width: 2px;
	background: #fff;
	left: 48%;
	top: 12px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	display: inline-block;
}

.cursor-follower.close-cursor:after {
	position: absolute;
	content: '';
	height: 25px;
	width: 2px;
	background: #fff;
	right: 48%;
	top: 12px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* bootstrap select */
.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
	background-color: inherit !important;
	box-shadow: none !important;
	outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
	box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
	outline: none !important;
}

.bootstrap-select .dropdown-menu {
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	z-index: 991;
}

.bootstrap-select .dropdown-menu>li+li>a {
	border-top: 1px solid #f4f4f4;
}

.bootstrap-select .dropdown-menu>li:first-child>a {
	padding-top: 10px;
}

.bootstrap-select .dropdown-menu>li:last-child>a {
	padding-bottom: 10px;
}

.bootstrap-select .dropdown-menu>li.selected>a {
	background: var(--thm-base);
	color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
	font-size: 16px;
	font-weight: 500;
	padding: 9px 20px;
	color: var(--thm-black);
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
	background: var(--thm-base);
	color: #fff;
	cursor: pointer;
}
p.subheadding {
    letter-spacing: initial;
    max-width: 80%;
    margin: auto;
    font-size: 16px;
    line-height: initial;
    margin-top: 16px;
}



/*--------------------------------------------------------------
 # Animations
 --------------------------------------------------------------*/


@-webkit-keyframes bgSlide {
	0% {
		background-position: 0 0;
	}

	20% {
		background-position: -100px 0;
	}

	40% {
		background-position: -200px 0;
	}

	60% {
		background-position: -150px 0;
	}

	80% {
		background-position: -100px 0;
	}

	100% {
		background-position: 0px 0;
	}
}


@keyframes bgSlide {
	0% {
		background-position: 0 0;
	}

	20% {
		background-position: -100px 0;
	}

	40% {
		background-position: -200px 0;
	}

	60% {
		background-position: -150px 0;
	}

	80% {
		background-position: -100px 0;
	}

	100% {
		background-position: 0px 0;
	}
}

@-webkit-keyframes bgSlideReverse {
	0% {
		background-position: 0 0;
	}

	20% {
		background-position: 100px 0;
	}

	40% {
		background-position: 200px 0;
	}

	60% {
		background-position: 150px 0;
	}

	80% {
		background-position: 100px 0;
	}

	100% {
		background-position: 0px 0;
	}
}

@keyframes bgSlideReverse {
	0% {
		background-position: 0 0;
	}

	20% {
		background-position: 100px 0;
	}

	40% {
		background-position: 200px 0;
	}

	60% {
		background-position: 150px 0;
	}

	80% {
		background-position: 100px 0;
	}

	100% {
		background-position: 0px 0;
	}
}

@-webkit-keyframes ribbonRotate {

	0%,
	100% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}

	25%,
	75% {
		-webkit-transform: rotate(15deg);
		        transform: rotate(15deg);
	}

	50% {
		-webkit-transform: rotate(30deg);
		        transform: rotate(30deg);
	}
}

@keyframes ribbonRotate {

	0%,
	100% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}

	25%,
	75% {
		-webkit-transform: rotate(15deg);
		        transform: rotate(15deg);
	}

	50% {
		-webkit-transform: rotate(30deg);
		        transform: rotate(30deg);
	}
}

@-webkit-keyframes footerTree {

	0%,
	100% {
		-webkit-transform: rotate(0deg) translateX(0);
		transform: rotate(0deg) translateX(0);
	}

	25%,
	75% {
		-webkit-transform: rotate(5deg) translateX(15px);
		transform: rotate(5deg) translateX(15px);
	}

	50% {
		-webkit-transform: rotate(10deg) translateX(30px);
		transform: rotate(10deg) translateX(30px);
	}
}

@keyframes footerTree {

	0%,
	100% {
		-webkit-transform: rotate(0deg) translateX(0);
		transform: rotate(0deg) translateX(0);
	}

	25%,
	75% {
		-webkit-transform: rotate(5deg) translateX(15px);
		transform: rotate(5deg) translateX(15px);
	}

	50% {
		-webkit-transform: rotate(10deg) translateX(30px);
		transform: rotate(10deg) translateX(30px);
	}
}

@-webkit-keyframes footerFish {

	0%,
	100% {
		-webkit-transform: translateX(0) translateY(0) rotate(0);
		transform: translateX(0) translateY(0) rotate(0);
	}

	25%,
	75% {
		-webkit-transform: translateX(20px) translateY(30px) rotate(25deg);
		transform: translateX(20px) translateY(30px) rotate(25deg);
	}

	50% {
		-webkit-transform: translateX(40px) translateY(60px) rotate(45deg);
		transform: translateX(40px) translateY(60px) rotate(45deg);
	}
}

@keyframes footerFish {

	0%,
	100% {
		-webkit-transform: translateX(0) translateY(0) rotate(0);
		transform: translateX(0) translateY(0) rotate(0);
	}

	25%,
	75% {
		-webkit-transform: translateX(20px) translateY(30px) rotate(25deg);
		transform: translateX(20px) translateY(30px) rotate(25deg);
	}

	50% {
		-webkit-transform: translateX(40px) translateY(60px) rotate(45deg);
		transform: translateX(40px) translateY(60px) rotate(45deg);
	}
}

@-webkit-keyframes contactSwimmer {

	0%,
	100% {
		-webkit-transform: translateX(0) translateY(0) rotate(0);
		transform: translateX(0) translateY(0) rotate(0);
	}

	25%,
	75% {
		-webkit-transform: translateX(15px) translateY(20px) rotate(10deg);
		transform: translateX(15px) translateY(20px) rotate(10deg);
	}

	50% {
		-webkit-transform: translateX(60px) translateY(35px) rotate(15deg);
		transform: translateX(60px) translateY(35px) rotate(15deg);
	}
}

@keyframes contactSwimmer {

	0%,
	100% {
		-webkit-transform: translateX(0) translateY(0) rotate(0);
		transform: translateX(0) translateY(0) rotate(0);
	}

	25%,
	75% {
		-webkit-transform: translateX(15px) translateY(20px) rotate(10deg);
		transform: translateX(15px) translateY(20px) rotate(10deg);
	}

	50% {
		-webkit-transform: translateX(60px) translateY(35px) rotate(15deg);
		transform: translateX(60px) translateY(35px) rotate(15deg);
	}
}


.page-header {
    background-color: #244048;
    position: relative;
    padding-top: 180px;
    padding-bottom: 60px;
    overflow: hidden;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #244048;
    opacity: 0.9;
    background-repeat: no-repeat;
    background-position: bottom;
    background-blend-mode: overlay;
	background-size: 100%;
    background-position: center;
}

.page-header .container {
	position: relative;
	text-align: center;
	padding-bottom: 70px;
}

.page-header__title {
    margin: 0;
    font-weight: 800;
    color: #fff;
    font-size: 50px;
    text-transform: uppercase;
    max-width: 78%;
    margin: auto;
    margin-bottom: 25px;
}
.page-header__subtitle {
    margin: 0;
    font-weight: 500;
    color: #ffffffe0;
    font-size: 24px;
    /*text-transform: uppercase;*/
    max-width: 78%;
    margin: auto;
    margin-bottom: 20px;
}
.page-header__desc {
    margin: 0;
    color: #ffffffad;
    text-transform: uppercase;
    max-width: 78%;
    margin: auto;
}
.thm-breadcrumb {
	margin: 0;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}

.thm-breadcrumb li {
	text-transform: uppercase;
	color: var(--thm-primary);
	font-size: 18px;
	font-weight: 600;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.thm-breadcrumb li a {
	color: inherit;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.thm-breadcrumb li.active a,
.thm-breadcrumb li a:hover {
	color: #fff;
}
.thm-breadcrumb li+li::before {
    content: '.' !important;
    align-self: flex-end;
    margin-left: 12px;
    margin-right: 12px;
    color: #fff !important;
    margin: 0;
}


/*--------------------------------------------------------------
 # Maps
 --------------------------------------------------------------*/


.google-map__contact {
	display: block;
	border: none;
	width: 100%;
	height: 540px;
}

/*--------------------------------------------------------------
 # Contact
 --------------------------------------------------------------*/


.contact-one {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
}

.contactq-fish {
	position: absolute;
	bottom: 45%;
	left: 10%;
	-webkit-animation: footerFish 5s linear infinite;
	animation: footerFish 5s linear infinite;
}

.contactq-tree {
	position: absolute;
	bottom: 0;
	right: 4%;
	-webkit-animation: footerTree 5s ease-in infinite;
	animation: footerTree 5s ease-in infinite;
}

.contactq-swimmer {
	position: absolute;
	bottom: 0;
	left: 5%;
	-webkit-animation: contactSwimmer 7s linear infinite;
	animation: contactSwimmer 7s linear infinite;
	max-width: 300px;
}



.contact-one .container {
	position: relative;
}

.contactq-content h3 {
	text-transform: uppercase;
	margin: 0;
	color: var(--thm-black);
	font-size: 60px;
	font-weight: bold;
	margin-bottom: 35px;
}

.contactq-content p {
	margin: 0;
	color: #244048;
}

.contactq-social {
	margin-top: 50px;
}

.contactq-form textarea,
.contactq-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	display: block;
	width: 100%;
	height: 84px;
	background-color: var(--thm-gray);
	padding-left: 30px;
	padding-right: 30px;
	font-size: 18px;
	color: #244048;
	border: none;
	outline: none;
	margin-bottom: 30px;
}

.contactq-form textarea {
    height: 140px !important;
    padding-top: 25px;
}

.contactq-form textarea.error,
.contactq-form input.error:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	color: red;
}

.contactq-form ::-webkit-input-placeholder {
	opacity: 1;
	color: #244048;
}

.contactq-form ::-moz-placeholder {
	opacity: 1;
	color: #244048;
}

.contactq-form :-ms-input-placeholder {
	opacity: 1;
	color: #244048;
}

.contactq-form ::-ms-input-placeholder {
	opacity: 1;
	color: #244048;
}

.contactq-form ::placeholder {
	opacity: 1;
	color: #244048;
}

.contactq-form .error::-webkit-input-placeholder {
	opacity: 1;
	color: red;
}

.contactq-form .error::-moz-placeholder {
	opacity: 1;
	color: red;
}

.contactq-form .error:-ms-input-placeholder {
	opacity: 1;
	color: red;
}

.contactq-form .error::-ms-input-placeholder {
	opacity: 1;
	color: red;
}

.contactq-form .error::placeholder {
	opacity: 1;
	color: red;
}

.contactq-form .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
	width: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	flex-direction: column-reverse;
}

.contactq-form .bootstrap-select>.dropdown-toggle {
	width: 100%;
	border-radius: 0;
	background-color: var(--thm-gray);
	height: 84px;
	color: #244048;
	padding-left: 30px;
	padding-right: 30px;
	font-size: 18px;
	margin-bottom: 30px;
	border: none;
	outline: none;
}

.contactq-form .bootstrap-select>.dropdown-toggle .filter-option {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}
select.selectpicker {
    display: block;
    width: 100%;
    height: 84px;
    background-color: var(--thm-gray);
    padding-left: 30px;
    font-size: 18px;
    color: #244048;
    border: none;
    outline: none;
    margin-bottom: 30px;
	padding-right: 30px;
}
.contactq-form label.error {
	color: red;
	margin-top: -15px;
	font-size: 18px;
	display: block;
}



.contactq-form-home-two textarea,
.contactq-form-home-two input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	margin-bottom: 10px;
}

.contactq-form-home-two .row {
	margin-left: -5px;
	margin-right: -5px;
}

.contactq-form-home-two .row>[class*=col-] {
	padding-left: 5px;
	padding-right: 5px;
}

.contactq-form-home-two .bootstrap-select>.dropdown-toggle {
	margin-bottom: 10px;
}

.contact-form-contac.contactq-form textarea, .contact-form-contac.contactq-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
    height: 70px;
    background-color: transparent;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 18px;
    color: #244048;
    border: none;
    outline: none;
    margin-bottom: 30px;
    border: 2px solid #fff;
    color: #fff !important;
}
.contact-form-contac.contactq-form select.selectpicker {
    border: 2px solid #fff;
    height: 70px;
    background-color: transparent;
    color: #fff;
}
.contact-form-contac.contactq-form select.selectpicker option {
    color: #000;
}
.contact-form-contac.contactq-form ::placeholder{
	color: #fff;
}

.faq-contact__wrap {
	padding-bottom: 100px;
	position: relative;
}

.faq-contact__wrap .inner-container {
	background-color: var(--thm-base);
	position: relative;
	padding-top: 80px;
	padding-bottom: 97px;
	margin-bottom: 60px;
}

.faq-contact__wrap .inner-container .block-title {
	margin-bottom: 0;
}

.faq-contact__wrap .inner-container .block-title h3,
.faq-contact__wrap .inner-container .block-title p {
	color: #fff;
}

.faq-contact__wrap .inner-container::before {
	content: '';
	width: 100%;
	height: 32px;
	display: block;
	background-image: url(../images/wave-1.png);
	background-position: center center;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 11;
	-webkit-animation: bgSlide 20s linear infinite;
	        animation: bgSlide 20s linear infinite;
}


/*--------------------------------------------------------------
 # Call To Action
 --------------------------------------------------------------*/


.cta-one .container {
	position: relative;
}

.cta-one__title {
	text-transform: uppercase;
	width: 243px;
	height: 96px;
	background-color: var(--thm-black);
	color: #fff;
	font-weight: 500;
	font-size: 20px;
	letter-spacing: .4em;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
	position: absolute;
	top: 0;
	left: 15px;
	z-index: 11;
	-webkit-transform-origin: bottom left;
	transform-origin: bottom left;
	-webkit-transform: rotate(-90deg) translateX(calc(-100% + 96px));
	transform: rotate(-90deg) translateX(calc(-100% + 96px));
}

@media(max-width: 1280px) {
	.cta-one__title {
		left: 111px;
	}
}

.cta-one .inner-container {
	padding: 69.5px 0;
	background-color: var(--thm-primary);
	position: relative;
	z-index: 10;
	margin-bottom: -139px;
}

@media(max-width: 1280px) {
	.cta-one .inner-container {
		padding-left: 111px;
	}
}

.cta-one .inner-container::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 10px;
	height: 35px;
	background-color: var(--thm-black);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	z-index: 11;
}

@media(max-width: 1280px) {
	.cta-one .inner-container::before {
		left: 95px;
	}
}

.cta-one .inner-container::after {
	content: '';
	position: absolute;
	left: 100%;
	top: 0;
	height: 100%;
	width: 10000px;
	background-color: var(--thm-primary);
}

.cta-one .my-auto {
	width: 100%;
}

.cta-one h3 {
	text-transform: uppercase;
	font-weight: 300;
	font-size: 40px;
	color: var(--thm-black);
	padding-left: 80px;
	margin-bottom: 8px;
}

.cta-one__phone {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	color: var(--thm-black);
	font-size: 40px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	position: relative;
	margin-left: 100px;
}

.cta-one__phone::before {
	content: '';
	width: 9px;
	height: 57px;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 50%;
	left: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.cta-one__phone a {
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	color: inherit;
}

.cta-one__phone:hover a,
.cta-one__phone:hover {
	color: var(--thm-base);
}

.cta-one__phone i {
    width: 76px;
    height: 86px;
    /* background-color: var(--thm-black); */
    font-size: 43px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    color: var(--thm-black);
    /* margin-right: 20px; */
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.cta-one__phone {
    flex-wrap: wrap;
    /* display: block; */
    text-align: center;
	justify-content: center;
}
.cta-one__phone a {
    display: block;
    width: 100%;
	font-size: 20px;
display: block;
width: 100%;
line-height: 30px;
}
.cta-one__phone:hover i {
	color: #389fa5
}

/*.cta-two {*/
/*	background: #edf2f5;*/
/*	position: relative;*/
/*	margin-top: -1px;*/
/*}*/
.cta-two {
    position: relative;
    margin-top: -1px;
    background-size: cover;
    background-image: url(../images/water-wave-bg.png);
    background-size: contain;
    background-repeat: repeat;
        background-color: #edf2f5;
}

.cta-two::before {
	/*content: '';*/
	width: 100%;
	height: 32px;
	display: block;
	background-image: url(../images/wave-1.png);
	background-position: center center;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 11;
	-webkit-animation: bgSlide 20s linear infinite;
	        animation: bgSlide 20s linear infinite;
}

.cta-two__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-position: center center;
	background-color: #389fa5;
	background-blend-mode: multiply;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0.05;
}

.cta-two__moc {
	position: absolute;
	top: -84px;
	left: 0;
	z-index: 12;
	-webkit-animation: ribbonRotate 10s cubic-bezier(.19, 1, 1, 3.58) infinite;
	        animation: ribbonRotate 10s cubic-bezier(.19, 1, 1, 3.58) infinite;
}

.cta-two .container {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	        justify-content: space-between;
	padding-top: 130px;
	padding-bottom: 130px;
}

.cta-two h3 {
	margin: 0;
	font-weight: bold;
    color: var(--thm-black);
	font-size: 36px;
	line-height: 1.2;
}
.cta-two p {
    color: var(--thm-black) !important;
}
.cta-two h3 span {
	color: var(--thm-primary);
}

.cta-two__home-two {
	background-color: var(--thm-base);
}

.cta-two__home-two::before {
	background-image: url(../images/shapes/wave-3.png);
	top: -7px;
	left: 0;
	bottom: auto;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
/* .WidgetBackground__Content-sc-1ho7q3r-2 a {
    display: none !important;
    filter: opacity(0.0) !important;
    height: 0px !important;
} */
.cta-three,
.cta-three .container,
.cta-three__content {
	position: relative;
}

.cta-three::after {
	content: '';
	width: 100%;
	height: 50%;
	background-color: var(--thm-gray);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}

.cta-three__content::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 10px;
	height: 35px;
	background-color: var(--thm-primary);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	z-index: 11;
}

.cta-three__moc {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 20;
}

@media(max-width: 1440px) {
	.cta-three__moc {
		right: -20%;
	}
}

.cta-three .container::before {
	content: '';
	width: 10000px;
	height: 100%;
	background-color: var(--thm-base);
	position: absolute;
	top: 0;
	left: 15px;
}


.cta-three__title {
	text-transform: uppercase;
	width: 570px;
	height: 96px;
	background-color: var(--thm-primary);
	color: var(--thm-black);
	font-weight: 500;
	font-size: 20px;
	letter-spacing: .4em;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
	position: absolute;
	top: 0;
	left: 15px;
	z-index: 11;
	-webkit-transform-origin: bottom left;
	transform-origin: bottom left;
	-webkit-transform: rotate(-90deg) translateX(calc(-100% + 96px));
	transform: rotate(-90deg) translateX(calc(-100% + 96px));
}

@media(max-width: 1280px) {
	.cta-three__title {
		left: 111px;
	}
}

.cta-three__content::before {
	content: '';
	width: 10000px;
	height: 100%;
	background-color: var(--thm-base);
	background-image: url(../images/background/footer-bg-1-1.jpg);
	background-blend-mode: multiply;
	opacity: 0.15;
	position: absolute;
	top: 0;
	left: 0;
}

.cta-three__content-inner {
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
    padding-left: 100px;
}

.cta-three .block-title {
	margin-bottom: 35px;
}

.cta-three .block-title p {
	color: #fff;
}

.cta-three .block-title h3 {
	color: #fff;
}

.cta-three__content-inner>p {
    margin: 0;
    color: #fff;
    opacity: 0.7;
    padding-bottom: 0;
}

.cta-three__btn {
	margin-top: 50px;
}

.cta-three__content-inner .cta-three__btn:hover {
	background-color: #fff !important;
	color: var(--thm-black);
}

.cta-three__feature {
	background-color: var(--thm-gray);
	padding-top: 100px;
	padding-bottom: 90px;
}

.cta-three__feature .row {
	margin-left: -7.5px;
	margin-right: -7.5px;
}

.cta-three__feature .row>[class*=col-] {
	padding-left: 7.5px;
	padding-right: 7.5px;
}

.cta-three__feature-box {
	padding-top: 43px;
	padding-bottom: 43px;
	padding-left: 45px;
	padding-right: 45px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	margin-bottom: 30px;
	background-color: #fff;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.cta-three__feature-box:hover {
	box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03);
	-webkit-transform: translateY(-10px);
	        transform: translateY(-10px);
}

.cta-three__feature-box-icon {
	width: 63px;
	height: 63px;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	        align-items: center;
	position: relative;
}

.cta-three__feature-box-icon::before {
	content: '';
	position: absolute;
	background-color: var(--thm-primary);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10;
}

.cta-three__feature-box-icon::after {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	background-color: var(--thm-gray);
	width: 100%;
	height: 100%;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.cta-three__feature-box:hover .cta-three__feature-box-icon::after {
	top: 0;
	left: 0;
}

.cta-three__feature-box-icon i {
	font-size: 22px;
	text-align: center;
	color: var(--thm-black);
	position: relative;
	z-index: 11;
}

.cta-three__feature-box h3 {
	color: #389fa5;
	text-transform: uppercase;
	margin: 0;
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
	margin-left: 20px;
}

.cta-four {
	padding-top: 100px;
	padding-bottom: 100px;
}

.cta-four__image {
	position: relative;
}

@media(min-width: 992px) {
	.cta-four__image {
		margin-right: 20px;
	}
}

.cta-four__image>img {
	width: 100%;
	-webkit-clip-path: polygon(50% 0%, 85% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
	        clip-path: polygon(50% 0%, 85% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
}

.cta-four__image-content {
	width: 100%;
	max-width: 300px;
	height: 100%;
	max-height: 415px;
	background-color: var(--thm-primary);
	position: absolute;
	top: calc(50% - 207.5px);
	left: calc(50% - 150px);
	-webkit-clip-path: polygon(50% 0%, 80% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
	        clip-path: polygon(50% 0%, 80% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
	padding-left: 60px;
	padding-right: 60px;
	padding-top: 65px;
}

.cta-four__image-content::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 8px;
	right: 8px;
	bottom: 8px;
	background-color: #fff;
	-webkit-clip-path: polygon(50% 0%, 80% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
	        clip-path: polygon(50% 0%, 80% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
}

.cta-four__image-content i {
	position: relative;
	font-size: 94px;
	color: var(--thm-base);
	display: block;
}

.cta-four__image-content p {
	position: relative;
	margin: 0;
	color: var(--thm-primary);
	font-size: 50px;
	font-weight: bold;
	line-height: 1em;
	margin-top: 10px;
}

.cta-four__image-content h3 {
	margin: 0;
	position: relative;
	font-weight: 400;
	color: var(--thm-black);
	font-size: 40px;
	text-transform: uppercase;
	margin-top: 5px;
}

.cta-four__content .block-title {
	margin-bottom: 30px;
}

.cta-four__content>p {
	margin: 0;
}

.cta-four__btn {
	margin-top: 50px;
}

.cta-five {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #389fa5;
}

.cta-five__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
	opacity: 0.2;
}

.cta-five .container {
	position: relative;
}

.cta-five__content .block-title {
	margin-bottom: 35px;
}

.cta-five__content .block-title p {
	color: #c1cfe1;
}

.cta-five__content .block-title h3 {
	color: #ffffff;
}

.cta-five__content>p {
	margin: 0;
	color: #c1cfe1;
}

.cta-five__btn {
	margin-top: 50px;
}

.cta-five__btn:hover {
	background-color: #fff;
	color: var(--thm-black);
}

.cta-five__box-wrap {
	position: absolute;
	bottom: 20px;
	right: -110px;
	width: 100%;
	max-width: 690px;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}

@media(max-width: 1440px) {
	.cta-five__box-wrap {
		right: -55px;
	}
}

.cta-five__box {
	-webkit-box-flex: 1;
	        flex: 1 1 33.333%;
	max-width: 33.333%;
	background-color: #fff;
	text-align: center;
	padding-top: 51px;
	padding-bottom: 51px;
}

.cta-five__box:nth-child(2) {
	-webkit-transform: translateY(-100%);
	        transform: translateY(-100%);
	background-color: var(--thm-base);
}

.cta-five__box:nth-child(2) i,
.cta-five__box:nth-child(2) h3 {
	color: #fff !important;
}

.cta-five__box:nth-child(3) {
	background-color: var(--thm-primary);
}

.cta-five__box:nth-child(3) i,
.cta-five__box:nth-child(3) h3 {
	color: var(--thm-black) !important;
}

.cta-five__box i {
	font-size: 60px;
	color: var(--thm-base);
}

.cta-five__box h3 {
	color: #389fa5;
	font-weight: 600;
	font-size: 20px;
	text-transform: uppercase;
	margin: 0;
	margin-top: 15px;
}

.cta-five__box h3 a {
	color: inherit;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

/*--------------------------------------------------------------
 # Blog
 --------------------------------------------------------------*/

.blog-one {
	padding-top: 60px;
	padding-bottom: 60px;
}

.blog-block {
	 height: 100%;
	background-color: #fff;
	position: relative;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	box-shadow: 0 10px 30px #eaf2f1;
	transition: all 500ms ease;
}

.blog-block:hover {
	box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03);
}

.blog-block::before,
.blog-block::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	transform-origin: left top;
	top: 0;
	left: 0;
	-webkit-transition: all 500ms linear;
	transition: all 500ms linear;
}

.blog-block::before {
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: bottom center;
	transform-origin: bottom center;
	border-top: 8px solid var(--thm-primary);
	border-bottom: 8px solid var(--thm-primary);
}

.blog-block::after {
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
	-webkit-transform-origin: left center;
	transform-origin: left center;
	border-left: 8px solid var(--thm-primary);
	border-right: 8px solid var(--thm-primary);
}

.blog-block:hover::before,
.blog-block:hover::after {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.blog-block-date {
    background-color: var(--thm-primary);
    text-align: center;
    /* line-height: 40px; */
    font-size: 16px;
	padding: 10px 15px;
    font-weight: 600;
    width: 170px;
    text-align: center;
    position: absolute;
    top: 10px;
    left: -10px;
    z-index: 11;
    text-transform: uppercase;
    color: var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-block-date:hover {
	background-color: var(--thm-base);
	color: #fff;
}

.blog-block-date:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0px;
	width: 10px;
	height: 10px;
	background-color: var(--thm-primary);
	-webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
	clip-path: polygon(0 0, 100% 100%, 100% 0);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-block-date:hover:before {
	background-color: var(--thm-base);
}

.blog-block-img {
	position: relative;
}

.blog-block-img-inner {
	position: relative;
	overflow: hidden;
	background-color: var(--thm-black);
	z-index: 10;
}

.blog-block-img-inner>img {
	width: 100%;
	-webkit-transform: scale(1.0);
	transform: scale(1.0);
	opacity: 1;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-block:hover .blog-block-img-inner>img {
	opacity: 0.2;
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.blog-block-img-inner>a {
	width: 65px;
	height: 65px;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
	font-size: 20px;
	color: var(--thm-black);
	background-color: var(--thm-primary);
	position: absolute;
	top: calc(50% - 32.5px);
	left: calc(50% - 32.5px);
	opacity: 0;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: perspective(500px) rotate(45deg);
	transform: perspective(500px) rotate(45deg);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition: opacity 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
	transition: opacity 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
	transition: transform 500ms ease 0ms, opacity 500ms ease 0ms;
	transition: transform 500ms ease 0ms, opacity 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.blog-block:hover .blog-block-img-inner>a {
	opacity: 1;
	-webkit-transform: perspective(500px) rotate(0deg);
	transform: perspective(500px) rotate(0deg);
	-webkit-transition: opacity 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
	transition: opacity 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
	transition: transform 500ms ease 500ms, opacity 500ms ease 500ms;
	transition: transform 500ms ease 500ms, opacity 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.blog-block-img-inner>a::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: -10px;
	top: -10px;
	background-color: #fff;
	opacity: 0.1;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-block-img-inner>a:hover::after {
	left: 0;
	top: 0;
}

.blog-block-content {
	 text-align: left; 
	/* padding-top: 31px; */
	position: relative;
	z-index: 11;
	/*padding: 30px;*/
}

.blog-block-content h3 {
	margin: 0;
	/* text-transform: uppercase; */
	font-size: 24px;
	font-weight: 600;
	color: #389fa5;
	/* width: 68%; */
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 16px;
	/* text-align: left; */
}

.blog-block-content h3 a {
	color: inherit;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-block-content h3 a:hover {
	color: var(--thm-primary);
}

.blog-block-content p {
    /* margin: 0; */
    /* width: 73%; */
    /* margin-left: auto; */
    /* margin-right: auto; */
    margin-bottom: 0px;
    /* text-align: left; */
}

.blog-block-meta {
	/* border-top: 1px solid #e3e9ec; */
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: left;
	justify-content: left;
	-webkit-box-align: left;
	align-items: left;
	text-align: left;
	/* padding-top: 20px; */
	/* margin-top: 35px; */
	text-align: left;
}

.blog-block-meta a {
	font-size: 16px;
	color: #7a7a7a!important;
	text-transform: uppercase;
	font-weight: 500;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	letter-spacing: 1px;
}

.blog-block-meta a:hover {
	color: var(--thm-black);
}

.blog-block-meta a i {
	margin-right: 5px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-block-meta a:hover i {
	color: var(--thm-primary);
}

.blog-block-meta a+a {
	margin-left: 40px;
}

/* blog post pagination */

.blog-one .post-pagination {
	margin-top: 30px;
}

/* blog home */

.blog-block-home-one {
	padding-bottom: 60px;
	background-position: bottom center;
	background-repeat: no-repeat;
}

/*--------------------------------------------------------------
 ## Blog Details
 --------------------------------------------------------------*/

.blog-details {
	padding-top: 90px;
	padding-bottom: 90px;
}

.blog-mainn-main-title {
    margin: 0;
    font-size: 34px;
    font-weight: bold;
    color: var(--thm-black);
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 10px;
}

.blog-mainn-content .blog-block-meta {
	-webkit-box-pack: start;
	justify-content: flex-start;
	border-top: 0;
	padding-top: 0;
	margin-top: 20px;
}

.blog-mainn-content p {
	margin: 0;
}

.blog-mainn-content-bottom {
	border-top: 1px solid #e3e9ec;
	padding-top: 40px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin-top: 40px;
}

.blog-mainn-tags {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.blog-mainn-tags span {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 20px;
	color: var(--thm-black);
	margin-right: 5px;
}

.blog-mainn-tags a {
	color: #244048;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.blog-mainn-tags a:hover {
	color: var(--thm-primary);
}

.blog-mainn-tags a+a {
	margin-left: 5px;
}




/*--------------------------------------------------------------
 # Sidebar
 --------------------------------------------------------------*/

 @media(max-width: 991px) {
	.sidebar {
		margin-top: 80px;
	}
}

.sidebar__single:not(.sidear__search) {
	border: 1px solid #e3e9ec;
	padding: 50px;
}

.sidebar__single+.sidebar__single {
	margin-top: 30px;
}

.sidebar__title {
	margin: 0;
	margin-bottom: 35px;
	color: var(--thm-black);
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 600;
	margin-top: -5px;
	line-height: 1em;
}

.sidebar__post-list,
.sidebar__category-list {
	margin: 0;
}

.sidebar__post-list {
	margin-top: -10px;
}
.sidebar__post-list li {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
}
.sidebar__post-list li>img {
    /* position: absolute;
    top: 10px;
    left: 0; */
    width: 65px;
}

.blog-mainn-content {
    margin-top: 50px;
}

.sidebar__post__meta {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.sidebar__post__meta a {
	font-size: 14px;
	color: var(--thm-base);
	text-transform: uppercase;
	font-weight: 500;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.sidebar__post__meta a:hover {
	color: var(--thm-black);
}

.sidebar__post__meta a i {
	margin-right: 5px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.sidebar__post__meta a:hover i {
	color: var(--thm-primary);
}

.sidebar__post__meta a+a {
	margin-left: 15px;
}

.sidebar__post-list li+li {
	border-top: 1px solid #e3e9ec;
	padding-top: 30px;
	margin-top: 25px;
}

.sidebar__post-list li h3 {
	margin: 0;
	color: var(--thm-black);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}

.sidebar__post-list li h3 a {
	color: inherit;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	font-size: 14px;
}

.sidebar__post-list li h3 a:hover {
	color: var(--thm-primary);
}

.sidebar__tags-list {
	margin-top: -10px;
}

.sidebar__tags-list a {
	color: #828690;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.sidebar__tags-list a:hover {
	color: var(--thm-base);
}

.sidebar__category-list {
	margin: 0;
}

.sidebar__category-list li {
	line-height: 1em;
}

.sidebar__category-list li+li {
	margin-top: 35px;
}

.sidebar__category-list li a {
	margin: 0;
	color: #838a93;
	font-size: 20px;
	font-weight: 400;
	padding-left: 0;
	position: relative;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.sidebar__category-list li a::before {
	content: '\f101';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 14px;
	position: absolute;
	-webkit-transform: translateY(-50%) translateX(-10px);
	transform: translateY(-50%) translateX(-10px);
	left: 0;
	top: 60%;
	color: var(--thm-primary);
	opacity: 0;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.sidebar__category-list li a:hover {
	color: var(--thm-base);
	padding-left: 20px;
}

.sidebar__category-list li a:hover::before {
	opacity: 1;
	-webkit-transform: translateY(-50%) translateX(0px);
	transform: translateY(-50%) translateX(0px);
}

.sidebar__search-form {
	background-color: var(--thm-base);
	position: relative;
}

.sidebar__search-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	width: 100%;
	height: 94px;
	border: none;
	outline: none;
	background-color: transparent;
	color: #fff;
	padding-left: 50px;
	font-size: 20px;
}

.sidebar__search-form ::-webkit-input-placeholder {
	color: #fff;
	opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
	color: #fff;
	opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
	color: #fff;
	opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
	color: #fff;
	opacity: 1;
}

.sidebar__search-form ::placeholder {
	color: #fff;
	opacity: 1;
}

.sidebar__search-form button[type=submit] {
	margin: 0;
	padding: 0;
	font-size: 22px;
	color: #fff;
	background-color: transparent;
	border: none;
	outline: none;
	width: auto;
	position: absolute;
	top: 50%;
	right: 50px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}














/*--------------------------------------------------------------
 # Course
 --------------------------------------------------------------*/

.course-one {
	padding-top: 100px;
	padding-bottom: 100px;
	/*counter-reset: courseNumber;*/
}

.course-sngle {
	position: relative;
	margin-bottom: 0px;
	z-index: 10;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	/*counter-increment: courseNumber;*/
}


/*.course-sngle:hover {*/
/*	-webkit-transform: translateY(-76px);*/
/*	transform: translateY(-76px);*/
/*}*/

/*.course-sngle:hover .hvr-sweep-to-bottom::before {*/
/*	-webkit-transform: scaleY(1);*/
/*	transform: scaleY(1)*/
/*}*/


.course-sngle-nme {
	background-color: var(--thm-primary);
	text-align: center;
	line-height: 40px;
	font-size: 14px;
	font-weight: 600;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	padding-left: 26.5px;
	padding-right: 26.5px;
	text-align: center;
	position: absolute;
	top: 10px;
	left: -10px;
	z-index: 11;
	text-transform: uppercase;
	color: var(--thm-black);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.course-sngle-nme:hover {
	background-color: var(--thm-base);
	color: #fff;
}

.course-sngle-nme:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0px;
	width: 10px;
	height: 10px;
	background-color: var(--thm-primary);
	-webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
	clip-path: polygon(0 0, 100% 100%, 100% 0);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

/*.course-sngle-nme:hover:before {*/
/*	background-color: var(--thm-base);*/
/*}*/

.course-sngle-img {
	position: relative;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

/*.course-sngle:hover .course-sngle-img {*/
/*	-webkit-transform: translateY(76px);*/
/*	transform: translateY(76px);*/
/*}*/

.course-sngle-img-i {
	position: relative;
	overflow: hidden;
	background-color: var(--thm-black);
	z-index: 10;
}

.course-sngle-img-i>img {
	width: 100%;
	-webkit-transform: scale(1.0);
	transform: scale(1.0);
	opacity: 1;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

/*.course-sngle:hover .course-sngle-img-i>img {*/
/*	opacity: 0.2;*/
/*	-webkit-transform: scale(1.05);*/
/*	transform: scale(1.05);*/
/*}*/

.course-sngle-img-i>a {
	width: 65px;
	height: 65px;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
	font-size: 20px;
	color: var(--thm-black);
	background-color: var(--thm-primary);
	position: absolute;
	top: calc(50% - 70.5px);
	left: calc(50% - 32.5px);
	opacity: 0;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: perspective(500px) rotate(45deg);
	transform: perspective(500px) rotate(45deg);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition: opacity 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
	transition: opacity 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
	transition: transform 500ms ease 0ms, opacity 500ms ease 0ms;
	transition: transform 500ms ease 0ms, opacity 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.course-sngle:hover .course-sngle-img-i>a {
	opacity: 1;
	-webkit-transform: perspective(500px) rotate(0deg);
	transform: perspective(500px) rotate(0deg);
	-webkit-transition: opacity 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
	transition: opacity 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
	transition: transform 500ms ease 500ms, opacity 500ms ease 500ms;
	transition: transform 500ms ease 500ms, opacity 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.course-sngle-img-i>a::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: -10px;
	top: -10px;
	background-color: #fff;
	opacity: 0.1;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.course-sngle-img-i>a:hover::after {
	left: 0;
	top: 0;
}

.course-one__content {
    text-align: center;
    background-color: transparent;
    padding-top: 30px;
    padding-bottom: 30px;
    padding: 30px;
    /* box-shadow: 0 10px 30px #eaf2f1; */
    transition: all 500ms ease;
    /* overflow: hidden; */
    position: relative;
}
/*.course-one__content::after {*/
/*	font-size: 200px;*/
/*	line-height: 1em;*/
/*	color: #000000;*/
/*	opacity: 0.06;*/
/*	content: counters(courseNumber, ".", decimal-leading-zero);*/
/*	position: absolute;*/
/*	bottom: -20px;*/
/*	left: -10px;*/
/*	-webkit-transition: all 500ms ease;*/
/*	transition: all 500ms ease;*/
/*}*/


#services .row {
  counter-reset: courseNumber;
}

#services .col-lg-3 {
  position: relative; /* Position context for absolute pseudo-element */
  counter-increment: courseNumber; /* Increment the counter for each child */
}

#services .course-one__content::after {
  font-size: 150px;
  line-height: 1em;
  color: #000000;
  opacity: 0.06;
  content: counter(courseNumber, decimal-leading-zero); /* Display the counter */
  position: absolute;
  bottom: -20px;
  left: -10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}


#services {
  counter-reset: courseNumber; /* Initialize the counter */
}

#services .col-lg-4 {
  position: relative; /* Position context for absolute pseudo-element */
  counter-increment: courseNumber; /* Increment the counter for each child */
}

#services .course-one__content::after {
    font-size: 99px;
    line-height: 1em;
    color: #000000;
    opacity: 0.06;
    content: counter(courseNumber, decimal-leading-zero);
    position: absolute;
    bottom: -12px;
    left: -4px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}


.course-sngle:hover .course-one__content::after {
	color: #fff;
	opacity: 0.06;
}
.trip-content .list-unstyled img {
        height: 55px;
    margin-bottom: 12px !important;
}
.course-one__content h3 {
	margin: 0;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 600;
	color: #389fa5;
	margin-bottom: 15px;
}

.course-one__content h3 a {
	color: #fff;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.course-one__content h3 a:hover {
	color: #fff;
}

.course-one__content p {
  margin: 0;
  /* width: 67%; */
  color: #244048;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding-bottom: 0px;
}
.course-sngle.com-card p {
    color: #fff;
}
.course-sngle.com-card {
    overflow: hidden;
}
.course-sngle:hover .course-one__content h3 a,
.course-sngle:hover .course-one__content p {
	color: #fff
}
.hvr-sweep-to-bottom:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.course-sngle-img {
  z-index: 9;
}
.course-one__content h3, .course-one__content p{
  z-index: 9;
position: relative;

}
.course-one__content p{
 font-size: 16px;   
}
/*.course-sngle .course-one__content:before {*/
/*	background-color: #389fa5 !important;*/
/*}*/

.course-one__book-link {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 20;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
	width: 100%;
	background-color: var(--thm-primary);
	color: var(--thm-black);
	text-transform: uppercase;
	font-size: 18px;
	font-weight: bold;
	padding-top: 20px;
	padding-bottom: 20px;
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: perspective(400px) rotateX(-90deg);
	transform: perspective(400px) rotateX(-90deg);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

/*.course-sngle:hover .course-one__book-link {*/
/*	-webkit-transform: perspective(400px) rotateX(0);*/
/*	transform: perspective(400px) rotateX(0);*/
/*}*/

.course-one__book-link:hover {
	background-color: var(--thm-base);
	color: #fff;
}

.course-one .post-pagination {
	margin-top: 30px;
}



.course-one__title {
	background-color: #edf2f5;
	position: relative;
	padding-top: 100px;
	padding-bottom: 65px;
}

.course-one__title__home-two {
	padding-top: 100px;
}

.course-one__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0.4;
}

.course-one__title .container {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	        align-items: center;
}

.course-one__title .block-title {
	margin-bottom: 0;
}
.course-one__title  .text-block {
  width: 50%;
}
.course-one__title .block-title{
  width: 50%;
}
.course-one__carousel-wrapper {
	padding-top: 0;
	padding-bottom: 100px;
	margin-top: -333px;
	position: relative;
	z-index: 10;
}

.course-one__carousel-wrapper .container {
	position: relative;
}

.course-one__carousel .owl-stage-outer {
	left: -10px;
}

.course-one__carousel .owl-stage {
	left: 10px;
}

[class*=course-one__carousel-btn-] {
	width: 79px;
	height: 79px;
	background-color: #fff;
	font-size: 24px;
	color: var(--thm-black);
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
	text-align: center;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	position: absolute;
	top: 40.5%;
	z-index: 11;
}

[class*=course-one__carousel-btn-]:hover {
	background-color: var(--thm-primary);
	color: var(--thm-black);
}

.course-one__carousel-btn-left {
	right: calc(100% - 15px);
}

.course-one__carousel-btn-right {
	left: calc(100% - 25px);
}

.course-brand__wrapper {
	position: relative;
}

.course-brand__wrapper .site-footer__fish-1 {
	bottom: 25%;
	left: 3%;
}

.course-brand__wrapper .site-footer__tree-1 {
	left: 2%;
}




/*--------------------------------------------------------------
 ## Course Details
 --------------------------------------------------------------*/


 .course-details {
	padding-top: 60px;
	padding-bottom: 60px;
}
.course-details__content ul {
    padding-left: 20px;
}
.course-details__content {
    padding-top: 60px;
    text-align: left;
}

.course-details__content h3 {
	margin: 0;
	text-transform: uppercase;
	color: var(--thm-black);
	font-size: 50px;
	font-weight: bold;
	margin-bottom: 20px;
}

.course-details__content h4 {
	margin: 0;
	font-size: 30px;
	font-weight: bold;
	color: #389fa5;
	text-transform: uppercase;
	margin-top: 30px;
	margin-bottom: 15px;
}

.course-details__content p {
	margin: 0;
}

.course-details__content p+p {
	margin-top: 15px;
}

.course-details__btn {
	margin-top: 55px;
}

.course-details__image {
	position: relative;
}

.course-details__image>img {
	width: 100%;
}
.course-details__infos-single i {
    font-size: 38px;
    margin-right: 20px;
	color: #389fa5;
}
.course-details__infos {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: calc(100% - 96px);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: var(--thm-primary);
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 54.5px;
    padding-bottom: 54.5px;
}
.ourbenefits{
	overflow: hidden;
	/*padding-top: 60px;*/
	    background: #deeef3;
}
.course-details__infos::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 10px;
	height: 35px;
	background-color: var(--thm-black);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	z-index: 11;
}

.course-details__infos-title {
	text-transform: uppercase;
	width: 147px;
	height: 96px;
	background-color: var(--thm-black);
	color: #fff;
	font-weight: 500;
	font-size: 20px;
	letter-spacing: .4em;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 11;
	-webkit-transform-origin: bottom left;
	transform-origin: bottom left;
	-webkit-transform: rotate(-90deg) translateX(calc(-100% + 96px));
	transform: rotate(-90deg) translateX(calc(-100% + 96px));
}

.course-details__infos-single {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-flex: 1;
	flex: 1 1 33.333%;
	max-width: 33.333%;
	position: relative;
}

.course-details__infos-single+.course-details__infos-single::before {
	content: '';
	width: 9px;
	height: 57px;
	background-image: url(../images/shapes/line-2.png);
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 50%;
	right: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.course-details__infos-single span {
	font-size: 25px;
	font-weight: 400;
	line-height: 1em;
	color: var(--thm-black);
}
.course-details__infos-single p small {
    display: block;
}
.course-details__infos-single p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1em;
	text-transform: uppercase;
	color: var(--thm-black);
	opacity: 0.7;
	margin: 0;
	margin-right: 10px;
	margin-bottom: 0;
	padding-bottom: 0;
}



/*--------------------------------------------------------------
 ## Team Progress
 --------------------------------------------------------------*/



.instructorr-progress-wrap {
	margin-top: 45px;
}

.instructorr-progress__bar+.instructorr-progress__bar {
    margin-top: 20px;
}

.instructorr-progress__bar-top {
    margin-bottom: 10px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

.instructorr-progress__bar-top h3 {
	font-size: 18px;
	font-weight: 500;
	color: var(--thm-black);
	margin: 0;
	text-transform: uppercase;
	line-height: 1em;
}

.instructorr-progress__bar-top p {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	color: #244048;
	line-height: 1em;
}

.instructorr-progress__bar-line {
	width: 100%;
	height: 3px;
	background-color: #eceeef;
	position: relative;
	overflow: hidden;
}

.instructorr-progress__bar-line span {
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--thm-base);
}

.team-one {
	position: relative;
}

.instructorr-floated-text {
	position: absolute;
	top: 0;
	left: 10%;
	-webkit-transform-origin: top left;
	        transform-origin: top left;
	font-size: 110px;
	letter-spacing: .6em;
	-webkit-transform: rotate(90deg);
	        transform: rotate(90deg);
	color: #edf2f5;
	text-transform: uppercase;
	font-weight: 800;
}



/*--------------------------------------------------------------
 # Video
 --------------------------------------------------------------*/

.video-one {
	background-color: #389fa5;
	position: relative;
	padding-top: 100px;
	padding-bottom: 250px;
	margin-bottom: -141.5px;
}

.video-one__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	opacity: 0.2;
}

.video-one .container {
	position: relative;
}

.video-one .video-popup {
	width: 121px;
	height: 121px;
	background-color: var(--thm-primary);
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	font-size: 20px;
	color: var(--thm-black);
	position: relative;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.video-one .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-one .video-popup:hover::before {
	top: 0;
	left: 0;
}

.video-one h3 {
	text-transform: uppercase;
	margin: 0;
	color: #fff;
	font-size: 60px;
	font-weight: bold;
	margin-top: 40px;
}

.video-one h3 span {
	color: var(--thm-primary);
}

.video-one__home-two {
    margin-bottom: 0;
    padding-bottom: 100px;
    padding-top: 250px;
    /* margin-top: -141.5px; */
}


.how-dive {
	background-color: #389fa5;
	background-repeat: no-repeat;
	background-position: bottom left;
	position: relative;
}

.how-dive__swimmer {
	position: absolute;
	top: 10%;
	left: 40%;
	z-index: 10;
	-webkit-animation: contactSwimmer 7s linear infinite;
	        animation: contactSwimmer 7s linear infinite;
          opacity: 0.2;
}

.how-dive .container {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
}

.how-dive__box {
	position: absolute;
	right: 15px;
	bottom: -60px;
	z-index: 15;
}
.how-dive__box.sdwe {
    bottom: initial;
    /*top: -60px;*/
}

@media(min-width: 992px) {

	.how-dive__content {
		padding-right: 70px;
	}
}

.how-dive__content .block-title {
	margin-bottom: 30px;
}

.how-dive__content .block-title p {
	color: #e3e6eb;
}

.how-dive__content .block-title h3 {
	color: #fff;
}

.how-dive__content>p {
	color: #fcfeff;
	margin: 0;
}

.how-dive__btn {
	margin-top: 30px;
}


.how-dive .video-popup {
	width: 121px;
	height: 121px;
	background-color: var(--thm-primary);
	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: 25%;
	font-size: 20px;
	color: var(--thm-black);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.how-dive .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;
}

.how-dive .video-popup:hover::before {
	top: 0;
	left: 0;
}


/*--------------------------------------------------------------
 # Features
 --------------------------------------------------------------*/


.feature-one {
	position: relative;
	z-index: 20;
	margin-top: -40px;
}

.feature-one__single {
	background-color: #fff;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	        flex-direction: row-reverse;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
}

.feature-one__single:hover {
	-webkit-transform: translateY(-10px);
	        transform: translateY(-10px);
}

.feature-one__single::before,
.feature-one__single::after {
	content: '';
	width: calc(100% + 16px);
	height: calc(100% + 16px);
	position: absolute;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	transform-origin: left top;
	top: -8px;
	left: -8px;
	-webkit-transition: all 500ms linear;
	transition: all 500ms linear;
}

.feature-one__single::before {
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: bottom center;
	transform-origin: bottom center;
	border-top: 8px solid var(--thm-primary);
	border-bottom: 8px solid var(--thm-primary);
}

.feature-one__single::after {
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
	-webkit-transform-origin: left center;
	transform-origin: left center;
	border-left: 8px solid var(--thm-primary);
	border-right: 8px solid var(--thm-primary);
}

.feature-one__single:hover::before,
.feature-one__single:hover::after {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}


.feature-one__image-inner {
	position: relative;
	background-color: var(--thm-black);
}

.feature-one__image-inner>img {
	width: 100%;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__image-inner>img {
	opacity: 0.5;
}

.feature-one__content {
	padding-left: 40px;
	padding-right: 40px;
	position: relative;
	z-index: 11;
}

.feature-one__content h3 {
	color: var(--thm-black);
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	text-transform: uppercase;
	margin: 0;
}

.feature-one__content h3 a {
	color: inherit;
}

.feature-two {
	padding-top: 60px;
	padding-bottom: 60px;
}
section.feature-two .feature-two__single {
    margin-bottom: 0;
}
.feature-two__single {
	margin-bottom: 30px;
}

.feature-two__image {
	overflow: hidden;
	background-color: var(--thm-black);
}

.feature-two__image>img {
	width: 100%;
	opacity: 1;
	-webkit-transform-origin: center;
	transform-origin: center;
	-webkit-transform: scale(1.0);
	transform: scale(1.0);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.feature-two__single:hover .feature-two__image>img {
	opacity: 0.5;
	-webkit-transform: scale(1.07);
	transform: scale(1.07);
	-webkit-transform-origin: center;
	transform-origin: center;
}

.feature-two__content {
	position: relative;
	/* border-left: 8px solid var(--thm-primary); */
	/* padding-top: 50px; */
	/* padding-bottom: 55px; */
	/* padding-left: 60px; */
	/* padding-right: 50px; */
	/* -webkit-transition: all 500ms ease; */
	transition: all 500ms ease;
	box-shadow: 0 10px 30px #eaf2f1;
	transition: all 500ms ease;
	padding: 30px;
	    min-height: 305px;
}

.feature-two__single:hover .feature-two__content {
	box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03), inset 7.989px -0.419px 0px 0px rgba(255, 215, 1, 0.004);
}

.feature-two__content h3 {
	margin: 0;
	font-weight: bold;
	color: #389fa5;
	font-size: 24px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.feature-two__content h3 a {
	color: inherit;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.feature-two__content h3 a:hover {
	color: var(--thm-primary);
}

.feature-two__content p {
	margin: 0;
	color: #244048;
	/* margin-bottom: 0px; */
	padding-bottom: 0px;
}


/*--------------------------------------------------------------
 # Services
 --------------------------------------------------------------*/


.service-one {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
}

.service-one__floated-text {
	font-size: 85px;
	font-weight: bold;
	color: #edf2f5;
	position: absolute;
	bottom: -12px;
	left: 50%;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .6em;
	line-height: 1;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	        z-index: -1;
}

/*.service-sldi {*/
/*	text-align: center;*/
/*	position: relative;*/
/*	padding-bottom: 60px;*/
/*	padding-top: 60px;*/
/*	border: 1px solid #f9f9f9;*/
/*	padding: 30px;*/
/*	z-index: 1;*/
/*	padding-top: 40px;*/
/*	margin-bottom: 30px;*/
/*	flex: 1;*/
/*}*/
/*.service-sldi::before,*/
/*.service-sldi::after {*/
/*	content: '';*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	position: absolute;*/
/*	-webkit-transform: scale(0);*/
/*	transform: scale(0);*/
/*	-webkit-transform-origin: left top;*/
/*	transform-origin: left top;*/
/*	top: 0;*/
/*	left: 0;*/
/*	z-index: -1;*/
/*	-webkit-transition: all 500ms linear;*/
/*	transition: all 500ms linear;*/
/*}*/

/*.service-sldi::before {*/
/*	-webkit-transform: scale(0, 1);*/
/*	transform: scale(0, 1);*/
/*	-webkit-transform-origin: bottom center;*/
/*	transform-origin: bottom center;*/
/*	border-top: 8px solid var(--thm-primary);*/
/*	border-bottom: 8px solid var(--thm-primary);*/
/*}*/

/*.service-sldi::after {*/
/*	-webkit-transform: scale(1, 0);*/
/*	transform: scale(1, 0);*/
/*	-webkit-transform-origin: left center;*/
/*	transform-origin: left center;*/
/*	border-left: 8px solid var(--thm-primary);*/
/*	border-right: 8px solid var(--thm-primary);*/
/*}*/

/*.service-sldi.clr-1::before {*/
/*	border-top: 8px solid #27397a;*/
/*	border-bottom: 8px solid #27397a;*/
/*}*/
/*.service-sldi.clr-1::after {*/
/*	border-left: 8px solid #27397a;*/
/*	border-right: 8px solid #27397a;*/
/*}*/
/*.service-sldi.clr-1 i::after{*/
/*	border: 8px solid #27397a;*/
/*}*/



/*.service-sldi.clr-2::before {*/
/*	border-top: 8px solid #d75c4c;*/
/*	border-bottom: 8px solid #d75c4c;*/
/*}*/
/*.service-sldi.clr-2::after {*/
/*	border-left: 8px solid #d75c4c;*/
/*	border-right: 8px solid #d75c4c;*/
/*}*/
/*.service-sldi.clr-2 i::after{*/
/*	border: 8px solid #d75c4c;*/
/*}*/



/*.service-sldi.clr-3::before {*/
/*	border-top: 8px solid #f9a340;*/
/*	border-bottom: 8px solid #f9a340;*/
/*}*/
/*.service-sldi.clr-3::after {*/
/*	border-left: 8px solid #f9a340;*/
/*	border-right: 8px solid #f9a340;*/
/*}*/
/*.service-sldi.clr-3 i::after{*/
/*	border: 8px solid #f9a340;*/
/*}*/


/*.service-sldi.clr-4::before {*/
/*	border-top: 8px solid #4b6cac;*/
/*	border-bottom: 8px solid #4b6cac;*/
/*}*/
/*.service-sldi.clr-4::after {*/
/*	border-left: 8px solid #4b6cac;*/
/*	border-right: 8px solid #4b6cac;*/
/*}*/
/*.service-sldi.clr-4 i::after{*/
/*	border: 8px solid #4b6cac;*/
/*}*/



/*.service-sldi.clr-5::before {*/
/*	border-top: 8px solid #aecdd5;*/
/*	border-bottom: 8px solid #aecdd5;*/
/*}*/
/*.service-sldi.clr-5::after {*/
/*	border-left: 8px solid #aecdd5;*/
/*	border-right: 8px solid #aecdd5;*/
/*}*/
/*.service-sldi.clr-5 i::after{*/
/*	border: 8px solid #aecdd5;*/
/*}*/






.service-sldi:hover::before,
.service-sldi:hover::after {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}


.service-sldi i {
	position: relative;
	font-size: 64px;
	color: var(--thm-base);
	display: inline-block;
}

.service-sldi i::after {
	content: '';
	width: 61px;
	height: 61px;
	border: 8px solid var(--thm-primary);
	opacity: 0.2;
	position: absolute;
	left: -32px;
	top: -20px;
	-webkit-transform: rotate(0);
	        transform: rotate(0);
	-webkit-transition: all 800ms ease;
	transition: all 800ms ease;
}

.service-sldi:hover i::after {
	border-color: var(--thm-base);
	-webkit-transform: rotate(360deg);
	        transform: rotate(360deg);
}

.service-sldi h3 {
	margin: 0;
	text-transform: uppercase;
	font-size: 24px;
	line-height: 30px;
	font-weight: 600;
	color: #fff;
	margin-top: 15px;
	margin-bottom: 10px;
}

.service-sldi h3 a {
	color: inherit;
	display: inline-block;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.service-sldi h3 a:hover {
	color: var(--thm-primary);
}

.service-sldi p {
    text-align: center;
    padding-bottom: 0px;
    margin-bottom: 0px;
}





.main-nav-one .main-nav__main-navigation .main-nav__navigation-box>li {
    display: inline-block;
}


.admin-bar .stricked-menu {
    top: 32px;
}



.site-footer-one.off {
    background-color: unset;
}


.course-one__title.home-two {
    padding-top: 100px;
}
.course-one.course-one__carousel-wrapper.shape .site-footer__tree-1 {
    bottom: -34%;
    left: 0%;
}
.course-one.course-one__carousel-wrapper.shape .site-footer__fish-1 {
    left: 2%;
    bottom: 6%;
}

.service-one .site-footer__fish-1 {
    bottom: 50%;
}
.course-one .site-footer__fish-1 {
    bottom: 49%;
}
.service-one .site-footer__fish-3 {
    top: 20%;
}
.about-pge-home-two .about-pge-image img {
    max-width: unset;
}


.bootstrap-select:not(.input-group-btn), .bootstrap-select[class*=col-] {
    width: 100%;
}
.faq-contact__wrap .contactq-swimmer {
    left: -90%;
}
.faq-contact__wrap.one {
    padding-bottom: 0;
}

.kuk .instructorr-floated-text {
    left: -30%;
}

.about-two .my-auto {
    padding: 90px 0px;
}
section.about-two.one .my-auto {
    padding: 94px 0px;
}
.course-details__content p {
    padding-bottom: 0;
}
.about-two.two .about-pge-image img {
    max-width: unset;
}
.video-one.video-one__home-two.about {
    padding-top: 100px;
    padding-bottom: 250px;
    margin-bottom: -141.5px;
}
.testimonials-one__title.testimonials-one__title__home-one.about {
    padding-top: 260px;
    padding-bottom: 295px;
}
.course-details.one {
    padding-bottom: 100px !important;
}
.course-details.two {
    padding-top: 0;
}
.main-nav-one.margin .main-nav__main-navigation .main-nav__navigation-box>li:nth-child(3) {
    margin-right: 160px;
}
.main-nav-one.margin .main-nav__main-navigation .main-nav__navigation-box>li:nth-child(4) {
    margin-left: 227px;
}
.main-nav-one.margin .inner-container {
    max-width: 1000px;
}


.about-one.off {
    background-color: unset;
}



/*--------------------------------------------------------------
 # About
 --------------------------------------------------------------*/

 .about-one {
	padding-top: 240px;
	padding-bottom: 100px;
	background-color: #edf2f5;
	position: relative;
}

.about-one__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0.4;
}

.about-one .container {
	position: relative;
}

@media(min-width: 992px) {
	.about-one__content {
		padding-right: 55px;
	}
}

.about-one__content>p {
	margin: 0;
}

.about-one__content>p+p {
	margin-top: 60px;
}

.about-one__content p span {
	color: var(--thm-base);
	font-weight: 500;
	font-size: 22px;
}

.about-one__image {
	position: relative;
}

.about-one__image img:nth-child(1) {
	-webkit-clip-path: polygon(2% 0, 100% 0, 100% 100%, 47% 100%);
	clip-path: polygon(2% 0, 100% 0, 100% 100%, 47% 100%);
}

.about-one__image img:nth-child(2) {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-clip-path: polygon(0 0, 0% 100%, 76% 100%);
	clip-path: polygon(0 0, 0% 100%, 76% 100%);
}

/* .about-two {
	padding-bottom: 30px;
} */

.about-two .my-auto {
	width: 100%;
}

.about-pge-content-wrapper {
	position: relative;
}

.about-pge-content-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	right: 15px;
	background-color: var(--thm-gray);
	width: 10000px;
	height: 100%;
}

.about-pge-content {
	position: relative;
}

.about-pge-content .block-title {
	margin-bottom: 35px;
}


.about-pge-content>p {
	margin: 0;
}

.about-pge-list {
	margin: 0;
	margin-top: 30px;
	/*counter-reset: about-two-list-count;*/
}

.about-pge-list li {
	position: relative;
	color: #244048;
	padding-left: 60px;
	line-height: 41px;
	/*counter-increment: about-two-list-count;*/
}

.about-pge-list li+li {
	margin-top: 20px;
}
section.course-one__title.otr.qwewq .about-pge-list li+li{
	margin-top: 0px;
}
section.course-one__title.otr.qwewq .about-pge-list li{
	padding-right: initial;
}

.about-pge-list-count {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 41px;
	height: 41px;
	background-color: var(--thm-primary);
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
}

.about-pge-list-count::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	background-color: #244048;
	opacity: 0.1;
	width: 100%;
	height: 100%;
}
section.ourbenfits {
    overflow: hidden;
}
.about-pge-content {
    padding-right: 20px;
}
.about-pge-list {
    counter-reset: about-two-list-count; /* Reset the counter */
}

/* Style for each list item */
.about-pge-list li {
    position: relative;
    counter-increment: about-two-list-count; /* Increment the counter for each list item */
}
.about-pge-list-count::after {
	 content: counters(about-two-list-count, "."); /* Display the counter value */
	color: var(--thm-black);
	font-size: 16px;
	font-weight: 500;
}

.about-pge-home-two {
	background-color: #389fa5;
	background-repeat: no-repeat;
	background-position: bottom left;
	position: relative;
	padding-bottom: 0;
}

.about-pge-home-two .about-pge-content-wrapper::before {
	display: none;
}

.about-pge-home-two .about-pge-content .block-title p,
.about-pge-home-two .about-pge-content>p {
	color: #c1cfe1;
}

.about-pge-home-two .about-pge-content .block-title h3 {
	color: #fff;
}

.about-pge-home-two .about-pge-list li {
	color: #fff;
}

.about-pge-image {
	position: relative;
}
.asd {
    background-color: #fff !important;
    position: relative;
    padding-top: 80px;
    padding-bottom: 40px !important;
}

.about-pge-home-two .about-pge-image::before {
	content: '';
	position: absolute;
	left: -25px;
	top: 50%;
	width: 10px;
	height: 35px;
	background-color: var(--thm-primary);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	z-index: 26;
}


.about-pge-image-title {
	text-transform: uppercase;
	width: 780px;
	height: 96px;
	background-color: var(--thm-primary);
	color: var(--thm-black);
	font-weight: 300;
	font-size: 30px;
	letter-spacing: .4em;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
	position: absolute;
	top: 0;
	left: 81px;
	z-index: 25;
	-webkit-transform-origin: bottom left;
	transform-origin: bottom left;
	-webkit-transform: rotate(-90deg) translateX(calc(-100% + 96px));
	transform: rotate(-90deg) translateX(calc(-100% + 96px));
}


.about-three {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
}

.about-three__fish-1 {
    position: absolute;
    bottom: 5%;
    left: -25%;
    -webkit-animation: footerFish 5s linear infinite;
    animation: footerFish 5s linear infinite;
}

.about-three__fish-2 {
    position: absolute;
    bottom: 15%;
    right: -15%;
    -webkit-animation: footerFish 5s linear infinite 1s;
    animation: footerFish 5s linear infinite 1s;
}

.about-three__tree-1 {
    position: absolute;
    /* left: 3%; */
    right: -47%;
    bottom: -2%;
    -webkit-animation: footerTree 5s ease-in infinite;
    animation: footerTree 5s ease-in infinite;
}

.about-three__tree-2 {
    position: absolute;
    /* right: 3%; */
    left: -50%;
    bottom: -7%;
    -webkit-animation: footerTree 5s ease-in infinite;
    animation: footerTree 5s ease-in infinite;
}

.about-three .container {
	position: relative;
}

.about-three__moc {
	position: absolute;
	top: -45px;
	left: -78px;
	z-index: 12;
	-webkit-animation: ribbonRotate 10s cubic-bezier(.19, 1, 1, 3.58) infinite;
	        animation: ribbonRotate 10s cubic-bezier(.19, 1, 1, 3.58) infinite;
}

.about-three__content .block-title {
	margin-bottom: 35px;
}
.about-three__content > p {
	margin: 0px;
}

.about-three__content > p a {
	color: var(--thm-base);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.about-three__content > p a:hover {
	color: var(--thm-black);
}

.about-three__list {
	margin: 0;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
	margin-bottom: 15px;
}
.about-three__list li {
	position: relative;
	-webkit-box-flex: 1;
	        flex: 1 1 50%;
	max-width: 50%;
	font-size: 20px;
	color: var(--thm-black);
	padding-left: 15px;
	line-height: 1em;
	margin-bottom: 20px;
}
.about-three__list li i {
	position: absolute;
	left: 0;
	top: 60%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	font-size: 16px;
	line-height: 1em;
}

.about-three__btn {
	margin-top: 50px;
}

.about-three__image {
	position: relative;
	display: inline-block;
}

.about-three__image::before {
	content: '';
	width: 100%;
	height: 100PX;
	position: absolute;
	top: 91%;
	left: 0;
	-webkit-clip-path: polygon(0 0, 100% 70%, 100% 100%, 0 30%);
	        clip-path: polygon(0 0, 100% 70%, 100% 100%, 0 30%);
	background-color: var(--thm-primary);
}

.about-three__image-content {
	position: absolute;
	right: -40px;
	bottom: 90px;
	width: 100%;
	max-width: 225px;
	height: 120px;
	background-color: var(--thm-base);
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	        justify-content: center;
}

.about-three__image > img {
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 89%);
	        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 89%);
}
.about-three__image-content::before {
	content: '';
	width: 40px;
	height: 30px;
	background-color: #2d7ec8;
	position: absolute;
	top: 100%;
	right: 0;
	-webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
	        clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.about-three__image-content p,
.about-three__image-content h3 {
	margin: 0;
}
.about-three__image-content h3 {
	color: #fff;
	font-size: 50px;
	font-weight: 300;
}
.about-three__image-content p {
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1em;
	opacity: 0.7;
	font-weight: 500;
	margin-left: 20px;
}

.about-three__floated-text {
	position: absolute;
	top: 0;
	left: -55px;
	-webkit-transform-origin: top left;
	        transform-origin: top left;
	font-size: 110px;
	letter-spacing: .6em;
	-webkit-transform: rotate(90deg);
	        transform: rotate(90deg);
	color: #edf2f5;
	text-transform: uppercase;
	font-weight: 800;
}

/*--------------------------------------------------------------
 # Team
 --------------------------------------------------------------*/

.team-one {
	padding-top: 100px;
	padding-bottom: 90px;
}

.instructorr-single {
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
	background-color: var(--thm-black);
}


.instructorr-single>img {
	width: 100%;
	opacity: 1;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	position: relative;
	z-index: 9;
}

.instructorr-single:hover>img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.instructorr-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20;
	background-color: transparent;
	text-align: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-transition: all 500ms ease 0s;
	transition: all 500ms ease 0s;
}


.instructorr-content::before,
.instructorr-content::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	transform-origin: left top;
	top: 0;
	left: 0;
	-webkit-transition: all 500ms linear;
	transition: all 500ms linear;
}

.instructorr-content::before {
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: bottom center;
	transform-origin: bottom center;
	border-top: 8px solid var(--thm-primary);
	border-bottom: 8px solid var(--thm-primary);
}

.instructorr-content::after {
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
	-webkit-transform-origin: left center;
	transform-origin: left center;
	border-left: 8px solid var(--thm-primary);
	border-right: 8px solid var(--thm-primary);
}

.instructorr-single .instructorr-content:hover::before,
.instructorr-single .instructorr-content:hover::after {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.instructorr-single:hover .instructorr-content {
	background-color: rgba(var(--thm-black-rgb), .8);
}

.instructorr-content-inner {
	position: relative;
	z-index: 20;
	opacity: 0;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: perspective(500px) rotate(45deg);
	transform: perspective(500px) rotate(15deg);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition: opacity 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
	transition: opacity 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
	transition: transform 500ms ease 0ms, opacity 500ms ease 0ms;
	transition: transform 500ms ease 0ms, opacity 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.instructorr-single:hover .instructorr-content-inner {
	opacity: 1;
	-webkit-transform: perspective(500px) rotate(0deg);
	transform: perspective(500px) rotate(0deg);
	-webkit-transition: opacity 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
	transition: opacity 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
	transition: transform 500ms ease 500ms, opacity 500ms ease 500ms;
	transition: transform 500ms ease 500ms, opacity 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.instructorr-content h3 {
	margin: 0;
	color: #fff;
	font-weight: 500;
	font-size: 22px;
	line-height: 1em;
	text-transform: uppercase;
}

.instructorr-content h3 a {
	color: #fff;
}

.instructorr-content span {
	margin: 0;
	line-height: 1em;
	color: #c1cfe1;
	font-size: 16px;
	font-weight: 500;
	display: block;
	margin-top: 5px;
}


.instructorr-social {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	margin-top: 30px;
}

.instructorr-social a {
	width: 41px;
	height: 41px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
	font-size: 14px;
	color: var(--thm-black);
	background-color: var(--thm-primary);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.instructorr-social a:hover {
	color: #fff;
	background-color: var(--thm-black);
}

.instructorr-social a+a {
	margin-left: 10px;
}

.team-brand__wrapper {
	background-position: bottom center;
	background-repeat: no-repeat;
}

.instructorr-home-two {
	padding-top: 0;
	padding-bottom: 30px;
}

.instructorr-home-two__wrap {
	position: relative;
	padding-top: 100px;
	padding-bottom: 90px;
}

.instructorr-home-two__wrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 120px;
	background-color: var(--thm-gray);
	width: 10000px;
	height: 100%;
}

.instructorr-home-two__wrap .row {
	position: relative;
}

.instructorr-block-content {
	padding-top: 100px;
	padding-bottom: 100px;
}

.instructorr-block-content .block-title {
	margin-bottom: 35px;
}

@media(min-width: 992px) {
	.instructorr-block-content {
    padding-right: 20px;
}
}

.instructorr-block-content>p {
	margin: 0;
}


/*--------------------------------------------------------------
 # Testimonials
 --------------------------------------------------------------*/

.testimonials-one__title {
	background-color: #edf2f5;
	position: relative;
	padding-top: 60px;
	padding-bottom: 280px;
}

/* .testimonials-one__title__home-one {
	padding-top: 180px;
} */

.testimonials-one__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0.4;
}

.testimonials-one__title .container {
	position: relative;
}

.testimonials-one__title .block-title {
	margin-bottom: 0;
}

.testimonials-one__carousel-wrapper {
	position: relative;
	z-index: 11;
}


.testimonials-one__title__home-two {
	padding-top: 100px;
}


/* .testimonials-one__carousel-wrapper__home-one {
	padding-bottom: 150px;
} */
section.testimonials-one__carousel-wrapper.testimonials-one__carousel-wrapper__home-one {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #edf2f5;
}
.testimonials-one__carousel-wrapper__home-two {
	padding-bottom: 145px;
}



/*--------------------------------------------------------------
 # Services
 --------------------------------------------------------------*/


.service-one {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
}

/*.service-one__floated-text {*/
/*	font-size: 35px;*/
/*	font-weight: bold;*/
/*	color: #edf2f5;*/
/*	position: absolute;*/
/*	bottom: -12px;*/
/*	left: 50%;*/
/*	text-align: center;*/
/*	text-transform: uppercase;*/
/*	letter-spacing: .6em;*/
/*	line-height: 1;*/
/*	-webkit-transform: translateX(-50%);*/
/*	        transform: translateX(-50%);*/
/*}*/

.service-sldi {
	text-align: center;
	position: relative;
	padding-bottom: 60px;
	padding-top: 20px;
	/*border: 1px solid #f9f9f9;*/
	padding: 30px 20px;
	z-index: 1;
	padding-top: 20px;
	margin-bottom: 30px;
	border-radius:7px;
}

/*.service-sldi::before,*/
/*.service-sldi::after {*/
/*	content: '';*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	position: absolute;*/
/*	-webkit-transform: scale(0);*/
/*	transform: scale(0);*/
/*	-webkit-transform-origin: left top;*/
/*	transform-origin: left top;*/
/*	top: 0;*/
/*	left: 0;*/
/*	z-index: -1;*/
/*	-webkit-transition: all 500ms linear;*/
/*	transition: all 500ms linear;*/
/*}*/

/*.service-sldi::before {*/
/*	-webkit-transform: scale(0, 1);*/
/*	transform: scale(0, 1);*/
/*	-webkit-transform-origin: bottom center;*/
/*	transform-origin: bottom center;*/
/*	border-top: 8px solid var(--thm-primary);*/
/*	border-bottom: 8px solid var(--thm-primary);*/
/*}*/

/*.service-sldi::after {*/
/*	-webkit-transform: scale(1, 0);*/
/*	transform: scale(1, 0);*/
/*	-webkit-transform-origin: left center;*/
/*	transform-origin: left center;*/
/*	border-left: 8px solid var(--thm-primary);*/
/*	border-right: 8px solid var(--thm-primary);*/
/*}*/

/*.service-sldi:hover::before,*/
/*.service-sldi:hover::after {*/
/*	-webkit-transform: scale(1, 1);*/
/*	transform: scale(1, 1);*/
/*}*/


.service-sldi i {
    position: relative;
    font-size: 60px;
    color: #fff;
    display: inline-block;
    margin-bottom: 15px;
}

.service-sldi i::after {
	content: '';
	width: 61px;
	height: 61px;
	border: 8px solid #fff;
	opacity: 0.2;
	position: absolute;
	left: -32px;
	top: -20px;
	-webkit-transform: rotate(0);
	        transform: rotate(0);
	-webkit-transition: all 800ms ease;
	transition: all 800ms ease;
}

.service-sldi:hover i::after {
	border-color: var(--thm-base);
	-webkit-transform: rotate(360deg);
	        transform: rotate(360deg);
}

.service-sldi h3 {
	margin: 0;
	text-transform: uppercase;
	font-size: 22px;
	line-height: 30px;
	font-weight: 600;
	color: #fff;
	margin-top: 15px;
	margin-bottom: 10px;
}

.service-sldi h3 a {
	color: inherit;
	display: inline-block;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.service-sldi h3 a:hover {
	color: var(--thm-primary);
}

.service-sldi p {
    text-align: center;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.service-sldi .webq{
    width: 100% !important;
    height: 200px;
    object-fit: cover;
    border-radius: 7px;
    display: block;
    margin: 0px;
}









.main-nav-one .main-nav__main-navigation .main-nav__navigation-box>li {
    display: inline-block;
}


.admin-bar .stricked-menu {
    top: 32px;
}



.site-footer-one.off {
    background-color: unset;
}


.course-one__title.home-two {
    padding-top: 100px;
}
.course-one.course-one__carousel-wrapper.shape .site-footer__tree-1 {
    bottom: -34%;
    left: 0%;
}
.course-one.course-one__carousel-wrapper.shape .site-footer__fish-1 {
    left: 2%;
    bottom: 6%;
}

.service-one .site-footer__fish-1 {
    bottom: 50%;
}
.course-one .site-footer__fish-1 {
    bottom: 49%;
}
.service-one .site-footer__fish-3 {
    top: 20%;
}
.about-pge-home-two .about-pge-image img {
    max-width: unset;
}


.bootstrap-select:not(.input-group-btn), .bootstrap-select[class*=col-] {
    width: 100%;
}
.faq-contact__wrap .contactq-swimmer {
    left: -90%;
}
.faq-contact__wrap.one {
    padding-bottom: 0;
}

.kuk .instructorr-floated-text {
    left: -30%;
}

.about-two .my-auto {
    padding: 90px 0px;
}
section.about-two.one .my-auto {
    padding: 94px 0px;
}
.course-details__content p {
    padding-bottom: 0;
}
.about-two.two .about-pge-image img {
    max-width: unset;
}
.video-one.video-one__home-two.about {
    padding-top: 100px;
    padding-bottom: 250px;
    margin-bottom: -141.5px;
}
.testimonials-one__title.testimonials-one__title__home-one.about {
    padding-top: 260px;
    padding-bottom: 295px;
}
.course-details.one {
    padding-bottom: 0;
}
.course-details.two {
    padding-top: 0;
}
.main-nav-one.margin .main-nav__main-navigation .main-nav__navigation-box>li:nth-child(3) {
    margin-right: 160px;
}
.main-nav-one.margin .main-nav__main-navigation .main-nav__navigation-box>li:nth-child(4) {
    margin-left: 227px;
}
.main-nav-one.margin .inner-container {
    max-width: 1000px;
}


.about-one.off {
    background-color: unset;
}

/***
=============================================
    Team Single Area Css
=============================================
***/

.pricing-one.two {
    padding-top: 0;
}
.footer-widget__social li {
    list-style: none;
    margin-left: 10px;
}
.blog-details.blog_standaed .blog-mainn-main {
    margin-bottom: 40px;
}
.blog-details.blog_standaed  .blog-mainn-main-title a {
    color: var(--thm-black);
}


footer.site-footer-one.saven {
    background: rgb(6 58 122 / 96%);
}
.testimonials-one__title.testimonials-one__title__home-one.testimonials-one__title__home-two {
    padding-top: 100px;
}
.testimonials-one__carousel-wrapper.testimonials-one__carousel-wrapper__home-one.about {
    padding-bottom: 0;
}
.main-nav-one.margin .main-nav__main-navigation .main-nav__navigation-box>li+li {
    /* margin-left: 55px; */
}

.mrwidget {
    /* margin-left: 10px; */
    /* padding: 30px; */
    /* border: 1px solid #f1f1f1; */
    margin-bottom: 40px;
    /* margin-left: 30px; */
}
.widget_scubo_popular_post {
    padding: 0;
    border: unset;
}

.mrwidget ul li{
    color: #adadad;
    list-style: none;
    line-height: 40px;
}
.mrwidget ul li a{
    color: #adadad;
}
.mrwidget ul{
    padding-left: 0px;
}

.sticky .blog-mainn-main,.tag-sticky-2 .blog-mainn-main{
    border: 1px solid #ffd704;
    padding: 25px;
}

.main-footer {
    background: #222;
}

.wp-block-button.is-style-squared .wp-block-button__link{
	border-radius:0px!important;
}






.about-one.off.one .about-one__content>p+p {
    margin-top:15px;
}
.site-footer__bottom a {
    cursor: default;
}

.tean_title {
    color: #fff;
	font-weight:500;
	    font-weight: 500;
    font-size: 22px;
    line-height: 1em;
    text-transform: uppercase;
}

.mrwidget.widget_media_gallery  {
    padding-bottom: 10px!important;
}

.blog-mainn-tags a {
    /* position: relative; */
    /* display: inline-block; */
    font-size: 14px !important;
    line-height: 26px;
    color: #7f8180;
    border:1px solid #e8e8e8;
    border-radius: 30px;
    text-align: center;
    padding: 6px 16px;
    position: relative;
    display: inline-block;
    margin-right: 5px;
    /* margin-bottom: 15px; */
}
.blog-mainn-tags a:hover {
    border-color: #ffd606;
    background: #ffd606;
    color: #fff;
    box-shadow: 0 20px 30px #ffd60659;
}
.blog-mainn-content .blog-block-meta {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.blog-details.blog_standaed .blog-mainn-content{
    border: 1px solid #f5f5f5;
    padding: 30px;
}
.service-sldi {
    box-shadow: 0 10px 30px #eaf2f1;
    transition: all 500ms ease;
}
.service-sldi {
    background: #fff;
}

.sidebar__post__meta a{
	font-size: 15px!important;
	color: #727272!important;
	font-weight: 500!important;
	letter-spacing: 1px;
}
.sidebar__post-list a:hover::before{
	display:none!important;
}
.sidebar__post-list a:hover {
    padding-left: 0px!important;
}
.mrwidget .wp-block-embed {
    margin: 0px;
}
.mrwidget .sidebar__post-list li h3 a{
	color:#222;
}

.search_title {
    font-family: inherit;
}

.testimonials-one__carousel-wrapper.testimonials-one__carousel-wrapper__home-one.new-section {
    margin-top: 0;
    padding: 120px 0px 70px;
}
.new-section .item {
    margin-bottom: 50px;
}




.three.team-single-area .team-member-content-box {
    padding-bottom: 0;
}
.five.team-single-area {
    padding-top: 0;
    padding-bottom: 40px;
}






.about-one__image img:nth-child(3) {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-clip-path: polygon(0 0, 0% 100%, 76% 100%);
    clip-path: polygon(0 0, 0% 100%, 76% 100%);
}

i.icon-scuba-diving:before {
  background-image: url(../images/e1.png);
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.service-sldi img {
    height: 58px;
}
.service-sldi {
    background: #fff;
    min-height: 100%;
    flex: 1;
}
.bg-dark {
  background-color: #244048 !important;
}

footer h5 {
  color: #ffffff;
  font-weight: 600;
  /* font-size: 18px; */
  margin-bottom: 30px;
}
footer a, footer p {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
}
footer.bg-dark.text-light {
  position: relative;
  overflow: hidden;
}
.service-sldi .iconwebq {
  width: auto !important;
  margin: auto;
  margin-top: 10px;
}


/* footer shapes */

.site-footer__tree-1 {
	position: absolute;
	bottom: 0;
	left: 5%;
	z-index: 10;
	-webkit-perspective: 500px;
	perspective: 500px;
	-webkit-animation: footerTree 5s ease-in infinite;
	animation: footerTree 5s ease-in infinite;
	width: 170px;
}

.site-footer__tree-2 {
    position: absolute;
    bottom: 0;
    right: 10%;
    z-index: 0;
    -webkit-perspective: 500px;
    perspective: 500px;
    -webkit-animation: footerTree 5s ease-in infinite;
    animation: footerTree 5s ease-in infinite;
}



.site-footer__fish-1 {
    position: absolute;
    left: 7%;
    bottom: 200%;
    z-index: 10;
    -webkit-perspective: 100px;
    perspective: 100px;
    -webkit-animation: footerFish 5s linear infinite;
    animation: footerFish 5s linear infinite;
}

.site-footer__fish-2 {
    position: absolute;
    z-index: 10;
    left: 45%;
    top: -250%;
    -webkit-perspective: 150px;
    perspective: 150px;
    -webkit-animation: footerFish 5s linear infinite 1s;
    animation: footerFish 5s linear infinite 1s;
}

.site-footer__fish-3 {
  position: absolute;
  top: 20px;
  right: 12%;
  z-index: 11;
  -webkit-perspective: 250px;
  perspective: 250px;
  -webkit-animation: footerFish 5s linear infinite 2s;
  animation: footerFish 5s linear infinite 2s;
}

footer.bg-dark.text-light p {
    padding-bottom: 0;
}
.footer-widget__social {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.footer-widget__social a {
	width: 41px;
	height: 41px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
	font-size: 14px;
	color: var(--thm-black);
	background-color: var(--thm-primary);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.footer-widget__social a:hover {
	color: #fff;
	background-color: var(--thm-black);
}

.footer-widget__social a+a {
	margin-left: 10px;
}
.more-g .col-lg-4.col-md-12 {
    margin-bottom: 60px;
}

.col-qw {
    flex: 1;
}

.dt-de{
	padding-right: 70px;
}
.dt-de p {
    color: #ededed;
    margin: 0;
}
.dt-de h3 {
    margin-bottom: 30px;
}

.slgfd{
	align-items: center;
}
section.cta-two.asa .container {
    padding-top: 60px !important;
    padding-bottom: 70px !important;
}
section.cta-two.asa img {
    transition: 0.4s;
}
section.cta-two.asa:hover img {
    transform: scale(1.1);
}

.container-contac .about-pge-list-count {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 66px;
    height: 66px;
    background-color: #389fa5;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
}
.container-contac .about-pge-list-count::after {
    content: "\f0e0";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ffffff;
    font-size: 34px;
    font-weight: 500;
}
.container-contac li:nth-child(2) .about-pge-list-count::after {
    content: "\f095"; /* Call icon */
    font-family: "Font Awesome 5 Free"; /* Specify the Font Awesome font */
    font-weight: 900; /* Use solid icon */
}
.container-contac .about-pge-list li {
    position: relative;
    color: #244048;
    padding-left: 90px;
    line-height: 100px;
    /*counter-increment: about-two-list-count;*/
    font-size: 24px;
    font-family: sans-serif;
}

.ewrz .how-dive__box img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

section.how-dive.ewrz i {
    font-size: 34px;
}
section.how-dive.ewrz .container {
    padding-top: 60px;
}
section.testimonials-one__title.testimonials-one__title__home-one.sa {
    padding-top: 100px;
}




.ew-z .course-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: repeat;
    background-size: 100%;
    background-position: center center;
    opacity: 0.4;
}
.service-one.ew-z {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    background-color: #edf2f5;
}
section.service-one.ew-z .container {
    position: relative;
    z-index: 9;
}
.otr {
    /* background: var(--thm-primary); */
    padding: 60px 0px;
    /* background-color: #389fa5; */
    /* background-repeat: no-repeat; */
    /* background-position: bottom left; */
    position: relative;
    /* color: #fff; */
}
.course-one__title.otr .container {
    display: block !important;
}
.otr .cta-one__phone{
margin-left: 0;
font-size: 28px;
}
.otr .cta-one__phone p{
margin-bottom: 0;
padding-bottom: 0;
font-size: 20px;
display: block;
width: 100%;
line-height: 20px;
}

.text-center{
	text-align: center !important;
}
h4.team_title {
    color: #fff;
    margin-top: 10px;
    font-size: 18px;
    margin-bottom: 14px;
}


/* .asqz .card-body.fr-sc {
    animation: fadeInBackgroundw 35s forwards;
    background-repeat: no-repeat;
}
@keyframes fadeInBackgroundw {
	0% {
	 background-size: 100%;
	}
	50% {
background-size: 110%;
	}
	100% {
		background-size: 100%;
			}
  } */


  .otr i {
    /* width: 86px; */
    height: 86px;
    /* background-color: var(--thm-black); */
    font-size: 47px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    color: var(--thm-black);
    /* margin-right: 20px; */
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}




.be-fd .about-pge-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    background-color: var(--thm-gray);
    width: 10000px;
    height: 100%;
}
.ourbenefits.be-fd .col-md-6 {
    padding: 0px !important;
}
.ourbenefits.be-fd .col-lg-6 {
    padding: 0px !important;
}
.be-fd .about-pge-content {
    padding: 60px 80px;
}
.be-fd .about-two img{
	width: 100%;
}


.be-fd .about-pge-list li img {
    height: 40px;
    /* width: 45px; */
    object-fit: cover;
}
.be-fd .about-pge-list li {
    display: flex;
    align-items: center;
	padding-left: 0;
    gap: 30px;
	margin-bottom: 20px;
}
.be-fd .about-pge-list li p{
 margin-bottom: 0;
 padding-bottom: 0;
}
.be-fd .about-two.two {
    height: 100%;
}
.be-fd .about-pge-image{
	height: 100%;
}
.be-fd .about-pge-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    max-height: 860px;
}
section.ourbenefits.be-fd {
    padding-top: 0;
}
.be-fd .p1 .about-pge-content-wrapper::before {
    background-color: transparent;
}
.be-fd .p1 .about-pge-content-wrapper {
    background-color: #389fa5;
}
.be-fd .p1 .about-pge-content-wrapper h2, .be-fd .p1 .about-pge-content-wrapper h3, .be-fd .p1 .about-pge-content-wrapper p{
    color: #fff;
}
.be-fd .p2 .about-pge-content-wrapper::before {
    background-color: transparent;
}
/*.be-fd .p2 .about-pge-content-wrapper {*/
/*    background-color: #d75c4c;*/
/*}*/
.be-fd .p2 .about-pge-content-wrapper h2, .be-fd .p2 .about-pge-content-wrapper h3, .be-fd .p2 .about-pge-content-wrapper p{
    color: #fff;
}
.dropdown-menu{
	text-align: initial;
}

.be-fd .p3 .about-pge-content-wrapper::before {
    background-color: transparent;
}
.be-fd .p3 .about-pge-content-wrapper {
    background-color: #27397a;
}
.be-fd .p3 .about-pge-content-wrapper h2, .be-fd .p3 .about-pge-content-wrapper h3, .be-fd .p3 .about-pge-content-wrapper p{
    color: #fff;
}



.qwewq ul.list-unstyled.about-pge-list {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
	margin-top: 0;
}
.qwewq ul.list-unstyled.about-pge-list img {
    height: 70px;
    margin-bottom: 0px;
}
.qwewq .about-pge-list li span {
    display: block;
    font-weight: 600;
}
.qwewq .about-pge-list li{
	padding-left: 0;
	text-align: center;
	flex: 1;
}
.qwewq .about-pge-list li p {
margin-bottom: 0;
padding-bottom: 0;
}
.course-details__content.text-left {
    text-align: left;
}
.timeline {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-top: 54px;
}

.timeline-item {
    min-width: 200px;
    position: relative;
    margin-right: 20px;
    text-align: center;
    flex: 1;
}

  /* Line through the center horizontally */
  .timeline::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 4px;
	background-color: #389fa5;
	top: 0%;
	left: 0;
	z-index: 1;
  }

  /* Dot and timeline item placement */
  .timeline-item::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 46px;
    border-radius: 0;
    background-color: #389fa5;
    top: -28px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

  .timeline-content {
	padding-top: 20px;
	position: relative;
	z-index: 3;
  }

  .timeline-time {
	font-weight: bold;
  }

  .timeline-content h5 {
    margin: 0;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 23px;
    font-weight: bold;
    color: #244048;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
}
  section.schedule {
    padding: 60px 0px;
}
.sdfq {
    margin: 0;
    text-transform: uppercase;
    color: var(--thm-black);
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
}
.bg-w{
	background-color: #deeef3;
}
.contactq-content h3 {
    font-size: 36px;
}









.social-icons-contac.mes {
    margin-top: 30px;
}
footer.bg-dark.text-light .d-flex {
    position: relative;
    z-index: 99;
}
.card.tr-d {
    padding: 50px;
    border-radius: 2px;
    /* margin-bottom: 100px; */
    box-shadow: 0 10px 30px #0000000d;
    transition: all 500ms ease;
}
section.book-s {
    padding: 100px 0px;
    background: var(--thm-primary);
}
#heading {
	text-transform: uppercase;
	color: #389fa5;
	font-weight: normal;
}

#msform {
	/* text-align: center; */
	position: relative;
	margin-top: 20px;
}
#msform #progressbar{
text-align: center;
}
#msform fieldset {
	background: white;
	border: 0 none;
	border-radius: 0.5rem;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding-bottom: 20px;
	position: relative;
}

/* .form-card {
	text-align: left;
} */

#msform fieldset:not(:first-of-type) {
	display: none;
}

#msform input,
#msform textarea {
	padding: 8px 15px;
	border: 1px solid #ccc;
	border-radius: 0;
	margin-bottom: 25px;
	margin-top: 2px;
	width: 100%;
	box-sizing: border-box;
	color: #2C3E50;
	background-color: #ECEFF1;
	font-size: 16px;
	letter-spacing: 1px;
}

#msform input:focus,
#msform textarea:focus {
	box-shadow: none !important;
	border: 1px solid #389fa5;
	outline-width: 0;
}

#msform .action-button {
    width: 100px;
    /* background: #389fa5; */
    background-color: var(--thm-primary) !important;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right;
	color: var(--thm-black) !important;
}
#msform .action-button {
    padding: 18px 0px;
}
#msform .action-button:hover,
#msform .action-button:focus {
	background-color: #311B92;
}

#msform .action-button-previous {
    width: 100px;
    background: #ddd5cc !important;
    font-weight: bold;
    color: var(--thm-black) !important;
    border: 0 none;
    border-radius: 0;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
	background-color: #000000;
}
input.form-check-input {
    width: 30px !important;
    height: 30px !important;
    margin-right: 20px;
    color: #000;
}
.card {
	z-index: 0;
	border: none;
	position: relative;
}

.fs-title {
	font-size: 25px;
	color: #389fa5;
	margin-bottom: 15px;
	font-weight: normal;
	text-align: left;
}

.purple-text {
	color: #389fa5;
	font-weight: normal;
}

.steps {
    font-size: 23px;
    color: var(--thm-black);
    margin-bottom: 0px;
    font-weight: normal;
    text-align: right;
}

.fieldlabels {
	color: gray;
	text-align: left;
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
    display: flex;
}
#progressbar .active {
	color: #389fa5;
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    /* width: 16.66%; */
    /* float: left; */
    position: relative;
    font-weight: 400;
    flex: 1;
}

#progressbar li:before {
	width: 50px;
	height: 50px;
	line-height: 45px;
	display: block;
	font-size: 20px;
	color: #ffffff;
	background: lightgray;
	border-radius: 50%;
	margin: 0 auto 10px auto;
	padding: 2px;
}

#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: lightgray;
	position: absolute;
	left: 0;
	top: 25px;
	z-index: -1;
}

#progressbar li.active:before,
#progressbar li.active:after {
	background: #389fa5;
}

#progressbar li#student-info:before {
	font-family: FontAwesome;
	content: "\f007"; /* User icon */
}

#progressbar li#contact-details:before {
	font-family: FontAwesome;
	content: "\f0e0"; /* Envelope icon */
}

#progressbar li#course-info:before {
	font-family: FontAwesome;
	content: "\f1e6"; /* Calendar icon */
}

#progressbar li#diver-level:before {
	font-family: FontAwesome;
	content: "\f007"; /* Diver icon */
}

#progressbar li#equipment-sizes:before {
	font-family: FontAwesome;
	content: "\f2c0"; /* Box icon */
}

#progressbar li#accept-terms:before {
	font-family: FontAwesome;
	content: "\f00c"; /* Checkmark icon */
}

.progress {
	height: 20px;
}

.progress-bar {
	background-color: #389fa5;
}

.fit-image {
	width: 100%;
	object-fit: cover;
}
.card.tr-d textarea, .card.tr-d select, .card.tr-d input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
    display: block;
    width: 100%;
    height: 60px;
    background-color: var(--thm-gray) !important;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 18px;
    color: #244048;
    border: none !important;
    outline: none;
    margin-bottom: 30px;
}

input.sdfwty {
    display: inline-block;
    width: initial !important;
}
.card.tr-d ::placeholder{
	color: var(--thm-black);
}

.container.dfwq {
    padding-bottom: 150px;
}





.mmsform {
	/* text-align: center; */
	position: relative;
	margin-top: 20px;
}
.mmsform #progressbar{
text-align: center;
}
.mmsform fieldset {
	background: white;
	border: 0 none;
	border-radius: 0.5rem;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding-bottom: 20px;
	position: relative;
}

/* .form-card {
	text-align: left;
} */

.mmsform fieldset:not(:first-of-type) {
	display: none;
}

.mmsform input,
.mmsform textarea {
	padding: 8px 15px;
	border: 1px solid #ccc;
	border-radius: 0;
	margin-bottom: 25px;
	margin-top: 2px;
	width: 100%;
	box-sizing: border-box;
	color: #2C3E50;
	background-color: #ECEFF1;
	font-size: 16px;
	letter-spacing: 1px;
}

.mmsform input:focus,
.mmsform textarea:focus {
	box-shadow: none !important;
	border: 1px solid #389fa5;
	outline-width: 0;
}

.mmsform .action-button {
    width: 100px;
    /* background: #389fa5; */
    background-color: var(--thm-primary) !important;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right;
	color: var(--thm-black) !important;
}
.mmsform .action-button {
    padding: 18px 0px;
}
.mmsform .action-button:hover,
.mmsform .action-button:focus {
	background-color: #311B92;
}

.mmsform .action-button-previous {
    width: 100px;
    background: #ddd5cc !important;
    font-weight: bold;
    color: var(--thm-black) !important;
    border: 0 none;
    border-radius: 0;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right;
}

.mmsform .action-button-previous:hover,
.mmsform .action-button-previous:focus {
	background-color: #000000;
}






.accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe;
    outline: 0;
    border: 0px solid;
    box-shadow: initial !important;
    outline: none;
}
button.accordion-button {
    background: linear-gradient(to bottom, #4c9ea1, #2e6475) !important;
    color: #fff !important;
    margin: 0;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 500;
    color: #389fa5;
    margin-bottom: 0px;
    padding-right: 40px;
}
section.faq-travel-saudi-arabia button.accordion-button {
	text-transform: initial;
    min-height: 115px;
}
.faq-diving-questions button.accordion-button {
	text-transform: initial;
    min-height: 115px;
}
.faq-women-travel button.accordion-button {
    min-height: 115px;
	text-transform: initial;
}

.accordion-item {
    margin-bottom: 20px;
}
.accordion-body {
    border: 1px solid;
}
.accordion-button {
    position: relative;
}
.accordion-item{
	border: 0px solid rgba(0, 0, 0, .125);
}
.accordion-button::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107"; /* down arrow */
    position: absolute;
    right: 1rem;
}

.accordion-button:not(.collapsed)::after {
    content: "\f106"; /* up arrow */
}
.accordion-button:not(.collapsed)::after {
    background-image: none !important;
}









.wq-events-meta-group {
	background: #f9f9f9;
	border-radius: 8px;
	/* padding: 20px; */
	/* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}
.event-ticket-wq {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	padding: 15px;
	transition: box-shadow 0.3s;
}
.event-ticket-wq:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.wq-svg-icon {
	width: 50px;
	height: 50px;
}
.event-ticket-wq-name {
	font-size: 1.25rem;
	font-weight: bold;
	margin: 0;
}
.event-ticket-wq-price {
	font-size: 1rem;
	color: #888;
	margin-top: 5px;
}
.input-group {
	max-width: 120px;
	margin-left: auto;
}
button.btn.btn-outline-secondary {
    background: #389fa5;
    border: 0px;
    height: 62px;
    font-size: 30px;
    color: #fff;
    max-width: 42px;
    min-width: 42px;
}
.btn-outline-secondary:hover {
	background: #007bff;
	color: white;
}
.event-ticket-wq-available {
	font-size: 0.875rem;
	color: #555;
	margin-top: 10px;
}
.input-group.dfsa input {
    margin-bottom: 0 !important;
}
.input-group.dfsa {
    display: flex;
    flex-wrap: nowrap;
    min-width: 160px !important;
}

.sasw input {
    margin-bottom: 0px !important;
}
.bs-a {
    position: relative;
    z-index: 9;
    margin-top: 32px;
}
.bs-a a {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.bs-a a:hover {
    background: var(--thm-primary);
    border: 2px solid var(--thm-primary);
    color: var(--thm-black);
}


section.faq-women-travel {
    padding-top: 60px;
    padding-bottom: 60px;
}

section.faq-diving-questions {
    padding-top: 60px;
    padding-bottom: 60px;
}
h3.faq-title.sdfq {
    text-align: left;
}
section.faq-travel-saudi-arabia {
    background: #deeef3;
    padding-top: 100px;
    padding-bottom: 100px;
}


section.blog-details {
    margin-top: 50px;
}




@media(min-width: 991px){

.dropdown-menu {
	display: none; /* Hide dropdown by default */
	position: absolute; /* Position the dropdown */
	top: 100%; /* Align the nested dropdown right below the parent */
	left: 0;
	min-width: 180px; /* Optional: Set a minimum width for nested dropdown */
}

/* Display dropdown on hover for top-level menus */
.nav-item.dropdown:hover > .dropdown-menu {
	display: block; /* Show dropdown on hover for desktop */
}

/* Display nested dropdown on hover */
.dropdown-submenu:hover > .dropdown-menu {
	display: block; /* Show nested dropdown on hover */
}

/* Optional: Offset nested dropdowns to the right */
.dropdown-menu .dropdown-menu {
	left: 100%; /* Position nested dropdowns to the right */
	top: 0; /* Align it with the parent */
	margin-top: -1px; /* Optional: Adjust vertical alignment */
}

/* Optional: Styling for dropdown items */
.dropdown-item:hover {
	background-color: #f8f9fa; /* Light hover effect */
}

}




.services-carousell {
    display: flex;
    gap: 40px;
}
.dropdown-menu {
    background-color: #244048d9;
}
.logo-m img{
	height: 45px;
}
section.course-one__title.otr .course-one__bg {
    background-size: 100%;
    background-position: top;
}

.arrow {
	cursor: pointer; /* Change cursor to pointer for the arrow */
	margin-left: 5px; /* Space between text and arrow */
  }




button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: 0px 0px 0px gray;
}













.lang-dropdown {
	position: relative;
}
	.lang-dropdown {
		position: relative;
		display: inline-block;
	}
	.lang-dropdown-content {
		display: none;
		position: absolute;
		background-color: #f9f9f9;
		min-width: 120px;
		color: #fff !important;
    background: #244048d9;
	}
	.lang-dropdown-content a {
		color: #fff;
		padding: 12px 16px;
		text-decoration: none;
		display: block;
	}

	.lang-dropdown-button .fa {
		margin-left: 8px;
	}
	div#dropdownButton {
		color: #fff;
		font-size: 19px;
		cursor: pointer;
	}
	.lang-dropdown-content a:hover{
		background-color: #fff;
		color: #000;
	}

	div#selectedLanguage {
		display: none;
	}
	.social-icons-contac i {
		color: #244048;
	}

.es-review-author-name {
    font-size: 16px !important;
    color: var(--thm-black) !important;
}



/* Arabic  */

body.arb{
    direction: rtl;
}
body.arb section.cta-two.asa .cta-two__btn-block {
    text-align: left;
}
body.arb .how-dive__box {
    width: 47%;
    position: absolute;
    left: 0;
    bottom: -60px;
    z-index: 15;
    margin-right: auto;
}
body.arb .how-dive__box.sdwe {
    width: 34%;
}

body.arb .how-dive .video-popup{
	right: -60.5px;
	left: auto;
}
body.arb .how-dive__box.sdwe  .video-popup {
    top: 20%;
}

body.arb .pl-100 {
    padding-right: 100px;
}
body.arb .blog-block-meta a+a {
    margin-left: auto;
    margin-right: 40px;
}
body.arb .about-pge-content-wrapper::before {
    left: 0px;
	right: auto;
}
body.arb .about-pge-list-count{
	right: 0;
	left: auto;
}
body.arb .about-pge-list li{
	padding-left: auto;
	padding-right: 60px
}
body.arb .ourbenefits .about-pge-list li {
    padding-left: auto;
    padding-right: 0;
}
body.arb section.ourbenefits.rtyvxcb .about-pge-list li {
    padding-right: 60px;
}
body.arb .contactq-form textarea, body.arb .contactq-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]){
	text-align: right;
}
body.arb h3.faq-title.sdfq {
    text-align: right;
}
body.arb .accordion-button::after {

    left: 1rem;
    right: auto;
}

body.arb .course-details__content.text-left.p-0{
	padding-left: auto !important;
	padding-right: 50px !important;
}
body.arb .course-details__content.text-left {
    text-align: right;
}
body.arb .form-label {
    text-align: right;
    display: block;
    padding: 0px 15px;
}
body.arb .sasw {
    text-align: right;
}
body.arb .form-check .form-check-input{
	float: initial;
}
body.arb .form-check .form-check-input{
	margin-right: initial;
	margin-left: 1.5em;
}
body.arb .sdfv {
    text-align: right !important;
    display: block;
}
body.arb .me-4 {
    margin-left: 1.5rem!important;
	margin-right: initial !important;
}

body.arb .course-details__infos-single p{
	margin-left: 0px;
	margin-right: 10px;
}
body.arb .course-details__infos-single i{
	margin-left: 20px;
	margin-right: 0px;
}
body.arb .creative-fullpage--slider .swiper-container-h .swiper-button-next {
    left: 50px !important;
	right: auto !important;
}
body.arb .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    left: auto !important;
    right: 50px !important;
}
body.arb .swiper-container-h .swiper-button-next::after {
    content: "\f060";
}
body.arb .swiper-container-h .swiper-button-prev::after {
    content: "\f061";
}
body.arb .swiper-content {
    width: 70%;
}
body.arb .course-details__content {
    text-align: right;
}
 body.arb section.how-dive.ewrz .how-dive__content {
    margin-top: 65px !important;
}

 body.arb .accordion-button{
    text-align: right;
}
/*
.row.p2 {
    flex-flow: row-reverse;
} */

/* .qwewq ul.list-unstyled.about-pge-list img {
    filter: invert(1);
} */

body.arb .swiper-slide .slider-inner .swiper-content .title-area .title{
    font-family: var(--arb-font);
}


@media (min-width: 991px) {
     body.arb .dropdown-menu .dropdown-menu {
        right: 100%;
        left: auto;
        top: 0;
        margin-top: -1px;
    }
}

.course-sngle-img-i>img {
    object-fit: cover;
    max-height: 315px;
        min-height: 315px;
    object-fit: cover;

}
.blog-block-img-inner>img {
    max-height: 300px;
    min-height: 300px;
    object-fit: cover;
}






.po-re {
    width: 100%;
}


/* in dev file */

.row.p2 {
    flex-flow: row-reverse;
}
.qwewq ul.list-unstyled.about-pge-list img {
    filter: invert(1);
}


section#services {
    position: relative;
}
















/* for shop pages  */


.shop-page .course-one__book-link {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
    width: 100%;
    background-color: var(--thm-primary);
    color: var(--thm-black);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transform-origin: initial;
    transform-origin: initial;
    -webkit-transform-style: initial;
    transform-style: initial;
    -webkit-transform: initial;
    transform: initial;
    -webkit-transition: initial;
    transition: initial;
}

/*.shop-page .course-one__content::after{*/
/*	content: initial*/
/*}*/
/*.shop-page .course-sngle:hover .course-sngle-img {*/
/*    -webkit-transform: initial;*/
/*    transform: initial;*/
/*}*/
/*.shop-page .course-sngle:hover .course-sngle-img-i>img {*/
/*    opacity: 1;*/
/*    -webkit-transform: scale(1.05);*/
/*    transform: initial;*/
/*}*/
/*.shop-page .course-sngle:hover .hvr-sweep-to-bottom::before {*/
/*    -webkit-transform: initial;*/
/*    transform: initial;*/
/*}*/
/*.shop-page .course-sngle:hover {*/
/*    -webkit-transform: initial;*/
/*    transform: initial;*/
/*}*/

section#services.shop-page  {
padding-bottom: 90px;
}
.shop-page .course-sngle {
    box-shadow: 0px 5px 10px #00000017;
    margin-bottom: 40px;
    padding: 10px 10px;
    overflow: hidden;
}

section.course-details.two.pt-100{
	padding-top: 100px !important;
}
.left-algn{
	text-align: left;
	padding-top: 0;
}
.course-sngle {
    box-shadow: 0 0 0 0 rgba(64, 224, 208, 0.4);
    transition: transform 0.3s ease-out;
    background: linear-gradient(to bottom, #4c9ea1, #2e6475);
    color: #fff;
}






  .gallery {
	width: 100%;
	max-width: 620px;
	/* margin: 40px auto; */
  }
  .gallery-slider {
	width: 100%;
	height: auto;
	margin: 0 0 10px 0;
  }
  .gallery-slider .swiper-slide {
	width: auto;
	/*height: 400px;*/
  }
  .gallery-slider .swiper-slide img {
	display: block;
	width: auto;
	height: 100%;
	margin: 0 auto;
	width: 100%;
  }
  .gallery-thumbs {
	width: 100%;
	padding: 0;
	overflow: hidden;
  }
  .gallery-thumbs .swiper-slide {
	width: 100px;
	height: 100px;
	text-align: center;
	overflow: hidden;
	opacity: 0.4;
  }
  .gallery-thumbs .swiper-slide-active {
	opacity: 1;
  }
  .gallery-thumbs .swiper-slide img {
	width: auto;
	height: 100%;
  }

.course-details__content h3 {
    font-size: 36px;
}
section.course-details.two.pt-100 .gallery{
margin-top: 0;
}
.gallery .swiper-button-next, .gallery .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
    filter: grayscale(1);
    height: 22px;
}
.gallery .swiper-button-prev, .gallery .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
    filter: grayscale(1);
    height: 22px;
}
.course-details__content.left-algn {
    padding-left: 30px;
}


.gfw{
	margin-top: 40px !important;
}
.variations {
    margin-top: 30px;
    border-top: 1px solid #00000017;
    padding-top: 25px;
    border-bottom: 1px solid #00000017;
    margin-bottom: 30px;
}
.variations select {
    display: inline-block;
    width: 45%;
    height: 50px;
    background-color: var(--thm-gray) !important;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
    color: #244048;
    border: none !important;
    outline: none;
    margin-bottom: 30px;
}
.variations {
    display: flex;
    gap: 30px;
}

input.action-button.btn.btn-success.sdf {
    width: 100% !important;
}

.cta-one__phone {
    word-wrap: break-word;
}

#services.shop-page .course-one__content::after {
display:none;
}
.course-one__content.hvr-sweep-to-bottom {
    min-height: 200px !important;
}
.shop-page .course-sngle-img-i>img {
    height: 320px;
    object-fit: cover;

}
/*.course-one__content.hvr-sweep-to-bottom {*/
/*    border-top: 1px solid #00000008;*/
/*}*/
.gallery {
    box-shadow: 0 7px 30px #0000000d;
    border-radius: 5px;
}

.variations label {
    margin-top: 9px;
}
.services-home .course-one__content.hvr-sweep-to-bottom {
    min-height: 210px !important;
}
.accordion-button:not(.collapsed)::after {
    transform: rotate(0deg) ;
}
div#faqAccordion3 {
    display: flex;
    flex-wrap: wrap;
}
div#faqAccordion3 .accordion-item {
    padding: 0px 7px;
}

div#faqAccordion4 {
    display: flex;
    flex-wrap: wrap;
}
div#faqAccordion4 .accordion-item {
    padding: 0px 7px;
}

div#faqAccordion5 {
    display: flex;
    flex-wrap: wrap;
}
div#faqAccordion5 .accordion-item {
    padding: 0px 7px;
}
.accordion-item {
    box-shadow: 0 2px 10px rgb(17 77 80 / 65%) !important;
    padding: 0px !important;
    margin: 18px;
    border-radius: 15px;
    overflow: hidden;
}
#services.shop-page .course-one__content.hvr-sweep-to-bottom {
    min-height: 200px !important;
}
#services.shop-page.catepage .course-one__content.hvr-sweep-to-bottom {
    min-height: 135px !important;
}

#progressbar li#trip-type:before {
    font-family: FontAwesome;
    content: "\f0eb";
}

#progressbar li#ticket-options:before {
    font-family: FontAwesome;
    content: "\f0b2";
}

#progressbar li#equipment-options:before {
    font-family: FontAwesome;
    content: "\f0c5";
}

#progressbar li#payment-info:before {
    font-family: FontAwesome;
    content: "\f09d";
}
#equipmentTypes .form-check .form-check-input {
    float: initial;
    margin-left: initial;
}
#equipmentTypes .form-check {
     display: flex;
}










.creative-fullpage--slider {
	width: 100%;
	height: 100vh;
	position: relative;
}

.slider-inner {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.slider-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 15s ease;
}

.swiper-slide-active .slider-inner img {
	transform: scale(1.15);
}

.swiper-content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, 100px);
	opacity: 0;
	visibility: hidden;
	transition: none;
	z-index: 99;
}

.swiper-content.animate-content {
	transform: translate(-50%, -50%);
	opacity: 1;
	visibility: visible;
	transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition-delay: 0.0s;
}
.swiper-button-next, .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,50%);
    /*transform: translateY(-50%);*/
}
.title-area {
	width: 100%;
	text-align: center;
}





.creative-fullpage--slider .swiper-slide .slider-inner::after {
    content: "";
    position: absolute;
    width: 101%;
    height: 100%;
    top: 0;
    left: -1px;
    background: #00000057;
    left: 0;
    right: 0;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-next {
    right: 50px;
}
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    left: 50px;
}
.swiper-container-h .swiper-button-prev::after {
    content: "\f053";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    background: none;
    color: #ffffff;
    font-size: 40px;
}
.swiper-container-h .swiper-button-next::after {
    content: "\f054";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    background: none;
    color: #ffffff;
    font-size: 40px;
}
.swiper-slide .slider-inner .swiper-content .title-area .title {
    margin-top: 50px;
    color: #fff;
    font-size: 5vw;
    font-family: "Myriad Variable Concept";
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 50px;
    margin-left: -12px;
    text-decoration: none;
	position: relative;
	z-index: 99;
}
.slider-pagination-area {
    display: none;
}
.contact-form-contac.contactq-form .iti__selected-dial-code {
    color: #fff;
}

.arb * {
    letter-spacing: initial;
}
.arb p.arbcur {
    direction: initial;
}
.arb span.arbcur {
    direction: initial;
    display: inline-block;
}
span#dateRange {
    direction: initial;
}
.arb h2.fs-title {
    text-align: right;
}
.arb .course-p-uinfo {
    text-align: right;
}

.arb .cta-one__phone a {
    direction: ltr;
}
.arb .information-contac p {
    font-family: var(--arb-font);
}
.arb p.reqh {
    direction: ltr;
}
.arb .event-ticket-wq-price.drsd {
    display: flex;
}
.arb span.arbcurq {
    display: inline-block;
    direction: ltr;
}
.arb .iti__country-list {
    left: 0;
}
.arb span.price.arbcurmn {
    display: inline-block;
    direction: initial;
}
.arb .thPhone {
    direction: ltr;
}

.arb .thPhonemain {
    direction: rtl;
    display: inline-table;
}
 
 
 
 
 
 
 
 
 img.border-sam {
    border-radius: 5px;
}
 
 
 
 
 
 
 
 
 
 
 .service-sldi {
    position: relative;
}
 
 
 .services-section{
     padding: 60px 0px;
 }
 
  .courses-grid h2.section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            position: relative;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
      .courses-grid h2.section-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
            z-index: 10;
        }
        .course-card a.cta-secondary {
    display: block;
    text-align: center;
    padding: 10px 32px;
}
        .course-card {
            position: relative;
            height: 415px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 0 0 0 rgba(76, 158, 161, 0.4);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: linear-gradient(to bottom, #4c9ea1, #2e6475);
            color: #fff;
        }
        
        .course-card:hover {
            transform: translateY(-10px) scale(1.01);
            animation: ripple 3s ease-out infinite;
        }
        
        /* Keyframe animation for ripple effect */
      
        
        .card-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: 1;
            opacity: 0.4;
            transition: opacity 0.3s ease;
        }
        
        .course-card:hover .card-background {
            opacity: 0.6;
        }
        
        .card-background:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgb(68 144 150 / 58%), rgb(0 5 6));
            z-index: 2;
        }
        
       .course-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 70px;
    height: 70px;
    padding: 13px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
        
        .course-card:hover .course-icon {
            transform: scale(1.1);
            background-color: rgba(255,255,255,0.3);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        
        .course-icon i {
            color: var(--text-light);
            font-size: 24px;
            transition: all 0.3s ease;
        }
        
        .course-card:hover .course-icon i {
            color: #fff;
            text-shadow: 0 0 10px rgba(255,255,255,0.8);
        }
    
        .course-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-light);
            margin-top: 30px;
            text-align: center;
            letter-spacing: 0.5px;
            position: relative;
            padding-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .course-card:hover .course-title {
            transform: translateY(-5px);
        }
        
       .course-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background-color: #389fa5;
    transition: width 0.3s ease;
}
        
        .course-card:hover .course-title:after {
            width: 60px;
        }
        
        .course-description {
            color: rgba(255,255,255,0.9);
            margin: 15px 0;
            text-align: center;
            transition: all 0.3s ease;
            transform: translateY(0);
            opacity: 0.8;
        }
        
        .course-card:hover .course-description {
            transform: translateY(-5px);
            opacity: 1;
        }
        
        .learn-more-btn {
            display: block;
            width: 80%;
            /*max-width: 200px;*/
            margin: 20px auto 0;
            padding: 12px 20px;
            background: linear-gradient(90deg, #4c9ea1, #2e6475);
            color: var(--text-light);
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            border-radius: 30px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            z-index: 4;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            opacity: 0.9;
            transform: translateY(0);
        }
        
        .learn-more-btn:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            transform: scale(0);
            opacity: 0;
            transition: transform 0.5s ease, opacity 0.5s ease;
            z-index: -1;
        }
        .com-card{
            position: relative;
        }
        .com-card:hover .cta-primary {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(76, 158, 161, 0.4);
    color: #fff;
}
        
        .com-card:hover .cta-primary::before {
    left: 100%;
    transition: left 0.7s;
}
        
      
            .com-card:hover .cta-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: #fff;
}
        
     
        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            transform: scale(0);
            animation: ripple-expand 3s cubic-bezier(0.215, 0.61, 0.355, 1);
            pointer-events: none;
            z-index: 3;
        }
        
        @keyframes ripple-expand {
            to {
                transform: scale(2);
                opacity: 0;
            }
        }
        
        /* Icon animations */
        .course-card:hover .swimmer-icon {
            animation: swim 3s infinite ease-in-out;
        }
        
        @keyframes swim {
            0% { transform: translateX(0) rotate(0deg); }
            25% { transform: translateX(8px) rotate(5deg); }
            50% { transform: translateX(15px) rotate(0deg); }
            75% { transform: translateX(8px) rotate(-5deg); }
            100% { transform: translateX(0) rotate(0deg); }
        }
        
        .course-card:hover .scuba-icon {
            animation: bubble 3s infinite ease-in-out;
        }
        
        @keyframes bubble {
            0% { transform: translateY(0); }
            25% { transform: translateY(-5px) scale(1.05); }
            50% { transform: translateY(-10px) scale(1.1); }
            75% { transform: translateY(-5px) scale(1.05); }
            100% { transform: translateY(0) scale(1); }
        }
        
        .course-card:hover .dolphin-icon {
            animation: dolphin-swim 4s infinite ease-in-out;
        }
        
        @keyframes dolphin-swim {
            0% { transform: translate(0, 0) rotate(0deg); }
            20% { transform: translate(10px, -5px) rotate(10deg); }
            40% { transform: translate(20px, 0) rotate(0deg); }
            60% { transform: translate(10px, 5px) rotate(-10deg); }
            80% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(0, 0) rotate(0deg); }
        }
        
        .course-card:hover .bubble-icon {
            animation: float-bubbles 4s infinite ease-in-out;
        }
        
        @keyframes float-bubbles {
            0% { transform: translateY(0) scale(1); opacity: 1; }
            50% { transform: translateY(-20px) scale(1.15); opacity: 0.8; }
            100% { transform: translateY(0) scale(1); opacity: 1; }
        }
        
        .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    z-index: 3;
    transition: all 0.5s ease;
    height: 330px;
}
        
        
        
        /* Responsive design */
        @media (max-width: 992px) {
            .courses-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .course-title {
                font-size: 20px;
            }
            
            .course-description {
                font-size: 14px;
            }
            
            .learn-more-btn {
                font-size: 16px;
            }
        }
        
        @media (max-width: 576px) {
            .courses-grid {
                grid-template-columns: 1fr;
            }
       
            
            .courses-grid h2.section-title {
                font-size: 28px;
                margin-bottom: 30px;
            }
        }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/*.svg-container {*/
/*    align-content: end;*/
/*    display: grid;*/
/*    height: 100svh;*/
/*    position: relative;*/
/*    width: 100%;*/
/*}*/
.svg-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 370px;
    z-index:1;
}
.svg-container svg {
    display: block;
    grid-area: 1/-1;
    height: 100%;
    min-width: 100%;
    position: relative;
    width: 100%;
}

.wave {
    animation: waveMove 14s ease-in-out infinite, waveFill 24s linear infinite;
    fill: #389fa5;
    opacity: .5;
    transform-origin: center bottom;
    will-change: transform, fill;
}

.wave-1 {
    --ty: 0;
    animation-duration: 7s, 24s;
    animation-name: waveMoveReverse, waveFill;
}

.wave-2 {
    --ty: 2.5%;
    animation-name: waveMove, waveFill;
    width: 300%;
}

.wave-2,
.wave-3 {
    animation-duration: 9s, 24s;
}

.wave-3 {
    --ty: 5%;
    animation-name: waveMoveReverse, waveFill;
}

.wave-4 {
    --ty: 7.5%;
    animation-duration: 7s, 24s;
    animation-name: waveMove, waveFill;
    width: 300%;
}

@keyframes waveMoveReverse {
    0% {
        transform: translate3d(-50%, var(--ty), 0);
    }

    50% {
        transform: translate3d(0, var(--ty), 0);
    }

    100% {
        transform: translate3d(-50%, var(--ty), 0);
    }
}

@keyframes waveMove {
    0% {
        transform: translate3d(0, var(--ty), 0);
    }

    50% {
        transform: translate3d(-50%, var(--ty), 0);
    }

    100% {
        transform: translate3d(0, var(--ty), 0);
    }
}

/* --- Step 1: Add transitions to the base classes --- */

.cta-two .wave {
   
    opacity: .5;
    transform-origin: center bottom;
    will-change: transform, fill;
    
   
    transition: 
        opacity 0.6s ease,
        animation-duration 0.6s ease;
}

.svg-container svg {
       
    transform-origin: bottom; /* The swell will grow from the bottom up */
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.22, 1); /* A nice bouncy ease */
}


/* --- Step 2: Define the hover effects --- */

/* When hovering the section... */

/* A) Make all waves more visible (this will now fade in smoothly) */
.cta-two:hover .wave {
    opacity: .7;
}

/* B) Speed up each individual wave (this will now accelerate smoothly) */
.cta-two:hover .wave-1,
.cta-two:hover .wave-4 {
    /* Original speed was 7s */
    animation-duration: 4s, 24s;
}

.cta-two:hover .wave-2,
.cta-two:hover .wave-3 {
    /* Original speed was 9s */
    animation-duration: 5s, 24s;
}

/* C) Make the entire set of waves "swell" upwards for a great dynamic feel */
.cta-two:hover .svg-container svg {
    transform: scaleY(1.15); /* Makes the waves 15% taller */
}




.cta-two__btn-block {
    transform: translateY(0px);
    animation: ripple 2s ease-out infinite; /* Infinite to keep the animation running while hovering */
}

.service-sldi {
    box-shadow: 0 0 0 0 rgba(64, 224, 208, 0.4);
    transition: transform 0.3s ease-out;
    background: linear-gradient(to bottom, #4c9ea1, #2e6475);
    color: #fff;
}

.service-sldi:hover {
    transform: translateY(-10px);
    animation: ripple 2s ease-out infinite; /* Infinite to keep the animation running while hovering */
}

/* Keyframe animation for ripple effect */
@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 #389fa5;
    }
    50% {
        box-shadow: 0 0 0 20px rgba(64, 224, 208, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(64, 224, 208, 0);
    }
}








.wave-button {
  position: relative;
  display: inline-block;
  padding: 10px 30px;

  color: white;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  background: linear-gradient(to bottom, #4c9ea1, #2e6475);
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(76, 158, 161, 0.5);
}

.wave-button::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 20%, transparent 70%);
  /*animation: wave-motion 4s ease-in-out infinite;*/
  opacity: 0.6;
  z-index: -1;
}

.wave-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(76, 158, 161, 0.9);
  color: #fff;
}

@keyframes wave-motion {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30%) translateX(-10%) rotate(2deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}
a.wave-button {
    margin-top: 20px;
}








.wave-button-main {
    position: relative;
    display: inline-block;
    padding: 14px 40px;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    background: linear-gradient(90deg, #4c9ea1, #2e6475);
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(76, 158, 161, 0.5);
    /* border: 1px solid #ffffff; */
    border-radius: 40px;
    font-weight: 500;
}
.wave-button-main::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 20%, transparent 70%);
  /*animation: wave-motion 4s ease-in-out infinite;*/
  opacity: 0.6;
  z-index: -1;
}

.wave-button-main:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(76, 158, 161, 0.9);
  color: #fff;
}














/* Diver icon animation */
.service-sldi:hover .iconwebq {
  animation: diverMove 2s ease-in-out infinite alternate;
}

@keyframes diverMove {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Optional: Bubbles animation if bubbles are added later */
@keyframes bubblesRise {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(-20px);
  }
}







.service-sldi {
    overflow: hidden;
}


  /* Water particles */
        .water-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        .particle {
            position: absolute;
            background: white;
            border-radius: 50%;
            opacity: 0;
            pointer-events: none;
            animation: particleAnimation 6s linear infinite;
        }

        @keyframes particleAnimation {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
            }
            90% {
                opacity: 0.5;
            }
            100% {
                transform: translateY(-100vh) translateX(20px);
                opacity: 0;
            }
        }
        
        
        
  
        .svg-container {
    opacity: 0.7;
}
        
        
 .section-twm.svg-container {
    height: 500px !important;
}
 .section-twm.svg-container svg {
    opacity: 0.6;
}
.mr-auto {
    margin: auto;
    text-align: center;
}
















section.service-one.darkbg {
    background: linear-gradient(to bottom, #245860, #246970);
    overflow: hidden;
}
section.service-one.darkbg .block-title p{
    color: #fff
}
section.service-one.darkbg .block-title h3{
    color: #fff
}
section.service-one.darkbg .p.subheadding{
    color: #fff
}
section.service-one.darkbg .service-sldi{
    background: #fff;
}
section.service-one.darkbg .service-sldi p{
    color: initial;
}
section.service-one.darkbg .service-sldi h3{
        color: initial;
}
section.service-one.darkbg .contactq-swimmer {
    max-width: 200px;
    opacity: 0.2;
}
section.service-one.darkbg img.site-footer__fish-3 {
    width: 58px;
    opacity: 0.2;
}
section.service-one.darkbg .service-sldi img {
    height: auto;
    width: 100% !important; 
}
section.service-one.darkbg .svg-container {
    height: 600px;
    opacity: 0.6;
}

.testimonials-one__carousel-wrapper .svg-container {
    height: 700px;
    opacity: 1;
}





 .swiper-slide.elfsight-ripple-container-2025 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Ripple effect styles */
 .swiper-slide.elfsight-ripple-container-2025 .elfsight-ripple-wave-2025 {
  position: absolute;
  background: #389fa5; /* Specified ripple color */
  border-radius: 50%;
  transform: scale(0);
  animation: elfsight-ripple-2025 0.6s linear;
  pointer-events: none;
  opacity: 0.5; /* Semi-transparent for visibility */
}

@keyframes elfsight-ripple-2025 {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.newcard-ripple {
    z-index: 99;
    position: relative;
}























/* Hero Section Container */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-image: url(https://media.istockphoto.com/id/1371714013/vector/seamless-flawing-background.jpg?s=2048x2048&w=is&k=20&c=ej_aL7LioTk2LRzX8V5XJ8jArdNn_zbR1k2VycZrCQ4=);
}

/* Improved Fingerprint Pattern Overlay */
.fingerprint-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="none" stroke="white" stroke-width="0.4" opacity="0.2"><path d="M50 30c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm0 5c-8.3 0-15 6.7-15 15s6.7 15 15 15 15-6.7 15-15-6.7-15-15-15zm0 5c-5.5 0-10 4.5-10 10s4.5 10 10 10 10-4.5 10-10-4.5-10-10-10zm0 5c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5z"/></g></svg>');
    background-size: 100px 100px;
    z-index: 4;
    opacity: 0;
    animation: fadeInFingerprint 2s forwards 1s;
}

@keyframes fadeInFingerprint {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.3;
    }
}

/* Enhanced Content Container */
.content-container {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px; /* 2rem */
    text-align: center;
    margin-top: 40px;
}

/* Improved Headline with better shadow and font */
.headline {
    font-size: 64px; /* 4rem */
    font-weight: 800;
    color: #fff;
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeInSlideDown 1.5s forwards 0.5s;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    letter-spacing: -0.5px;
    font-family: "Myriad Variable Concept";
}

@keyframes fadeInSlideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Subheadline */
.subheadline {
    font-size: 24px; /* 1.5rem */
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 24px; /* 1.5rem */
    margin-bottom: 40px; /* 2.5rem */
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInSlideUp 1.5s forwards 1s;
    max-width: 700px;
    line-height: 1.5;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Improved CTA Buttons Container */
.cta-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px; /* 1.5rem */
    margin-top: 16px; /* 1rem */
    opacity: 0;
    animation: fadeIn 2s forwards 1.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced Primary CTA Button */
.cta-primary {
    padding: 17.6px 55.2px;
    font-family: var(--thm-font);
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
  background: linear-gradient(135deg, #4c9ea1, #2e6475);
    color: var(--thm-gray);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(36, 64, 72, 0.3);
    transition: box-shadow 0.3s ease, filter 0.3s ease;
    z-index: 9;
}

.cta-primary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.cta-primary::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.cta-primary:hover {
 color: #fff;
}
.cta-primary:hover::before {
    animation: ripple1 0.9s ease-out;
}

.cta-primary:hover::after {
    animation: ripple2 1.1s ease-out 0.2s;
}

@keyframes ripple1 {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    20% {
        width: 80px;
        height: 80px;
        opacity: 0.6;
    }
    50% {
        width: 160px;
        height: 160px;
        opacity: 0.4;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

@keyframes ripple2 {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    20% {
        width: 60px;
        height: 60px;
        opacity: 0.3;
    }
    50% {
        width: 180px;
        height: 180px;
        opacity: 0.2;
    }
    100% {
        width: 340px;
        height: 340px;
        opacity: 0;
    }
}

.cta-secondary {
    padding: 16px 32px;
    font-family: var(--thm-font);
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--thm-gray);
    border-radius: 50px;
    background: transparent;
    color: var(--thm-gray);
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hero-section .cta-secondary:hover {
    background-color: var(--thm-base);
    border-color: var(--thm-base);
}

/* Improved Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.floating-icon {
    position: absolute;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    animation: floatIn 1s forwards, floatAnimation 15s infinite linear;
    transform-origin: center center;
}

.icon-diver {
    background-image: url('https://divingsecrets.com.sa/frontend/images/swimmer-contact-1.png');
    top: 15%;
    left: 10%;
    animation-delay: 2s;
}

.icon-coral {
    background-image: url('https://divingsecrets.com.sa/frontend/images/tree-f-1.png');
    bottom: 1%;
    left: 9%;
    animation-delay: 2.5s;
    opacity: 1 !important;
}

.icon-fish {
    background-image: url('https://divingsecrets.com.sa/frontend/images/fish-service-2.png');
    top: 60%;
    right: 20%;
    animation-delay: 3.5s;
    width: 80px !important;
}

.icon-bubble {
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="15" stroke="white" fill="none" stroke-width="1" opacity="0.5"/><circle cx="40" cy="40" r="8" stroke="white" fill="none" stroke-width="1" opacity="0.4"/><circle cx="60" cy="60" r="5" stroke="white" fill="none" stroke-width="1" opacity="0.3"/></svg>');
    animation-delay: 4s;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 0.4;
        transform: scale(1);
    }
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, 15px) rotate(5deg);
    }
    50% {
        transform: translate(5px, 25px) rotate(0deg);
    }
    75% {
        transform: translate(-10px, 15px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Enhanced Fingerprint Scanner Animation */
.fingerprint-scanner {
    position: relative;
    width: 120px !important;
    height: 120px !important;
    min-height: 120px !important;
    margin: 40px auto 0; /* 2.5rem */
    opacity: 0;
    animation: fadeIn 2s forwards 2s, pulse 3s infinite 4s;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 90, 95, 0.4);
    }
    70% {
        transform: scale(1.00);
        box-shadow: 0 0 0 15px rgba(40, 90, 95, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 90, 95, 0);
    }
}

.scanner-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgb(63 133 142);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(40, 90, 95, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.scanner-graphic {
    width: 100px;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="none" stroke="white" stroke-width="2"><path d="M50 20c-16.6 0-30 13.4-30 30s13.4 30 30 30 30-13.4 30-30-13.4-30-30-30zm0 5c-13.8 0-25 11.2-25 25s11.2 25 25 25 25-11.2 25-25-11.2-25-25-25zm0 5c-11 0-20 9-20 20s9 20 20 20 20-9 20-20-9-20-20-20zm0 5c-8.3 0-15 6.7-15 15s6.7 15 15 15 15-6.7 15-15-6.7-15-15-15zm0 5c-5.5 0-10 4.5-10 10s4.5 10 10 10 10-4.5 10-10-4.5-10-10-10zm0 5c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5z"/></g></svg>');
    background-size: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.scanner-line {
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #4c9ea1, transparent);
    top: -100%;
    animation: scanAnimation 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fingerprint-scanner .scanner-line {
    opacity: 1;
}

.fingerprint-scanner:hover .scanner-circle {
    background: rgb(52 118 126);
    box-shadow: 0 0 30px rgba(40, 90, 95, 0.8);
}

.fingerprint-scanner:hover .scanner-graphic {
    opacity: 1;
}

@keyframes scanAnimation {
    0% {
        top: -5%;
    }
    50% {
        top: 105%;
    }
    100% {
        top: -5%;
    }
}

/* Water particles */
.water-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: particleAnimation 6s linear infinite;
}

@keyframes particleAnimation {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

/* Success overlay */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 26, 51, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.success-content {
    max-width: 500px;
    padding: 32px; /* 2rem */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(30px);
    transition: transform 0.5s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px; /* 1.5rem */
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="45" fill="none" stroke="%234c9ea1" stroke-width="5"/><path d="M30,50 L45,65 L70,35" fill="none" stroke="%234c9ea1" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.success-title {
    font-size: 32px; /* 2rem */
    font-weight: 700;
    color: white;
    margin-bottom: 16px; /* 1rem */
}

.success-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17.6px; /* 1.1rem */
    margin-bottom: 32px; /* 2rem */
    line-height: 1.5;
}

.success-btn {
    padding: 12.8px 32px; /* 0.8rem 2rem */
    font-size: 17.6px; /* 1.1rem */
    font-weight: 600;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to bottom, #4c9ea1, #2e6475);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(76, 158, 161, 0.4);
}

/* Improved Responsive Design */
@media screen and (max-width: 992px) {
    .headline {
        font-size: 56px; /* 3.5rem */
    }
}

@media screen and (max-width: 768px) {
    .headline {
        font-size: 44.8px; /* 2.8rem */
    }

    .subheadline {
        font-size: 20.8px; /* 1.3rem */
        margin-top: 16px; /* 1rem */
        margin-bottom: 32px; /* 2rem */
    }

    .floating-icon {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 576px) {
    .headline {
        font-size: 35.2px; /* 2.2rem */
    }

    .subheadline {
        font-size: 17.6px; /* 1.1rem */
        margin-bottom: 24px; /* 1.5rem */
    }

    .cta-container {
        flex-direction: column;
        gap: 16px; /* 1rem */
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        padding: 14.4px 24px; /* 0.9rem 1.5rem */
        font-size: 16px; /* 1rem */
    }

    .fingerprint-scanner {
        width: 120px;
        height: 120px;
        margin-top: 32px; /* 2rem */
    }
}

.wave-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #30787ac4, #193a44);
    z-index: 1;
    left: 0;
    top: 0;
}

.hero-section .svg-container {
    z-index: 1;
    height: 100vh;
}
.row {
    position: relative;
    z-index: 2;
}
.cta-container {
    z-index: 9 !important;
    position: relative;
}

section.services-section.unique {
    overflow: hidden;
}
.about-pge-content {
    z-index: 9;
}





.feature-icon {
    z-index: 99;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(to bottom, #4c9ea1, #2e6475);
    box-shadow: 0 8px 24px rgb(17 77 80);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -12%;
}
.unique .course-card{
    overflow: visible;
}
.unique .courses-grid {
    margin-top: 90px;
}     
.card-background:before{
    border-radius: 15px;
}
        .unique .com-card:hover .feature-icon {
            transform: scale(1.1) translate(-50%);
            z-index: 99;
            background: linear-gradient(to bottom, #4c9ea1, #2e6475);
        }
        .unique .course-card {
    height: 330px;
    border-radius: 15px
        }
        .unique .card-background {
    background: initial !important;
}
.unique .svg-container {
    border-radius: 15px !important;
}
.founder-quote {
    font-size: 18px;
    font-weight: 300;
    max-width: 395px !important;
    line-height: normal;
    color: #ffffff;
    padding: 16px 20px;
    margin: 5px auto;
    max-width: 750px;
    text-align: center;
    border-top: 1px solid #ffffff9e;
    border-bottom: 1px solid #ffffff9e;
    font-weight: 500;
}











        
   .instructor-card {
    box-shadow: 0 0 0 0 rgba(64, 224, 208, 0.4);
    transition: transform 0.3s ease-out;
    background: linear-gradient(to bottom, #4c9ea1, #2e6475);
    color: #fff;
    padding: 30px 20px;
    z-index: 1;
    padding-top: 20px;
    margin-bottom: 30px;
    border-radius: 7px;
    height: 100%;
}
        
    
        
        .instructor-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .instructor-img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255,255,255,0.2);
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        .instructor-card:hover .instructor-img {
            transform: scale(1.08);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
        }
        
        .specialty-badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 14px;
            border-radius: 24px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            font-size: 0.8rem;
            margin-right: 8px;
            margin-bottom: 8px;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            color: #fff;
        }
        
        .specialty-badge:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }
        
        .specialty-badge i {
            margin-right: 6px;
            font-size: 0.9rem;
        }
    
 
        
      
        
      
        
        /* Animation classes */
        .animate-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        .animate-in.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Bio modal */
        .bio-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .bio-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content-custom {
            background: linear-gradient(to bottom, #4c9ea1, #2e6475);
            border-radius: 20px;
            max-width: 800px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
            transform: scale(0.9);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .bio-modal.active .modal-content-custom {
            transform: scale(1);
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            color: white;
            font-size: 1.2rem;
        }
        
        .close-modal:hover {
            background: rgba(255,255,255,0.2);
            transform: rotate(90deg);
        }
        
     
        
        
        .instructor-card{
            text-align: center;
        }

        
        /* Bootstrap overrides */
        .text-white-80 {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .leading-relaxed {
            line-height: 1.625;
        }
        
        .tracking-widest {
            letter-spacing: 0.1em;
        }
        
        .instructor-card h3 {
    font-weight: bold;
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}
button.cta-secondary.sm {
    padding: 10px 40px;
}
button.cta-primary.sm {
    padding: 10px 40px;
}
section.team-section {
    padding-bottom: 60px;
}























        .branches-map {
            position: relative;
            height: 300px;
            margin: 20px 0;
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .branch-bubble {
            position: relative;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            animation: bobble 3s ease-in-out infinite;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .branch-bubble:nth-child(1) {
            animation-delay: 0s;
        }

        .branch-bubble:nth-child(2) {
            animation-delay: 1.5s;
        }

        @keyframes bobble {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-20px) scale(1.02); }
        }

        .branch-bubble:hover {
            transform: scale(1.1) translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
        }

        .branch-bubble.expanded {
            width: 350px;
            height: 400px;
            border-radius: 20px;
            z-index: 10;
            animation: none;
        }

     .branch-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(to bottom, #4c9ea1, #2e6475);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    transition: all 0.3s ease;
}
.branch-icon img{
 height: 50px;   
}
        .branch-name {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .branch-preview {
            font-size: 1rem;
            opacity: 0.8;
        }

        .branch-details {
            display: none;
            padding: 0px;
            text-align: left;
            animation: fadeIn 0.5s ease;
        }

        .expanded .branch-details {
            display: block;
        }

        .expanded .branch-preview {
            display: none;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .branch-address {
            background: rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 10px;
            margin: 15px 0;
            font-size: 0.95rem;
            line-height: 1.5;
            font-weight: 500;
        }

        .branch-button {
            background: linear-gradient(45deg, #00d4aa, #00a8cc);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 15px;
            width: 100%;
            font-size: 1rem;
        }

        .branch-button:hover {
            background: linear-gradient(45deg, #00a8cc, #00d4aa);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: none;
        }

        .expanded .close-btn {
            display: block;
        }
        
        
        
        
        
        
        
        
        
        
        
        section.service-one.missiions {
    background-image: url(../images/water-wave-bg.png);
    background-size: contain;
    background-repeat: repeat;
    background-color: #edf2f5;
}









.bg-darknew {
    background: linear-gradient(to bottom, #245860, #246970) !important;
}
.bg-darknew h3{
color: #fff;
    z-index: 9;
    position: relative;
}
.bg-darknew p {
color: #fff;
    z-index: 9;
    position: relative;
}
.contact-one .social-icons-contac {
    flex-wrap: wrap;
    gap: 15px;
}
.contact-one .social-icons-contac a {
    background: linear-gradient(to bottom, #4c9ea1, #2e6475);
    padding: 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff !important;
}
.contact-one .social-icons-contac a i {
    color: #fff;
}
.shop-page a.cta-primary {
    padding: 14px 10px;
    z-index: 999;
    display: block;
    text-align: center;
    margin-bottom: 15px;
}
p.arbcur {
    color: #fff;
}
p.arbcur .cls-1 {
    fill: #ffffff !important;
}
.course-sngle {
    border-radius: 8px;
}
.xv-d {
    position: relative;
    z-index: 9;
}
.about-pge-content-wrapper.com-card {
    box-shadow: 0 0 0 0 rgba(64, 224, 208, 0.4);
    transition: transform 0.3s ease-out;
    background: linear-gradient(to bottom, #4c9ea1, #2e6475);
    color: #fff;
}
.blog-block-content {
	 text-align: left; 
}
.blog-block-content p{
	 text-align: left; 
}
.branch-details {
    margin: 0px 35px;
}
.branch-details button.cta-primary.sm {
    margin: auto;
    display: block;
}
 