
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header / #main-navn
4. Banner / .banner-main-section
5. Experience / .experience-section
6. Benefits / .benefits-section
7. Calendar / .plan-calendar-section
8. Team / .best-guides-section  
9. Faq / .faq-section
10. Testimonial / .testimonial-section
11. Journey / .journey-section
12. sponsors  / .sponsors-images-section
13. Footer / .footer-section
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
# [Color codes]

# --primary-color: #fff;
# --secondary-color: #000000;
# --accent: #23b0ba;
# --text-color: #777777;
# --button-color: #2e4a71;
/*------------------------------------------------------------------
[Typography]
Body copy:     'Inter', sans-serif;
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
:root {
    --primary-color: #fff;
    --secondary-color: #000000;
    --accent: #23b0ba;
    --text-color: #777777;
    --button-color: #2e4a71;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-size: 18px;
    line-height: 26px;
    color: var(--text-color);
    font-family: "Inter", sans-serif;
}
/* generics start */
h1 {
    font-size: 72px;
    line-height: 70px;
    font-weight: 800;
    color: var(--primary-color);
    font-family: "Plus Jakarta Sans", sans-serif;
}
h2 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: "Plus Jakarta Sans", sans-serif;
}
h3 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}
h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: var(--button-color);
    font-family: "Inter", sans-serif;
}
h5 {
    font-size: 18px;
    line-height: 18px;
}
h6 {
    font-size: 16px;
    line-height: 16px;
}
p{
    font-size: 18px; 
}
.padding-top50 {
    padding-top: 50px;
}
.padding-top {
    padding-top: 130px;
}

.padding-bottom {
    padding-bottom: 130px;
}
a:hover {
    text-decoration: none;
}
.generic-btn {
    display: inline-block;
}
.generic-btn a {
    font-size: 18px;
    font-weight: 400;
    padding: 15px 42px 15px 43px;
    border-radius: 10px;
    color: var(--primary-color);
    background: var(--button-color);
    border: 1px solid var(--button-color);
    transition: .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.generic-btn a i {
    color: var(--primary-color);
    font-size: 16px;
    margin-left: 5px;
    transition: .3s ease-in-out;
}
.generic-btn a:hover {
    background: transparent;
    border-color: var(--button-color);
    color: var(--button-color);
}
.generic-btn a:hover i{
    color: var(--button-color);
}
.generic-title h2{
    margin-bottom: 17px;
}
.generic-title p{
    font-size: 20px;
    line-height: 26px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0;
}
.generic-title{
    margin-bottom: 19px;
}
.light-bg{
    background: #f0f2f1;
}
/* header section styling start here */
.header-main-con {
    position: relative;
    z-index: 9999;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu {
    padding: 0;
    top: 24px;
    left: 0;
    width: 188px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: absolute;
    background: var(--accent);
}
.header-main-con .dropdown-item:hover {
    background: var(--button-color);
}
.header-main-con .dropdown-item {
    font-size: 14px;
    margin-bottom: 0;
    position: relative;
    padding: 8px 26px 8px 15px;
    color: #fff;
    transition: all 0.3s ease-in-out;
    text-transform: capitalize;
    border-bottom: 1px solid rgb(255 255 255 / 15%);
}
.header-main-con .navbar-light .navbar-nav .nav-link {
    color: #12191f;
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    text-transform: uppercase;
    transition: .4s ease-in-out;
}
.header-main-con .navbar-light .navbar-nav .nav-link:hover{
    color: var(--accent);
}
.header-main-con .navbar {
    padding: 15px 0;
}
.header-main-con .navbar .navbar-collapse{
    justify-content: end;
}
.header-main-con .navbar .navbar-nav {
    gap: 38px;
    margin-right: 30px;
}
.header-support-btn a {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    border-radius: 10px;
    padding: 15px 22px 14px;
    color: var(--primary-color);
    background: var(--button-color);
    transition: .3s ease-in-out;
}
.header-support-btn a:hover{
    background: var(--accent);
}
.chat-btn a {
    padding: 13px 15px 14px;
    border-radius: 10px;
    background: var(--accent);
    color: var(--primary-color);
    transition: .3s ease-in-out;
}
.chat-btn a:hover{
    background: var(--button-color);
}
.header-main-con .nav-btns{
    gap: 10px;
}
/* header section styling end here */
/* banner section styling start here */
.banner-main-section {
    background: url(../images/banner-img.jpg) no-repeat center;
    background-size: cover;
    background-position-y: -77px;
    height: 815px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.sub-banner{
    background: url(../images/sub-banner.jpg) no-repeat center;
    background-size: cover;
    background-position-y: -77px;
    /* padding: 190px 0 270px; */
    height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.sub-banner:after{
    content: "";
    background: url(../images/banner-bottom-shape.png) no-repeat;
    background-size: cover;
    width: 100%;
    height: 165px;
    position: absolute;
    bottom:11px;
    left: 0;
}
.contact-form-section{
    margin-top: -9px;
}
.banner-main-section::after {
    content: "";
    background: url(../images/banner-bottom-shape.png) no-repeat;
    background-size: cover;
    width: 100%;
    height: 165px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.banner-inner-con{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.banner-inner-con span{
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--primary-color);
}
.banner-inner-con p{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 32px;
    color: var(--primary-color);
}
.banner-btn a{
    padding: 15px 49px;
    background: var(--accent);
    border-color: var(--accent);
}
.banner-inner-con h1{
    margin-bottom: 12px;
}
.top-to-bottom-banner-btn a {
    gap: 7px;
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 10px 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -44px;
    z-index: 3;
    box-shadow: 0 0 100px rgb(0 0 0 / 30%);
    transition: .3s ease-in-out;
}
.top-to-bottom-banner-btn a:hover{
    background: var(--accent);
}
.top-to-bottom-banner-btn a:hover i,
.top-to-bottom-banner-btn a:hover span{
    color: var(--primary-color);
}
.top-to-bottom-banner-btn a span{
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 1px;
    color: var(--secondary-color);
}
.top-to-bottom-banner-btn a i{
    font-size: 16px;
    line-height: 16px;
    color: var(--button-color);
}
/* banner section styling end here */
/* experience section styling start here */
.experience-img-con figure{
    border-radius: 10px;
    overflow: hidden;
    display: inline-block;
}
.experience-img-con .years-con{
    font-size: 40px;
    font-weight: 800;
    line-height: 50px;
    position: relative;
    color: var(--primary-color);
    font-family: "Plus Jakarta Sans", sans-serif;
}
.years-con .count{
    width: 42px;
}
.exp-years {
    background: var(--accent);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    gap: 25px;
    border-radius: 10px;
    padding: 11px 20px;
    position: absolute;
    right: -30px;
    bottom: 47px;
}
.experience-img-con .years-con span {
    display: inline-block;
    font-size: 24px;
    line-height: 24px;
    position: absolute;
    right: -17px;
    top: 6px;
}
.experience-img-con {
    position: relative;
    display: inline-block;
    padding-top: 10px;
}
.exp-years small{
    font-size: 14px;
    line-height: 16px;
    color: var(--primary-color);
}
.experience-inner-con {
    display: grid;
    gap: 123px;
    margin-bottom: 85px;
    grid-template-columns: 40% 49%;
}
.experience-text-con .generic-btn a{
    background: transparent;
    color: var(--button-color);
}
.experience-text-con .generic-btn a i{
    color: var(--button-color);
}
.experience-text-con .generic-btn a:hover{
    color: var(--primary-color);
    background: var(--button-color);
    border-color: var(--button-color);
}
.experience-text-con .generic-btn a:hover i{
    color: var(--primary-color);
}
.experience-text-con ul li{
    padding-left: 33px;
    margin-bottom: 10px;
}
.experience-text-con ul li:last-child{
    margin-bottom: 0;
}
.experience-text-con ul li i {
    color: var(--accent);
    position: absolute;
    left: 3px;
    top: 5px;
}
.experience-text-con ul{
    margin-bottom: 35px;
}
.experience-text-con > p{
    margin-bottom: 28px;
}
/* counter section styling start here */
.customer-counter-box .count{
    font-size: 40px;
    line-height: 40px;
    font-weight: 800;
    color: var(--button-color);
    font-family: "Plus Jakarta Sans", sans-serif;
}
.customer-counter-box small {
    font-size: 26px;
    line-height: 24px;
    font-weight: 700;
    color: var(--button-color);
    position: relative;
    top: -12px;
    right: 6px;
}
.customer-counter-box .counter-digits {
    display: inline-block;
    margin-bottom: 6px;
}
.customer-counter-box .client-status {
    font-size: 16px;
    line-height: 18px;
}
.customer-counter-inner-sec {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.customer-counter-box{
    display: flex;
    gap: 20px;
    align-items: center;
}
.customer-counter-box figure{
    margin-bottom: 0;
}
.client-details-outer-box{
    padding-top: 3px;
}
/* counter section styling end here */
/* experience section styling end here */
/* benefits section styling start here */
.benefits-inner-section {
    display: grid;
    gap: 115px;
    grid-template-columns: 41% 50%;
    align-items: center;
}
.benefits-left-con .generic-title {
    margin-bottom: 29px;
}
.benefits-left-con > p{
    margin-bottom: 29px;
}
.benefits-left-con ul li{
    padding-left: 30px;
}
.benefits-left-con ul li i{
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 4px;
}
.benefits-left-con ul {
    display: grid;
    gap: 10px 13px;
    margin-bottom: 34px;
    grid-template-columns: 44% 45%;
}
.benefits-right-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 46% 46%;
    padding-top: 12px;
}
.single-benefit-box p:last-child{
    margin-bottom: 0;
}
.single-benefit-box {
    border-radius: 10px;
    background: var(--primary-color);
    padding: 36px 30px 35px;
    border: 1px solid transparent;
}
.single-benefit-box:hover {
    border: 1px solid var(--accent);
}
.single-benefit-box img{
    transition: all 0.4s ease-in-out;
}
.single-benefit-box:hover img{
    transform: translatey(5px);
}
.single-benefit-box figure{
    margin-bottom: 15px;
}
.single-benefit-box p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}
.single-benefit-box h4{
    margin-bottom: 18px;
}
/* benefits section styling end here */
/* calendar section styling start here */
.plan-calendar-section .generic-title{
    margin-bottom: 75px;
}
.fc-day-grid-event {
    padding: 4px 10px;
    font-size: 14px;
    color: #fff !important;
    border-color: var(--accent);
    background: var(--accent);
}
#calendar button {
    font-size: 16px;
    background: var(--accent);
    color: var(--primary-color);
}
#calendar button:focus{
    outline: none;
}
.fc-unthemed th {
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
    text-transform: uppercase;
    background: #d6d7d9;
}
#calendar .fc-center {
    display: none;
}
/* calendar section styling end here */
/* guide section styling start here */
.best-guides-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.guide-box figure{
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 100%;
    margin: 0 auto 35px;
}
.guide-box {
    border-radius: 10px;
    padding: 39px 30px 34px;
    background: var(--primary-color);
    transition: .3s ease-in-out;
    display: flex;
    flex-direction: column;
}
.guide-box:hover{
    transform: translateY(-20px);
    background: var(--accent);
    color: var(--primary-color);
}
.guide-box:hover h4,
.guide-box:hover p,
.guide-box:hover span,
.guide-box:hover ul li a i{
    color: var(--primary-color);
}
.guide-box h4{
    margin-bottom: 2px;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.guide-box span {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 16px;
    display: block;
}
.guide-box p{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 22px;
}
.guide-box ul li a i{
    color: var(--text-color);
    transition: all 0.4s ease-in-out;
}
.guide-box ul li a i:hover{
    transform: translateY(-4px);
}
.guide-box ul{
    gap: 19px;
    display: flex;
    justify-content: center;
    margin-top: auto;
}
.best-guides-section .generic-title{
    margin-bottom: 75px;
}
/* guide section styling end here */
/* faq section styling start here */
span.error {
    font-size: 14px;
    color: red;
}
.faq-section{
    background: url(../images/faq-bg-img.jpg) no-repeat center;
    background-size: cover;
    height: 100%;
}
.faq-section .generic-title h2{
    color: var(--primary-color);
}
.faq-cards-con .card {
    margin-bottom: 33px;
    border-radius: 10px;
    background: var(--accent);
    overflow: hidden;
    border: 0;
}
.faq-cards-con .card:last-child{
    margin-bottom: 0;
}
.faq-cards-con .card-header {
    padding: 0;
    background-color: transparent;
    border-bottom: none;
}
.faq-cards-con .card-header .btn-link {
    width: 100%;
    text-align: left;
    font-weight: 700;
    padding: 20px 40px 20px 25px;
    color: var(--button-color);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    line-height: 24px;
    border-radius: 0;
}
.faq-cards-con .card-body {
    padding: 0 40px 25px 29px;
    font-size: 16px;
    line-height: 24px;
    background: var(--accent);
    color: var(--primary-color);
}
.faq-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 57.3% 40%;
    position: relative;
}
.faq-cards-con .card-header .btn-link.collapsed{
    background: var(--primary-color);
    color: var(--button-color);
    padding: 20px 40px 23px 27px;
}
.faq-cards-con .card-header .btn-link{
    background: var(--accent);
    color: var(--primary-color);
    padding: 20px 40px 19px 27px;
}
.faq-cards-con .card-header .btn-link.collapsed:hover{
    color: var(--accent);
}
.faq-cards-con .card-header .btn-link:hover{
    text-decoration: none;
}
.faq-cards-con .card-header .btn-link:focus{
    text-decoration: none;
}
.faq-cards-con .card-header:first-child{
    border-radius: 0;
}
.faq-cards-con .card-header h4 .btn::after, .faq-cards-con .card-header h4 .btn.collapsed::after {
    font-family: "Font Awesome 5 free";
    position: absolute;
    font-weight: 600;
    font-size: 15px;
    right: 17px;
    top: 35px;
    transform: translateY(-50%);
    color: var(--text-color);
}
.faq-cards-con .card-header h4 .btn.collapsed::after {
    content: "\f067";
    color: var(--button-color);
}
.faq-cards-con .card-header h4 .btn.collapsed:hover::after{
    color: var(--accent);
}
.faq-cards-con .card-header h4 .btn::after {
    content: "\f068";
    color: var(--primary-color);
}
.faq-inner-con::after {
    content: "";
    background: var(--accent);
    width: 92px;
    height: 92px;
    border-radius: 10px;
    position: absolute;
    right: -30px;
    top: -30px;
}
.faq-cards-con,
.faq-form-con{
    z-index: 2;
}
/* faq form box */
.form-main-con ul li{
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.form-main-con {
    padding: 37px 40px 40px 39px;
    border-radius: 10px;
    background: var(--primary-color);
}
.form-main-con ul li input,
.form-main-con ul li select,
.form-main-con ul li textarea{
    font-size: 14px;
    line-height: 16px;
    padding: 10px 20px;
    height: 56px;
    color: var(--text-color);
    background: transparent;
    border:1px solid #ccc;
}
.form-main-con ul li textarea{
    padding: 18px 20px;
    resize: none;
}
.form-main-con ul li input:focus,
.form-main-con ul li select:focus,
.form-main-con ul li textarea:focus{
    border-color: var(--accent);
    outline: none;
}
.form-main-con ul li select {
    appearance: none;
    background: url(../images/angle-down.png) no-repeat;
    background-position-y: center;
    background-position-x: 95%;
}
.form-main-con ul li label {
    font-size: 14px;
    line-height: 16px;
    color: #29134b;
    margin-bottom: 12px;
}
.form-box .submit-btn button {
    padding: 15px 27px;
    font-size: 16px;
    border-radius: 10px;
    background: var(--button-color);
    color: var(--primary-color);
    cursor: pointer;
    border: 1px solid var(--button-color);
    transition: .3s ease-in-out;
}
.form-box .submit-btn button:focus{
    outline: none;
    border-color: var(--button-color);
}
.form-box .submit-btn button:hover{
    background: transparent;
    color: var(--button-color);
}
.faq-section .generic-title{
    margin-bottom: 74px;
}
input.error {
    border-color: red !important;
}
/* faq section styling end here */
/* testimonial section start here */
.guest-box{
    background: var(--primary-color);
    box-shadow: 0 0 100px rgb(0 0 0 / 10%);
    padding: 30px 30px 39px;
    border-radius: 10px;
}
.guest-box p{
    line-height: 30px
}
.guest-img figure{
    margin-bottom: 41px;
}
.guest-img .quote-img {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background: var(--button-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 10px;
    top: 10px;
    margin-bottom: 0;
}
.guest-img{
    position: relative;
}
.guest-box .start-img{
    margin-bottom: 20px;
}
.guest-box span{
    font-size: 14px;
    line-height: 14px;
}
.testimonial-section .testimonial-inner-con {
    box-shadow: 0 0 100px rgb(0 0 0 / 10%);
    position: relative;
    border-radius: 10px;
}
.testimonial-section .owl-carousel .owl-stage-outer {
    border-radius: 10px;
}
.testimonial-section .testimonial-inner-con .owl-carousel .owl-nav,
.testimonial-section .testimonial-inner-con .owl-carousel .owl-dots{
    display: none;
}
.testimonial-section .testimonial-inner-con .owl-carousel .owl-item img{
    width: auto;
    margin: 0 auto;
}
.testimonial-inner-con .btn-wrap .prev-btn, .testimonial-inner-con .btn-wrap .next-btn {
    border: none;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    border-radius: 100%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s ease-in-out;
}
.testimonial-inner-con .btn-wrap .prev-btn:focus,
.testimonial-inner-con .btn-wrap .next-btn:focus{
    outline: none;
}
.testimonial-inner-con .btn-wrap .prev-btn {
    background: #71668d;
    left: -70px;
}
.testimonial-inner-con .btn-wrap .next-btn{
    background: var(--accent);
    right: -70px;
}
.testimonial-inner-con .btn-wrap .next-btn:hover,
.testimonial-inner-con .btn-wrap .prev-btn:hover{
    background: var(--button-color);
}
.testimonial-section .generic-title{
    margin-bottom: 74px;
}
/* testimonial section end here */
/* journey section start here */
.journey-section{
    background: url(../images/journey-bg-img.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}
.journey-section .generic-title p{
    margin-bottom: 15px;
}
.journey-section .generic-title h2{
    color: var(--primary-color);
    margin-bottom: 30px;
}
.journey-section .generic-btn a{
    background: var(--accent);
    border-color: var(--accent);
}
.journey-section .generic-btn a:hover{
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}
.journey-section .generic-btn a:hover i{
    color: var(--accent);
}
/* journey section start here */
/* sponsors section start here */
.sponsors-inner-con ul{
    display: grid;
    gap: 0;
    grid-template-columns: 25% 25% 25% 25%;
    text-align: center;
}
.sponsors-inner-con ul li {
    height: 146px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #dfe3e5;
}
.sponsors-inner-con ul li figure img{
    transition: all 0.4s ease-in-out;
}
.sponsors-inner-con ul li:hover figure img{
    transform: translateY(4px);
}
.sponsors-inner-con ul.sponsors-first-row{
    border-bottom: 1px solid #dfe3e5;
}
.sponsors-inner-con ul li:last-child{
    border: 0;
}
.sponsors-inner-con ul.sponsors-first-row li:nth-child(odd){
    background: var(--primary-color);
}
.sponsors-inner-con ul.sponsors-second-row li:nth-child(even){
    background: var(--primary-color);
}
/* sponsors section end here */
/* footer section styling start here */
.footer-section {
    padding: 100px 0 80px;
}
.footer-inner-con p{
    line-height: 30px;
    margin-bottom: 31px;
}
.footer-social-links ul{
    display: flex;
    justify-content: center;
    gap: 15px;
}
.footer-social-links ul li a{
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--button-color);
    transition:all .4s ease-in-out;
}
.footer-social-links ul li a:hover{
    transform: translateY(-4px);
}
.footer-social-links ul li a:hover{
    color: var(--primary-color);
    background: var(--accent);
    border-color: var(--accent);
}
.footer-inner-con figure{
    margin-bottom: 26px;
}
.copyright-con {
    font-size: 14px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.copyright-section {
    padding: 15px 0;
    background: var(--button-color);
}
.copyright-con p {
    margin-bottom: 0;
    padding-left: 3px;
}
.copyright-con a{
    color: var(--primary-color);
    text-decoration: none;
}
.copyright-con a:hover{
    color: var(--accent);
}
.footer-inner-con a {
    display: inline-block;
}
.chat-btn {
    position: relative;
}
.product-item {
    top: -19px;
    right: -7px;
    width: 20px;
    height: 20px;
    display: flex;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: var(--button-color);
}
/* footer section styling end here */
/* bottom to top button */
#button.show {
    opacity: 1;
    visibility: visible;
}
#button:hover {
    cursor: pointer;
}
#button {
    display: inline-block;
    background-color:var(--accent);
    width: 82px;
    height: 82px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 57px;
    right: 113px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    cursor: pointer;
}

#button::after {
    content: "\f062";
    font-family: "Font Awesome 5 free";
    font-size: 20px;
    line-height: 50px;
    color: #fff;
    font-weight: 600;
}

@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(35, 176, 186, .99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(35, 176, 186, .01)
    }
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(35, 176, 186, .99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(35, 176, 186, .01)
    }
}

/* bottom to top button */
/* Preloader -------------------------------------------------------*/
/* Loader Styles start here */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--accent);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.lead {
    font-size: 13px;
}

.loader div {
    background-color: var(--button-color);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Preloader -------------------------------------------------------*/
