/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
  }

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: none;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #252f6c73;
}

html::-webkit-scrollbar-thumb {
    background-color: #252E6C;
    border-radius: 50rem;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-size: 16px;
    font-family: 'Dosis Medium';
    font-weight: normal;
    color: #000;
}

a,
a:hover,
a:focus {
    color: #ffffff;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}
h1,h2,h3{
    font-family: 'Mainyuk';
    font-weight: normal;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

main {
    overflow: clip;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.container-fluid {
    padding: 0 70px;
}


/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}
.popup .title{
    margin-bottom: 15px;
    font-size: 24px;
    color: #ffffff;
    font-family: 'Mainyuk';
}
.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
    width: 50%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}

.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #15222B;
    transition: all .5s;
    z-index: 9;
}

.popup .popup__content .close:hover {
    background-color: #ffffff;
}

.popup .popup__content .close:hover span {
    background-color: #15222B;
}

.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #ffffff;
}

.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}

.left {
    background-image: url(../img/banner-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right {
    padding: 30px;
    text-align: left;
    background: #0172bd;
}



/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 60px 0;
}

.pb-80 {
    padding-bottom: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}

p {
color: #000;
font-family: 'Dosis Medium';
font-size: 16px;
font-style: normal;
font-weight: normal;
line-height: 175%;
}


.section-title {
color: #262727;
font-size: 50px;
font-style: normal;
font-weight: normal;
line-height: 106%;
}

.card-title{
color: #262727;
font-size: 28px;
font-style: normal;
font-weight: normal;
line-height: 189.286%;
margin-bottom: 6px;
}

.small-line {
    width: 55px;
    height: 2px;
    background: #F7060E;
    display: inline-block;
    margin-left: 6px;
    margin-top: 15px;
    margin-bottom: 6px;
}


.primary-btn {
    color: #FFF;
    font-family: 'Mainyuk';
    font-size: 21px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    text-transform: uppercase;
    padding: 22px 45px;
    border-radius: 80px 60px 80px 50px;
    background: #084B76;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    z-index: 1;
    &:hover{
        background: #E65C00;
        transform: translateY(-4px);
        .btn-arrow{
                right: -8px;
        }
    }
}
.btn-arrow{   
    clip-path: polygon(100% 50%, 100% 50%, 99.367% 58.11%, 97.533% 65.804%, 94.599% 72.978%, 90.664% 79.529%, 85.828% 85.355%, 80.19% 90.353%, 73.85% 94.419%, 66.908% 97.451%, 59.463% 99.346%, 51.615% 100%, 51.615% 100%, 44.151% 99.95%, 37.688% 99.6%, 32.071% 98.65%, 27.141% 96.8%, 22.742% 93.75%, 18.717% 89.2%, 14.911% 82.85%, 11.165% 74.4%, 7.323% 63.55%, 3.229% 50%, 3.229% 50%, 0.402% 36.45%, 0.227% 25.6%, 2.349% 17.15%, 6.412% 10.8%, 12.06% 6.25%, 18.937% 3.2%, 26.687% 1.35%, 34.954% 0.4%, 43.382% 0.05%, 51.615% 0%, 51.615% 0%, 59.463% 0.654%, 66.908% 2.549%, 73.85% 5.581%, 80.19% 9.647%, 85.828% 14.645%, 90.664% 20.471%, 94.599% 27.022%, 97.533% 34.196%, 99.367% 41.89%, 100% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F6D637;
    position: absolute;
    right: -12px;
    width: 43px;
    height: 42px;
    transition: all ease-in-out .5s;
}
.btn-back-shape{
    border-radius: 80px 60px 80px 50px;
    background: #30A0E8;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    position: absolute;
    inset: 0;
    right: -5.2px;
    bottom: -5.5px;
    left: 5px;
    top: 5px;
}
.lession-btn{
    margin-bottom: 30px;
    margin-top: -36px;
    position: relative;
}
.primary-btn:hover {
    color: #ffffff;
    border-color: #252E6C;
}

.primary-btn:focus {
    color: #ffffff;
}


.secondary-btn {
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
    background: #092966;
    border-color: #092966;
}

  
.secondary-btn:hover {
    background: #fff;
    box-shadow: 0px 4px 4px rgb(27 40 56 / 26%);
}

.container {
    max-width: 1400px;
}

.form-control {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 12px 10px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C0C0C0;
    width: 100%;
    border-radius: 4px;
    outline: none;
}
.form-control::placeholder{
    color: #666;
}
textarea{
    font-family: "Inter", sans-serif;
}
.form-control:focus {
    border-color: #E65C00;
}

form .btn-group {
    justify-content: center;
}

form .primary-btn {
    padding: 16px 50px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    border: 0;
    background: #E65C00;
}

form .primary-btn:hover {
    background: #252E6C;
    color: #ffffff;
}

.form-group {
    margin-bottom: 10px;
}

input,
input:focus {
    outline: none;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}

.form-group {
    position: relative;
}

.italic {
    font-style: italic;
}

/* Enable view transitions for navigation */
@media (prefers-reduced-motion: no-preference) {
    @view-transition {
        navigation: auto;
    }
}

::view-transition-group(*) {
    animation-duration: 0.9s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: both;
}

/* OLD PAGE (fade out smoothly) */
::view-transition-old(root) {
    animation: smoothFadeOut 0.9s ease-out forwards;
}

/* NEW PAGE (fade in smoothly) */
::view-transition-new(root) {
    animation: smoothFadeIn 0.9s ease-out forwards;
}

/* ✨ Fade Out */
@keyframes smoothFadeOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
    to {
        opacity: 0;
        transform: scale(0.96) translateY(10px);
        filter: blur(4px);
    }
}

/* ✨ Fade In */
@keyframes smoothFadeIn {
    from {
        opacity: 0;
        transform: scale(1.04) translateY(-10px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}

/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}
.rotate-float {
  animation: floatRotate 3s ease-in-out infinite;
}

@keyframes floatRotate {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

.rotate-float-smooth {
  animation: rotate360 4s linear infinite,
             floatUpDown 2s ease-in-out infinite;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes ring {
  0%   { transform: rotate(0); }
  10%  { transform: rotate(15deg); }
  20%  { transform: rotate(-15deg); }
  30%  { transform: rotate(15deg); }
  40%  { transform: rotate(-15deg); }
  50%  { transform: rotate(0); }
  100% { transform: rotate(0); }
}

/*******************************
	Menu
*******************************/

.header-area {
    position: fixed;
    background-color: rgba(255, 255, 255, 0);
    z-index: 999;
    right: 0;
    left: 0;
}

.flex-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-area.sticky {
    background-image: url('../img/banner-bg.webp');

    box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.07);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 50px;
}

header {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    transition: ease-in-out .4s;

}

.main-menu {
    margin-left: auto;
}

.logo {
    padding-block: 17px;
    position: absolute;
}

nav {
    position: relative;
    margin: 0 auto
}

#menu,
#menu .main-menu ul,
#menu .main-menu ul li,
#menu .main-menu ul li a,
#menu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#menu {
    position: relative;
    display: flex;
    align-items: start;
    gap: 50px;
    .flex-box {
    margin-top: 16px;
}
}

#menu>.main-menu>ul>li {
    float: left;
    padding-inline: 20px;
}

#menu>.main-menu>ul>li>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    padding: 48px 6px;
    display: inline-block;
    color: #0B3A59;
    font-family: 'Mainyuk';
    font-size: 19px;
    font-style: normal;
    line-height: normal;
    text-transform: uppercase;
}

  
#menu>.main-menu>ul>li>a:hover::after,
#menu .main-menu ul li.current-menu-item a::after {
    width: 80%;
}

#menu .main-menu ul li.current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: 28px;
    left: 7px;
    width: 25px;
    height: 1px;
    background: #f7060e00;
}

#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
    color: #E65C00;
}

#menu>.main-menu>ul>li.has-sub>a::before {}

#menu>.main-menu>ul>li:hover,
#menu .main-menu ul li.current-menu-item:hover,
#menu .main-menu ul li.current-menu-item,
#menu .main-menu ul li.has-sub.current-menu-item:hover {
    background: #e9cba400 !important;
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease
}

#menu>.main-menu>ul>li.has-sub>a {}

#menu>.main-menu>ul>li.has-sub>a::before {
    top: 47%;
    right: -8px;
    transition: all .4s;
    content: "";
    position: absolute;
    z-index: 11;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-left: 1px solid;
    transform: translateY(-50%) rotate(225deg);
}

#menu>.main-menu>ul>li.has-sub:hover>a::before,
#menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
    border-top-color: #F7060E;
    border-left-color: #F7060E;
}

/* #menu>.main-menu>ul>li.has-sub:hover>a::before {
    transform: rotate(-316deg);
    top: 36px;
} */

#menu .main-menu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0px 12px 10px 0px #0000004f;
    width: auto;
	background: #d3eeff;
}

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    transition: all .25s ease
}

#menu ul ul li:hover {}

#menu li:hover>ul {
    left: auto
}

#menu li:hover>ul>li {
    height: 40px;
    display: block;
    align-items: center;
}

#menu ul ul ul {
    margin-left: 100%;
    top: 0
}

#menu ul ul li a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 10px 20px;
    width: auto;
    font-size: 18px;
    line-height: 19px;
    text-decoration: none;
    color: #000000;
    font-weight: normal;
    white-space: nowrap;
}

#menu .main-menu ul ul li:last-child>a,
#menu .main-menu ul ul li.last-item>a {
    border-bottom: 0
}

#menu .main-menu ul ul li:hover a,
#menu .main-menu ul ul li:hover {
    color: #fff;
    background: #252E6C;
}

#menu .main-menu ul ul li.has-sub>a:after {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 8px;
    height: 8px;
    display: block;
    content: '';
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
    transition: all .4s;
}


#menu ul ul ul li.active a {
    border-left: 1px solid #333
}

#menu>.main-menu>ul>li.has-sub>ul>li.active>a,
#menu .main-menu>ul ul>li.has-sub>ul>li.active>a {
    border-top: 1px solid #333
}

#menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
}

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}

@media screen and (max-width:992px) {
    header {
        position: relative;
        width: 100%;
        height: 70px;
    }


    #menu .main-menu ul li.current-menu-item ul li a {
        color: #ffffff;
    }

    nav {
        width: 100%
    }

    #menu {
        width: 100%
    }

    #menu ul {
        width: 100%;
        display: none;
    }

    #menu .main-menu {
        width: 100%;
        position: fixed;
        height: 100% !important;
        background-color: rgb(1, 57, 102);
        transform: translateX(-100%);
        transition: all .4s;
        top: 90px;
        left: 0;
    }

    #menu .main-menu.open {
        transform: translateX(0%);

    }

    #menu .main-menu ul li {
        width: 100%;
        border-top: 1px solid #4444442e;
    }

    #menu .main-menu ul li:hover {
        background: #363636
    }

    #menu .main-menu ul ul li,
    #menu li:hover>ul>li {
        height: auto
    }

    #menu .main-menu ul li a,
    #menu .main-menu ul ul li a {
        width: 100%;
        border-bottom: 0;
        color: #ffffff;
    }

    #menu>.main-menu>ul>li {
        float: none
    }

    #menu ul ul li a {
        padding-left: 25px
    }


    #menu ul ul ul li a {
        padding-left: 35px
    }

    #menu ul ul li a {
        color: #ddd;
        background: none
    }

    #menu ul ul li:hover>a,
    #menu ul ul li.active>a {
        color: #fff
    }

    #menu .main-menu ul ul {
        box-shadow: none;
    }

    #menu .main-menu ul ul,
    #menu .main-menu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
        top: 0;
        transform: unset;
        height: auto;
    }

    #menu .main-menu ul ul.open {
        transform: unset;
    }

    #menu>ul>li.has-sub>a:after,
    #menu>ul>li.has-sub>a:before,
    #menu ul ul>li.has-sub>a:after,
    #menu ul ul>li.has-sub>a:before {
        display: none
    }

    #menu #head-mobile {
        display: block;
        padding: 23px;
        color: #ddd;
        font-size: 12px;
        font-weight: 700
    }

    .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: 0;
        top: 12px;
        cursor: pointer;
        z-index: 12399994;
    }

    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #ffffff;
        border-bottom: 2px solid #ffffff;
        content: '';
    }

    .hamburger:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 12px;
        right: 10px;
        display: block;
        height: 2px;
        width: 35px;
        background: #ffffff;
        content: '';
    }

    .hamburger.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 35px;
        background: #ffffff00;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .hamburger.menu-opened:before {
        top: 23px;
        background: #ffffff;
        width: 35px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    #menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 0;
        height: 50px;
        width: 60px;
        cursor: pointer
    }

    /* #menu .submenu-button.submenu-opened {
      background:#1b268600;
  } */

    #menu ul ul .submenu-button {
        height: 34px;
        width: 40px
    }

    #menu .submenu-button:after {
        position: absolute;
        top: 9px;
        right: 22px;
        width: 10px;
        height: 10px;
        display: block;
        content: '';
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        transition: all .4s;
    }

    #menu ul ul .submenu-button:after {
        top: 11px;
        right: 19px;
    }

    #menu ul ul .submenu-button.submenu-opened:after {
        top: 16px;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 15px;
    }


    #menu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #menu .submenu-button.submenu-opened:before {
        display: none
    }

    #menu ul ul ul li.active a {
        border-left: none
    }

    #menu>ul>li.has-sub>ul>li.active>a,
    #menu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }
}

/* Fixed Menu */
.side-bar{
    background: #0271bb;
    box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(15px);
    width: 400px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -400px;
    overflow-y: hidden;
    transition: 0.4s ease;
    transition-property: right;
    z-index: 999;
   }
   .side-bar::-webkit-scrollbar {
     width: 0px;
   }
   
   .side-bar.active{
    right: 0;
   }
 
   .side-bar .menu{
    width: 100%;
    margin-top: 30px;
   }
   
   .side-bar .menu .item{
    position: relative;
    cursor: pointer;
    padding: 10px 30px;
   }
   
   .side-bar .menu .item a{
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    padding: 5px;
    line-height: normal;
    text-transform: uppercase;
   }
   
   .side-bar .menu .item:hover{
    background: #33363a;
    transition: 0.3s ease;
   }
   
   .side-bar .menu .item a .dropdown{
    transition: 0.3s ease;
   }
.sidebar-navigation em.dropdown.mdi-flip-v {
    &::before{
        transform: rotate(45deg);
    }
    }
   .side-bar .menu .item .sub-btn{
    right: 10px;
    top: 0px;
    transition: 0.3s ease;
    position: absolute;
    width: 40px;
    height: 50px;
    background-color: #ffffff5e;
    z-index: 9999;
   }
   .side-bar .menu .item .sub-menu{
    background: #262627;
    display: none;
   }
   
   .side-bar .menu .item .sub-menu a{
    padding-left: 35px;
   }

   .rotate{
    /* transform: rotate(90deg); */
   }
   .side-bar header{
    background-image: url(../img/banner-bg.webp) ;
    background-repeat: no-repeat;
    color: #fff;
    padding: 10px;
    text-align: center;
   }
   .side-bar-logo{
    width: 100px;
   }
   .close-btn{
    position: absolute;
    color: #0B3A59;
    font-size: 63px;
    right: 0px;
    margin: 15px;
    cursor: pointer;
    margin-top: 0;
    top: -19px;
   }
   
   .menu-btn{
    position: relative;
    font-size: 24px;
    margin: 0px;
    cursor: pointer;
    padding-block: 0px;
    margin-left: 26px;
   }
  .dropdown::before,.sub-dropdown::before{
    content: "";
      position: relative;
      z-index: 11;
      display: block;
      width: 10px;
      height: 10px;
      border-top: 2px solid #fff;
      border-left: 2px solid #fff;
      transform: rotate(225deg);
      transition: all 0.3s linear;
  }
  /* Transition mixin */
.sidebar-navigation a {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  
  /* Sidebar navigation */
  .sidebar-navigation {
    width: 100%;
    height: auto;
    overflow-y: auto;
    height: 100%;
    padding-bottom: 120px;
  }
  .sidebar-navigation::-webkit-scrollbar {
    width: 0px;
    background-color: #252f6c73;
}
  .sidebar-navigation > ul > li > a {
    text-transform: uppercase;
  }
  
  .sidebar-navigation ul {
    margin: 0;
    padding: 0;
  }
  
  .sidebar-navigation ul li {
    display: block;
    position: relative;
  }
  .dropdown {
    position: absolute;
    top: 0;
    right: 0px;
    height: 44px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    background-color: #ffffff07;
}
  .sidebar-navigation ul li a {
    position: relative;
    display: block;
    font-size: 19px;
    font-family: 'Mainyuk';
    font-weight: normal;
    padding: 14px 20px;
    text-decoration: none;
    color: #ffffff;
    letter-spacing: 0.02em;
    border-bottom: 1px solid #eeeeee23;
    padding-right: 60px;
  }
  
  .sidebar-navigation ul li a em {
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px;
    border-radius: 50%;
  }
  
  .sidebar-navigation ul li:hover > a,
  .sidebar-navigation ul li.selected > a {
    color: #E65C00;
  }
  .sidebar-navigation ul li.selected > .dropdown {
    background-color: #3499da;
    color: #fff;
    &::before {
    transform: rotate(44deg);
}
  }
  .sidebar-navigation ul li ul {
    display: none;
  }
  
  .sidebar-navigation ul li ul.open {
    display: block;
  }
  
  .sidebar-navigation ul li ul li a {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
  }
  
 
  
  .sidebar-navigation ul li ul li:hover > a,
  .sidebar-navigation ul li ul li.selected > a {
   color: #E65C00;
  }
  
  .sidebar-navigation ul li ul li.selected.selected--last > a {
    color: #fff;
  }
  
  .sidebar-navigation ul li ul li.selected.selected--last > a:before {
    background-color: #fff;
  }
  
  .menu-overlay.active {
    position: fixed;
    inset: 0;
    background: #071f4299;
}
.no-scroll.lenis.lenis-smooth{
    overflow: hidden;
    scroll-behavior: unset !important;
}

.extra-menu{
    display: none;
  }
  
.fixed-btn {
    position: fixed;
    top: 75%;
    right: 10px;
    z-index: 8;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.enq-btn {
    position: fixed;
    top: 30%;
    right: 5px;
    height: 51px;
    font-weight: 400;
    text-align: center;
    z-index: 9;
    transform: rotate(-90deg);
    transform-origin: bottom right;
    border-radius: 0px;
    overflow: clip;
    display: flex;
    border-radius: 0px;
    border-radius: 4px;
    background: #F7060E;
}
.enq-btn::after, .enq-btn::before {
    content: '';
    content: '';
    position: absolute;
    z-index: -1;
    background: #252E6C;
    inset: 0;
    scale: 1 0;
    transition: scale 450ms;
    transform-origin: top;
}
.enq-btn:hover::after, .enq-btn:focus-visible::after {
    scale: 1 1;
    transform-origin: right;
}
.fc:hover, .fw:hover {
    transform: scale(1.2);
}
.enq-btn a {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 48px;
    color: #fff;
    padding: 0 17px;
    font-weight: 600;
}
.call-btn{
    background-color: transparent;
    color: #fff;
    box-shadow: none;
    border-radius: 4px;
    color: #000;
    font-family: 'Lobster';
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 256.25%;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    .icon{
        width: 67px;
        height: 67px;
        background: #E65C00;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        img{
            animation: ring 1.2s ease-in-out infinite;
        }
    }
    &::after{
        content: '';
        position: absolute;
        z-index: -1;
        border-radius: 0 0 200px 200px;
        background: #30E8E5;
        width: 91px;
        height: 104px;
        left: -12px;
        top: -17px;
    }
    &:hover{
        color: #E65C00;
    }
}
header .primary-btn{
    border-radius: 80px 60px 80px 50px;
    background: #084B76; 
    color: #FFF;
    font-family: 'Mainyuk';
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    padding-block: 22px;
    padding-left: 36px;
    padding-right: 19px;
    border: 0;
    box-shadow: 7px 6px 0 0 #30A0E8;
    margin-left: 10px;
}
/************************************* Home Page **************************************/

.banner {
    overflow: hidden;
    position: relative;
    background-image: url(../img/banner-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 114px;
    z-index: 1;
    height: 1018px;
    .container{
        position: absolute;
        inset: 0;
    }
}
.banner-img-box{
    clip-path: polygon( 21.984% 8.899%,21.984% 8.899%,19.453% 13.551%,16.748% 16.178%,13.942% 17.163%,11.105% 16.888%,8.31% 15.736%,5.628% 14.089%,3.13% 12.329%,0.888% 10.84%,-1.026% 10.003%,-2.542% 10.202%,-2.546% 100%,100% 99.969%,99.585% 6.858%,99.585% 6.858%,98.972% 6.2%,98.477% 6.512%,98.021% 7.462%,97.526% 8.715%,96.914% 9.938%,96.109% 10.799%,95.031% 10.963%,93.602% 10.098%,91.746% 7.87%,89.384% 3.945%,89.384% 3.945%,87.045% 0.508%,85.196% -0.448%,83.657% 0.458%,82.253% 2.605%,80.806% 5.374%,79.139% 8.145%,77.074% 10.3%,74.435% 11.219%,71.044% 10.281%,66.725% 6.868%,66.725% 6.868%,62.406% 2.933%,59.02% 0.673%,56.389% -0.167%,54.336% 0.159%,52.685% 1.397%,51.259% 3.293%,49.88% 5.592%,48.373% 8.039%,46.56% 10.38%,44.264% 12.362%,44.264% 12.362%,41.755% 13.134%,39.399% 12.346%,37.161% 10.489%,35.007% 8.055%,32.905% 5.537%,30.821% 3.426%,28.72% 2.215%,26.57% 2.395%,24.336% 4.459%,21.984% 8.899% );
    position: relative;
    z-index: 1;
    height: 100%;
    .banner-content-vector{
        position: absolute;
        top: 0px;
        left: -122px;
        width: 956px;
    }
}
.banner-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    position: relative;
}
.banner-vector{
    position: absolute;
    top: 130px;
    width: 90%;
    left: 0;
    z-index: -1;
}

.banner-content{
    position: relative;
    width: 54%;
    padding-top: 157px;
    padding-left: 50px;
    h1{
        color: #ffffff;
        font-family: 'Mainyuk';
        font-size: 76px;
        font-style: normal;
        font-weight: 400;
        line-height: 106.579%;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    span{
        color: #30E8E5;
    }
    span.font-shape{
            border-radius: 80px 80px 50px 29px;
            background: #F6D637;
            color: #0E2B54;
            padding: 7px 17px 0px 14px;
            display: inline-block;
            line-height: 82%;
            position: relative;
            &:after{
                content: '';
                position: absolute;
                top: 4px;
                left: 11px;
                border-radius: 50px 80px 50px 29px;
                background: #ffffff00;
                border: 1px solid #fff;
                right: -6px;
                bottom: -4px;
                z-index: -1;
            }
    }
    }
    p{
        color: #FFF;
        font-family: 'Dosis SemiBold';
        font-size: 25px;
        font-style: normal;
        font-weight: normal;
        line-height: 136%;
        margin-bottom: 20px;
    }
    
    
}
.banner-btn{
        position: relative;
        .primary-btn{
        border-radius: 80px 60px 80px 50px;
        background: #E65C00;
        color: #FFF;
        font-family: 'Mainyuk';
        font-size: 23px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
        padding: 10px 8px 15px 29px;
        border: 0;
        gap: 10px;
        .arrow{
            clip-path: polygon( 100% 50%,100% 50%,99.367% 58.11%,97.533% 65.804%,94.599% 72.978%,90.664% 79.529%,85.828% 85.355%,80.19% 90.353%,73.85% 94.419%,66.908% 97.451%,59.463% 99.346%,51.615% 100%,51.615% 100%,44.151% 99.95%,37.688% 99.6%,32.071% 98.65%,27.141% 96.8%,22.742% 93.75%,18.717% 89.2%,14.911% 82.85%,11.165% 74.4%,7.323% 63.55%,3.229% 50%,3.229% 50%,0.402% 36.45%,0.227% 25.6%,2.349% 17.15%,6.412% 10.8%,12.06% 6.25%,18.937% 3.2%,26.687% 1.35%,34.954% 0.4%,43.382% 0.05%,51.615% 0%,51.615% 0%,59.463% 0.654%,66.908% 2.549%,73.85% 5.581%,80.19% 9.647%,85.828% 14.645%,90.664% 20.471%,94.599% 27.022%,97.533% 34.196%,99.367% 41.89%,100% 50% );
            width: 54.769px;
            height: 53px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            transition: all .5s;
        }
        &:hover{
            transform: translateY(-4px);
            background: #30a0e8;
            .arrow{
                transform: translateX(14px);
            }
        }
        
    }
        .batn-shap{
            position: absolute;
            border-radius: 80px 60px 80px 50px;
            background: #EAB640;
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
            inset: 0;
            transform: rotate(2.853deg);
            left: 7px;
            right: -7px;
        }
    }
.banner-shape1,.banner-shape2{
    position: absolute;
}
.banner-shape2 {
    left: -118px;
    animation: floatUpDown 4s ease-in-out infinite;
}
.banner-shape1 {
    left: -60px;
    bottom: -19px;
    animation: floatUpDown 6s ease-in-out infinite;
}
.btn-group {
    display: flex;
    gap: 25px;
}
.text-end{
    text-align: right;
}
/*********** Trust ***********/
.trust {
    clip-path: polygon(74.233% 9.71%, 74.233% 9.71%, 76.927% 4.795%, 79.765% 1.712%, 82.682% 0.225%, 85.615% 0.097%, 88.502% 1.092%, 91.277% 2.973%, 93.878% 5.504%, 96.242% 8.449%, 98.303% 11.572%, 100% 14.635%, 100% 100%, -0.206% 100%, -3.982% 35.911%, -3.982% 35.911%, -3.786% 30.342%, -3.099% 24.684%, -2.022% 19.256%, -0.654% 14.38%, 0.906% 10.375%, 2.556% 7.562%, 4.199% 6.261%, 5.735% 6.793%, 7.062% 9.478%, 8.084% 14.635%, 8.084% 14.635%, 9.304% 20.723%, 10.839% 23.257%, 12.631% 23.022%, 14.621% 20.802%, 16.748% 17.381%, 18.956% 13.543%, 21.184% 10.073%, 23.373% 7.754%, 25.466% 7.372%, 27.402% 9.71%, 27.402% 9.71%, 29.294% 13.361%, 31.283% 16.354%, 33.357% 18.633%, 35.501% 20.14%, 37.701% 20.816%, 39.945% 20.603%, 42.218% 19.444%, 44.507% 17.281%, 46.799% 14.056%, 49.079% 9.71%, 49.079% 9.71%, 51.329% 6.386%, 53.56% 5.77%, 55.801% 7.125%, 58.081% 9.71%, 60.429% 12.788%, 62.876% 15.62%, 65.45% 17.467%, 68.181% 17.59%, 71.099% 15.251%, 74.233% 9.71%);
    background: #F6D637;
    padding-top: 90px;
    padding-bottom: 60px;
    margin-top: -134px;
    position: relative;
    z-index: 2;
}
.mb-40{
    margin-bottom: 40px;
}
.trust-box{
    border-radius: 60px 70px 50px 30px;
    background: #FFF;
    padding: 30px;
    padding-right: 50px;
    padding-left: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    outline: 1px dashed #000;
    outline-offset: 10px;
    width: 95%;
    margin-inline: auto;
    height: 100%;
    transition: all .5s;
    h5{
        color: #000;
        font-family: 'Dosis SemiBold';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 122.727%;
    }
    &:hover{
        transform: translateY(-4px);
        background: #c8fcfb;
        outline-color: #09B9AE;
        img{
            transform: rotateY(180deg);
        }
    }
}
.trust-vector1{
    position: absolute;
    top: 35%;
    left: 62px;
    animation: zoomInOut 4.5s ease-in-out infinite;
}
.trust-vector2{
    position: absolute;
    top: 68px;
    right: 170px;
    animation: floatRotate 5s ease-in-out infinite;
}
.zoom-in-out {
  animation: zoomInOut 2.5s ease-in-out infinite;
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.lessons {
    background: #AAF1F0;
    padding-top: 90px;
    padding-bottom: 130px;
    position: relative;
    z-index: 1;
}
.lession-vector1,
.lession-vector2{
    position: absolute;
}
.lession-vector1{
    left: 0;
    z-index: -1;
    bottom: 140px;
}
.lession-vector2{
    top: -107px;
    left: 51px;
    animation: floatUpDown 5s ease-in-out infinite;
}

.lession-box{
    position: relative;
    &:hover{
        .lession-img{
            img{
                transform: scale(1.1);
            }
        }
        .card-title{
            color: #30a0e8;
        }
        .lession-icon{
            img{
                filter: brightness(0) saturate(100%) invert(98%) sepia(1%) saturate(1%) hue-rotate(222deg) brightness(102%) contrast(101%);
                transform: scale(1.1);
            }
        }
    }
}
.lession-img{
    border-radius: 30px;
    height: 346px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.lession-content{
    border-radius: 0 0 80px 80px;
    background: #FFF;
    box-shadow: 0 4px 46px 0 rgba(0, 0, 0, 0.22);
    padding-inline: 24px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
    margin-top: -90px;
    width: 79%;
    margin-inline: auto;
        text-align: center;
    &::before{
        content: '';
        position: absolute;
        inset: 0;
        background-image: url(../img/lession-box-vector.webp);
        background-repeat: no-repeat;
        height: 34px;
        top: -30px;
        background-size: cover;
        left: -1px;
    }
    .card-title{
        line-height: normal;
    }
}
.lession-icon{
    clip-path: polygon( 100% 50.835%,100% 50.835%,99.716% 58.621%,98.769% 65.706%,97.013% 72.112%,94.306% 77.864%,90.502% 82.987%,85.458% 87.504%,79.03% 91.439%,71.074% 94.818%,61.445% 97.663%,50% 100%,50% 100%,38.555% 101.05%,28.926% 100.169%,20.97% 97.585%,14.542% 93.524%,9.498% 88.213%,5.694% 81.878%,2.987% 74.746%,1.231% 67.044%,0.284% 58.998%,0% 50.835%,0% 50.835%,0.284% 43.111%,1.231% 36.186%,2.987% 29.996%,5.694% 24.474%,9.498% 19.554%,14.542% 15.169%,20.97% 11.254%,28.926% 7.743%,38.555% 4.57%,50% 1.669%,50% 1.669%,61.445% 0.055%,71.074% 0.608%,79.03% 3.06%,85.458% 7.142%,90.502% 12.585%,94.306% 19.122%,97.013% 26.484%,98.769% 34.403%,99.716% 42.609%,100% 50.835% );
    background-color: #E65C00;
    width: 127px;
    height: 130.513px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-inline: auto;
    z-index: 1;
    margin-bottom: -55px;
    transform: translateY(-65px);
    &::after{
        content: '';
        position: absolute;
        clip-path: polygon( 100% 50.835%,100% 50.835%,99.716% 58.621%,98.769% 65.706%,97.013% 72.112%,94.306% 77.864%,90.502% 82.987%,85.458% 87.504%,79.03% 91.439%,71.074% 94.818%,61.445% 97.663%,50% 100%,50% 100%,38.555% 101.05%,28.926% 100.169%,20.97% 97.585%,14.542% 93.524%,9.498% 88.213%,5.694% 81.878%,2.987% 74.746%,1.231% 67.044%,0.284% 58.998%,0% 50.835%,0% 50.835%,0.284% 43.111%,1.231% 36.186%,2.987% 29.996%,5.694% 24.474%,9.498% 19.554%,14.542% 15.169%,20.97% 11.254%,28.926% 7.743%,38.555% 4.57%,50% 1.669%,50% 1.669%,61.445% 0.055%,71.074% 0.608%,79.03% 3.06%,85.458% 7.142%,90.502% 12.585%,94.306% 19.122%,97.013% 26.484%,98.769% 34.403%,99.716% 42.609%,100% 50.835% );
        background-color: #C65B14;
        width: 94px;
        height: 96px;
        left: 0;
        bottom: 7px;
        z-index: -1;
    }
}
.light-blue{
    background-color: #30E8E5;
    &:after{
        background-color: #30D8D5;
    }
}
.dark-blue{
    background-color: #2C92D4;
    &:after{
        background-color: #3AA4E9;
    }
}
.yellow-bg{
    background-color: #FFD039;
    &:after{
        background-color: #D4A510;
    }
}
.why-swim {
    margin-top: -120px;
    position: relative;
    z-index: 1;
}
.lessions-slider{
    .slick-list{
        margin: 0 -15px;
    }
    .slick-slide{
        margin: 0 15px;
    }
    
}
.slick-arrow{
        top: 27%;
        z-index: 1;
        width: 58px;
        height: 55px;
        &:before{
        width: 58px;
        height: 55px;
        content: '';
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url(../img/slider-arrow-left.webp);
        background-repeat: no-repeat;
        transition: all .5s;
        }
        &:hover{
            &:before{
                filter: brightness(0) saturate(100%) invert(40%) sepia(65%) saturate(1857%) hue-rotate(1deg) brightness(90%) contrast(103%);
            }
        }
    }
    .slick-prev {
    left: -80px;
    }
    .slick-next {
    right: -80px;
        &:before{
            background-image: url(../img/slider-arrow-right.webp);
        }
    }
.section-vector{
    width: 100%;
}
.why-swim-img{
    position: relative;
    .why-swim-img{
        clip-path: polygon( 100% 50.41%,100% 50.41%,101.74% 60.967%,102.284% 67.889%,101.549% 72.074%,99.457% 74.417%,95.926% 75.815%,90.876% 77.164%,84.227% 79.361%,75.899% 83.302%,65.811% 89.883%,53.882% 100%,53.882% 100%,41.944% 109.233%,31.798% 113.112%,23.317% 112.462%,16.375% 108.108%,10.847% 100.876%,6.606% 91.59%,3.527% 81.076%,1.484% 70.157%,0.35% 59.661%,0% 50.41%,0% 50.41%,0.654% 42.233%,2.549% 34.477%,5.581% 27.244%,9.647% 20.639%,14.645% 14.765%,20.471% 9.726%,27.022% 5.627%,34.196% 2.57%,41.89% 0.66%,50% 0%,50% 0%,57.902% 0.271%,65.064% 1.188%,71.521% 2.905%,77.31% 5.579%,82.465% 9.365%,87.023% 14.418%,91.02% 20.893%,94.491% 28.947%,97.473% 38.734%,100% 50.41% );
    }
    .back1,.back2,.why-swim-vector1,
    .why-swim-vector2,.why-swim-vector3,
    .why-swim-vector4{
        position: absolute;
    }
    
    .why-swim-vector1 {
        right: 145px;
        top: 0;
        animation: zoomInOut 4.5s ease-in-out infinite;
}
.why-swim-vector2 {
   bottom: 71px;
        left: 25px;
        animation: floatUpDown 3s ease-in-out infinite;
    }
.why-swim-vector4 {
        left: 79px;
        top: 56px;
        z-index: -1;
        animation: rotate360 6s linear infinite;
}
.why-swim-vector3 {
        bottom: -54px;
        left: 120px;
        animation: floatUpDown 4s ease-in-out infinite;
}
}
.why-swim{
    padding-bottom: 50px;
}
.why-list{
    .why-item:nth-child(2){
        background: #FFD039;
    }
    .why-item:nth-child(3){
        background: #F1CAF4;
    }

}
.why-item{
    transition: all .5s;
    border-radius: 60px 20px 60px 70px;
    background: #8AFFE4;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    margin-bottom: 25px;
    .card-title{
        line-height: normal;
    }
    p{
        margin-bottom: 0;
    }
    &:hover{
        transform: translateY(-4px);
        .why-icon{
            transform: rotateY(360deg)
        }
    }
}
.why-icon{
        width: 110px;
        height: 104px;
        position: relative;
        transition: all .6s;
        .icon-img{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
        }
}
.swim-contents{
    background-image: url(../img/swim-gurantee-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -6px;
    padding-bottom: 125px;
    .section-title,p{
        color: #fff;
    }
}
.white{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.swim-guarantee-item {
    text-align: center;
    background: #EF7600;
    padding-inline: 30px;
    padding-top: 65px;
    padding-bottom: 60px;
    clip-path: polygon(37.531% 100%, 37.531% 100%, 29.957% 99.739%, 23.426% 98.744%, 17.874% 97.143%, 13.236% 95.062%, 9.448% 92.63%, 6.444% 89.974%, 4.16% 87.22%, 2.531% 84.496%, 1.492% 81.93%, 0.978% 79.648%, 0.978% 44.084%, 0.978% 44.084%, 0.484% 40.755%, 0.156% 37.23%, 0.008% 33.575%, 0.051% 29.861%, 0.3% 26.156%, 0.767% 22.528%, 1.464% 19.046%, 2.405% 15.779%, 3.603% 12.795%, 5.07% 10.164%, 5.07% 10.164%, 6.893% 7.915%, 9.094% 6.016%, 11.582% 4.438%, 14.27% 3.155%, 17.068% 2.138%, 19.889% 1.361%, 22.643% 0.795%, 25.242% 0.413%, 27.597% 0.187%, 29.621% 0.091%, 35.076% 0.091%, 35.076% 0.091%, 39.542% 0.07%, 44.592% 0.049%, 49.983% 0.03%, 55.471% 0.014%, 60.814% 0.003%, 65.767% 0%, 70.087% 0.005%, 73.53% 0.021%, 75.853% 0.049%, 76.813% 0.091%, 76.813% 0.091%, 81.84% 0.901%, 86.017% 1.945%, 89.437% 3.181%, 92.193% 4.567%, 94.378% 6.061%, 96.085% 7.62%, 97.408% 9.201%, 98.44% 10.763%, 99.273% 12.263%, 100% 13.659%, 100% 13.659%, 100.776% 16.339%, 101.624% 21.38%, 102.437% 28.268%, 103.111% 36.493%, 103.542% 45.54%, 103.624% 54.899%, 103.252% 64.056%, 102.321% 72.5%, 100.726% 79.718%, 98.363% 85.199%, 98.363% 85.199%, 95.533% 89.168%, 92.636% 92.273%, 89.711% 94.629%, 86.8% 96.355%, 83.944% 97.567%, 81.182% 98.382%, 78.557% 98.915%, 76.108% 99.285%, 73.876% 99.608%, 71.903% 100%, 71.903% 100%, 69.439% 100.386%, 65.921% 100.628%, 61.663% 100.747%, 56.979% 100.766%, 52.183% 100.706%, 47.589% 100.59%, 43.513% 100.439%, 40.269% 100.275%, 38.17% 100.122%, 37.531% 100%);
    height: 100%;
    transition: all .5s;
    .primary-btn{
        background-color: #fff;
        color: #000;
        &:hover{
            background: #084B76;
            color: #fff;
        }
    }
    .card-title{
        color: #fff;
        line-height: normal;
    }
    p{
        margin-bottom: 20px;
    }
    &:hover{
        transform: translateY(-4px);
    }
}
.swim-guarantee{
    position: relative;
    .col-lg-3{
        position: relative;
        z-index: 1;
    }
    .back-shape{
        clip-path: polygon(37.531% 100%, 37.531% 100%, 29.957% 99.739%, 23.426% 98.744%, 17.874% 97.143%, 13.236% 95.062%, 9.448% 92.63%, 6.444% 89.974%, 4.16% 87.22%, 2.531% 84.496%, 1.492% 81.93%, 0.978% 79.648%, 0.978% 44.084%, 0.978% 44.084%, 0.484% 40.755%, 0.156% 37.23%, 0.008% 33.575%, 0.051% 29.861%, 0.3% 26.156%, 0.767% 22.528%, 1.464% 19.046%, 2.405% 15.779%, 3.603% 12.795%, 5.07% 10.164%, 5.07% 10.164%, 6.893% 7.915%, 9.094% 6.016%, 11.582% 4.438%, 14.27% 3.155%, 17.068% 2.138%, 19.889% 1.361%, 22.643% 0.795%, 25.242% 0.413%, 27.597% 0.187%, 29.621% 0.091%, 35.076% 0.091%, 35.076% 0.091%, 39.542% 0.07%, 44.592% 0.049%, 49.983% 0.03%, 55.471% 0.014%, 60.814% 0.003%, 65.767% 0%, 70.087% 0.005%, 73.53% 0.021%, 75.853% 0.049%, 76.813% 0.091%, 76.813% 0.091%, 81.84% 0.901%, 86.017% 1.945%, 89.437% 3.181%, 92.193% 4.567%, 94.378% 6.061%, 96.085% 7.62%, 97.408% 9.201%, 98.44% 10.763%, 99.273% 12.263%, 100% 13.659%, 100% 13.659%, 100.776% 16.339%, 101.624% 21.38%, 102.437% 28.268%, 103.111% 36.493%, 103.542% 45.54%, 103.624% 54.899%, 103.252% 64.056%, 102.321% 72.5%, 100.726% 79.718%, 98.363% 85.199%, 98.363% 85.199%, 95.533% 89.168%, 92.636% 92.273%, 89.711% 94.629%, 86.8% 96.355%, 83.944% 97.567%, 81.182% 98.382%, 78.557% 98.915%, 76.108% 99.285%, 73.876% 99.608%, 71.903% 100%, 71.903% 100%, 69.439% 100.386%, 65.921% 100.628%, 61.663% 100.747%, 56.979% 100.766%, 52.183% 100.706%, 47.589% 100.59%, 43.513% 100.439%, 40.269% 100.275%, 38.17% 100.122%, 37.531% 100%);
        background: #D96F09;
        filter: drop-shadow(0 4px 11px rgba(0, 0, 0, 0.25));
        position: absolute;
        inset: 0;
        z-index: -1;
        right: 2px;
        top: -5px;
        left: 18px;
    }
    .row{
        .col-lg-3:nth-child(2){
            .swim-guarantee-item{
                background: #E830D0;
            }
            .back-shape{
                background: #B63BA6;
            }
        }
        .col-lg-3:nth-child(3){
            .swim-guarantee-item{
                background: #E2B114;
            }
            .back-shape{
                background: #CAA324;
            }
        }
        .col-lg-3:nth-child(4){
            .swim-guarantee-item{
                background: #30A0E8;
            }
            .back-shape{
                background: #3480B2;
            }
        }

    }

}
.gv1,.gv2,.gv3{
    position: absolute;
}
.gv3 {
    top: -26px;
    right: 140px;
    width: 106px;
    animation: rotate360 6s linear infinite;
}
.gv2 {
    right: 14%;
    top: 23%;
    filter: brightness(0) saturate(100%) invert(48%) sepia(64%) saturate(609%) hue-rotate(178deg) brightness(87%) contrast(89%);
    animation: zoomInOut 4.5s ease-in-out infinite;
}
.gv1 {
    bottom: 60px;
    right: 70px;
    animation: floatUpDown 5s ease-in-out infinite;
}
.sec-btn{
    position: relative;
}
.about-us{
    background-image: url(../img/about-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 70px;
    .btn-group{
        margin-top: 40px;
    }
}
.about-img{
    position: relative;
    z-index: 1;
}
.about-vector1,.about-vector2,.about-vector3,.about-vector4{
    position: absolute;
}
.about-vector3 {
    left: 50px;
    top: 50px;
    animation: floatUpDown 5s ease-in-out infinite;
}
.about-vector2 {
    left: -22px;
    top: 36%;
    z-index: -1;
    animation: zoomInOut 5.5s ease-in-out infinite;
}
.about-vector1 {
    bottom: 18px;
    right: 65px;
    animation: floatUpDown 5s ease-in-out infinite;
}
.about-vector4 {
    right: 0;
    animation: zoomInOut 6.5s ease-in-out infinite;
}

.gallery{
    background-image: url(../img/gallery-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 70px;
    position: relative;
    .lession-btn {
    margin-bottom: 25px;
    margin-top: unset;
    position: relative;
}
.section-vector {
    width: 100%;
    margin-bottom: -6px;
}
}
.gallery-item{
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease-in-out;
    &:after{
        content: '';
        position: absolute;
        inset: 0;
        border: 1px solid #000;
        border-radius: 30px;
        left: 20px;
        top: -8px;
        right: -8px;
        bottom: 8px;
        z-index: -1;
    }
    img{
        border-radius: 30px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    &:hover{
        img{
            transform: scale(1.041);
        }
    }
}
.gallery-v1,.gallery-v2,.gallery-v3{
   position: absolute;
}
.gallery-v3 {
    right: 31%;
    bottom: 158px;
    width: 100px;
    animation: rotate360 6s linear infinite;
}
.gallery-v2 {
    width: 140px;
    top: 26px;
    left: 27%;
    animation: floatUpDown 5s ease-in-out infinite;
}
.gallery-v1 {
    top: 90px;
    left: 6%;
    animation: zoomInOut 4.5s ease-in-out infinite;
}
.instructor-slider{
    .slick-list{
        margin: 0 -15px;
    }
    .slick-slide{
        margin: 0 15px;
    }
    .lession-img {
    height: 400px;
    overflow: hidden;
    border-radius: 80px;
    }
    .card-title{
        line-height: normal;
        font-size: 25px;
    }
    .lession-content {
    padding-block: 30px;
        margin-top: -60px;
        margin-bottom: 40px;
        border-radius: 0 0 60px 60px;
background: #FFF;
box-shadow: 0 4px 46px 0 rgba(0, 0, 0, 0.22);
    p{
        margin-bottom: 0;
    }
        &::before {
        background-image: url(../img/expert-content-vector.webp);
        height: 24px;
        top: -23px;
    }
}
.slick-arrow {
    top: 43%;
}
}
.instructors{
    padding-bottom: 100px;
}
.about-us{
    .section-vector {
    width: 100%;
    margin-bottom: -5px;
}
}
.client-says{
    padding-bottom: 60px;
    .slick-arrow {
    top: 50%;
}
}
.client-content{
    position: relative;
    z-index: 1;
    transition: all .5s;
    &::after{
        content: '';
        position: absolute;
        clip-path: polygon(50% 100%, 100% 0%, 0% 0%, 50% 100%);
        width: 60px;
        height: 60px;
        background: #3499DA;
        bottom: -36px;
        left: 36px;
        z-index: 1;
    }
    .qut {
    margin-left: auto;
    margin-right: 36px;
    margin-bottom: -60px;
    z-index: 1;
    position: relative;
}
&.green{
    .content-box{
        background: #09B9AE;
    }
    &::after{
        background: #09B9AE;
    }
}
&.yellow{
    .content-box{
        background: #EBA732;
    }
    &::after{
        background: #EBA732;
    }
}
&:hover{
    transform: scale(1.021);
}
}
.content-box {
    clip-path: polygon(0% 21.509%, 0% 21.509%, 0.075% 20.324%, 0.294% 19.189%, 0.646% 18.119%, 1.121% 17.126%, 1.709% 16.225%, 2.4% 15.427%, 3.183% 14.748%, 4.05% 14.2%, 4.989% 13.797%, 5.99% 13.553%, 92.165% 0.073%, 92.165% 0.073%, 93.392% 0.007%, 94.572% 0.185%, 95.686% 0.587%, 96.714% 1.194%, 97.638% 1.986%, 98.436% 2.943%, 99.091% 4.045%, 99.583% 5.273%, 99.893% 6.608%, 100% 8.029%, 100% 91.972%, 100% 91.972%, 99.91% 93.274%, 99.648% 94.51%, 99.228% 95.661%, 98.666% 96.713%, 97.975% 97.649%, 97.17% 98.451%, 96.264% 99.104%, 95.272% 99.591%, 94.209% 99.895%, 93.088% 100%, 6.912% 100%, 6.912% 100%, 5.791% 99.895%, 4.728% 99.591%, 3.736% 99.104%, 2.83% 98.451%, 2.025% 97.649%, 1.334% 96.713%, 0.772% 95.661%, 0.352% 94.51%, 0.09% 93.274%, 0% 91.972%, 0% 21.509%);
    background: #3499DA;
    padding-inline: 30px;
    padding-top: 100px;
    padding-bottom: 35px;
    text-align: center;
    margin-bottom: 40px;
    .card-title{
        color: #fff;
        text-transform: uppercase;
        font-size: 21px;
    }
    p{
        color: #fff;
    }
    img{
        margin-inline: auto;
        margin-bottom: 20px;
    }
}
.faq{
    padding-bottom: 100px;
}
.faq-img{
        position: relative;
}
.faq-vector1,
.faq-vector2,
.faq-vector3,
.faq-vector4{
    position: absolute;
}
.faq-vector2 {
    left: 90px;
    bottom: -10px;
    animation: floatUpDown 5s ease-in-out infinite;
}
.faq-vector4 {
    left: 120px;
    bottom: 171px;
    animation: zoomInOut 4.5s ease-in-out infinite;
}
.faq-vector3 {
    right: 8%;
    bottom: 20%;
}
.faq-vector1 {
    top: 12%;
    left: 54%;
    animation: zoomInOut 5.5s ease-in-out infinite;
}
.accordion{
    position: relative;
    z-index: 2;
}
.accordion__item {
    margin: 12px auto;
    transition: .5s;
    border-radius: 30px;
    background: #F6F3F3;
    padding: 20px 30px;
    .card-title{
        font-size: 25px;
    }
}

.accordion__item:hover {
    transform: translateY(-5px)
}

.accordion__item .accordion__title {
    position: relative;
    display: block;
    margin-bottom: 0;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    font-weight: normal;
    font-family: 'Mainyuk';
	padding-right: 40px;
}

  
.accordion__title::after {
    content: '+';
    position: absolute;
    right: -10px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
    background: #3499DA;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    font-weight: 100;
    font-family: 'Dosis Medium';
    padding-bottom: 10px;
}
.accordion__title.accordion-active::after{
    content: '-';
}
.accordion__item .accordion-active{
    position: relative;
}

.accordion__item .accordion__title .accordion__arrow {
    position: absolute;
    top: 13px;
    right: 10px;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    line-height: 30px;
    font-size: 20px;
    font-weight: 700;
    margin-right: 5px;
    background-color: #c9c9c9;
    border-radius: 50%;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out
}

.accordion__item .accordion__content {
    font-size: 16px;
    line-height: 1.667;
    margin-bottom: 0;
    display: none;
    padding-right: 5%;
}
.news{
    .card-title{
        font-size: 25px;
        line-height: 116%;
        margin-bottom: 10px;
    }
    .news-box {
    background: #fff;
    border-radius: 60px 60px 30px 30px;
    padding: 27px;
    padding-bottom: 35px;
    transition: all .5s;
    p{
        color: #000;
    }
    &:hover{
        transform: translateY(-4px);
.news-img{
    img{
        transform: scale(1.1);
    }
}
.card-title{
    color: #E65C00;
}
    }
}
.news-img{
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 15px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.section-vector {
    width: 100%;
    margin-bottom: -164px;
}
.swim-contents{
    background-image: url(../img/news-bg.webp);
    padding-top: 40px;
}
.gv3 {
    top: -123px;
    right: 300px;
    width: auto;
    animation: floatUpDown 6s ease-in-out infinite;
}
.gv1 {
    bottom: unset;
    right: unset;
    left: 220px;
    top: -16px;
    animation: floatUpDown 8s ease-in-out infinite;
}
.gv2 {
    right: unset;
    filter: unset;
    top: 28%;
    left: 5%;
}
}
.news-date{
    color: #000;
font-family: 'Dosis Medium';
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 175%;
margin-bottom: 5px;
display: flex;
    gap: 15px;
}
.water-safety{
    background: #fff;
    .about-vector3 {
    left: 94px;
    top: 50px;
}
.about-vector1 {
    bottom: 100px;
    right: 65px;
    width: 200px;
}
.about-vector4 {
    right: 30px;
    top: 64px;
}
}
.contact-us{
    padding-top: 50px;
    .container{
        position: relative;
    }
    .contact-box{
        clip-path: polygon( 1.425% 11.008%,1.425% 11.008%,1.511% 9.793%,1.711% 8.642%,2.016% 7.569%,2.418% 6.588%,2.906% 5.714%,3.471% 4.96%,4.105% 4.342%,4.798% 3.873%,5.54% 3.568%,6.322% 3.442%,90.285% 0.003%,90.285% 0.003%,91.071% 0.065%,91.823% 0.309%,92.531% 0.721%,93.184% 1.287%,93.775% 1.993%,94.292% 2.827%,94.726% 3.775%,95.067% 4.822%,95.306% 5.956%,95.433% 7.162%,100% 91.554%,100% 91.554%,99.995% 92.972%,99.833% 94.321%,99.528% 95.578%,99.095% 96.723%,98.546% 97.733%,97.897% 98.587%,97.16% 99.262%,96.351% 99.737%,95.483% 99.99%,94.571% 100%,4.618% 88.453%,4.618% 88.453%,3.837% 88.257%,3.104% 87.885%,2.427% 87.352%,1.815% 86.673%,1.277% 85.865%,0.821% 84.942%,0.457% 83.92%,0.193% 82.815%,0.039% 81.641%,0.003% 80.414%,1.425% 11.008% );
        padding: 80px 100px 130px 100px;
        background: #FF942B;
        margin: 20px;
    }
    .primary-btn{
        border: 0;
        &:hover{
            background: #30a0e8;
        }
    }
    .form-control{
        border-radius: 20px;
        background: #F6D0AB;
        padding: 15px 20px;
        color: #000;
        font-family: 'Dosis Medium';
        font-size: 19px;
        font-style: normal;
        font-weight: 500;
        line-height: 147.368%;
        &::placeholder{
            color: #000;
        }
        &:focus{
            border-color: #092966;
        }
    }
    .contact-box-outline{
        position: absolute;
        height: 100%;
        left: -16px;
        top: -7px;
        svg {
            height: 109%;
            width: 104%;
        }
    }
}
.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
font-family: 'Dosis SemiBold';
font-size: 22px;
font-style: normal;
font-weight: normal;
line-height: 227.273%;
}

.icon-list li::before {
    content: "";
    background-image: url(../img/list-arrow.webp);
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 18px;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
}

.list-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  margin-bottom: 30px;
}
.location-map{
    iframe{
        width: 100%;
        height: 756px;
        border: 0;
        border-radius: 0 60px 60px 0;
    }
}
.location{
        position: relative;
    padding-top: 260px;
    padding-bottom: 90px;
    margin-top: -110px;
    .section-vector {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    bottom: 0;
}
}
.location-vector{
    position: absolute;
    left: 300px;
    top: -41px;
    animation: floatUpDown 8s ease-in-out infinite;
}
/******************************/

footer {
    position: relative;
    width: 100%;
    padding-top: 300px;
    padding-bottom: 60px;
    z-index: 1;
    .why-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 11px 21px;
    margin-bottom: 25px;
    border-radius: 60px 70px 50px 30px;
    background: #0D5583;
    outline: 1px dashed #ffffff;
    outline-offset: 10px;
    margin-top: 33px;
    h3{
        color: #FFF;
        font-family: 'Mainyuk';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 127.273%;
        a:hover{
                color: #24D9D6;
        }
    }
    p{
        line-height: 164.706%;
        font-size: 16px;
         font-family: 'Dosis SemiBold';
    }
}
.why-icon {
    position: relative;
    width: 72px;
    height: 68px;
}
.icon-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0;
    color: #FFF;
     font-family: 'Dosis SemiBold';
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
}
}
.footer-bg{
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    bottom: 0;
}
.footer-box {
    padding-right: 4%;
}

.footer-logo {
    margin-bottom: 25px;
}

footer p {
    color: #D9D9D9;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 154%;
}
.footer-social{
    display: flex;
    gap: 8px;
}
.footer-social a{
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.footer-social a:hover {
    transform: scale(1.1);
}
.footer-title {
color: #FFF;
font-family: 'Mainyuk';
font-size: 41px;
font-style: normal;
font-weight: 400;
line-height: 53px;
text-transform: capitalize;
}

footer ul li a{
    color: #FFF;
    font-family: 'Dosis SemiBold';
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 200%;
}
footer ul li a:hover,
.contact-info a {
    color: #24D9D6;
}
footer p{
    color: #FFF;
    font-family: 'Dosis Medium';
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 164.706%;
    margin-bottom: 30px;
}

.copyright {
    color: #fff;
    padding: 20px 0;
    text-align: right;
    font-size: 16px;
    margin-top: 20px;
    p{
        margin: 0;
    }
}

.copyright a {
    color: #ffffff;
    text-decoration: underline;
    &:hover{
        color: #E65C00;
    }
}
.footer-contact p{
    position: relative;
    padding-left: 25px;
}
.footer-vector1,
.footer-vector2,
.footer-vector3{
    position: absolute;
}
.footer-vector1 {
    left: 35%;
    top: 50px;
    animation: floatUpDown 6s ease-in-out infinite;
}
.footer-vector2 {
    right: 235px;
    top: -56px;
    width: 177px;
    animation: floatUpDown 8s ease-in-out infinite;
}
.footer-vector3 {
    bottom: 0;
    right: 0;
    animation: floatUpDown 6s ease-in-out infinite;
}

/*******************************
  Inner PAge
********************************/
.inner-banner{
    height: auto;
    padding-top: 135px;
    .banner-img-box {
    .banner-content-vector {
        position: absolute;
            top: -90px;
            left: -70px;
            width: auto;
    }
    .banner-content {
        position: relative;
        width: 30%;
        padding-top: 140px;
        padding-left: 0;
        text-align: center;
    h1 {
        font-size: 55px;
        line-height: 112.579%;
        margin-bottom: 0px;
    }
}

}
}
.faq-page{
    padding-bottom: 100px;
    padding-top: 0;
    position: relative;
    background: #fff;
    .container {
        position: relative;
        z-index: 2;
    }
    /* &::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgb(255, 255, 255);
        clip-path: polygon(74.493% 3.307%, 74.493% 3.307%, 77.16% 1.633%, 79.969% 0.583%, 82.857% 0.077%, 85.761% 0.033%, 88.618% 0.372%, 91.366% 1.012%, 93.941% 1.874%, 96.28% 2.877%, 98.321% 3.94%, 100% 4.984%, 100% 98.345%, -0.607% 100%, -2.93% 12.229%, -2.93% 12.229%, -2.735% 10.332%, -2.055% 8.405%, -0.989% 6.557%, 0.365% 4.897%, 1.909% 3.533%, 3.543% 2.575%, 5.169% 2.132%, 6.689% 2.313%, 8.003% 3.227%, 9.014% 4.984%, 9.014% 4.984%, 10.222% 7.057%, 11.742% 7.92%, 13.516% 7.84%, 15.485% 7.084%, 17.591% 5.919%, 19.776% 4.612%, 21.982% 3.43%, 24.149% 2.641%, 26.22% 2.51%, 28.137% 3.307%, 28.137% 3.307%, 30.01% 4.55%, 31.979% 5.569%, 34.031% 6.345%, 36.153% 6.858%, 38.332% 7.088%, 40.553% 7.016%, 42.803% 6.621%, 45.069% 5.885%, 47.338% 4.786%, 49.595% 3.307%, 49.595% 3.307%, 51.822% 2.175%, 54.03% 1.965%, 56.248% 2.426%, 58.505% 3.307%, 60.829% 4.355%, 63.251% 5.319%, 65.799% 5.948%, 68.503% 5.99%, 71.391% 5.193%, 74.493% 3.307%);
        z-index: 1;
        margin-top: -100px;
        bottom: 100px;
    } */
}
.section-divider {
    width: 100%;
    margin-top: -124px;
    z-index: 1;
    position: relative;
}
.faq-img-back-vector {
    position: absolute;
    z-index: 2;
}
.faq-vector5 {
    position: absolute;
    left: 4%;
    top: 26%;
    animation: zoomInOut 4.5s ease-in-out infinite;
    z-index: 2;
}
.gallery-page{
    padding-bottom: 30px;
	.gallery-tabs {
	flex-wrap: nowrap;
    justify-content: center;
    gap: 50px;
	button {
        width: auto;
        height: auto;
        padding: 20px 40px;
    }
}
	.safty-about-video {
    img {
        border-radius: 30px;
    }
		a{
			img{
				border-radius:0;
			}
		}
}
}
.why-choose-tabs {
    button {
        cursor:pointer;
    }
}
.blog-listing{
    padding-bottom: 150px;
    .news-box{
    filter: drop-shadow(0 4px 39px rgba(0, 0, 0, 0.14));
    }
}
.category-box {
    border-radius: 50px;
    background: #084B76;
    padding: 20px 40px;
    margin-bottom: 30px;
    .category-title{
        color: #fff;
    }
    .icon-list li{
        margin-bottom: 0;
        &:hover{
            a{
                color: #E65C00;
            }
        }
    }
}
.category-title {
    color: #262727;
    font-family: 'Mainyuk';
    font-size: 33px;
    font-style: normal;
    font-weight: 400;
    line-height: 160.606%;
    text-transform: capitalize;
}
.recent-post-item {
    clip-path: polygon(0% 32.432%, 0% 32.432%, 0.191% 27.172%, 0.742% 22.181%, 1.626% 17.528%, 2.81% 13.278%, 4.265% 9.499%, 5.962% 6.258%, 7.871% 3.62%, 9.96% 1.653%, 12.201% 0.424%, 14.563% 0%, 83.01% 0%, 83.01% 0%, 85.766% 0.495%, 88.38% 1.929%, 90.818% 4.223%, 93.044% 7.301%, 95.024% 11.082%, 96.722% 15.491%, 98.104% 20.449%, 99.134% 25.878%, 99.778% 31.7%, 100% 37.838%, 100% 72.973%, 100% 72.973%, 99.841% 77.357%, 99.381% 81.516%, 98.645% 85.393%, 97.658% 88.935%, 96.445% 92.084%, 95.031% 94.785%, 93.441% 96.983%, 91.7% 98.622%, 89.833% 99.646%, 87.864% 100%, 7.282% 100%, 7.282% 100%, 6.1% 99.788%, 4.98% 99.173%, 3.935% 98.19%, 2.981% 96.871%, 2.133% 95.25%, 1.405% 93.361%, 0.813% 91.236%, 0.371% 88.909%, 0.095% 86.414%, 0% 83.784%, 0% 32.432%);
    background: #CCEBFF;
    padding: 22px;
    margin-bottom: 20px;
    transition: all .5s;

        .card-title {
        margin-bottom: 10px;
        color: #000;
        font-size: 19px;
        font-style: normal;
        font-weight: normal;
        line-height: 25px;
        margin-bottom: 0px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    &:hover{
        transform: translateY(-5px);
        .card-title {
            color: rgb(230, 92, 0);
        }
        .recent-post-img img{
            transform: scale(1.1);
        }
    }
}
.recent-post-img {
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
}
.card-blue {
    background: #CCEBFF;
}
.card-peach {
    background: #FFE5CC;
}
.card-purple {
    background: #F0CAF4;
}
.card-yellow {
    background: #FFF6B5;
}
.blog-details-img{
    border-radius: 40px;
    overflow: hidden;
    margin-block: 30px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.blog-details-content{
    h3{
        color: #000;
        font-size: 27px;
        font-style: normal;
        font-weight: normal;
        line-height: 107.407%;
        margin-bottom: 14px;
    }
    h4 {
        color: #000;
        font-family: 'Mainyuk';
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 145%;
    }
    ul,ol{
        list-style: none;
        padding: 0;
        margin: 0;
        margin-bottom: 30px;
        li{
        position: relative;
        padding-left: 28px;
        margin-bottom: 0;
        color: #000000;
        font-family: 'Dosis Medium';
        font-size: 16px;
        font-style: normal;
        font-weight: normal;
        line-height: 143.75%;
        margin-bottom: 12px;
        &::before {
        content: "";
        background-image: url(../img/list-arrow.webp);
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 4px;
        width: 18px;
        height: 18px;
        background-repeat: no-repeat;
        }
        }
    }
    ol{
        li{
            counter-increment: step;
            padding-left: 35px;
        &::before {
        content: counter(step);
                background-image: none;
                background: #E56363;
                width: 23px;
                height: 23px;
                border-radius: 50%;
                border: 1px solid #000;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 12px;
        }
    }
    }
}
.pagination{
    border-top: 1px solid #E2E0E0;
    padding-top: 30px;
    margin-top: 30px;
    .row .col-md-6:last-child{
        text-align: right;
        a{
            background-color: #DEFFF3;
        }
    }
h4{
    color: #212121;
font-family: "Helvetica Bold";
font-size: 24px;
font-style: normal;
font-weight: normal;
line-height: 26px;
margin-bottom: 12px;
}
a{
    display: flex;
        align-items: center;
        gap: 14px;
        color: #212121;
        font-size: 20px;
        line-height: 140.778%;
        border-radius: 30px;
        background: #E8F6FE;
        padding: 10px;
        font-family: 'Mainyuk';
    &:hover{
        color:#E65C00;
    }
    img{
        width: 136px;
        height: 110px;
        object-fit: cover;
        border-radius: 20px;
    }
    span{
        width: 65%;
    }
}
}
.why-choose-contents{
    padding-bottom: 80px;
}
.why-choose-tabs{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 70px;
    button{
        border-radius: 60px 70px 50px 30px;
        background: rgb(48, 232, 229);
        box-shadow: 0 4px 17px 0 rgba(0, 0, 0, 0.24);
        width: 202px;
        height: 105px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        outline: 1px dashed #6F6B6B;
        outline-offset: 5px;
        color: #000;
        text-align: center;
        font-family: "Mainyuk";
        font-size: 23px;
        font-style: normal;
        font-weight: normal;
        line-height: 117.391%;
        text-transform: capitalize;
        padding-inline: 10px;
        transition: all .5s;
        position: relative;
        &:nth-child(2){
            background-color: #FFEE73;
        }
        &:nth-child(3){
            background-color: #FFE5CC;
        }
        &:nth-child(4){
            background-color: #71D6F9;
        }
        &:nth-child(5){
            background-color: #FFC87F;
        }
        &:nth-child(6){
            background-color: #084B76;
            color: #fff;
        }
       &.active,&:hover{
            background-color: #ffffff;
            color: #000000;
            box-shadow: 0 4px 17px 0 rgba(243, 117, 117, 0.24);
        }
    }
}
.why-choose-content-item{
    display: none;
    position: relative;
    clear: both;
    .why-choose-content-img {
    width: 46%;
        border-radius: 60px;
        float: left;
        margin-right: 42px;
        margin-bottom: 28px;
}
p{
    margin-bottom: 20px;
}
.why-choose-title{
margin-bottom: 35px;
padding-top: 18px;
}
&.active{
    display: block;
}
ul{
    list-style-type: disclosure-closed;
    line-height: 200%;
    padding-left: 20px;
    & ::marker{
        color: #E65C00;
    }
}
}
.why-choose-us-page {
    min-height: 1000px;
}
.why-choose-title{
color: #000;
font-family: "Mainyuk";
font-size: 38px;
font-style: normal;
font-weight: normal;
line-height: 89.474% ;
text-transform: capitalize;
}
.gurantee-box {
    border-radius: 50px;
    background: #FFFAD8;
    text-align: center;
    padding: 45px;
    height: 100%;
    transition: all .5s;
    img{
        margin-bottom: 16px;
    }
    .card-title{
        font-size: 25px;
        line-height: 112%;
        margin-bottom: 20px;
    }
    ul{
        margin-bottom: 20px;
        li{
            color: #000;
            line-height: 162.5%;
            position: relative;
            padding-left: 25px;
            text-align: left;
            margin-bottom: 6px;
            &::before{
                content: "";
                width: 18px;
                height: 18px;
                background-image: url(../img/check-mark.webp);
                background-repeat: no-repeat;
                background-size: cover;
                display: inline-block;
                margin-right: 10px;
                position: absolute;
                left: 0;
                top: 4px;
            }
        }
    }
    &:hover{
        transform: translateY(-10px);
        img{
            transform: rotateY(360deg);
        }
    }
}
.gurantee-page{
    padding-bottom: 140px;
}

.bg-soft-yellow {
  background-color: #FFFAD8;
}

.bg-soft-blue {
  background-color: #CEECFC;
}

.bg-soft-peach {
  background-color: #FFDEBC;
}

.bg-soft-green {
  background-color: #EBFFE8;
}

.bg-soft-pink {
  background-color: #FFDDFC;
}

.bg-soft-mint {
  background-color: #D1FFF9;
}
.contact-page{
    position: relative;
    margin-top: -108px;
    .contact-content{
        clip-path: polygon( 74.259% 4.484%,74.259% 4.484%,76.95% 2.214%,79.785% 0.791%,82.7% 0.104%,85.63% 0.045%,88.514% 0.504%,91.286% 1.373%,93.885% 2.542%,96.246% 3.902%,98.305% 5.344%,100% 6.758%,100% 100%,100% 100%,99.438% 99.08%,97.794% 96.691%,95.135% 93.386%,91.524% 89.719%,87.028% 86.245%,81.709% 83.518%,75.635% 82.092%,68.869% 82.522%,61.477% 85.361%,53.524% 91.165%,53.524% 91.165%,45.59% 97.22%,38.2% 100.765%,31.331% 102.276%,24.965% 102.23%,19.079% 101.104%,13.652% 99.377%,8.664% 97.524%,4.094% 96.022%,-0.079% 95.35%,-3.876% 95.984%,-3.876% 95.984%,-6.805% 94.932%,-8.504% 89.577%,-9.191% 80.959%,-9.083% 70.117%,-8.396% 58.091%,-7.347% 45.92%,-6.154% 34.645%,-5.033% 25.304%,-4.201% 18.937%,-3.876% 16.583%,-3.876% 16.583%,-3.679% 14.012%,-2.994% 11.399%,-1.918% 8.892%,-0.551% 6.641%,1.007% 4.791%,2.656% 3.492%,4.297% 2.891%,5.831% 3.137%,7.157% 4.377%,8.177% 6.758%,8.177% 6.758%,9.396% 9.57%,10.93% 10.74%,12.721% 10.631%,14.708% 9.606%,16.833% 8.026%,19.039% 6.254%,21.264% 4.652%,23.452% 3.581%,25.542% 3.404%,27.476% 4.484%,27.476% 4.484%,29.366% 6.17%,31.354% 7.552%,33.425% 8.605%,35.567% 9.3%,37.765% 9.613%,40.006% 9.514%,42.277% 8.979%,44.564% 7.98%,46.853% 6.491%,49.131% 4.484%,49.131% 4.484%,51.379% 2.949%,53.608% 2.665%,55.846% 3.29%,58.123% 4.484%,60.469% 5.906%,62.913% 7.213%,65.485% 8.066%,68.214% 8.123%,71.128% 7.043%,74.259% 4.484% );
        background: #FFEE73;
        padding-block: 150px;
        position: relative;
        z-index: 1;
        &::after{
            content: "";
            width: 638px;
            height: 638px;
            border-radius: 638px;
            background: #FF942B;
            position: absolute;
            bottom: 0;
            right: 6%;
            z-index: -1;
        }
    }
    .contact-img{
        position: absolute;
        right: 8%;
        bottom: 0%;
        z-index: 1;
        animation: 5s ease-in-out 0s infinite normal none running floatUpDown;
    }
    .trust-box {
    border-radius: 60px 70px 50px 30px;
    background: #FFF;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    outline: 1px dashed #6F6B6B;
    outline-offset: 10px;
    width: 100%;
    margin-inline: auto;
    height: auto;
    transition: all .5s;
    margin-bottom: 50px;
    h5 {
        font-size: 16px;
        line-height: 175.727%;
        a{
            color: #000;
            font-size: 22px;
            font-family: "Dosis Bold";
            &:hover{
                color: #E65C00;
            }
        }
    }
}
}
.timing-box {
    display: flex;
    align-items: start;
    gap: 26px;
    h5{
        color: #000;
        font-family: "Dosis SemiBold";
        font-size: 17px;
        font-style: normal;
        font-weight: 600;
        line-height: 164.706%;
    }
    h4{
        color: #000;
        font-family: "Dosis Bold";
        font-size: 19px;
        font-style: normal;
        font-weight: normal;
        line-height: 173.474%;
        margin-bottom: 20px;
        a{
            color: #000;
            &:hover{
                color: #E65C00;
            }
        }
    }
}
.mb-50{
    margin-bottom: 50px;
}
.contact-us-form{
    padding-bottom: 50px;
        .contact-box {
        clip-path: polygon(1.425% 11.008%, 1.425% 11.008%, 1.511% 9.793%, 1.711% 8.642%, 2.016% 7.569%, 2.418% 6.588%, 2.906% 5.714%, 3.471% 4.96%, 4.105% 4.342%, 4.798% 3.873%, 5.54% 3.568%, 6.322% 3.442%, 90.285% 0.003%, 90.285% 0.003%, 91.071% 0.065%, 91.823% 0.309%, 92.531% 0.721%, 93.184% 1.287%, 93.775% 1.993%, 94.292% 2.827%, 94.726% 3.775%, 95.067% 4.822%, 95.306% 5.956%, 95.433% 7.162%, 100% 91.554%, 100% 91.554%, 99.995% 92.972%, 99.833% 94.321%, 99.528% 95.578%, 99.095% 96.723%, 98.546% 97.733%, 97.897% 98.587%, 97.16% 99.262%, 96.351% 99.737%, 95.483% 99.99%, 94.571% 100%, 4.618% 88.453%, 4.618% 88.453%, 3.837% 88.257%, 3.104% 87.885%, 2.427% 87.352%, 1.815% 86.673%, 1.277% 85.865%, 0.821% 84.942%, 0.457% 83.92%, 0.193% 82.815%, 0.039% 81.641%, 0.003% 80.414%, 1.425% 11.008%);
        padding: 80px 100px 130px 100px;
        background: #FF942B;
        margin: 20px;
        padding-inline: 119px;
        padding-top: 60px;
        padding-bottom: 226px;
        margin-bottom: 72px;
    }
        .contact-box-outline {
        position: absolute;
        height: 100%;
        left: 20px;
        top: -38px;
        width: 100%;
    }
    .primary-btn{
        border-radius: 80px 60px 80px 50px;
background: #084B76;
    }
    .gv3 {
        top: -90px;
        width: 151px;
        animation: 6s linear 0s infinite normal none running rotate360;
        z-index: 1;
        right: 180px;
}
}
.about-page{
    position: relative;
    background: #8FF6F9;
    z-index: 1;
    &::after{
        content: "";
        inset: 0;
        clip-path: polygon( 74.493% 3.844%,74.493% 3.844%,77.16% 1.898%,79.969% 0.678%,82.857% 0.089%,85.761% 0.038%,88.618% 0.432%,91.366% 1.177%,93.941% 2.179%,96.28% 3.345%,98.321% 4.581%,100% 5.794%,100% 98.076%,-0.607% 100%,-2.93% 14.216%,-2.93% 14.216%,-2.735% 12.012%,-2.055% 9.772%,-0.989% 7.623%,0.365% 5.693%,1.909% 4.107%,3.543% 2.994%,5.169% 2.479%,6.689% 2.689%,8.003% 3.752%,9.014% 5.794%,9.014% 5.794%,10.222% 8.204%,11.742% 9.207%,13.516% 9.114%,15.485% 8.235%,17.591% 6.881%,19.776% 5.361%,21.982% 3.988%,24.149% 3.07%,26.22% 2.918%,28.137% 3.844%,28.137% 3.844%,30.01% 5.289%,31.979% 6.474%,34.031% 7.376%,36.153% 7.973%,38.332% 8.24%,40.553% 8.156%,42.803% 7.697%,45.069% 6.841%,47.338% 5.564%,49.595% 3.844%,49.595% 3.844%,51.822% 2.528%,54.03% 2.284%,56.248% 2.82%,58.505% 3.844%,60.829% 5.063%,63.251% 6.184%,65.799% 6.915%,68.503% 6.963%,71.391% 6.037%,74.493% 3.844% );
        background: #8FF6F9;
        position: absolute;
        z-index: -1;
        top: -109px;
    }
    .section-vector {
    width: 100%;
    margin-bottom: -6px;
}
.about-img{
    .about-vector4 {
        right: 232px;
        width: 155px;
        top: 33px;
    }
    .faq-vector4 {
    left: unset;
    bottom: unset;
    right: 26%;
    top: 21%;
}
.about-vector2 {
    left: 50px;
    top: unset;
    z-index: 0;
    bottom: 86px;
    width: 190px;
}
.about-vector1 {
    bottom: 20px;
    right: unset;
    left: 156px;
}
}
}
.about-mission-vision {
    padding-bottom: 180px;
    .container{
        position: relative;
    }
    svg{
        position: absolute;
    }
    h5{
        color: #FFF;
        text-align: center;
        font-family: "Dosis Bold";
        font-size: 21px;
        font-style: normal;
        font-weight: normal;
        line-height: 133.333%;
        margin-bottom: 15px;
    }
    .section-title{
        margin-bottom: 15px;
    }
    .mission-vision-vector{
        position: absolute;
        animation: floatUpDown 8s ease-in-out infinite;
        bottom: -73px;
        right: 140px;
    }
    .why-swim-vector4{
        position: absolute;
        animation: rotate360 6s linear infinite;
        top: -45px;
        left: 130px;
        z-index: 1;
    }
}
.about-mission-vision-content{
    clip-path: polygon( 1.538% 13.017%,1.538% 13.017%,1.674% 10.805%,1.966% 8.724%,2.403% 6.801%,2.968% 5.063%,3.648% 3.536%,4.43% 2.248%,5.3% 1.225%,6.243% 0.495%,7.245% 0.084%,8.293% 0.018%,93.918% 9.376%,93.918% 9.376%,94.977% 9.678%,95.971% 10.327%,96.886% 11.29%,97.71% 12.535%,98.429% 14.031%,99.031% 15.747%,99.502% 17.649%,99.829% 19.707%,99.999% 21.889%,100% 24.162%,97.572% 87.433%,97.572% 87.433%,97.411% 89.564%,97.104% 91.566%,96.663% 93.414%,96.103% 95.083%,95.434% 96.55%,94.672% 97.79%,93.827% 98.78%,92.913% 99.494%,91.943% 99.909%,90.93% 100%,6.202% 93.529%,6.202% 93.529%,5.153% 93.266%,4.165% 92.663%,3.25% 91.748%,2.423% 90.553%,1.695% 89.108%,1.08% 87.442%,0.591% 85.585%,0.24% 83.568%,0.042% 81.422%,0.008% 79.175%,1.538% 13.017% );
    background-color: #EF7600;
    padding: 150px 120px;
    text-align: center;
    h5,p,.section-title{
        color: #fff;
    }
}
.about-why-swim-vector{
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 1;
        animation: floatUpDown 8s ease-in-out infinite;
}
.about-why-swim{
    padding-bottom: 200px;
}
.swim-is-fun{
    position: relative;
    background: #F6D637;
    padding-bottom: 60px;
    &::after{
        content: "";
        inset: 0;
        clip-path: polygon(74.493% 3.844%, 74.493% 3.844%, 77.16% 1.898%, 79.969% 0.678%, 82.857% 0.089%, 85.761% 0.038%, 88.618% 0.432%, 91.366% 1.177%, 93.941% 2.179%, 96.28% 3.345%, 98.321% 4.581%, 100% 5.794%, 100% 98.076%, -0.607% 100%, -2.93% 14.216%, -2.93% 14.216%, -2.735% 12.012%, -2.055% 9.772%, -0.989% 7.623%, 0.365% 5.693%, 1.909% 4.107%, 3.543% 2.994%, 5.169% 2.479%, 6.689% 2.689%, 8.003% 3.752%, 9.014% 5.794%, 9.014% 5.794%, 10.222% 8.204%, 11.742% 9.207%, 13.516% 9.114%, 15.485% 8.235%, 17.591% 6.881%, 19.776% 5.361%, 21.982% 3.988%, 24.149% 3.07%, 26.22% 2.918%, 28.137% 3.844%, 28.137% 3.844%, 30.01% 5.289%, 31.979% 6.474%, 34.031% 7.376%, 36.153% 7.973%, 38.332% 8.24%, 40.553% 8.156%, 42.803% 7.697%, 45.069% 6.841%, 47.338% 5.564%, 49.595% 3.844%, 49.595% 3.844%, 51.822% 2.528%, 54.03% 2.284%, 56.248% 2.82%, 58.505% 3.844%, 60.829% 5.063%, 63.251% 6.184%, 65.799% 6.915%, 68.503% 6.963%, 71.391% 6.037%, 74.493% 3.844%);
        position: absolute;
        z-index: -1;
        top: -140px;
        background: #F6D637;
    }
    .section-title{
        margin-bottom: 20px;
    }
    h5{
        color: #000;
        font-family: "Mainyuk";
        font-size: 29px;
        font-style: normal;
        font-weight: normal;
        line-height: 33px;
        margin-bottom: 50px;
    }
    .banner-btn {
    position: relative;
    display: inline-block;
    }
}

.fun-content {
    text-align: center;
    padding-right: 3%;
}
.fun1{
    width: 376px;
    height: 354px;
    border-radius: 376px;
    object-fit: cover;
}
.fun2 {
    width: 179.72px;
    height: 179.72px;
    border-radius: 179.72px;
    outline: 1px dashed #000;
    outline-offset: 6px;
    margin-left: 57%;
}
.fun3 {
    width: 441.042px;
    height: 441.042px;
    border-radius: 50%;
    object-fit: cover;
    outline: 3px dashed #000;
    outline-offset: 7px;
}
.about-instructors{
    padding-top: 60px;
}
.trust.our-philosophy {
    padding-top: 140px;
    padding-bottom: 90px;
}
.ethan-chapa{
    padding-top: 40px;
    padding-bottom: 60px;
    margin: 0;
    .why-swim-img {
    .why-swim-vector4 {
        left: unset;
        right: 158px;
        top: 56px;
        z-index: 0;
    }
    .why-swim-vector2 {
        bottom: 0px;
        left: 100px;
        width: 190px;
    }
}
.about-why-swim-vector {
    bottom: 165px;
    right: 47px;
    z-index: 1;
    filter: brightness(0) saturate(100%) invert(82%) sepia(30%) saturate(2864%) hue-rotate(345deg) brightness(86%) contrast(75%);
}
}
.different{
    .swim-guarantee-item {
    text-align: center;
    padding: 35px 30px;
    clip-path: unset;
    height: 100%;
    transition: all .5s;
    border-radius: 50px;
    background: #FFF;
    .card-title,p{
        color: #000;
    }
    .card-title{
        margin-bottom: 10px;
    }
    p{
        margin: 0;
    }
    img{
        margin-bottom: 20px;
    }
    &:hover{
        background-color: #EF7600;
        img{
            rotate: 360deg;
        }
        .card-title,p{
            color: #fff;
        }
    }
}
}
.why-learn-ethan{
    padding-block: 80px;
}
.why-learn-ethan-item{
    border-radius: 60px 70px 50px 30px;
    background: #AAE2FF;
    padding: 37px 50px;
    outline: 1px dashed #6F6B6B;
    outline-offset: 10px;
    margin: 10px;
    height: -webkit-fill-available;
    transition: all .5s;
    .card-title{
        font-size: 34px;
        line-height: 89.474%;
        text-transform: capitalize;
        margin-bottom: 20px;
    }
    p{
        margin: 0;
    }
    &:hover{
       transform: translateY(-5px);
       box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
    }
}
.bg-blue-solid {
  background-color: #AAE2FF;
}

.bg-orange-solid {
  background-color: #FFD3A9;
}

.bg-green-solid {
  background-color: #99DDC4;
}

.bg-cyan-solid {
  background-color: #83F2F0;
}
.success-stories{
    .content-box {
    background: #ffffff;
    padding-inline: 50px;
        padding-top: 80px;
        padding-bottom: 35px;
    text-align: left;
    margin-bottom: 40px;
    clip-path: polygon(3.286% 24.671%, 3.286% 24.671%, 3.566% 21.972%, 4.066% 19.422%, 4.77% 17.048%, 5.66% 14.878%, 6.719% 12.939%, 7.929% 11.259%, 9.273% 9.866%, 10.735% 8.787%, 12.295% 8.05%, 13.938% 7.683%, 88.042% 0.038%, 88.042% 0.038%, 90.203% 0.147%, 92.24% 0.889%, 94.119% 2.202%, 95.805% 4.023%, 97.266% 6.289%, 98.467% 8.939%, 99.375% 11.91%, 99.956% 15.139%, 100.175% 18.565%, 100% 22.124%, 93.37% 84.407%, 93.37% 84.407%, 92.971% 87.035%, 92.364% 89.491%, 91.565% 91.752%, 90.593% 93.791%, 89.466% 95.585%, 88.201% 97.108%, 86.816% 98.336%, 85.33% 99.244%, 83.76% 99.807%, 82.124% 100%, 11.419% 100%, 11.419% 100%, 9.444% 99.72%, 7.584% 98.912%, 5.866% 97.626%, 4.316% 95.91%, 2.962% 93.812%, 1.829% 91.382%, 0.946% 88.668%, 0.338% 85.718%, 0.032% 82.583%, 0.055% 79.309%, 3.286% 24.671%);
    p,.card-title{
        color: #000;
        span{
            font-size: 18px;
        }
    }
    
}
.client-content {
    padding-top: 10px;
    &::after {
        content: '';
        position: absolute;
        clip-path: polygon(50% 100%, 100% 0%, 0% 0%, 50% 100%);
        width: 60px;
        height: 60px;
        background: #ffffff;
        bottom: -36px;
        left: 36px;
        z-index: 1;
    }
    .qut {
    width: 94px;
    height: 94px;
    background: #084B76;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
}
}
.success-stories{
    position: relative;
    padding-top: 110px;
    padding-bottom: 100px;
    .bg{
        position: absolute;
        top: 0;
        width: 100%;
    }
}
.safty-about-video {
    overflow: hidden;
    position: relative;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 60px;
    }
}
.play-btn{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    span{
        width: 83px;
        height: 83px;
        border-radius: 83px;
        background: #EF7600;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 0 20px rgba(63, 63, 63, 0.18);
        outline: 1px solid #fff;
        outline-offset: 30px;
        transition: all .5s;
        &:hover{
            background: #22559c;
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.18);
        }
    }
    img{
        width: auto;
        height: auto;
        border-radius: 0;
    }
    &:hover{
        span{
            transform: scale(1.1);
        }
    }
}
.drowning-facts{
    padding-bottom: 110px;
    position: relative;
    z-index: 1;
    .why-choose-title {
    line-height: 128.947%;
    margin-bottom: 8px;
}
.fact-vector1,
.fact-vector2{
    position: absolute;
    opacity: 0.48;
    z-index: -1;
}
.fact-vector1{
    top: 10%;
    left: 0;
}
.fact-vector2{
    bottom: 0;
    left: 0;
}
h5{
    color: #262727;
    font-family: "Mainyuk";
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 220.833%;
    text-transform: capitalize;
}
.icon-list li{
    color: #000;
font-family: "Dosis Medium";
font-size: 16px;
font-style: normal;
font-weight: normal;
line-height: 156.25%;
}
.icon-list li::before {
    top: 4px;
}
.drowning-img-box{
    position: relative;
        .faq-vector1 {
            position: absolute;
            bottom: 2%;
            left: 6%;
            animation: floatUpDown 4s ease-in-out infinite;
            top: unset;
    }
    .why-swim-vector4 {
        animation: rotate360 6s linear infinite;
        top: 7%;
        position: absolute;
        right: 31%;
        z-index: -1;
    }
        .why-swim-vector5 {
            animation: rotate360 6s linear infinite;
            top: 0%;
            position: absolute;
            left: 2%;
            z-index: -1;
    }
        .faq-vector3 {
        right: 26%;
        bottom: 4%;
        animation: floatUpDown 5s ease-in-out infinite;
    }
    .leg-vector{
        position: absolute;
        top: 34%;
        left: -10%;
        animation: floatUpDown 4s ease-in-out infinite;
        width: 140px;
        rotate: -58deg;
    }
}
}
.drowning-img-box.text-end{
    .leg-vector {
        top: 50%;
        left: -6%;
        width: 140px;
        rotate: unset;
        }
        .faq-vector3 {
            right: 26%;
            bottom: -16%;
        }
        .why-swim-vector4 {
            top: -8%;
            right: 1%;
            z-index: -1;
            animation: floatUpDown 5s ease-in-out infinite;
        }
}
.notfatal.drowning-img-box {
    .faq-vector1 {
        position: absolute;
        bottom: 2%;
        left: 16%;
        animation: floatUpDown 4s ease-in-out infinite;
        top: unset;
    }
    .faq-vector3 {
            right: 20%;
            bottom: 2%;
            animation: floatUpDown 5s ease-in-out infinite;
    }
    .leg-vector {
            position: absolute;
            top: 65%;
            left: -7%;
            animation: floatUpDown 6s ease-in-out infinite;
            width: 140px;
            rotate: unset;
            z-index: 1;
    }
}
.drowning-risk{
    position: relative;
    z-index: 1;
    padding-bottom: 150px;
    overflow: hidden;
    .video-bg{
        position: absolute;
        bottom: 0;
        z-index: -1;
    }
    .swim-guarantee-item {
    padding-inline: 30px;
    text-align: center;
    padding: 35px 30px;
    clip-path: unset;
    height: 100%;
    transition: 0.5s;
    border-radius: 50px;
    background: rgb(255, 255, 255);
    .card-title,p{
        color: #000;
    }
    img{
        margin-bottom: 20px;
    }
    p{
        margin: 0;
    }
    &:hover{
        img{
            transform: rotateY(180deg);
        }
    }
}
}
.video-box {
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.19);
    background: #FFF;
    position: relative;
    padding: 30px;
    margin-bottom: 60px;
    .video-img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50px;
    }
}
.certain-factors{
    padding-top: 90px;
    padding-bottom: 60px;
    .why-choose-tabs {
    button {
        background: rgb(153, 221, 196);
        width: 170px;
        height: 100px;
        font-size: 19px;
        line-height: 117.391%;
         &:nth-child(2){
            background-color: #FFEE73;
        }
        &:nth-child(3){
            background-color: #BEF5E1;
        }
        &:nth-child(4){
            background-color: #71D6F9;
        }
        &:nth-child(5){
            background-color: #FFC87F;
        }
        &:nth-child(6){
            background-color: #03C9BD;
        }
        &:nth-child(7){
            background-color: #EF7600;
        }
       &.active,&:hover{
            background-color: #ffffff;
            color: #000000;
            box-shadow: 0 4px 17px 0 rgba(243, 117, 117, 0.24);
        }
    }
}
ul li{
    margin-bottom: 15px;
}
}
.factor-box {
    border-radius: 60px 70px 50px 30px;
    background: #FFF;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.13);
    padding-block: 24px;
    padding-right: 16px;
    padding-left: 134px;
    height: -webkit-fill-available;
    outline: 1px dashed #6F6B6B;
    outline-offset: 10px;
    margin: 12px;
    position: relative;
}
.factor-title{
color: #000;
font-family: "Mainyuk";
font-size: 34px;
font-style: normal;
font-weight: normal;
line-height: 100%;
text-transform: capitalize;
margin-bottom: 15px;
}
.certain-factors {
  counter-reset: step;

  .row {
    .col-lg-6 {
      counter-increment: step;

      .factor-box {
        position: relative;

        &::before {
          content: counter(step);
          width: 87px;
          height: 87px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-family: "Dosis SemiBold";
          font-size: 33px;
          line-height: 23px;
          position: absolute;
          left: 24px;
          color: #000;
        }
      }

      &:nth-child(4n + 1) .factor-box::before {
        background: #F6D637;
      }

      &:nth-child(4n + 2) .factor-box::before {
        background: #99DDC4;
      }

      &:nth-child(4n + 3) .factor-box::before {
        background: #30A0E8;
        color: #fff;
      }

      &:nth-child(4n + 4) .factor-box::before {
        background: #EF7600;
        color: #fff;
      }
    }
  }
}
.app-img{
    margin-bottom: 50px;
}
.app-download{
    position: relative;
    padding-bottom: 100px;
    z-index: 1;
    .section-title{
        margin-bottom: 25px;
    }
    h5{
        color: #000;
        font-family: "Dosis Medium";
        font-size: 29px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 15px;
    }
    p{
        margin-bottom: 20px;
    }
    .app-download-bg{
        position: absolute;
        bottom: 0;
        z-index: -1;
    }
}
.download-btn{
    a{
        display: inline-block;
    }
    a:hover{
        transform: scale(1.051);
    }
}
.why-do-we-do-it {
    padding-top: 80px;
    padding-bottom: 150px;
}
.why-do-img{
    img{
        border-radius: 60px;
    }
}
.section-call{
    position: relative;
    display: inline-block;
    margin-top: 32px;
    .section-title{
        margin-bottom: 25px;
    }
    .call-us-btn{
        text-align: left;
        background: #22559C;
        position: relative;
        padding-left: 140px;
        color: #FFF;
        font-family: "Mainyuk";
        font-size: 31px;
        font-style: normal;
        font-weight: normal;
        line-height: 60.452%;
        clip-path: polygon(2.57% 10.69%, 2.57% 10.69%, 6.274% 5.436%, 13.362% 2.093%, 23.005% 0.381%, 34.373% 0.023%, 46.637% 0.74%, 58.967% 2.252%, 70.534% 4.282%, 80.508% 6.551%, 88.059% 8.78%, 92.359% 10.69%, 92.359% 10.69%, 94.629% 13.967%, 96.596% 20.057%, 98.183% 28.323%, 99.316% 38.127%, 99.92% 48.834%, 99.919% 59.806%, 99.238% 70.407%, 97.801% 79.999%, 95.533% 87.947%, 92.359% 93.612%, 92.359% 93.612%, 88.002% 96.646%, 81.393% 98.62%, 73.035% 99.687%, 63.436% 100%, 53.1% 99.71%, 42.532% 98.97%, 32.239% 97.933%, 22.725% 96.75%, 14.497% 95.574%, 8.059% 94.558%, 8.059% 94.558%, 7.085% 94.206%, 6.15% 93.49%, 5.266% 92.43%, 4.441% 91.047%, 3.686% 89.359%, 3.011% 87.388%, 2.425% 85.152%, 1.938% 82.673%, 1.561% 79.97%, 1.303% 77.063%, 1.303% 77.063%, 0.921% 70.754%, 0.567% 63.878%, 0.276% 56.62%, 0.076% 49.165%, 0% 41.699%, 0.079% 34.407%, 0.344% 27.475%, 0.827% 21.088%, 1.559% 15.431%, 2.57% 10.69%);
        padding-right: 86px;
        padding-top: 38px;
        padding-bottom: 28px;
        transition: all .5s;
        span{
            color: #FFF;
            font-family: "Lobster";
            font-size: 53px;
            font-style: normal;
            font-weight: normal;
            line-height: 154.717%;
        }
        &:hover{
            background: #E65C00;
            transform: translateY(-5px);
            .call-icon{
                background: #0172bd;
            }
        }
    }
    .call-icon {
    width: 88px;
    height: 88px;
    background: #E65C00;
    position: absolute;
    left: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .5s;
}
}
.call-us-btn-outline {
    svg{
    position: absolute;
        inset: 0;
        top: -5px;
        width: 100.6%;
    }
}
.adult-swimming-about-img{
    position: relative;
    img{
        border-radius: 50px;
    }
}
.img-big {
    width: 86%;
}
.img-small {
    position: absolute;
    bottom: -165px;
    right: 15px;
    width: 56%;
}
.adult-swimming-about-content{
    .section-title{
        margin-bottom: 25px;
    }
}
.adult-swimming-about{
    padding-bottom: 130px;
}
.adult-class-item{
    position: relative;
    .adult-class-img-back{
        width: 100%;
    }
    .adult-class-img{
        clip-path: polygon(37.531% 100%, 37.531% 100%, 29.957% 99.739%, 23.426% 98.744%, 17.874% 97.143%, 13.236% 95.062%, 9.448% 92.63%, 6.444% 89.974%, 4.16% 87.22%, 2.531% 84.496%, 1.492% 81.93%, 0.978% 79.648%, 0.978% 44.084%, 0.978% 44.084%, 0.484% 40.755%, 0.156% 37.23%, 0.008% 33.575%, 0.051% 29.861%, 0.3% 26.156%, 0.767% 22.528%, 1.464% 19.046%, 2.405% 15.779%, 3.603% 12.795%, 5.07% 10.164%, 5.07% 10.164%, 6.893% 7.915%, 9.094% 6.016%, 11.582% 4.438%, 14.27% 3.155%, 17.068% 2.138%, 19.889% 1.361%, 22.643% 0.795%, 25.242% 0.413%, 27.597% 0.187%, 29.621% 0.091%, 35.076% 0.091%, 35.076% 0.091%, 39.542% 0.07%, 44.592% 0.049%, 49.983% 0.03%, 55.471% 0.014%, 60.814% 0.003%, 65.767% 0%, 70.087% 0.005%, 73.53% 0.021%, 75.854% 0.049%, 76.813% 0.091%, 76.813% 0.091%, 81.84% 0.901%, 86.017% 1.945%, 89.437% 3.181%, 92.193% 4.567%, 94.378% 6.061%, 96.086% 7.62%, 97.408% 9.201%, 98.44% 10.763%, 99.273% 12.263%, 100% 13.659%, 100% 13.659%, 100.776% 16.339%, 101.624% 21.38%, 102.437% 28.268%, 103.111% 36.493%, 103.542% 45.54%, 103.624% 54.899%, 103.252% 64.056%, 102.321% 72.5%, 100.726% 79.719%, 98.363% 85.199%, 98.363% 85.199%, 95.533% 89.168%, 92.636% 92.273%, 89.711% 94.63%, 86.8% 96.356%, 83.944% 97.567%, 81.183% 98.382%, 78.557% 98.915%, 76.108% 99.285%, 73.876% 99.608%, 71.903% 100%, 71.903% 100%, 69.439% 100.387%, 65.921% 100.628%, 61.663% 100.747%, 56.979% 100.766%, 52.183% 100.706%, 47.589% 100.59%, 43.513% 100.439%, 40.269% 100.275%, 38.17% 100.122%, 37.531% 100%);
        position: absolute;
        left: 13px;
        top: 11px;
        width: 87%;
        height: 93%;
        transform: rotate(-2deg);
    }
    &:hover{
        .adult-class-img{
            transform: translateY(-10px);
        }
    }
}
.adult-class{
    background-image: url(../img/adult-class-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 70px;
    position: relative;
    .sec-btn {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 32px;
}
.section-vector {
    width: 100%;
    margin-bottom: -5px;
    margin-top: 30px;
}
.gv1 {
    bottom: 127px;
    right: unset;
    left: 194px;
}
.about-why-swim-vector {
    position: absolute;
    bottom: 75px;
    right: 120px;
    z-index: 1;
}
}
.why-learn-adult{
    padding-bottom: 110px;
}
.adult-right-content{
    .icon-list li::before {
    content: "";
    background-image: url(../img/check-blue.webp);
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
}
.icon-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #000;
    font-family: 'Dosis Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 200%;
}
.icon-list{
    margin-bottom: 25px;
}
p{
    font-family: 'Dosis SemiBold';

}
.banner-btn{
    display: inline-block;
    .primary-btn {
        background: #084B76;
                &:hover {
            transform: translateY(-4px);
            background: #30a0e8;
        }
    }
}
}
.adult-right-img {
    border-radius: 60px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.adult-right{
    padding-bottom: 110px;
}
.why-expect {
    background: #D2F3FF;
    padding-top: 70px;
    position: relative;
    .btn-group{
        margin-top: 60px;
        justify-content: center;
    }
    .section-vector {
    width: 100%;
    margin-bottom: -5px;
    margin-top: 40px;
}
.what-expect-icon {
    position: absolute;
    left: 29px;
    top: 42px;
}
.factor-box {
    padding-block: 38px;
    padding-right: 38px;
    padding-left: 166px;
    position: relative;
    transition: all .5s;
    p{
        margin: 0;
    }
    &:hover{
        transform: translateY(-10px);
        .what-expect-icon{
            transform: rotateY(360deg);
        }
    }
}
}
.adult-success-stories{
    background: #fff;
    padding-bottom: 50px;
    z-index: 1;
      .back-shape{
        backdrop-filter: unset;
        inset: 0;
        z-index: -1;
        right: 13px;
        top: -5px;
        left: 24px;
      }
    .swim-guarantee-item{
        p{
            color: #fff;
        }
    }
    .col-lg-4{
        position: relative;
    }
    .row{
        .col-lg-4:nth-child(2){
            .swim-guarantee-item{
                background: #E830D0;
            }
            .back-shape{
                background: #CE26B7;
            }
        }
        
        .col-lg-4:nth-child(3){
            .swim-guarantee-item{
                background: #3F9FD1;
            }
            .back-shape{
                background: #91CAE7;
            }
        }

    }
}
.price{
    position: relative;
    .price-content-box{
        background: #22559C;
        padding-bottom: 50px;
    }
    :is(.section-title,p,h3,h4){
        color: #fff;
    }
    .banner-btn{
        display:inline-block;
        margin-top: 30px;
    }
    .price-title{
        color: rgb(246, 214, 55);
        font-family: "Dosis Bold";
        font-size: 102px;
        font-style: normal;
        font-weight: normal;
        line-height: 100%;
        margin-bottom: 12px;
    }
    p{
        font-size: 18px;
    }
    .card-title{
        font-size: 36px;
    }
    h4{
        color: #FFF;
font-family: "Dosis bold";
font-size: 21px;
font-style: normal;
font-weight: normal;
line-height: 123.81%;
    }
    .price-img-box{
    .why-swim-vector1 {
        right: 30px;
        top: 140px;
        width: 110px;
    }
    .why-swim-vector4 {
        left: unset;
        top: 33px;
        z-index: 0;
        right: 133px;
    }
    .why-swim-vector3 {
        bottom: -18px;
        left: 17px;
    }
    }
}
.adult-client-says{
    padding-block: 90px;
}
.join-us-today{
    position: relative;
    z-index: 2;
    .mission-vision-vector {
        bottom: -73px;
        right: 69px;
    }
    .why-swim-vector4 {
        width: 170px;
    }
    .about-mission-vision-content{
        padding-top: 90px;
        padding-bottom: 140px;
        p {
    font-size: 22px;
    line-height: 140%;
}
    .section-title {
        margin-bottom: 20px;
    }
        h5 {
        font-size: 35px;
        line-height: 133.333%;
        margin-bottom: 20px;
    }
    }
    .section-call {
    position: relative;
    margin-top: -110px;
    display: flex;
    justify-content: center;
}
}
.location.adult-locations{
       margin-top: -320px;
}
.schedule {
    background: #AAE2FF;
    padding-top: 80px;
    .section-vector {
    width: 100%;
    margin-bottom: -5px;
    padding-top: 60px;
}
}
.pool-hours {
    border-radius: 50px;
    background: #D1FFF9;
    height: 100%;
    padding: 50px 46px;
    .section-title {
    margin-bottom: 45px;
}
p{
color: #000;
font-size: 22px;
line-height: 113.636%;
margin: 0;
border-radius: 20px;
height: 60px;
padding: 10px 20px;
display: flex;
align-items: center;
justify-content: space-between;
&:nth-child(2n-1){
    background: #CDF1E4;
}
}
}
.schedule-img {
    border-radius: 60px;
    overflow: hidden;
    height: 100%;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.mauris{
    .section-title{
        margin-bottom: 20px;
    }
    p{
        margin-bottom: 30px;
    }
}
.pricing-fees{
    position: relative;
    background: transparent;
    padding-top: 150px;
    padding-bottom: 100px;
    overflow: hidden;
    .price-and-fees-bg {
    position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
        z-index: -1;
}
.price-card {
background: white;
border-radius: 30px;
padding: 40px 30px;
text-align: center;
position: relative;
transition: transform 0.3s ease;
.section-title{
    margin-bottom: 25px;
    margin-top: 20px;
}
}

.price-card:hover {
transform: translateY(-10px);
}

.price-card.blue {
background: #7dd3fc;
}

.price-card.green {
background: #a8e6cf;
}

.price-card.yellow {
background: #fef08a;
}

.badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: #EF7600;
color: white;
padding: 8px 20px;
border-radius: 20px;
font-family: "Dosis SemiBold";
font-size: 20px;
font-style: normal;
font-weight: normal;
line-height: 140%;
}

.price-box {
background: white;
border-radius: 20px;
padding: 65px 20px;
margin: 0 auto;
}

.price {
display: flex;
align-items: flex-start;
justify-content: center;
gap: 5px;
}

.currency {
    margin-top: -10px;
    color: #000;
    font-family: "Dosis Bold";
    font-size: 41px;
    font-style: normal;
    font-weight: normal;
    line-height: 53px;
    text-transform: capitalize;
}

.amount {
    font-size: 91px;
    color: #000000;
    font-weight: normal;
    line-height: 1;
    font-family: 'Mainyuk';
}

.period {
    margin-top: 30px;
    color: #000;
    font-family: "Dosis Semibold";
    font-size: 31px;
    font-style: normal;
    font-weight: normal;
    line-height: 53px;
    text-transform: capitalize;
}
}
.pt-100{
    padding-top: 100px;
}
.location-faq{
    padding-top: 100px;
    .faq-vector1 {
    top: 20%;
    left: 54%;
    animation: floatUpDown 4s ease-in-out infinite;
}
.why-swim-vector4 {
    animation: rotate360 6s linear infinite;
    bottom: 21%;
    position: absolute;
    left: 8%;
}
.why-swim-vector5 {
    animation: rotate360 6s linear infinite;
    top: 15%;
    position: absolute;
    left: 8%;
    z-index: -1;
}
.water-safety-page-vector1 {
    position: absolute;
    bottom: 18px;
    right: 23%;
    animation: floatUpDown 4s ease-in-out infinite;
    rotate: 45deg;
}
.faq-vector3 {
    right: 11%;
    bottom: 12%;
    animation: floatUpDown 5s ease-in-out infinite;
}
}
.location-locations{
    .location-map{
        height: 100%;
    }
    margin-top: 0;
    padding-top: 125px;
    padding-left: 6%;
    .section-vector{
        left: 0;
        right: 0;
    }
        iframe {
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 60px 0px 0px 60px;
    }
}
.zip-search{
    position: relative;
    margin-bottom: 18px;
    .form-control,.primary-btn{
        position: absolute;
    }
    .form-control{
        top: 50%;
        transform: translateY(-50%);
        color: #000;
        font-family: "Mainyuk";
        font-size: 25px;
        font-style: normal;
        font-weight: 400;
        line-height: 53px;
        border: 0;
        outline: none;
        left: 30px;
        background: #f0f8ff00;
        width: 70%;
        &::placeholder{
            color: #000;
        }
    }
    .primary-btn{
       right: 43px;
        top: 48%;
        transform: translateY(-50%) rotate(3.436deg);
        border: 0;
        font-size: 26px;
        filter: drop-shadow(5px 6px 0 #30A0E8);
        padding: 30px 57px;
        cursor: pointer;
    }
    svg{
        width: 100%;
    }
}
.instructors-lists{
    height: 560px;
    overflow-y: auto;
    padding-right: 25px;

&::-webkit-scrollbar-track
{
	border-radius: 50px;
    background: #B9D3C9;
}

&::-webkit-scrollbar
{
	width: 16px;
	border-radius: 50px;
    background: #B9D3C9;
}

&::-webkit-scrollbar-thumb
{
	border-radius: 50px;
    background: #E2F0EB;
}
    .factor-box {
        padding-block: 26px;
        padding-right: 38px;
        padding-left: 149px;
        position: relative;
        margin-bottom: 40px;
        height: auto;
        .factor-title{
            margin-bottom: 5px;
        }
        p{
            margin-bottom: 5px;
        }
    }
    .what-expect-icon {
        position: absolute;
        left: 24px;
        top: 26px;
        width: 96px;
        height: 96px;
        border-radius: 50%;
        object-fit: cover;
    }
    .banner-btn{
        display: inline-block;
    }
    .banner-btn {
    margin-top: 14px;
    .primary-btn {
        font-size: 17px;
        padding: 8px 5px 8px 29px;
        .arrow {
            width: 31.32px;
            height: 30.309px;
            padding: 8px;
        }
    }
}
}
.industry-partners{
    padding-bottom: 100px;
}
.logo-box{
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 17px 0 rgba(0, 0, 0, 0.25);
    width: 208px;
    height: 144px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: 20px;
}
.partner-video{
    padding-top: 140px;
}
.why-partner{
    .why-list{
    .why-item{
        background: #fff;
    }
}
.why-swim-img {
    .why-swim-vector1 {
        right: unset;
        top: 40px;
        left: 40px;
    }
    .why-swim-vector3 {
        bottom: 143px;
        left: unset;
        right: 35px;
    }
}
}
.partner-about-img{
    .why-swim-vector4 {
        left: unset;
        top: 0px;
        z-index: 1;
        right: 80px;
        width: 150px;
    }
    .why-swim-vector1 {
        right: -24px;
        bottom: 75px;
        width: 100px;
        top: unset;
    }
    .why-swim-vector3 {
        bottom: -49px;
        left: 180px;
        width: 150px;
    }
}
.step-ownership {
    padding-top: 50px;
    padding-bottom: 80px;
    .row{
        .col-lg-4:nth-child(2){
            .step-box{
                & .step-content {
                &::after {
                    background: #EF7600;
                }
                }
                .step-icon{
                    background: #FFE2C5;
                }
            }
        }
        .col-lg-4:nth-child(3){
            .step-box{
                & .step-content {
                &::after {
                    background: #F6D637;
                }
                }
                .step-icon{
                    background: #FFF7CE;
                }
            }
        }
        .col-lg-4:nth-child(4){
            .step-box{
                & .step-content {
                &::after {
                    background: #03C9BD;
                }
                }
                .step-icon{
                    background: #D5FFFC;
                }
            }
        }
        .col-lg-4:nth-child(5){
            .step-box{
                & .step-content {
                &::after {
                    background: #22559C;
                }
                }
                .step-icon{
                    background: #D7E7FF;
                }
            }
        }
        .col-lg-4:nth-child(6){
            .step-box{
                & .step-content {
                &::after {
                    background: #65CAF8;
                }
                }
                .step-icon{
                    background: #CAEFFF;
                }
            }
        }
        
    }
}
.step-box{
    position: relative;
    transition: all .5s;
    .step-content{
    border-radius: 60px;
    background: #FFF;
    box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 50px;
    padding-top: 110px;
    text-align: center;
    &::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200px;
        background: #9541D4;
        z-index: -1;
        clip-path: polygon( 57.366% 75%,57.366% 75%,65.027% 67.056%,71.3% 62.027%,76.429% 59.482%,80.66% 58.99%,84.238% 60.119%,87.408% 62.439%,90.416% 65.519%,93.506% 68.926%,96.924% 72.23%,100.915% 75%,119.04% 89.545%,119.04% 30.455%,90.022% -22.273%,27.433% -22.273%,27.433% -22.273%,23.335% -20.591%,18.611% -18.497%,13.467% -16.044%,8.109% -13.283%,2.743% -10.267%,-2.426% -7.048%,-7.191% -3.678%,-11.348% -0.209%,-14.689% 3.307%,-17.009% 6.818%,-17.009% 6.818%,-18.484% 10.225%,-19.469% 13.452%,-20.024% 16.48%,-20.21% 19.288%,-20.089% 21.858%,-19.722% 24.17%,-19.169% 26.205%,-18.492% 27.944%,-17.751% 29.367%,-17.009% 30.455%,-17.009% 30.455%,-15.932% 34.289%,-15.183% 39.113%,-14.669% 44.73%,-14.295% 50.94%,-13.968% 57.545%,-13.594% 64.347%,-13.079% 71.146%,-12.33% 77.745%,-11.253% 83.944%,-9.754% 89.545%,-9.754% 89.545%,-6.547% 94.932%,-1.535% 98.161%,4.897% 99.47%,12.364% 99.1%,20.483% 97.29%,28.867% 94.278%,37.132% 90.304%,44.893% 85.607%,51.766% 80.426%,57.366% 75% );

    }
    h3{
        color: #FFF;
        font-size: 53px;
        font-style: normal;
        font-weight: normal;
        line-height: 27px;
        text-transform: capitalize;
        margin-bottom: 80px;
    }
}
&:hover{
    transform: translateY(-5px);
    .step-icon{
        img{
            transform: scale(1.1);
        }
    }
}
}
.step-icon {
    width: 148px;
    height: 148px;
    background: #F6EBFF;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0px 15px #fff;
    margin-inline: auto;
    margin-bottom: -72px;
    position: relative;
    z-index: 2;
}
.partner-with{
    background: #D3F0FF;
    padding-top: 100px;
    padding-bottom: 230px;
    margin-bottom: -116px;
}
.ready-to-explore{
    padding-top: 140px;
    .section-title,p{
        color: #000;
    }
    .primary-btn{
        background: #084B76;
    }
    .section-title{
        margin-bottom: 30px;
    }
    .banner-btn{
        margin-top: 20px;
    }
    .about-mission-vision-content {
        padding-top: 120px;
        padding-bottom: 120px;
        padding-inline: 19%;
    }
    .mission-vision-vector {
        bottom: -123px;
        right: 0px;
    }
}
/*************************************
    Responsive
*************************************/
@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
   .gv2 {
    right: 2%;
    top: 19%;
}
.gv1 {
    bottom: 25px;
    right: 18px;
    width: 100px;
}
.gallery-v1 {
    top: 44px;
    left: 2%;
}
.gallery-v3 {
    right: 20%;
    bottom: 158px;
}
.news {
    .gv1 {
        bottom: unset;
        right: unset;
        left: 186px;
        top: -36px;
        width: auto;
    }
}
.footer-bg {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    object-fit: cover;
    height: 100%;
}
.location {
    position: relative;
    padding-top: 260px;
    padding-bottom: 190px;
    margin-top: -110px;
    margin-bottom: -120px;
        .section-vector {
        width: 100%;
        position: absolute;
        height: 100%;
        object-fit: cover;
        top: 0;
        z-index: -1;
        bottom: 0;
    }
}
.footer-vector1 {
    left: 31%;
    top: 50px;
}
.footer-vector2 {
    right: 110px;
    top: -38px;
    width: 177px;
}
.footer-vector3 {
    width: 100px;
}
}

@media (max-width: 1536px) {}

@media (max-width: 1440px) {}

@media (max-width: 1440px),
(max-width: 1366px) {
    .container {
        max-width: 1140px;
    }
    .main-menu {
        gap: 30px;
    }
    #menu>.main-menu>ul>li {
        padding-inline: 12px;
    }
    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 17px;
		font-family: 'Mainyuk';
		color: #0B3A59;
    }
    .popup .popup__content {
        width: 60%;
    }
  .menu-btn {
    margin-left: 14px;
  }
.call-btn {
    font-size: 24px;
    gap: 20px;
    .icon {
        width: 58px;
        height: 58px;
        padding: 18px;
    }
    &::after {
        width: 74px;
        height: 94px;
        left: -8px;
        top: -26px;
    }
}  
.banner-img-box {
    .banner-content-vector {
        position: absolute;
        top: 0px;
        left: -100px;
        width: 717px;
    }
}
.banner-content {
    position: relative;
    width: 49%;
    padding-top: 134px;
    padding-left: 0px;
        h1 {
        font-size: 60px;
        line-height: 98.579%;
        margin-bottom: 5px;
    }
    p {
        font-size: 20px;
    }
}
.banner-shape1 {
    left: -77px;
    bottom: 58px;
    width: 40px;
}
.banner-shape2 {
    left: -90px;
    width: 120px;
    bottom: -57px;
}
.banner {
    padding-top: 114px;
    z-index: 1;
    height: 850px;
}
.trust {
    padding-top: 114px;
    padding-bottom: 60px;
    margin-top: -145px;
    position: relative;
    z-index: 2;
}
.section-title {
    font-size: 40px;
}
.trust-vector1 {
    top: 32%;
    left: 37px;
    width: 90px;
}
.trust-box {
    padding: 12px;
    padding-right: 34px;
    padding-left: 24px;
    gap: 18px;
    h5 {
        font-size: 18px;
    }
}
.lession-content {
    padding-inline: 16px;
    padding-bottom: 50px;
    margin-top: -90px;
    width: 79%;
        border-radius: 0 0 60px 60px;
    .card-title {
    font-size: 22px;
    margin-bottom: 0px;
}
p {
    line-height: 150%;
}
}
.primary-btn {
    font-size: 16px;
    padding: 18px 40px;
}
.card-title {
    font-size: 22px;
}
p {
    line-height: 150%;
}
.swim-guarantee-item {
    padding-inline: 15px;
    padding-top: 40px;
    padding-bottom: 40px;
}
.gallery-v3 {
        right: 20%;
        bottom: 135px;
    }
    .instructor-slider {
    .lession-img {
        height: 314px;
        overflow: hidden;
        border-radius: 41px;
    }
    .lession-content {
        margin-top: -50px;
    }
}
.about-vector4 {
    right: -68px;
}
.about-vector2 {
    left: -44px;
    top: 36%;
    z-index: -1;
}
.accordion__item {
    .card-title {
        font-size: 22px;
    }
}
.faq-vector1 {
    width: 156px;
}
.faq-vector2 {
    width: 130px;
}
.faq-vector3 {
    right: 4%;
    bottom: 20%;
}
.faq-vector4 {
    left: 80px;
    bottom: 138px;
}
    .news {
        .gv1 {
            bottom: unset;
            right: unset;
            left: 150px;
            top: -20px;
            width: 200px;
        }
            .gv3 {
        top: -90px;
        right: 217px;
        width: 230px;
    }
    }
    .news {
    .card-title {
        font-size: 20px;
        line-height: 116%;
        margin-bottom: 2px;
    }
        .news-box {
        border-radius: 40px 40px 30px 30px;
        padding: 14px;
        padding-bottom: 35px;
    }
        .news-img {
        border-radius: 30px;
    }
}
.water-safety {
    .about-vector3 {
        left: 61px;
        top: 80px;
        width: 95px;
    }
        .about-vector1 {
        bottom: 100px;
        right: 16px;
        width: 170px;
    }
    .about-vector4 {
        right: 0px;
        top: 60px;
    }
}
    .footer-vector2 {
        right: 35px;
        top: -20px;
        width: 150px;
    }
        .footer-vector1 {
        left: 31%;
        top: 100px;
        width: 210px;
    }
    footer {
    & .why-item {
        gap: 15px;
        h3 {
            font-size: 20px;
        }
    }
}
footer ul li a {
    font-size: 18px;
}
.footer-title {
    font-size: 31px;
}
.lession-vector2 {
    top: -65px;
    left: 38px;
    width: 120px;
}
.contact-us {
    & .contact-box-outline {
        svg {
            height: 104%;
            width: 94%;
            margin-left: 30px;
        }
    }
}
.contact-us {
    .contact-box {
        padding: 50px 70px 120px 70px;
    }
}
#menu {
    gap: 30px;
}
#menu>.main-menu>ul>li>a {
    padding: 42px 6px;
}
.sidebar-navigation ul li a {
    font-size: 17px;
}
.logo {
    padding-block: 9px;
    width: 150px;
}
.inner-banner {
    height: auto;
    padding-top: 135px;
}
.inner-banner {
    & .banner-img-box {
        .banner-content-vector {
            position: absolute;
            top: -90px;
            left: -48px;
            width: 430px;
        }
        .banner-content {
            padding-top: 110px;
        }
    }
}
.faq-page {
    padding-bottom: 100px;
}
.faq-vector5 {
    left: 3%;
    top: 18%;
    width: 60px;
}
.section-divider {
    margin-top: -86px;
}
.recent-post-img {
    border-radius: 20px;
}
.recent-post-item {
    .card-title {
        font-size: 17px;
        line-height: 22px;
    }
}
.inner-banner {
    & .banner-img-box {
        & .banner-content {
            & h1 {
                font-size: 44px;
            }
        }
    }
}
.category-box {
        padding: 20px 30px;
    .icon-list li {
        margin-bottom: 0;
        font-size: 18px;
    }
    .icon-list li::before {
    top: 14px;
}
}
.why-choose-tabs {
    gap: 22px;
        button {
        width: 202px;
        height: 85px;
        font-size: 19px;
    }
}
.why-choose-content-item {
    .why-choose-title {
        margin-bottom: 15px;
        padding-top: 4px;
    }
    .why-choose-content-img {
        width: 48%;
        border-radius: 40px;
        margin-right: 30px;
        margin-bottom: 22px;
    }
    p {
        margin-bottom: 16px;
    }
}
.gurantee-box {
    padding: 45px 17px;
}
.contact-page {
    .trust-box {
        padding: 14px 20px;
        gap: 10px;
        margin-bottom: 40px;
                & h5 {
            a {
                color: #000;
                font-size: 18px;
                font-family: "Dosis Bold";
            }
        }
    }
    .contact-img {
        right: 1%;
        width: 43%;
    }
        & .contact-content {
        &::after {
            content: "";
            width: 544px;
            height: 544px;
            border-radius: 638px;
            background: #FF942B;
            position: absolute;
            bottom: 53px;
            right: 2%;
            z-index: -1;
        }
    }
    .col-lg-1{
        flex: 0 0 auto;
        width: 3.333333%;
    }
}
.timing-box{
    gap: 10px;
    h5{
        font-size: 15px;
    }
    h4 {
        font-size: 16px;
        line-height: 173.474%;
        margin-bottom: 20px;
    }
}
.contact-us-form {
    .contact-box-outline {
        position: absolute;
        height: 100%;
        left: -12px;
        top: -20px;
        width: 100%;
            svg {
                height: 108%;
                width: 98%;
                margin-left: 30px;
            }
    }
}
.about-page {
    & .about-img {
        .about-vector4 {
            right: 195px;
            width: 122px;
            top: 33px;
        }
        .about-vector2 {
            width: 130px;
        }
        .about-vector1 {
            width: 40px;
        }
    }
}
.about-mission-vision {
    svg {
        position: absolute;
        width: 100%;
    }
}
.about-why-swim-vector {
    bottom: 0;
    right: 23px;
    z-index: 1;
    width: 200px;
}
.fun2 {
    margin-left: 50%;
}
.fun1 {
    width: 336px;
    height: 314px;
    border-radius: 376px;
    object-fit: cover;
}
.fun3 {
    width: 362.042px;
    height: 362.042px;
}
.ethan-chapa {
    & .why-swim-img {
        & .why-swim-vector4 {
            left: unset;
            right: 120px;
            top: 41px;
            z-index: 0;
            width: 85px;
        }
    }
    & .about-why-swim-vector {
        bottom: 106px;
        right: 28px;
        z-index: 1;
        width: 100px;
    }
    & .why-swim-img {
        .why-swim-vector2 {
            bottom: 16px;
            left: 100px;
            width: 130px;
        }
    }
}
.about-mission-vision-content {
    padding: 100px 120px;
}
}

@media (max-width: 1366px) {}

@media (max-width: 1199.98px) {
    
    #menu>.main-menu>ul>li {
        padding-inline: 4px;
    }
    .success-stories {
    .content-box {
        padding-inline: 20px;
    }
}
.success-stories {
    .bg {
        position: absolute;
        top: 0;
        width: auto;
        height: 125%;
    }
}
 .inner-banner {
        & .banner-img-box {
            & .banner-content {
                & h1 {
                    font-size: 36px;
                }
            }
        }
    }
}

@media (max-width: 991.98px) {
    #menu {
        justify-content: space-between;
    }
   
    .logo {
        width: 110px;
        padding-block: 5px;
    }
    .banner-content {
        h1 {
            font-size: 58px;
            line-height: 98.579%;
            margin-bottom: 5px;
        }
    }
    .side-bar header {
    height: auto;
}
    .banner-content {
        position: relative;
        width: 70%;
        padding-top: 110px;
        padding-left: 0px;
    }
    .banner-img-box {
        .banner-content-vector {
            position: absolute;
            top: -42px;
            left: -100px;
            width: 717px;
        }
    }
    .hamburger {
        background: #F7060E;
        border-radius: 4px;
        display: none;
    }
    header {
        height: 80px;
    }
    #menu .main-menu {
        background-color: rgb(19 19 19);
        top: 60px;
        flex-direction: column;
        padding-right: 0;
    }
   
    #menu .main-menu {
        top: 78px;
        background-color: rgb(29 46 96);
    }
    #menu>.main-menu>ul>li {
        border-bottom: 1px solid #dddddd3d;
    }
    #menu>.main-menu>ul>li>a{
        font-size: 16px;
        padding: 20px 6px;
    }
    #menu ul ul li a {
        padding: 12px 6px;
    }
    header .flex-box {
        margin-top: 20px;
    }
        
    #menu .submenu-button {
        height: 60px;
        width: 70px;
    }

    #menu .submenu-button:after {
        top: 22px;
        right: 30px;
    }

    #menu>.main-menu>ul>li.has-sub>a::before {
        display: none;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 34px;
    }
    .extra-menu{
        display: block;
      }
   
    .navTrigger{
        display: none;
    }
    #menu .main-menu ul li.menu-btn{
        display: none;
    }
    .category-item {
        height: 96px;
    }
    .review-content p {
        min-height: 208px;
    }
    .review-content .user-info p {
        min-height: auto;
    }
    .play-btn img {
        width: 70px;
        height: auto;
    }
    .new-batch {
        font-size: 24px;
    }
    .slick-prev {
        left: 0px;
    }
    .slick-next {
        right: 0;
    }
    .section-title {
        font-size: 40px;
    }

.extra-menu{
    display: block;
  }
  /* .dropdown{
    display: none;
  } */
  #menu .main-menu ul ul li.has-sub>a:after{
    display: none !important;;
}
#menu li:hover>ul>li {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.menu-btn{
    opacity: 1;
}
#menu {
    .flex-box {
        margin-top: 4px;
        width: 100%;
        justify-content: end;
    }
}
#menu .main-menu ul li a, #menu .main-menu ul ul li a {
    padding-right: 40px;
    padding-left: 12px;
}
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    position: relative;
    object-position: 60%;
}
.banner {
        padding-top: 114px;
        z-index: 1;
        height: 770px;
    }
        .trust {
        padding-top: 114px;
        padding-bottom: 60px;
        margin-top: -100px;
        position: relative;
        z-index: 2;
        clip-path: polygon(52.908% 6.624%, 52.908% 6.624%, 57.832% 3.271%, 63.017% 1.168%, 68.349% 0.153%, 73.711% 0.066%, 78.986% 0.745%, 84.059% 2.028%, 88.812% 3.755%, 93.131% 5.764%, 96.899% 7.894%, 100% 9.983%, 100% 100%, -83.137% 100%, -90.038% 24.497%, -90.038% 24.497%, -89.679% 20.698%, -88.425% 16.838%, -86.456% 13.136%, -83.956% 9.809%, -81.106% 7.077%, -78.089% 5.159%, -75.086% 4.271%, -72.28% 4.634%, -69.853% 6.465%, -67.987% 9.983%, -67.987% 9.983%, -65.757% 14.136%, -62.951% 15.865%, -59.676% 15.705%, -56.04% 14.19%, -52.151% 11.856%, -48.117% 9.238%, -44.045% 6.871%, -40.043% 5.29%, -36.219% 5.029%, -32.681% 6.624%, -32.681% 6.624%, -29.223% 9.114%, -25.587% 11.156%, -21.798% 12.711%, -17.88% 13.738%, -13.858% 14.2%, -9.757% 14.055%, -5.602% 13.264%, -1.419% 11.788%, 2.769% 9.588%, 6.937% 6.624%, 6.937% 6.624%, 11.049% 4.356%, 15.126% 3.936%, 19.221% 4.86%, 23.388% 6.624%, 27.68% 8.724%, 32.151% 10.655%, 36.856% 11.915%, 41.848% 11.999%, 47.18% 10.403%, 52.908% 6.624%);
    }
    .trust-vector2 {
    top: 26px;
    right: 116px;
}
.trust-vector1 {
        top: 8%;
        left: 59px;
        width: 90px;
    }
        .trust-box {
        padding: 20px;
        padding-right: 34px;
        padding-left: 24px;
        gap: 18px;
        width: 70%;
    }
    .trust{
        .col-lg-4{
            margin-bottom: 10px;
        }
    }
    header .primary-btn {
    font-size: 17px;
    padding: 18px 40px;
}
.why-swim {
    margin-top: -70px;
    position: relative;
    z-index: 1;
}
.lessons {
    padding-top: 40px;
    padding-bottom: 142px;
}
    .gv2 {
        right: 4%;
        top: 4%;
        width: 80px;
    }
    .gv1 {
        bottom: 0px;
        right: 18px;
        width: 80px;
    }
    .gallery-v2 {
    width: 100px;
    top: -45px;
    left: 18%;
}
    .gallery-v1 {
        top: 44px;
        left: 2%;
        width: 80px;
    }
        .gallery-v3 {
        right: 10%;
        bottom: 21px;
    }
        .instructor-slider {
        .lession-img {
            height: 280px;
            overflow: hidden;
            border-radius: 30px;
        }
    }
    .about-us {
    text-align: center;
    padding-top: 40px;
    .btn-group{
        justify-content: center;
    }
}
.client-says,.instructor-slider {
    .slick-arrow {
        top: 104%;
        left: 40%;
    }
    .slick-arrow.slick-next {
        right: 40%;
        left: auto;
    }
}
.instructor-slider {
    .lession-content {
        border-radius: 0 0 40px 40px;
    }
}
    .faq-vector2 {
        width: 110px;
        left: 138px;
        bottom: 32px;
    }
    .news {
        .section-vector {
        width: 100%;
        margin-bottom: -211px;
    }
    .swim-contents {
        background-image: url(../img/news-bg.webp);
        padding-top: 170px;
    }
}
.news {
        .gv1 {
            bottom: unset;
            right: unset;
            left: 65px;
            top: 89px;
            width: 124px;
        }
                .gv3 {
            top: 27px;
            right: 90px;
            width: 198px;
        }
    }
    .faq {
    padding-bottom: 10px;
}
.location-vector {
    left: 120px;
    top: -41px;
    width: 150px;
}
.location {
        position: relative;
        padding-top: 130px;
        padding-bottom: 190px;
        margin-top: -110px;
        margin-bottom: -200px;
        .col-lg-5{
            padding-inline: 40px;
        }
    }
    .footer-box {
    padding-inline: 4%;
    text-align: center;
    margin-bottom: 30px;
}
.footer-social {
    display: flex;
    gap: 8px;
    justify-content: center;
}
    .footer-vector3 {
        width: 100px;
        bottom: 45%;
    }
    .footer-vector1 {
        left: 11%;
        top: 100px;
        width: 210px;
    }
    .footer-vector2 {
        right: 70px;
        top: 12px;
        width: 150px;
    }
    .inner-banner {
    height: auto;
    padding-top: 110px;
    .banner-vector {
    top: 108px;
}
}
.faq-page {
    &::after {
        height: 40%;
        margin-top: -55px;
    }
}
.inner-banner {
        & .banner-img-box {
            .banner-content-vector {
                position: absolute;
                top: -90px;
                left: -14px;
                width: 300px;
            }
            .banner-content {
                padding-top: 55px;
                padding-left: 40px;
            }
        }
    }
    .section-divider {
        margin-top: -50px;
    }
        .inner-banner {
        & .banner-img-box {
            & .banner-content {
                padding-top: 55px;
                padding-left: 20px;
                width: 32%;
                & h1 {
                    font-size: 28px;
                }
            }
        }
    }
        .why-choose-tabs {
        gap: 22px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 35px;
        button {
            width: 150px;
            height: 80px;
            font-size: 17px;
        }
    }
        .why-choose-content-item {
            text-align: center;
        .why-choose-content-img {
            border-radius: 40px;
            margin-right: 0;
            margin-bottom: 22px;
            float: unset;
            width: 100%;
        }
    }
.contact-page {
    position: relative;
    margin-top: -85px;
}
.contact-page {
    .contact-content {
        padding-block: 80px;
        padding-left: 10px;
        &::after {
            width: 180px;
            height: 180px;
            bottom: 15px;
            right: 27%;
            z-index: -1;
        }
    }
    .contact-img {
        right: 25%;
        width: 30%;
        bottom: -47px;
    }
}
.contact-us-form {
    .gv3 {
        top: -50px;
        width: 120px;
        right: 130px;
    }
    .contact-box {
        margin-bottom: 20px;
    }
}
.about-page {
    &::after {
        top: -43px;
        height: 450px;
    }
}
.about-mission-vision-content {
    padding: 100px 70px;
}
.swim-is-fun {
    &::after {
        top: -110px;
        height: 560px;
    }
}
.fun2 {
        margin-left: 50%;
        margin-bottom: 40px;
        margin-top: -60px;
    }
    .fun-right {
    text-align: center;
    margin-top: 40px;
}
.trust.our-philosophy {
    padding-top: 80px;
    padding-bottom: 40px;
    margin-top: -40px;
}
.different{
.swim-contents {
    padding-bottom: 60px;
}
}
.why-learn-ethan {
    padding-block: 30px;
}
.success-stories {
    position: relative;
    padding-top: 70px;
    padding-bottom: 60px;
}

}

@media (max-width: 575.98px) {
   
    .offcanvas-body .contact-form label {
        font-size: 16px;
        margin-bottom: 5px;
        display: block;
    }

    .logo {
        width: 80px;
        padding-block: 3px;
    }
   
    header {
        height: 60px;
    }
header .primary-btn {
        font-size: 17px;
        padding: 12px 20px;
        box-shadow: 4px 4px 0 0 #30A0E8;
    }
.side-bar {
    width: 310px;
    right: -400px;
}
        #menu {
        .flex-box {
            margin-top: 7px;
            width: 100%;
            justify-content: end;
        }
    }
        .menu-btn {
        margin-left: 8px;
        width: 40px;
    }
    .hamburger {
        top: 12px;
        width: 43px;
        height: 36px;
    }
    .hamburger:after {
        top: 17px;
        right: 6px;
        height: 10px;
        width: 30px;
    }
    .hamburger:before {
        top: 8px;
        right: 6px;
        height: 2px;
        width: 30px;
    }
    .hamburger.menu-opened:after {
        top: 18px;
        border: 0;
        height: 2px;
        width: 30px;
    }
    .hamburger.menu-opened:before {
        top: 18px;
        width: 30px;
    }
    #menu .submenu-button {
        height: 37px;
        width: 50px;
        background: rgb(255 255 255 / 3%);
    }

    
    .footer-contact p {
        text-align: left;
        min-height: 32px;
    }
    .footer-contact p span {
        left: 0px;
        top: 0px;
    }
    .footer-box {
        width: 100%;
        padding: 0;
    }
    .footer-logo {
        margin-bottom: 10px;
    }
    footer {
        padding-top: 30px;
        text-align: center;
    }

    .footer-title:after {
        position: absolute;
        left: 47%;
    }

    footer p,
    footer ul li a,
    footer p a {
        font-size: 14px;
    }

    .footer-social {
        justify-content: center;
    }

    .copyright {
        padding: 10px 0;
        padding-bottom: 0;
        justify-content: center;
    }

    .copyright p {
        margin-bottom: 5px;
    }

   
    #menu .main-menu {
        top: 60px;
        flex-direction: column;
        padding-right: 0;
        gap: 0;
        overflow-y: auto;
    }
    #menu ul ul li a {
        padding: 9px 6px;
    }
    #menu .main-menu ul li a, #menu .main-menu ul ul li a {
        white-space: normal;
        line-height: 18px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        display: none;
    }

    #menu>.main-menu>ul>li>a {
        padding: 10px 6px;
    }
    header .flex-box {
        margin-top: 10px;
    }
    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 14px;
        text-transform: uppercase;
    }

    #menu .submenu-button:after {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ffffff;
        transform: rotate(0deg);
        border-bottom: 0px solid #fff;
        transform: rotate(0deg) translate(-50%);
        top: 50%;
        left: 50%;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(0deg) translate(-50%);
        top: 50%;
        left: 50%;
       
    }
    #menu .main-menu ul ul li.has-sub>a:after{
        display: none !important;;
    }
    #menu ul ul li a {
        padding-left: 15px;
    }

    #menu .main-menu ul ul.open {
        background: #ffffff0d;
    }

    .slick-next {
        right: -10px;
    }

    .slick-prev {
        left: -10px;
    }

    .popup .popup__content {
        width: 90%;
    }

    .left {
        padding-block: 15px;
    }
    .covil-services .section-title {
        line-height: 30px;
    }
  
    .menu-white .hamburger.menu-opened:after{
        background-color: #000;
    }
    #menu .main-menu ul li.current-menu-item a::after{
        display: none;
    }
   
   
    .fixed-btn {
        top: 80%;
        right: 5px;
    }
.number {
    display: none;
}
.call-btn {
        display: none;
    }
    .banner-content {
        position: relative;
        width: 245px;
        padding-top: 47px;
        padding-left: 0px;
    .primary-btn {
        font-size: 16px;
        padding: 6px 8px 8px 19px;
        .arrow {
            width: 35.769px;
            height: 35px;
            padding: 9px;
        }
    }
            h1 {
            font-size: 25px;
            line-height: 110.579%;
            margin-bottom: 10px;
        }
        p {
            font-size: 14px;
        }
        .text-end{
            img{
                width: 50%;
            }
        }
}
    .banner-img-box {
        .banner-content-vector {
            position: absolute;
            top: -7px;
            left: -75px;
            width: 375px;
        }
    }
.banner {
        padding-top: 60px;
        z-index: 1;
        height: 460px;
    }
        .banner-img-box {
        clip-path: polygon(36.308% 8.816%, 36.308% 8.816%, 31.047% 13.46%, 25.427% 16.083%, 19.594% 17.066%, 13.699% 16.792%, 7.891% 15.641%, 2.316% 13.997%, -2.875% 12.24%, -7.534% 10.754%, -11.512% 9.918%, -14.661% 10.117%, -14.67% 99.769%, 198.436% 99.737%, 197.573% 6.778%, 197.573% 6.778%, 196.3% 6.121%, 195.27% 6.433%, 194.322% 7.381%, 193.293% 8.632%, 192.023% 9.853%, 190.349% 10.713%, 188.108% 10.876%, 185.14% 10.013%, 181.282% 7.788%, 176.373% 3.87%, 176.373% 3.87%, 171.514% 0.439%, 167.67% -0.516%, 164.473% 0.388%, 161.555% 2.532%, 158.548% 5.296%, 155.083% 8.063%, 150.792% 10.215%, 145.308% 11.132%, 138.261% 10.195%, 129.284% 6.788%, 129.284% 6.788%, 120.31% 2.859%, 113.273% 0.603%, 107.806% -0.236%, 103.54% 0.09%, 100.109% 1.326%, 97.145% 3.219%, 94.28% 5.514%, 91.147% 7.957%, 87.379% 10.295%, 82.608% 12.273%, 82.608% 12.273%, 77.394% 13.044%, 72.497% 12.257%, 67.846% 10.403%, 63.371% 7.973%, 59.003% 5.459%, 54.671% 3.351%, 50.306% 2.142%, 45.837% 2.322%, 41.194% 4.383%, 36.308% 8.816%);
    }
    .banner-vector {
    position: absolute;
    top: 85px;
        width: 92%;
    left: 0;
    z-index: -1;
}
    .trust {
        padding-top: 0px;
        padding-bottom: 40px;
        margin-top: 0;
        position: relative;
        z-index: 2;
        clip-path: none;

        &::before{
            content: '';
            height: 270px;
            clip-path: polygon(52.908% 6.624%, 52.908% 6.624%, 57.832% 3.271%, 63.017% 1.168%, 68.349% 0.153%, 73.711% 0.066%, 78.986% 0.745%, 84.059% 2.028%, 88.812% 3.755%, 93.131% 5.764%, 96.899% 7.894%, 100% 9.983%, 100% 100%, -83.137% 100%, -90.038% 24.497%, -90.038% 24.497%, -89.679% 20.698%, -88.425% 16.838%, -86.456% 13.136%, -83.956% 9.809%, -81.106% 7.077%, -78.089% 5.159%, -75.086% 4.271%, -72.28% 4.634%, -69.853% 6.465%, -67.987% 9.983%, -67.987% 9.983%, -65.757% 14.136%, -62.951% 15.865%, -59.676% 15.705%, -56.04% 14.19%, -52.151% 11.856%, -48.117% 9.238%, -44.045% 6.871%, -40.043% 5.29%, -36.219% 5.029%, -32.681% 6.624%, -32.681% 6.624%, -29.223% 9.114%, -25.587% 11.156%, -21.798% 12.711%, -17.88% 13.738%, -13.858% 14.2%, -9.757% 14.055%, -5.602% 13.264%, -1.419% 11.788%, 2.769% 9.588%, 6.937% 6.624%, 6.937% 6.624%, 11.049% 4.356%, 15.126% 3.936%, 19.221% 4.86%, 23.388% 6.624%, 27.68% 8.724%, 32.151% 10.655%, 36.856% 11.915%, 41.848% 11.999%, 47.18% 10.403%, 52.908% 6.624%);
            background: #F6D637;
            display: block;
            position: absolute;
            top: -40px;
            width: 100%;
            z-index: -1;
        }
    }
    .trust-vector2 {
        top: -40px;
        right: 40px;
        width: 60px;
    }
        .trust-vector1 {
        top: -1%;
        left: 17px;
        width: 45px;
    }
    .banner-img {
        object-position: 66%;
    }
        .section-title {
        font-size: 26px;
    }
    .trust-box {
        padding: 20px;
        padding-right: 34px;
        padding-left: 24px;
        gap: 18px;
        width: 95%;
    }
    .lession-content {
        width: 90%;
            &::before {
        content: '';
        left: 0px;
        background-position: 40%;
    }
    }
        .why-swim {
        margin-top: -36px;
        position: relative;
        z-index: 1;
    }
        .lessons {
        padding-top: 30px;
        padding-bottom: 60px;
    }
        .lession-vector2 {
        top: -31px;
        left: 54px;
        width: 72px;
    }
    .why-swim-img {
    .why-swim-vector1 {
        right: 14px;
        top: 0;
        width: 59px;
    }
    .why-swim-vector2 {
        bottom: 45px;
        left: 0px;
        width: 40px;
    }
        .why-swim-vector3 {
        bottom: -15px;
        left: 120px;
        width: 116px;
    }
        .why-swim-vector4 {
        left: 7px;
        top: 26px;
        z-index: -1;
    }
}
p {
    font-size: 14px;
}
.why-item {
    gap: 15px;
    padding: 18px 24px;
    margin-bottom: 15px;
    flex-direction: column;
    text-align: center;
}
.gv3 {
    top: -22px;
    right: 48px;
    width: 67px;
}
.gv2 {
        right: unset;
        top: 2%;
        width: 39px;
        left: 10px;
    }
        .swim-guarantee-item {
        padding-inline: 30px;
        padding-top: 50px;
        padding-bottom: 50px;
        width: 96%;
        margin-inline: auto;
    }
    .swim-guarantee {
    .back-shape {
        right: 9px;
        top: -5px;
        left: 18px;
    }
}
.swim-contents {
    margin-top: -6px;
    padding-bottom: 69px;
}
    .gv1 {
        bottom: -41px;
        right: 18px;
        width: 80px;
        z-index: 1;
    }
    .gallery-v3 {
        right: 4%;
        bottom: 7px;
        width: 62px;
    }
    .instructor-slider {
        .slick-list{
            margin: 0 -8px;
        }
    .slick-slide {
        margin: 0 8px;
    }
}
.instructor-slider {
        .lession-img {
            height: 208px;
            overflow: hidden;
            border-radius: 20px;
        }
                .lession-content {
            border-radius: 0 0 25px 25px;
            padding-block: 20px;
            margin-bottom: 35px;
            margin-top: -35px;
            .card-title {
            font-size: 18px;
            margin-bottom: 0px;
        }
                &::before {
            content: '';
            left: 0px;
            background-position: 50%;
        }
        }
    }
        .client-says, .instructor-slider {
        .slick-arrow {
            top: 110%;
            left: 29%;
        }
        .slick-arrow.slick-next {
            right: 29%;
            left: auto;
        }
    }
    .about-vector3 {
    left: 18px;
    top: 18px;
    width: 70px;
}
.about-vector1 {
    bottom: 0px;
    right: 32px;
}
    .faq-img {
    position: relative;
    margin-top: 50px;
}
.faq-vector1 {
        width: 87px;
    }
        .faq-vector2 {
        width: 72px;
        left: 62px;
        bottom: 8px;
    }
        .faq-vector3 {
        right: 0%;
        bottom: 16%;
		z-index: 9;
			position: relative;
    }
        .faq-vector4 {
        left: 36px;
        bottom: 89px;
        width: 13px;
    }
    .accordion__item {
    border-radius: 14px;
    padding: 15px 15px;
    padding-right: 40px;
            .card-title {
            font-size: 18px;
            line-height: 110%;
        }
}
.accordion__title::after {
    right: -32px;
    top: -5px;
    width: 30px;
    height: 30px;
    padding-bottom: 10px;
}
.news {
        .section-vector {
            width: 100%;
            margin-bottom: -285px;
            z-index: 1;
            position: relative;
        }
         .swim-contents {
    padding-top: 280px;
}
    }
   .faq {
        padding-bottom: 10px;
        margin-bottom: -210px;
	    z-index: 9;
			position: relative;
    }
        .news {
        .gv1 {
            bottom: unset;
            right: unset;
            left: 37px;
            top: 230px;
            width: 70px;
        }
        .gv3 {
            top: 207px;
            right: 46px;
            width: 110px;
            z-index: 1;
        }
    }
    .water-safety {
        .about-vector3 {
            left: 33px;
            top: 39px;
            width: 70px;
        }
                .about-vector1 {
            bottom: 29px;
            right: 16px;
            width: 117px;
        }
                .about-vector4 {
            right: 0px;
            top: 35px;
            width: 60px;
        }
    }
        .contact-us {
            padding-top: 0;
        .contact-box {
            padding: 18px 25px 120px 25px;
        }
        .mb-40 {
    margin-bottom: 18px;
}
    .form-control {
        border-radius: 12px;
        padding: 12px 15px;
        font-size: 14px;
    }
            & .contact-box-outline {
            display: none;
        }
    }
        .location-vector {
        left: 25px;
        top: 0px;
        width: 103px;
    }
    .location-map {
    iframe {
        width: 100%;
        height: 300px;
        border: 0;
        border-radius: 0 20px 20px 0;
    }
}
    .location {
        .col-lg-5 {
            padding-inline: 25px;
        }
    }
    .icon-list li {
    font-size: 15px;
    font-size: 18px;
    line-height: 150.273%;
}
.icon-list li::before {
    top: 5px;
}
.footer-bg {
        left: 0;
    }
        footer {
        padding-top: 370px;
        text-align: center;
        padding-bottom: 30px;
    }
        .footer-vector1 {
        left: 5%;
        top: 224px;
        width: 163px;
    }
    .footer-vector2 {
        right: 16px;
        top: 219px;
        width: 120px;
    }
    .location {
        position: relative;
        padding-top: 130px;
        padding-bottom: 190px;
        margin-top: -110px;
        margin-bottom: -330px;
    }
        footer {
        & .why-item {
            gap: 15px;
            width: 93%;
            margin-inline: auto;
        }
            .icon-list li::before {
        display: none;
    }
    .col-md-6{
        padding-top: 20px;
    }
    }
    .copyright {
    text-align: center;
}
.footer-social{
    img{
        width: 50px;
    }
}
    .left {
        padding-block: 15px;
        display: none;
    }
    footer {
    & .icon-list li {
        padding-left: 0;
    }
}
    footer p, footer ul li a, footer p a {
        font-size: 16px;
    }
    .faq-page {
    padding-top: 0px;
    padding-bottom: 50px;
}
.faq-page {
        &::after {
            height: 36%;
            margin-top: -35px;
        }
            .faq-img {
        position: relative;
        margin-top: 20px;
    }
    }
      
        .inner-banner {
        & .banner-img-box {
            .banner-content-vector {
               position: absolute;
                top: -46px;
                left: 0px;
                width: 185px;
            }
            .banner-content {
                padding-top: 36px;
                padding-left: 11px;
                width: 47%;
            }
        }
    }
    .inner-banner {
        .banner-vector {
            top: 70px;
        }
    }
    .section-divider {
        margin-top: -47px;
        height: 80px;
    }
    .gallery-page{
        margin-bottom: -180px;
        .banner-img {
        object-position: 40%;
    }
    }
    .blog-banner{
            .banner-img {
        object-position: 30%;
    }
    }
    .category-box {
    .icon-list li {
        margin-bottom: 10px;
    }
}
.recent-post-item{
    padding: 12px;
}
    .recent-post-item {
        .card-title {
            font-size: 16px;
            line-height: 19px;
        }
    }
        .inner-banner {
        & .banner-img-box {
            & .banner-content {
                & h1 {
                    font-size: 19px;
                }
            }
        }
    }
    .blog-details-content {
    h3 {
        font-size: 22px;
    }
}
.blog-details-img {
    border-radius: 20px;
    margin-block: 15px;
}
.pagination {
        a {
            font-size: 14px;
            line-height: 130.778%;
            display: block;
        }
    }
    .blog-listing {
    padding-bottom: 20px;
}
.recent-post-item{
    position: relative;
    z-index: 1;
}
.why-choose-tabs {
        gap: 22px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 35px;
        button {
            width: 150px;
            height: 80px;
            font-size: 17px;
        }
    }
        .why-choose-content-item {
            text-align: center;
        .why-choose-content-img {
            border-radius: 40px;
            margin-right: 0;
            margin-bottom: 22px;
            float: unset;
            width: 100%;
        }
    }
    .why-choose-title {
    font-size: 26px;
}
.why-choose-contents {
    padding-bottom: 0px;
}
.gurantee-box {
    .card-title {
        font-size: 20px;
        line-height: 112%;
        margin-bottom: 12px;
    }
}
.gurantee-page {
    padding-bottom: 20px;
}
.gurantee-box {
    & ul {
        li {
            line-height: 150.5%;
        }
    }
}
.gurantee-box {
        padding: 30px 17px;
    }
    .contact-page {
        margin: 0;
        .contact-content {
            padding-block: 40px;
            padding-left: 10px;
            clip-path: unset;
            padding-top: 6px;
            margin-bottom: 55px;
            &::before{
                content: '';
                position: absolute;
                        clip-path: polygon(74.259% 4.484%, 74.259% 4.484%, 76.95% 2.214%, 79.785% 0.791%, 82.7% 0.104%, 85.63% 0.045%, 88.514% 0.504%, 91.286% 1.373%, 93.885% 2.542%, 96.246% 3.902%, 98.305% 5.344%, 100% 6.758%, 100% 100%, 100% 100%, 99.438% 99.08%, 97.794% 96.691%, 95.135% 93.386%, 91.524% 89.719%, 87.028% 86.245%, 81.709% 83.518%, 75.635% 82.092%, 68.869% 82.522%, 61.477% 85.361%, 53.524% 91.165%, 53.524% 91.165%, 45.59% 97.22%, 38.2% 100.765%, 31.331% 102.276%, 24.965% 102.23%, 19.079% 101.104%, 13.652% 99.377%, 8.664% 97.524%, 4.094% 96.022%, -0.079% 95.35%, -3.876% 95.984%, -3.876% 95.984%, -6.805% 94.932%, -8.504% 89.577%, -9.191% 80.959%, -9.083% 70.117%, -8.396% 58.091%, -7.347% 45.92%, -6.154% 34.645%, -5.033% 25.304%, -4.201% 18.937%, -3.876% 16.583%, -3.876% 16.583%, -3.679% 14.012%, -2.994% 11.399%, -1.918% 8.892%, -0.551% 6.641%, 1.007% 4.791%, 2.656% 3.492%, 4.297% 2.891%, 5.831% 3.137%, 7.157% 4.377%, 8.177% 6.758%, 8.177% 6.758%, 9.396% 9.57%, 10.93% 10.74%, 12.721% 10.631%, 14.708% 9.606%, 16.833% 8.026%, 19.039% 6.254%, 21.264% 4.652%, 23.452% 3.581%, 25.542% 3.404%, 27.476% 4.484%, 27.476% 4.484%, 29.366% 6.17%, 31.354% 7.552%, 33.425% 8.605%, 35.567% 9.3%, 37.765% 9.613%, 40.006% 9.514%, 42.277% 8.979%, 44.564% 7.98%, 46.853% 6.491%, 49.131% 4.484%, 49.131% 4.484%, 51.379% 2.949%, 53.608% 2.665%, 55.846% 3.29%, 58.123% 4.484%, 60.469% 5.906%, 62.913% 7.213%, 65.485% 8.066%, 68.214% 8.123%, 71.128% 7.043%, 74.259% 4.484%);
                background: #FFEE73;
                height: 200px;
                width: 100%;
                top: -22px;
                z-index: -1;
                left: 0;
            }
            &::after {
                width: 114px;
                height: 114px;
                bottom: -11px;
                right: 6%;
                z-index: -1;
            }
        
        }
        &::before{
                content: '';
                position: absolute;
                        clip-path: polygon(74.259% 4.484%, 74.259% 4.484%, 76.95% 2.214%, 79.785% 0.791%, 82.7% 0.104%, 85.63% 0.045%, 88.514% 0.504%, 91.286% 1.373%, 93.885% 2.542%, 96.246% 3.902%, 98.305% 5.344%, 100% 6.758%, 100% 100%, 100% 100%, 99.438% 99.08%, 97.794% 96.691%, 95.135% 93.386%, 91.524% 89.719%, 87.028% 86.245%, 81.709% 83.518%, 75.635% 82.092%, 68.869% 82.522%, 61.477% 85.361%, 53.524% 91.165%, 53.524% 91.165%, 45.59% 97.22%, 38.2% 100.765%, 31.331% 102.276%, 24.965% 102.23%, 19.079% 101.104%, 13.652% 99.377%, 8.664% 97.524%, 4.094% 96.022%, -0.079% 95.35%, -3.876% 95.984%, -3.876% 95.984%, -6.805% 94.932%, -8.504% 89.577%, -9.191% 80.959%, -9.083% 70.117%, -8.396% 58.091%, -7.347% 45.92%, -6.154% 34.645%, -5.033% 25.304%, -4.201% 18.937%, -3.876% 16.583%, -3.876% 16.583%, -3.679% 14.012%, -2.994% 11.399%, -1.918% 8.892%, -0.551% 6.641%, 1.007% 4.791%, 2.656% 3.492%, 4.297% 2.891%, 5.831% 3.137%, 7.157% 4.377%, 8.177% 6.758%, 8.177% 6.758%, 9.396% 9.57%, 10.93% 10.74%, 12.721% 10.631%, 14.708% 9.606%, 16.833% 8.026%, 19.039% 6.254%, 21.264% 4.652%, 23.452% 3.581%, 25.542% 3.404%, 27.476% 4.484%, 27.476% 4.484%, 29.366% 6.17%, 31.354% 7.552%, 33.425% 8.605%, 35.567% 9.3%, 37.765% 9.613%, 40.006% 9.514%, 42.277% 8.979%, 44.564% 7.98%, 46.853% 6.491%, 49.131% 4.484%, 49.131% 4.484%, 51.379% 2.949%, 53.608% 2.665%, 55.846% 3.29%, 58.123% 4.484%, 60.469% 5.906%, 62.913% 7.213%, 65.485% 8.066%, 68.214% 8.123%, 71.128% 7.043%, 74.259% 4.484%);
                background: #FFEE73;
                width: 100%;
                height: 200px;
                top: unset;
                z-index: -1;
                left: 0;
                bottom: -40px;
            }
                    .contact-img {
            right: 4%;
            width: 38%;
            bottom: -47px;
        }
        .col-lg-1 {
            display: none;
        }
    }
        .contact-us-form {
            padding-bottom: 0;
            margin-bottom: -180px;
        .gv3 {
            top: -30px;
            width: 67px;
            right: 36px;
        }
                .contact-box {
            margin-bottom: 20px;
            padding-bottom: 90px;
        }
    }
        .inner-banner {
        height: 230px;
    }
        .about-page {
        &::after {
            top: -28px;
            height: 280px;
        }
                & .about-img {
            .about-vector4 {
                right: 105px;
                width: 73px;
                top: 12px;
            }
                        .about-vector2 {
                width: 84px;
                left: 20px;
                bottom: 33px;
            }
                        .about-vector1 {
                width: 27px;
                bottom: -3px;
                left: 87px;
            }
        }
        
    }
    .about-mission-vision-content {
        padding: 90px 15px;
        h5 {
        font-size: 17px;
    }
    
    }
    .about-mission-vision {
        padding-bottom: 70px;
    .why-swim-vector4 {
        top: -29px;
            left: 47px;
            z-index: 1;
            width: 88px;
    }
        .mission-vision-vector {
        bottom: -26px;
        right: 57px;
        width: 100px;
    }
}
    .about-why-swim-vector {
        bottom: 0;
        right: 23px;
        z-index: 1;
        width: 119px;
    }
    .about-why-swim {
    padding-bottom: 90px;
}
.swim-is-fun {
        &::after {
            top: -55px;
            height: 300px;
        }
    }
    .fun2 {
        margin-left: 44%;
        margin-bottom: 16px;
        margin-top: -60px;
    }
    .swim-is-fun {
    h5 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }
}
.banner-btn{
    .primary-btn {
            font-size: 16px;
            padding: 6px 8px 8px 19px;
            .arrow {
                width: 35.769px;
                height: 35px;
                padding: 9px;
            }
        }
}
.fun3 {
        width: 300.042px;
        height: 300.042px;
    }
    .about-instructors {
    padding-top: 15px;
    padding-bottom: 0;
    margin-bottom: -120px;
}
    .trust.our-philosophy {
        padding-top: 7px;
        padding-bottom: 20px;
        margin-top: 15px;
        &::before {
            height: 188px;
        }
    }
        .ethan-chapa {
            text-align: center;
            padding-bottom: 30px;
        & .why-swim-img {
            & .why-swim-vector4 {
                left: unset;
                right: 66px;
                top: 41px;
                z-index: 0;
                width: 55px;
            }
            .why-swim-vector2 {
                bottom: 30px;
                left: 74px;
                width: 63px;
            }
        }
            & .about-why-swim-vector {
            bottom: 67px;
            right: 24px;
            z-index: 1;
            width: 53px;
        }
    }
    .why-learn-ethan-item {
    border-radius: 40px 50px 50px 30px;
    padding: 30px 20px;
        .card-title {
        font-size: 24px;
        line-height: 89.474%;
        text-transform: capitalize;
        margin-bottom: 6px;
    }
}
.success-stories {
        position: relative;
        padding-top: 20px;
        padding-bottom: 0px;
        margin-bottom: -100px;
    }
        .success-stories {
        .bg {
            position: absolute;
            top: 0;
            width: auto;
            height: 150%;
            left: -99%;
        }
    }
    .success-stories {
    & .client-content {
        .qut {
            width: 60px;
            height: 59px;
            padding: 15px;
            margin-bottom: -35px;
        }
    }
    .content-box {
            padding-inline: 30px;
            padding-top: 50px;
        }
}
.lessions-slider {
    z-index: 9;
}
}

@media (max-width: 1440px),
(max-width: 1366px){
.drowning-img-box.text-end {
    .faq-vector3 {
        right: 26%;
        bottom: -9%;
        width: 140px;
    }
    .leg-vector {
        top: 67%;
        left: -4%;
        width: 87px;
        rotate: unset;
    }
}
.notfatal.drowning-img-box {
    .leg-vector {
        width: 110px;
    }
}
.drowning-risk {
    .video-bg {
        position: absolute;
        bottom: 0;
        z-index: -1;
        top: 25%;
        height: 77%;
        object-fit: cover;
    }
}
.certain-factors {
    & .why-choose-tabs {
        button {
            width: 170px;
            height: 80px;
            font-size: 16px;
            line-height: 114.391%;
        }
    }
}
.factor-title {
    font-size: 26px;
    margin-bottom: 10px;
}
.pricing-fees {
    .price-and-fees-bg {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
        z-index: -1;
        height: 104%;
        object-fit: cover;
    }
}
.instructors-lists {
    .what-expect-icon {
        position: absolute;
        left: 12px;
        top: 15px;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
    }
}
.instructors-lists {
    .factor-box {
        padding-block: 23px;
        padding-right: 38px;
        padding-left: 99px;
        position: relative;
        margin-bottom: 40px;
        height: auto;
        border-radius: 30px;
    }
}
.location-locations {
    margin-top: 0;
    padding-top: 125px;
    padding-left: 6%;
}
.adult-right-content {
    .icon-list li {
        line-height: 155%;
    }
}
.adult-swimming-about {
    padding-bottom: 70px;
}
.partner-video {
    padding-top: 70px;
    padding-bottom: 20px;
}
.step-box {
    .step-content {
        padding: 36px;
        padding-top: 100px;
    }
}
.logo-box {
    box-shadow: 0 4px 9px 0 rgb(0 0 0 / 13%);
    width: 170px;
    height: 130px;
    margin-block: 20px;
}
}

@media (max-width: 1199.98px){
.section-call {
    & .call-us-btn {
        span {
            font-size: 45px;
        }
    }
}
    .logo-box {
        width: 150px;
        height: 120px;
        margin-block: 20px;
        padding: 10px;
    }
       
}

@media (max-width: 991.98px){
.play-btn {
    span {
        padding: 27px;
    }
}
.drowning-facts {
    .drowning-img-box {
        position: relative;
        width: 80%;
        margin-inline: auto;
    }
    .row .col-lg-6:nth-child(4){
        order: 3;
    }
    .row .col-lg-6:nth-child(3){
        order: 4;
    }
}
.video-box {
    padding: 16px;
}
.drowning-risk {
    padding-bottom: 70px;
    overflow: hidden;
    .video-bg {
            position: absolute;
            bottom: 0;
            z-index: -1;
            top: 10%;
            height: 95%;
            object-fit: cover;
    }
}
.certain-factors {
        & .why-choose-tabs {
            button {
                width: 150px;
                height: 80px;
            }
        }
    }
.factor-box {
    padding-block: 24px;
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 60px;
}
.certain-factors {
    & .row {
        & .col-lg-6 {
            & .factor-box {
                &::before {
                    width: 70px;
                    height: 70px;
                    left: -10px;
                    top: -18px;
                }
            }
        }
    }
}
.certain-factors {
    padding-top: 40px;
    padding-bottom: 0;
}
.why-do-we-do-it {
    padding-top: 40px;
    padding-bottom: 50px;
    text-align: center;
    .row .col-lg-6:nth-child(3) {
        order: 4;
    }
    .row .col-lg-6:nth-child(4) {
        order: 3;
    }

}
.img-small {
    position: absolute;
    bottom: -66px;
    right: 15px;
    width: 45%;
}
.location-locations {
    iframe {
        width: 100%;
        height: 400px;
        border: 0;
        border-radius: 20px 0px 0px 20px;
        margin-bottom: 50px;
    }
}
.section-call {
    .call-icon {
        width: 60px;
            height: 60px;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
    }
}
.section-call {
    .call-us-btn {
            padding-left: 94px;
            font-size: 22px;
            line-height: 60.452%;
            padding-right: 46px;
            padding-top: 25px;
            padding-bottom: 16px;
        span {
            font-size: 33px;
        }
    }
}
.adult-swimming-about {
    padding-bottom: 70px;
    margin: 0;
}
.call-us-btn-outline {
    svg {
        top: -36px;
        width: 101.6%;
    }
}
.adult-class {
    .about-why-swim-vector {
        bottom: 32px;
        right: 41px;
        z-index: 1;
        width: 150px;
    }
     .gv1 {
        bottom: 42px;
        right: unset;
        left: 64px;
    }
}
.price {
    .price-img-box {
        width: 80%;
        margin-inline: auto;
        margin-bottom: 40px;
    }
}
.price-content {
    text-align: center;
}
.join-us-today {
    .why-swim-vector4 {
        width: 100px;
    }
}
.location.adult-locations {
    margin-top: -248px;
    padding-top: 210px;
}
.join-us-today {
    text-align: center;
        padding-bottom: 120px;
    .section-call {
        position: relative;
        margin-top: -110px;
        display: inline-block;
        text-align: center;
    }
    .mission-vision-vector {
        bottom: -37px;
        right: 53px;
        width: 150px;
    }
    .webp {
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
}
}
.partner-about-img {
    width: 80%;
    margin-inline: auto;
}
.partner-with {
    padding-top: 70px;
    padding-bottom: 120px;
    margin-bottom: -160px;
}
.ready-to-explore {
    .about-mission-vision-content {
        padding-top: 80px;
        padding-bottom: 90px;
        padding-inline: 10%;
    }
    .mission-vision-vector {
            bottom: -72px;
            right: 53px;
            width: 365px;
        }
}
    .logo-box {
        width: 134px;
        height: 90px;
        margin-block: 20px;
        padding: 29px;
    }
}
@media (max-width: 575.98px){
.mb-40 {
    margin-bottom: 14px;
}
.safty-about-video {
    margin-bottom: 20px;
    img {
        border-radius: 20px;
    }
}
.play-btn img {
        width: 24px;
        height: auto;
        border-radius: unset;
}
.play-btn {
    span {
        padding: 16px;
        width: 50px;
        height: 50px;
        border-radius: 83px;
        box-shadow: 0 0 0 10px rgba(63, 63, 63, 0.18);
        outline: 1px solid #fff;
        outline-offset: 14px;
    }
}
.drowning-facts {
    h5 {
        font-size: 20px;
        line-height: 140%;
            margin-bottom: 10px;
    }
}
.drowning-facts {
    .icon-list li {
        font-size: 14px;
    }
}
.drowning-facts {
    & .drowning-img-box {
        .leg-vector {
            width: 63px;
        }
        .why-swim-vector4 {
            top: 2%;
            right: 16%;
            z-index: -1;
        }
        .faq-vector3 {
            right: 18%;
            bottom: -4%;
            width: 60px;
        }
    }
}
.notfatal.drowning-img-box {
    .faq-vector3 {
        right: 20%;
        bottom: -10%;
        width: 34px;
    }
    .leg-vector {
        width: 54px;
    }
}
.drowning-facts {
    padding-bottom: 40px;
}
    .video-box {
        padding: 6px;
        border-radius: 26px;
        margin-bottom: 10px;
        .video-img {
        border-radius: 26px;
    }
    }
        .drowning-risk {
        padding-bottom: 30px;
        overflow: hidden;
        .video-bg {
            bottom: 0;
            z-index: -1;
            top: 3%;
            height: 100%;
        }
    }
    .factor-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .certain-factors {
        padding-top: 30px;
        padding-bottom: 40px;
        margin: 0;
    }
    .app-img {
    margin-bottom: 20px;
}
.app-download {
    position: relative;
    padding-bottom: 30px;
    z-index: 1;
        .section-title {
        margin-bottom: 10px;
    }
    h5 {
        font-size: 20px;
    }
}
.why-do-img {
    img {
        border-radius: 25px;
    }
}
    .why-do-we-do-it {
        padding-top: 30px;
        padding-bottom: 0px;
        text-align: center;
        margin-bottom: -150px;
    }
    .call-us-btn-outline {
    svg {
        position: absolute;
        inset: 0;
        top: -36px;
        width: 101.6%;
    }
}
.pool-hours {
    border-radius: 30px;
    height: 100%;
    padding: 30px 18px;
        .section-title {
        margin-bottom: 14px;
    
}

}
.location-faq {
    padding-top: 0px;
    margin: 0;
}
    .location-locations {
        margin-top: 0;
        padding-top: 40px;
        padding-left: 3%;
    }
    .zip-search {
    .primary-btn {
        right: 20px;
        top: 44%;
        transform: translateY(-50%) rotate(3.436deg);
        border: 0;
        font-size: 16px;
        padding: 14px 30px;
    }
    .form-control {
        font-size: 18px;
        line-height: 53px;
        left: 20px;
    }
}
    .instructors-lists {
        .factor-box {
            padding-block: 15px;
            padding-right: 15px;
            padding-left: 15px;
            position: relative;
            margin-bottom: 40px;
            height: auto;
            border-radius: 30px;
        }
        .what-expect-icon {
           position: relative;
            left: unset;
            top: unset;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            float: left;
            margin-right: 8px;
            margin-bottom: 5px;
        }
        
    }
    .adult-swimming-about-img {
    img {
        border-radius: 15px;
    }
}
    .adult-swimming-about {
        padding-bottom: 30px;
        margin: 0;
    }
.adult-class {
    padding-top: 25px;
}
    .adult-class {
        .gv1 {
            bottom: 18px;
            right: unset;
            left: 28px;
            width: 40px;
        }
        .about-why-swim-vector {
            bottom: -3px;
            right: 3px;
            z-index: 1;
            width: 56px;
        }
    }
    .why-learn-adult {
    padding-bottom: 50px;
}
.adult-right-img {
    border-radius: 20px;
    overflow: hidden;
}
.adult-right-content {
    .icon-list li {
        font-size: 14px;
    }
}
.adult-right {
    padding-bottom: 40px;
}
.why-expect {
    padding-top: 30px;
}
.why-expect {
    .factor-box {
        text-align: center;
        padding-block: 38px;
        position: relative;
        transition: all .5s;
        padding: 20px;
        border-radius: 40px 50px 30px 30px;
    }
    .what-expect-icon {
        position: relative;
        left: unset;
        top: unset;
        margin-bottom: 15px;
    }
}
.mb-50 {
    margin-bottom: 20px;
}
.swim-guarantee.adult-success-stories {
    .back-shape {
        right: 10px;
        top: -5px;
        left: 33px;
    }
}
    .price {
        .price-img-box {
            width: 95%;
            margin-inline: auto;
            margin-bottom: 20px;
        }
    }
    .price {
    & .price-img-box {
        .why-swim-vector4 {
            left: unset;
            top: 0px;
            z-index: 0;
            right: 65px;
            width: 60px;
        }
                .why-swim-vector1 {
            right: 5px;
            top: 59px;
            width: 60px;
        }
    }
        .card-title {
        font-size: 24px;
        line-height: 110%;
        margin-bottom: 14px;
    }
}
.adult-client-says {
    padding-block: 20px;
    padding-bottom: 120px;
}
.join-us-today {
    & .about-mission-vision-content {
        padding-top: 50px;
        padding-bottom: 70px;
        .section-title {
            margin-bottom: 6px;
        }
                h5 {
            font-size: 20px;
            line-height: 133.333%;
            margin-bottom: 12px;
        }
                p {
            font-size: 16px;
            line-height: 140%;
        }
    }
    .why-swim-vector4 {
    width: 60px;
}
.mission-vision-vector {
            display: none;
        }
}
.location.adult-locations {
        margin-top: -248px;
        padding-top: 165px;
    }
    .pt-100 {
    padding-top: 30px;
}
.pricing-fees {
    padding-top: 70px;
    padding-bottom: 30px;
}
.pricing-fees {
    .price-card {
        border-radius: 30px;
        padding: 20px 20px;
    }
    .price-box {
        border-radius: 20px;
        padding: 24px 20px;
        margin: 0 auto;
    }
    .currency {
        margin-top: -14px;
        font-size: 30px;
    }
    .amount {
        font-size: 66px;
    }
    .period {
        margin-top: 13px;
        font-size: 24px;
    }
    .badge {
        padding: 5px 20px;
        font-size: 18px;
    }
        & .price-card {
        .section-title {
            margin-bottom: 15px;
            margin-top: 20px;
        }
    }
}
.pool-hours {
    p {
        color: #000;
        font-size: 18px;
        height: 50px;
        padding: 10px 20px;
    }
}
.schedule-img {
    border-radius: 30px;
}
.partner-about-img{
    .why-swim-vector4 {
        left: unset;
        top: 0px;
        z-index: 1;
        right: 50px;
        width: 60px;
    }
    .why-swim-vector1 {
        right: -24px;
        bottom: 75px;
        width: 50px;
        top: unset;
    }
    .why-swim-vector3 {
        bottom: -39px;
        left: 16px;
        width: 105px;
    }
}
.why-partner {
    & .why-swim-img {
        .why-swim-vector3 {
            bottom: 83px;
            left: unset;
            right: 20px;
            width: 63px;
        }
    }
}
.partner-video {
    padding-top: 30px;
    .video-bg {
        bottom: 0;
        z-index: -1;
        top: 8%;
        height: 100%;
    }
}
.step-ownership {
    padding-top: 30px;
    padding-bottom: 40px;
}
    .step-box {
        .step-content {
            padding: 36px;
            padding-top: 100px;
            border-radius: 30px;
        }
    }
        .partner-with {
        padding-top: 30px;
        margin-bottom: -267px;
        padding-bottom: 80px;
    }
    .ready-to-explore {
    padding-top: 50px;
    padding-bottom: 50px;
    svg{
        display: none;
    }
}
.industry-partners {
    padding-bottom: 0;
    margin-bottom: -170px;
}
    .logo-box {
        width: 103px;
        height: 80px;
        margin-block: 20px;
        padding: 20px;
        border-radius: 10px;
    }
	.gallery-page {
    .gallery-tabs {
        gap: 30px;
		margin-top:20px;
		        button {
            width: auto;
            height: auto;
            padding: 15px 22px;
        }
    }
}
	.gallery-page {
    .safty-about-video {
        margin: 0;
    }
}
}

.wp-pagenavi {
    margin: 0;
    padding: 0;
    text-align: center;
    margin-top: 50px;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-block;
    text-decoration: none;
    padding: 5px 10px;
    color: #9C9C9C;
    font-size: 20px;
    font-family: 'Work Sans Medium';
    font-weight: 500;
}

.wp-pagenavi a {
    border-radius: 5px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s
}

.wp-pagenavi a.active {
    color: #95C12B;
}

.wp-pagenavi a:hover:not(.active){
    background-color: #ddd;
}

.wp-pagenavi span.current {
    border-color: #30a0e8;
    background: #30a0e8;
    color: #fff;
}
.wp-pagenavi a:hover{
	border-color: #BFBFBF;
    background: #8BC34A;
    color: #000;
}