@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lancelot&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Madimi+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Gothic&display=swap');

:root{
    --bb-primary-color:#6FD1D4;
    --bb-secondary-color:#090909;
    --bb-secondary-color:#000000;
    --bb-black-color:#000000;
    --bb-white-color:#FFFFFF;
    --bb-off-white-color:#E5F7F7;
    --bb-dark-green: #2F6466;
    --bb-dark-white: #F2F2F2;
}

a{
    text-decoration: none;
}
html,body{
    scroll-behavior: smooth;
}
html, body{
    overflow-x: hidden;
}
button{
    outline: none !important;
}

/* Fonts */
.heading-font{
    font-family: "Tenor Sans", sans-serif !important;
}
.banner-heading-font{
    font-family: "Lancelot", serif !important;
}
.para-font{
    font-family: "Forum", serif !important;
}
.button-font{
    font-family: "Madimi One", sans-serif !important;
}

/* Text and BG Colors */
.t-primary{
    color: var(--bb-primary-color) !important;
}
.t-secondary{
    color: var(--bb-secondary-color) !important;
}
.t-black{
    color: var(--bb-black-color) !important;
}
.t-white{
    color: var(--bb-white-color) !important;
}
.t-off-white{
    color: var(--bb-off-white-color) !important;
}
.t-dark-green{
    color: var(--bb-dark-green) !important;
}
.bg-primary{
    background-color: var(--bb-primary-color) !important;
}
.bg-secondary{
    background-color: var(--bb-secondary-color) !important;
}
.bg-black{
    background-color: var(--bb-black-color) !important;
}
.bg-white{
    background-color: var(--bb-white-color) !important;
}
.bg-off-white{
    background-color: var(--bb-off-white-color) !important;
}
.bg-dark-green{
    background-color: var(--bb-dark-green) !important;
}
.bg-dark-white{
    background-color: var(--bb-dark-white) !important;
}

/* Typography Style */
.h1{
    font-size: 70px;
    font-weight: 400;
    line-height: 1.2em;
    font-style: normal;
}
.h2{
    font-size: 60px;
    font-weight: 400;
    line-height: 1.15em;
    font-style: normal;
}
.h3{
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3em;
    font-style: normal;
}
.h4{
    font-size: 40px;
    font-weight: 400;
    line-height: 1.35em;
    font-style: normal;
}
.h5{
    font-size: 30px;
    font-weight: 400;
    line-height: 1.35em;
    font-style: normal;
}
.h6{
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    font-style: normal;
}
.para{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7em;
    font-style: normal;
    letter-spacing: 1px;
}
.para-small{
    font-size: 16px;
}
.small{
    font-size: 15px !important;
}
.ex-small{
    font-size: 12px !important;
}
.button{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7em;
    letter-spacing: .5px;
    letter-spacing: 1px;
    font-style: normal;
}
.counter{
    font-family: "League Gothic", sans-serif;
    font-size: 120px;
    line-height: 1em;
    color: #8cafb0;
    font-weight: normal;
}
.counter span{
    font-weight: 200;
}
/* Tablet */
@media screen and (max-width:900px){
    .h1{
        font-size: 55px;
    }
    .h2{
        font-size: 48px;
    }
    .h3{
        font-size: 40px;
    }
    .h4{
        font-size: 29px;
    }
    .h5{
        font-size: 23px;
    }
    .h6{
        font-size: 17px;
    }
    .para{
        font-size: 17px;
    }
    .button{
        font-size: 17px;
    }
    .counter{
        font-size: 90px;
    }
}
/* Mobile */
@media screen and (max-width:600px){
    .h1{
        font-size: 40px;
    }
    .h2{
        font-size: 36px;
    }
    .h3{
        font-size: 30px;
    }
    .h4{
        font-size: 18px;
    }
    .h5{
        font-size: 16px;
    }
    .h6{
        font-size: 14px;
    }
    .para{
        font-size: 16px;
    }
    .button{
        font-size: 18px;
    }
    .counter{
        font-size: 60px;
    }
}
.ls-1{
    letter-spacing: 1px !important;
}
.br-10{
    border-radius: 10px !important;
}
.br-25{
    border-radius: 25px !important;
}
.mw-250{
    min-width: 250px;
}
.fs-18{
    font-size: 18px !important;
}

/* Theme Button */
.theme-button{
    display: inline-block;
    padding: 5px 5px 5px 15px;
    border-radius: 10rem;
    color: var(--bb-black-color);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: solid 1px var(--bb-primary-color) !important;
}
.theme-button:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bb-white-color);
    z-index: -2;
}
 .theme-button:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bb-primary-color);
    transition: all 0.3s;
    z-index: -1;
}
 .theme-button:hover {
    color: var(--bb-white-color);
}
 .theme-button:hover:before {
    width: 100%;
}
.theme-button >span >span{
    background-color: var(--bb-white-color);
    border: solid 1px var(--bb-primary-color);
    width: 35px;
    height: 35px;
    border-radius: 100%;
    z-index: 1;
}
.theme-button >span >span i{
    font-size: 17px;
    transition: all .3s;
    color: var(--bb-primary-color) !important;
}
.theme-button:hover >span >span i{
    transform: rotate(45deg);
}

/* Theme Button Dark */
.theme-button-dark{
    display: inline-block;
    padding: 5px 5px 5px 15px;
    border-radius: 10rem;
    color: var(--bb-white-color);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: solid 1px var(--bb-primary-color) !important;
}
.theme-button-dark:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bb-primary-color);
    z-index: -2;
}
 .theme-button-dark:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bb-white-color);
    transition: all 0.3s;
    z-index: -1;
}
 .theme-button-dark:hover {
    color: var(--bb-black-color);
}
 .theme-button-dark:hover:before {
    width: 100%;
}
.theme-button-dark >span >span{
    background-color: var(--bb-white-color);
    border: solid 1px var(--bb-primary-color);
    width: 35px;
    height: 35px;
    border-radius: 100%;
    z-index: 1;
}
.theme-button-dark >span >span i{
    font-size: 17px;
    transition: all .3s;
    color: var(--bb-primary-color) !important;
}
.theme-button-dark:hover >span >span i{
    transform: rotate(45deg);
}

/* Theme Link Button */
.theme-link-button{
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--bb-white-color);
    transition: color 0.3s ease;
}
.theme-link-button::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 2px;
    width: 100%;
    background-color: var(--bb-primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease, background-color 0.3s ease;
}
.theme-link-button::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 2px;
    width: 100%;
    background-color: #ffffff57;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.35s ease, background-color 0.3s ease;
}
.theme-link-button:hover{
    color: var(--bb-primary-color);
}
.theme-link-button:hover::after{
    background-color: var(--bb-primary-color);
    transform: scaleX(1);
    transform-origin: left;
}