body {
    /* font-family: "Google Sans", sans-serif; */
    font-family: "Arimo", sans-serif;
    background: var(--body-background-color);
}
:root {
  /* --primary-color: #1D0660; */
  --primary-color: #2D1B69;
  --primary-hover-color: #1A62C3;
  --primary-light-color: #e0d6ff;
  --secondary-color: #FB6914;
  --secondary-hover-color: #d14e03;
  --secondary-light-color: #ff9d2e;
  /* --yellow-btn-color: #F7CE16; */
  --yellow-btn-color: #FFD100;
  --white-color: #fff;
  --black-color: #181d20;
  --paragraph-color: #3d4042;
  --body-background-color: #fefefe;
  --border-color: #cccccc;
  --border-light-color: #ebebeb;
  --footer-background: #111111;
}
a{
    color: var(--primary-color);
    text-decoration: none;
}
a:hover{
    color: var(--primary-hover-color);
    text-decoration: none;
}
.btn-primary{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 12px 25px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.5s;
    color: var(--white-color);
    background-color: var(--primary-color);
    border: solid 1px var(--primary-color);
}
.btn-primary .icon svg{
    max-width: 20px;
    max-height: 20px;
}
.btn-primary:hover{
    gap: 10px;
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}
.btn-secondary{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 12px 25px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.5s;
    color: var(--white-color);
    background-color: var(--secondary-color);
    border: solid 1px var(--secondary-color);
}
.btn-secondary .icon svg{
    max-width: 20px;
    max-height: 20px;
}
.btn-secondary:hover{
    gap: 10px;
    background-color: var(--secondary-hover-color);
    border-color: var(--secondary-hover-color);
}
.btn-outline-primary{
    padding: 12px 25px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 4px;
    color: var(--primary-color);
    border: solid 1px var(--primary-color);
}
.btn-outline-primary:hover{
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}

.btn-white{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 12px 25px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 4px;
    /* transition: all 0.5s; */
    color: var(--primary-color);
    border: solid 1px var(--white-color);
    background-color: var(--white-color);
    /* background: linear-gradient(0deg, rgba(217, 217, 221, 0.96) 0%, rgba(235, 239, 244, 1) 100%); */

     background: linear-gradient(180deg, rgba(235, 239, 244, 1), rgba(217, 217, 221, 0.96), rgba(235, 239, 244, 1));
    background-size: 200% 200%;
    background-position: top;
    transition: all 0.5s ease;
}
.btn-white .icon svg{
    max-width: 20px;
    max-height: 20px;
}
.btn-white:hover{
    gap: 10px;
    color: var(--primary-color);
    /* background-color: var(--primary-hover-color); */
    /* background: linear-gradient(90deg, rgba(217, 217, 221, 0.96) 0%, rgba(235, 239, 244, 1) 100%); */
    border-color: var(--primary-hover-color);
    background-position: bottom;
}
.btn-yellow{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 12px 25px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 4px;
    /* transition: all 0.5s; */
    box-shadow: inset 0px 2px 4px #ffe2ab;
    color: var(--black-color);
    background: var(--yellow-btn-color);
    /* background: linear-gradient(180deg, var(--yellow-btn-color) 0%, var(--secondary-light-color) 100%); */

    background: linear-gradient(180deg, var(--yellow-btn-color), var(--secondary-light-color), var(--yellow-btn-color));
    background-size: 200% 200%;
    background-position: top;
    transition: all 0.5s ease;
}
.btn-yellow .icon svg{
    max-width: 20px;
    max-height: 20px;
}
.btn-yellow:hover{
    gap: 10px;
    color: var(--black-color);
    border-color: var(--primary-hover-color);
    /* background: linear-gradient(90deg, var(--secondary-light-color) 0%, var(--yellow-btn-color) 100%); */
    background-position: bottom;
}

.btn-outline-white{
    padding: 12px 25px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 4px;
    color: var(--white-color);
    border: solid 1px var(--white-color);
}
.btn-outline-white:hover{
    color: var(--white-color);
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}

.main-title{
    width: 100%;
}
.main-title.mb-50{
    margin-bottom: 50px;
}
.main-title h2{
    font-size: 42px;
}
.main-title h2 span{
    color: var(--secondary-color);
}

.container {
    max-width: 767px;
}

.header-section.sticky {
    background-color: var(--primary-color);
    transition: all 0.9s ease-in;
}

.header-section {
    width: 100%;
    height: auto;
    padding: 15px 0px;
    /* position: fixed; */
    position: absolute;
    top: 0;
    transition: all 0.9s ease-out;
    z-index: 9;
}

.header-section .header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-section .header-flex .menu-hemburger{
    background-color: transparent;
    border: none;
    font-size: 16px;
    color: var(--white-color);
}
.header-section .header-flex .menu-hemburger svg{
    max-width: 24px;
    max-height: 24px;
    fill: var(--white-color);
}
.header-section.sticky .header-flex .menu-hemburger{
    color: var(--white-color);
}
.header-section .header-left .logo img {
    width: 100%;
    max-width: 220px;
    max-height: 60px;
    display: inline-block;
}
.MenuNavbar-offcanvas{
    background-color: var(--black-color);
}
.MenuNavbar-offcanvas .logo img {
    max-width: 200px;
    max-height: 90px;
}
.MenuNavbar-offcanvas .offcanvas-header .btn-close{
    width: auto;
    display:  flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color)!important;
    fill: var(--white-color);
    opacity: 1;
    font-size: 14px;
    outline: none;
    box-shadow: none;
}
.MenuNavbar-offcanvas .offcanvas-header .btn-close span svg{
    max-width: 14px;
    max-height: 14px;
}
.MenuNavbar-offcanvas .menu-list{
    text-align: center;
    list-style-type: none;
    padding-left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.MenuNavbar-offcanvas .menu-list li a{
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.5s;
    padding: 8px 0px;
    display: inline-block;
}
.MenuNavbar-offcanvas .menu-list li a:hover{
    color: var(--secondary-color);
}


.hero-section {
    width: 100%;
    /* height: 100%; */
    height: calc(100% - 94px);
    min-height: calc(100vh - 94px);
    display: flex;
}
.hero-section figure{
    /* position: relative; */
    width: 100%;
    /* height: 100%; */
    height: calc(100% - 94px);
    min-height: calc(100vh - 94px);
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.hero-section figure img{
    width: 100%;
    /* height: 100vh; */
    height: 100%;
    object-fit: cover;
}
.hero-section figure::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--black-color);
    box-shadow:inset 20px 80px 100px 0 rgba(0, 0, 0, 0.397),inset 150px 30px 150px 50px #00000059;
    /* background: linear-gradient(80deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.205) 70%, rgba(0, 0, 0, 0) 80%); */
    background: linear-gradient(80deg, rgb(0 0 0 / 60%) 0%, rgba(0, 0, 0, 0.205) 70%, rgba(0, 0, 0, 0) 80%);
    
}
.hero-section figure::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--black-color);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 55%);
    
}

.hero-content-part{
    position: absolute;
    width: 100%;
    /* height: 100%;
    min-height: 100%; */
    height: calc(100% - 94px);
    min-height: calc(100vh - 94px);
    top: 50%;
    left: 0;
    z-index: 1;
    transform: translateY(-50%);
    /* padding: 50px 0px; */
    padding: 100px 0px 100px 0px;
}
.hero-content-part .container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.hero-content-part .hero-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.hero-content-part .hero-content h1{
    font-size: 48px;
    font-weight: 800;
    color: var(--white-color);
    text-align: center;
}
.hero-content-part .hero-content h1 span{
    color: var(--secondary-color);
    display: block;
}
.hero-content-part .hero-content p{
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
}
.hero-content-part .hero-content small{
    font-size: 14px;
    font-weight: 300;
    color: var(--white-color);
    background: #ffffff30;
    padding: 6px 20px;
    display: inline-flex !important;
    border-radius: 20px;
    border: solid 1px var(--border-color);
}
.buttons-list p{
    font-size: 14px;
    margin:0px;
}
.buttons-list .btn{
        width: 100%;        
        font-size: 28px;
        font-weight: 800!important;
        border: none;
    }
.hero-content-part .hero-content p.text-yellow{
    color: var(--yellow-btn-color)!important;
}

.trust-counter-section{
    position: relative;
    background-color: var(--secondary-color);
}
.trust-counter-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white-color);
}

.trust-counter-section .counter-wrap {
    position: relative;
}
.trust-counter-section .counter-wrap .divider::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    height: 100%;
    width: 1px;
    background: var(--white-color);
    opacity: 0.3;
}
.trust-counter-section .counter-wrap .single-countdown {
    text-align: center;
    display: flex;
    align-items: end;
    gap: 20px;
    position: relative;
    padding: 20px 10px;
}
.trust-counter-section .counter-wrap .single-countdown .icon{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    color: var(--white-color);
    border: solid 1px #f39d6c;
    background-color: var(--secondary-light-color);
}
.trust-counter-section .counter-wrap .single-countdown .icon svg,
.trust-counter-section .counter-wrap .single-countdown .icon img{
    max-width: 100%;
    max-height: 100%;
}
.trust-counter-section .counter-wrap .single-countdown .number {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}
.trust-counter-section .counter-wrap .single-countdown .number h2{
    color: var(--white-color);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
}
.trust-counter-section .counter-wrap .single-countdown span {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.what-we-do-section{
    width: 100%;
    height: auto;
    padding: 50px 0px;
}
.process-slider-area {
    position: relative;
}

.process-card {
    width: 100%;
    height: 100%;    
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
}

.process-content{
    width: 100%;
    height: 100%;
    padding: 30px;
    border: 1px solid var(--border-light-color);
    border-radius: 4px;
}
.process-content .process-text .process-name-and-no {
    margin-bottom: 10px;
}
.process-content .process-text h3{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--primary-color);
}
.process-content .process-text p{
    font-size: 16px;
    color: var(--paragraph-color);
    margin-bottom: 0px;
}
.process-content .process-text .process-name-and-no .step-no {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 50%;
    line-height: 16px;
}
.we-call-you-section{
    width: 100%;
    height: auto;
    position:relative;
    overflow: hidden;
    padding: 50px 0px;
    background: #ffeddf;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.96) 50%, rgba(255, 237, 223, 1) 100%);
}
.bottom-left-circle {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 310px;
    height: 310px;
    background: rgba(251, 105, 20, 0.25);
    /* background: rgba(251, 105, 20, 0.849); */
    filter: blur(100px);
}
.we-call-you-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.we-call-you-img img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}
.we-call-you-content{}
.we-call-you-content h2{
    color: var(--black-color);
    /* font-size: 32px; */
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}
.we-call-you-content p{
    color: var(--black-color);
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}
.we-call-you-content p span{
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 500;
}
.mobile-number-input .form-label{
    font-size: 18px;
    font-weight: 500;
}
.mobile-number-input input{
    min-height: 56px;
    padding-left: 50px;
    color: var(--black-color);
    font-size: 16px;
    border: solid 1px var(--border-light-color);
    background-size: 16px!important;
    outline: none;
    box-shadow: none;
    background-repeat: no-repeat !important;
    background-position: 20px center !important;
    background-color: var(--white-color);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"/></svg>')!important;
}
.mobile-number-input input::-webkit-outer-spin-button,
.mobile-number-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.mobile-number-input input[type=number] {
  -moz-appearance: textfield;
}
.privacy-protected{
    width: 100%;
    height: auto;
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    border: solid 1px var(--secondary-light-color);
    background-color: #ffeddf;
}
.privacy-protected .icon{
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
}
.privacy-protected .icon img,
.privacy-protected .icon svg{
    max-width: 100%;
    max-height: 100%;
}
.privacy-protected h5{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.privacy-protected p{
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
}
footer {
    width: 100%;    
    height: auto;
    display: block;
    padding: 20px 0px;
    border-top: solid 1px #eee;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-link {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-link p {
    margin: 0;
}


.footer-icon {
    border: 1px solid white;
    padding: 8px;
    border-radius: 99px;
}

.footer-icon:hover {
    background-color: white;
    color: #36454F;
    transition: 0.5s background-color ease-in-out, 0.5s color ease-in-out;
}

.copyright {
    font-size: 14px;
    color: var(--black-color);
}

.footer-logo {
    /* border-block: 1px solid #dcdcd21a; */
    padding: 8px;
}

.footer-block {
    /* border: 1px solid #dcdcd21a; */
    /* padding-block: 16px; */
    color: white;
}

.contact-mobile-footer{
    width: 100%;
    height: auto;
    background: var(--white-color);
    z-index: 11;
    position: sticky;
    bottom: 0px;
    padding: 8px;
    border-top: solid 1px var(--border-light-color);
}
.contact-mobile-footer ul{   
    width: 100%;
    max-width: 767px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style-type: none;
    margin: 0px auto;
    padding: 0px;
    border-radius: 4px;
    border: solid 1px var(--border-light-color);
}
.contact-mobile-footer ul li{
    width: 100%;
    padding: 6px 5px;
}   
.contact-mobile-footer ul li:not(:last-child) a{    
    border-right: solid 1px var(--border-light-color);
}
.contact-mobile-footer ul li a{
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
}
/* .contact-mobile-footer .call-btn{
    background-color: var(--primary-hover-color);
}
.contact-mobile-footer .whatsapp-btn{
    background-color: var(--primary-color);
}
.contact-mobile-footer .callback-btn{
    background-color: var(--secondary-color);
} */
/* .contact-mobile-footer a:not(:last-child){
    border-right: solid 1px #1a3a65;
    background-color: var(--secondary-color);
} */
.contact-mobile-footer a .icon{
    width: 30px;
    height: 30px;
    display: flex;
    flex: 0 0 auto;
    /* background-color: var(--white-color); */
    border-radius: 50%;
}
.contact-mobile-footer a .icon svg, .contact-mobile-footer a .icon img{
    max-width: 100%;
    max-height: 100%;
}

.disclaimer {
    /* border-top: solid 1px #eee; */
    margin-top: 15px;
    padding-top: 15px;
    text-align: justify;
}
.disclaimer p{
    font-size: 11px;
    margin-bottom: 10px;
}
.disclaimer .copyright{
    font-size: 14px;
    font-weight: 500;
}

.innerbanner-section {
    width: 100%;
    height: auto;
    min-height: 40vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 0px 30px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.innerbanner-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #181d20b6;

}
.innerbanner-section h1{
    font-size: 38px;
    font-weight: 700;
    color: var(--white-color);
    text-align: center;
}
.innerbanner-section p{
    font-size: 16px;
    font-weight: 300;
    color: var(--white-color);
    text-align: center;
}

.privacy-page-section{    
    width: 100%;
    height: auto;
    padding: 50px 0px;
}

.privacy-page-section h3{
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 25px;
}
.privacy-page-section p{
    font-size: 16px;
    font-weight: 400;
    color: var(--paragraph-color);
}

.footer-section{
    background-color: var(--footer-background);
}
.footer-section p{
    color: var(--white-color);
}
.footer-section p a{
    color: var(--white-color);
    text-decoration: underline;
}
.footer-section p a:hover{
    color: var(--yellow-btn-color);
    text-decoration: underline;
}