@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Unbounded:wght@200..900&display=swap');

:root {
    --black: #1f190f;
    --lace: #fdf7ea;
    --mainblue: #0e88f1;
    --hover-blue: #4da9f9f6;
    --lightblue: #0ba3eb;
    --medium-sea-green: #09a758;
    --silver: #c2c1bf;
    --grey: #827b75;
}

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins',sans-serif;
    list-style-type: none;
    box-sizing: border-box;
    /* box-shadow: 0 0 0 2px red */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.noSelect {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
*:focus {
    outline: none !important;
}
a{
    text-decoration: none;
}

header{
    display: flex;
    position: fixed;
    top: 0;
    z-index: 2;
    background-color: white;
    width: 100%;
    justify-content: space-between;
    padding: 32px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1)
}

header nav{
    display: flex;
}

header ul{
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 24px;
}

header a{
    text-decoration: none;
    color: black;
}

header a:hover{
    color: var(--mainblue);
}

header .logo img{
    height: 48px;
    width: 220px;
}
.burger{
    display: none;
    margin-right: 32px;
    fill: white;
    background-color: var(--mainblue);
    padding: 8px;
    height: 52px;
    cursor: pointer;
}

.burger svg{
    height: 36px;
    width: 36px;
}

.showNav{
    height: 400px !important;
}

main{
    padding-top: 140px;
}

h1.title{
    font-family: Unbounded, sans-serif;
    font-size: 2.4em;
    margin-bottom: 24px;
}
.big-title{
    font-size: 2.8em;
    font-family: Unbounded, sans-serif;
    margin-bottom: 24px;
}
img{
    display: block;
}

button{
    cursor: pointer;
}

.container-lg{
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 100px;
    max-width: 1440px;
}
button.mainBtn{
    padding: 12px 20px;
    background-color: var(--mainblue);
    box-shadow: 0 2px 4px 0px #1b9edfc4;
    border: 1px solid #949494;
    color: white;
    font-size: 20px;
    border-radius: 8px;
}

button.mainBtn:hover{
    transform: scale(1.05);
    background-color: var(--hover-blue);
    transition: all .1s ease-in;
}

img.check{
    display: flex;
    height: 24px;
    width: 24px;
}
svg.arrow-down{
    height: 12px;
    width: 12px;
}
.presentation{
    text-align: center;
    padding-top: 40px;
    padding-bottom: 80px;
}
.presentation h1{
    text-wrap: balance;
}
.presentation p{
    color: var(--mainblue);
    font-weight: bold;
}
.presentation button{
    margin-right: auto;
    margin-left: auto;
    display: block;
    width: 320px;
    font-size: 18px;
    font-weight: bold;
}
.presentation .items{
    margin-top: 32px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}
.presentation .items img{
    height: 48px;
    width: 96px;
}
.results p{
    padding-bottom: 12px;
}
.swiper {
    width: 100%;
    height: 500px;
    mask-image: linear-gradient(to right,transparent 0,#000 20%,#000 80%,transparent 100%);
}
.results-carousel ul{
    padding-bottom: 20px;
}
.results-carousel img{
    height: 480px;
}

.personal{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.personal img{
    height: 60vh;
    width: 50%;
    object-fit: cover;
    object-position: center;
}
.personal .text{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.personal p{
    white-space: pre-line;
}
.personal button{
    width: fit-content;
    margin-top: 48px;
}

.teachings ul{
    display: grid;
    grid-template-columns: repeat(3, 280px);
    gap: 28px;
    justify-content: space-evenly;
}

.teachings .divider{
    display: block;
    height: 20px;
    width: 50%;
    mask-repeat: repeat;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='square' stroke-miterlimit='10'%3E%3Cpath d='M0,6c6,0,6,13,12,13S18,6,24,6'/%3E%3C/svg%3E");
    mask-size: 20px 100%;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' overflow='visible' height='100%' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='square' stroke-miterlimit='10'%3E%3Cpath d='M0,6c6,0,6,13,12,13S18,6,24,6'/%3E%3C/svg%3E");
    -webkit-mask-size: 20px 100%;
    -webkit-mask-repeat: repeat;
    background-color: var(--mainblue) ;
}
.teaching-box{
    min-width: 240px;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.18);
}
.teaching-box .emoji{
    text-align: center;
    font-size: 28px;
}
.teaching-box h3{
    padding: 12px;
}
.teaching-box p{
    font-size: 12px;
}

.reservation .call-container{
    height: 900px;
}

.testimonials{
    text-align: center;
}
.testimonials ul{
    display: grid;
    grid-template-columns: repeat(auto-fit,280px);
    gap: 24px;
    justify-content: center;
}
.testimonials ul video{
    height: 480px;
    width: 100%;
    position: relative;
    cursor: pointer;
}
.testimony-container{
    position: relative;
}

footer{
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-logo img{
    width: 280px;
}

footer .copyright{
    font-size: 14px;
}

@media (max-width:1250px) {
    .testimonials ul{
        grid-template-columns: repeat(2, 280px);
        gap: 20px;
        justify-content: space-evenly;
    }
}
@media (max-width:980px) {

    .presentation{
        padding-bottom: 40px;
    }

    .personal{
        padding-top: 60px;
        flex-direction: column;
        align-items: center;
    }
    .personal .text,.personal img{
        width: 100%;
    }

    .teachings ul{
        grid-template-columns: repeat(auto-fit, 280px);
        gap: 28px;
        justify-content: center;
    }
}

@media (max-width:880px) {
    header{
        padding: 32px 0 32px;
    }

    header .logo{
        padding-left: 32px;
    }

    .burger{
        display: block;
    }

    header nav{
        display: block;
        position: absolute;
        background-color: white;
        top: 114px;
        width: 100%;
        box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.1);
        height: 0;
        transition: all .5s;
        overflow: hidden;
    }
    header nav ul{
        display: block;
    }
    
    header .mainBtn{
        margin-left: 32px;
    }

    header li{
        padding: 24px 24px 24px 32px;
        font-size: 20px;
    }
}

@media (max-width:640px) {
    .teachings ul{
        grid-template-columns: repeat(1, 100%);
    }
    .testimonials ul{
        grid-template-columns: repeat(1, 280px);
        gap: 20px;
    }
    .personal img {
        height: 50vh;
    }
}
@media (max-width:500px) {
    header{
        padding: 16px 0;
    }
    header nav{
        top: 80px;
    }
    h1.title{
        font-size: 2em;
    }
    .big-title{
        font-size: 2.4em;
    }
    .presentation p{
        color: var(--mainblue);
        font-weight: bold;
        font-size: 13px;
    }
    .presentation button{
        width: 280px;
        font-size: 20px;
    }
    .presentation .items{
        flex-direction: column;
    }

    .personal{
        padding-top: 20px;
    }
    .swiper-wrapper{
        gap: 82px;
    }

    .swiper-wrapper li{
        margin: 0 !important;
    }

    .footer-logo{
        font-size: 24px;
    }
}
@media (max-width:375px) {
    .swiper-wrapper{
        gap: 116px;
    }

    .container-lg{
        padding: 0 12px;
        padding-top: 100px;
    }
    header .logo {
        padding-left: 12px;
    }
    .burger{
        margin-right: 12px;
    }
}

@media (max-width:350px) {
    h1.title{
        font-size: 32px;
    }
    .footer-logo h1{
        font-size: 24px;
    }
}