@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');



:root {
    --primary_color_1: #1F2F83;

    --primary_font_1: 'Nunito';
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth !important;
    -webkit-scroll-behavior: smooth !important;
}
body {
    background-color: #F7F8FC;
    font-family: var(--primary_font_1);
}
a {
    text-decoration: none;
    cursor: pointer;
    color: #000;
    transition: 200ms ease-in;
}
h1, h2, h3, h4, h5, h6 {
    font-size: clamp(1.5em, 3vw, 3em);
}
/* width */
::-webkit-scrollbar {
    cursor: pointer !important; 
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    cursor: pointer !important; 
    background: rgb(202, 202, 202); 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #555;
    cursor: pointer !important; 
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    cursor: pointer !important; 
    background: var(--primary_color_1); 
}

.dropbtn {
    font-size: 16px;
    border: none;
    cursor: pointer;
    background-color: transparent;
}
  
.dropdown {
    position: relative;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 0.5em 1em;
    width: 150px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
    z-index: 1;
}
  
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
}
  
.dropdown-content a:hover {background-color: #ddd;}
  
.dropdown:hover .dropdown-content {display: flex;}
  


 /*google translate Dropdown */
 i {
    color: var(--primary_color_2);
}
#google_translate_element select{
    background:#f5f5f5;
    color:#000;
    border: none;
    border-radius:3px;
    padding: 6px;
    font-family: 'Varta', sans-serif;
    margin: 0!important;
} 
/*google translate link | logo */
.goog-logo-link{
      display:none!important;
}
.goog-te-gadget{
    color:transparent!important;
}
/* google translate banner-frame */
.goog-te-banner-frame{
    display:none !important;
}   
#goog-gt-tt, .goog-te-balloon-frame{
    display: none !important;
}
.goog-text-highlight { 
    background: none !important; 
    box-shadow: none !important;
}


.bg_screen {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    align-items: center;
    position: fixed;
    top: 0;
    padding: 1em 3em;
    left: 0;
    right: 0;
    z-index: 9999999999999999999;
    background-color: #fff;
}
.nav_logo, .sidebarMenuLogo .nav_logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    gap: 0.3em;
    color: var(--primary_color_1);
    font-size: clamp(0.8em, 1.5vw, 1em);
}
.nav_logo img {
    width: clamp(1em, 2vw, 1.5em);
}
.nav_link_wrapper {
    display: flex;
    gap: 3em;
    align-items: center;
    text-transform: capitalize;
}
.button_wrapper {
    font-size: clamp(0.8em, 1.5vw, 1em);
    display: flex;
    align-items: center;
    gap: 1em;
}
.button_wrapper a {
    color: var(--primary_color_1);
    text-transform: capitalize;
}
.signUp_button {
    background-color: #1F2F83;
    color: #fff !important;
    padding: 0.5em 0.8em;
    border-radius: 8px;
}
.signUp_button:hover { 
    background-color: rgba(31, 48, 131, 8%);
    color: var(--primary_color_1) !important;
}



.nav_header {
    display: none;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 10px;
    justify-content: flex-end;
    max-width: 100%;
    top: 0;
    padding-top: 12px;
    padding-right: 1em;
    box-shadow: none;
    font-size: clamp(1em, 1.5vw, 1.2em);
    align-items: center;
    background-color: #f5f5f5;
    color: var(--primary_color_1);
    position: fixed;
    font-weight: 700;
    gap: 0.3em;
    height: 60px!important;
    z-index: 999999999999999999999999;
}
.nav_header img {
    width: clamp(1.2em, 2vw, 1.5em);
}
#sidebarMenu {
    position: fixed;
    left: 0;
    height: 100%;
    top: 0;
    display: none;
    overflow-y: scroll;
    bottom: 0;
    z-index: 999999999999999999999999999999999999999999999999;
    width: 100%;
    font-size: clamp(1em,4vw, 1.2em);
    margin-top: 60px;
    padding: 1em 0;
    transform: translateX(-100%);
    transition: transform 250ms ease-in-out;
    background: #f5f5f5;
}
.sidebarMenuInner{
    margin:0 0 3.5em 0;
    padding:0;
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
    align-items: center;
    /* border-top: 1px solid #c8d0e2; */
}
.sidebarMenuLogo .nav_logo img {
    width: clamp(2.5em, 3vw, 3.5em);
}
.sidebarMenuLogo .nav_logo {
    font-size: clamp(1.2em, 2vw, 2em);
}
.sidebarMenuLogo {
    margin: 20px;
    /* border: 2px solid black; */
}
.sidebarMenuLogo .nav_logo{
    padding: 0 1em;
    /* border: 2px solid red; */
}
.sidebarMenuInner li{
    list-style: none;
    color: #000;
    padding: 10px 0;
    display: flex;
    text-transform: capitalize;
    font-weight: 600;
    align-items: center;
    cursor: pointer;
    transition: 200ms ease-in;
    /* border-bottom: 1px solid #c8d0e2; */
}
.sidebarMenuInner li span{
    display: block;
    font-size: 14px;
    color: rgba(182, 152, 152, 0.5);
}
.sidebarMenuInner li:hover {
    transform: scale(1.05);
}
.sidebarMenuInner li a{
    color: #000;
    width: 100%;
    padding: 20px;
    cursor: pointer;
    /* border: 2px solid red; */
    margin-left: 0.4em;
    text-decoration: none;
}
.sidebarMenuInfo {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 1em;
    padding: 20px;
}
.sidebarMenuInfo .translate {
    display: flex;
    align-items: baseline;
    padding: 0 !important;
    gap: 0.5em;
}
.sidebarMenuInfo .server {
    display: flex;
    gap: 0.2em;
    font-size: 0.9em;
    align-items: center;
}
.sidebarMenuInfo .serv_cont {
    display: flex;
    gap: 0.3em;
    padding: 0;
    align-items: center;
    font-size: 0.8em;
}
.sidebarMenuInfo .fa-solid {
    margin-right: 0.3em;
}

input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}
.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: fixed;
    z-index: 99999999999999999999999999;
    height: 100%;
    width: 100%;
    top: 22px;
    left: 15px;
    height: 22px;
    display: none;
    width: 22px;
}
.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #000;
}
.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}
.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}
@media (max-width: 1075px) {
    .nav_content {
        gap: 1.5em;
    }
    /* .nav_logo img {
        width: 80%;
    } */
}
@media (max-width: 950px) {
    .nav_header {
        display: flex;
    }
    .sidebarIconToggle {
        display: block;
    }
    #sidebarMenu {
        display: block;
    }
    .bg_screen {
        display: none;
    }
}
/* NAVBAR ENDS ////// */





header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: url(../img/ownStoreBg_img.png) no-repeat scroll center/cover;
    height: 80vh;
}
.header_content_wrapper {
    display: flex;
    padding: 2em 2em 6em 2em;
    gap: 2em;
    justify-content: flex-end;
    flex-direction: column;
    color: #fff;
}
.header_content {
    display: flex;
    flex-direction: column;
    gap: 1em;
    /* border: 2px solid red; */
    justify-content: flex-start;
}
.header_content h1, .header_content p {
    max-width: 40rem;
}
.header_content p {
    font-size: clamp(1em, 2vw, 1.3em);
}
.header_link_wrapper {
    display: flex;
    gap: 1em;
    justify-content: start;
    /* border: 2px solid red; */
    /* transform: scale(0.9); */
}
.header_link_inner {
    /* border: 2px solid white; */
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5em;
    width: 100%;
}
.header_link {
    display: flex;
    width: 40%;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: var(--primary_color_1);
    padding: 0.8em;
    text-align: center;
    font-weight: 600;
    font-size: clamp(0.8em, 1.2vw, 1.3em);
    border-radius: 8px;
    border: 2px solid #fff;
}
.header_link:nth-child(2) {
    background-color: transparent;
    color: #fff;
}
.header_link_inner img {
    width: 100%;
}
.header_img_wrapper {
    width: 90%;
    display: flex;
    justify-self: flex-end;
    align-items: flex-end;
}
.header_img_wrapper img {
    width: 100%;
}
@media (max-width:1160px) {
    header {
        /* height: auto; */
        background-position: left;
        height: 70vh;
        /* padding: 6em 1em 3em 1em; */
    }
    .header_content h1, .header_content p {
        width: 100%;
    }
    .header_content_wrapper {
        padding-bottom: 2em;
    }
}
@media (max-width:850px) {
    header {
        height: 60vh;
    }
}
@media (max-width:760px) {
    .header_img_wrapper {
        display: none;
    }
    header {
        display: flex;
        height: auto;
        padding-top: 6em;
        padding-bottom: 3em;
    }
}
@media (max-width:550px) {
    header {
        height: auto;
        background-position: left;
        padding: 7em 1em 4em 1em;
    }
    
    .header_content_wrapper {
        padding: 0;
    }
    .header_link_inner img {
        width: clamp(90%, 10vw, 100%);
    }
}



.scroll_down_wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1.5em 2em;
    align-items: center;
    flex-direction: column;
}
.scroll_down_link {
    display: flex;
    flex-direction: column;
    color: var(--primary_color_1) !important;
    align-items: center;
    font-weight: 700;
    font-size: clamp(0.8em, 2vw, 1em);
}
.scroll_down_link img {
    width: clamp(1em, 2vw, 1.5em);
}





.page_button_wrapper {
    display: flex;
    justify-content: center;
    gap: 2em;
    padding: 0 1em;
}
.page_button {
    padding: 1em 2em;
    background-color: var(--primary_color_1);
    color: #fff;
    text-transform: capitalize;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    /* Dropdown Shadow */
    box-shadow: 0px 4px 16px 0px rgba(178, 178, 178, 0.20);
    text-align: center;
    /* transition: 200ms ease-in; */
    font-size: clamp(0.7em, 1.5vw, 1.5em);
}
.page_button i {
    text-transform: lowercase !important;
    font-style: normal !important;
}
.active {
    background-color: rgba(31, 48, 131, 8%);
    color: var(--primary_color_1);
    font-weight: 700;
}
.page_button:hover {
    background-color: rgba(31, 48, 131, 8%);
    color: var(--primary_color_1);
    font-weight: 700;
}
@media (max-width:980px) {
    .page_button_wrapper {
        justify-content: space-between;
    }
}
@media (max-width:540px) {
    .page_button {
        padding: 1em;
    }
    .page_button_wrapper {
        gap: 0.5em;
        padding: 0.2em;
    }
}



.storeOwner_wrapper {
    display: flex;
    flex-direction: column;
    gap: 3em;
    background-color: #EFF1F4;
    margin-top: 0;
    align-items: center;
    padding: 4em 2em;
    justify-content: center;
}
.storeOwner_content {
    display: flex;
    width: 70%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    text-align: center;
}
.storeOwner_content p {
    font-size: clamp(0.9em, 1.5vw, 1.5em);
    width: 80%;
}
.storeOwner_grid_wrapper {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 2em;
    grid-template-columns: 60% 40%;
    margin: 3em auto;
    padding: 0 1em;
    /* border: 2px solid blue; */
}
.storeOwner_gridBox {
    display: flex;
    flex-direction: column;
    /* border: 2px solid red; */
    gap: 2.5em;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
}
.storeOwner_gridBoxContent {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.storeOwner_gridBoxContent p {
    font-size: clamp(1em, 1.5vw, 1.5em);
}
.storeOwner_gridBoxContent .bold {
    font-weight: 700;
    width: 100% !important;
    font-size: clamp(1.5em, 2.5vw, 2.5em);
}
.storeOwner_gridImg {
    display: flex;
    align-items: center;
    justify-content: center;
}
.storeOwner_gridImg img {
    width: clamp(90%, 30vw, 95%);
}
.storeOwnerButton {
    background-color: var(--primary_color_1);
    color: #fff;
    text-transform: capitalize;
    padding: 0.7em 1.8em;
    font-size: clamp(0.8em, 1.3vw, 1.2em);
    border-radius: 8px;
}
@media (max-width: 1060px) {
    .storeOwner_grid_wrapper {
        display: grid !important;
        align-items: flex-start;
        align-items: center;
        grid-template-columns: 1fr 1fr;
    }
    /* .storeOwner_gridImg img {
        width: clamp(90%, 30vw, 95%);
    } */
}
@media (max-width:700px) {
    .storeOwner_gridImg {
        /* display: none; */
    }
    .storeOwner_grid_wrapper {
        display: flex !important;
        flex-direction: column;
        margin-top: 0;
        padding: 0;
        gap: 2em;
    }
    .storeOwner_wrapper {
        padding: 3em 1em;
    }
    .storeOwner_gridBox {
        gap: 1.5em;
        justify-content: center;
        align-items: center;
        text-align: center !important;
    }
    .storeOwner_content p {
        width: 100%;
    }
    .storeOwner_gridBoxContent {
        align-items: center;
    }
    .storeOwner_gridBoxContent p {
        width: 80%;
    }
}
@media (max-width: 550px) {
    .storeOwner_content {
        width: 100%;
    }
    .storeOwner_gridBoxContent p {
        width: 100%;
    }
}




.offers_wrapper {
    display: flex;
    flex-direction: column;
    gap: 4em;
    background: url(../img/offersBg_img.png) no-repeat scroll center/cover;
    align-items: center;
    padding: 7em 3em;
}
.offers_content {
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    /* border: 2px solid red; */
    max-width: 40rem;
}
.offers_content h3 {
    text-shadow: 0 0 10px #1A276D;
}
.offers_content p {
    font-size: clamp(1em, 2vw, 1.2em);
}
.offers_grid_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2em;
}
.offers_gridBox:nth-child(1) {
    background-color: #ffffff !important;
}
.offers_gridBox:nth-child(2) {    
    background: #FFFAFA;
}
.offers_gridBox:nth-child(3) {    
    background: #fcfcfc;
}
.offers_gridBox:nth-child(4) {    
    background: #fbfbfb;
}
.offers_gridBox {
    padding: 1em 2em;
    border-radius: 16px;
    display: flex;
    gap: 1em;
    justify-content: space-between;
    font-size: clamp(1em, 1.5vw, 1.2em);
    flex-direction: column;
}
.offers_gridBox .bold {
    font-weight: 700;
    font-size: clamp(1.1em, 2vw, 1.3em);
}
.offers_gridBox img {
    width: clamp(2em, 5vw, 3em);
}
.offers_btn {
    /* background-color: #fff; */
    padding: 0.7em 1.3em;
    border: 2px solid #fff;
    font-size: clamp(1em, 1.5vw, 1.2em);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
}
.offers_btn:hover {
    background-color: var(--primary_color_1);
    color: #fff;
    /* border: none; */
}
@media (max-width:900px) {
    .offers_grid_wrapper {
        grid-template-columns: 1fr 1fr;
    }
    .offers_wrapper {
        padding: 4em 1em;
        background: url(../img/offersBg_img.png) no-repeat scroll top/contain;
    }
    .offers_btn {
        border: 2px solid #1A276D;
        color: var(--primary_color_1);
    }
}
@media (max-width:700px) {
    .offers_wrapper {
        background-position: center;
    }
    .offers_content h3 {
        text-shadow: 0 0 0 !important;
    }
    .offers_content {
        color: #000;
    }
}
@media (max-width:480px) {
    .offers_grid_wrapper {
        grid-template-columns: 1fr;
    }
    .offers_wrapper {
        background: transparent;
        gap: 2em;
    }
    .offers_btn {
        width: 80%;
        text-align: center;
    }
}




.secondOffers_wrapper {
    display: grid;
    background-color: #EFF1F4;
    grid-template-columns: 1fr 1fr;
    padding: 5em 2em;
    gap: 2em;
}
.secondOffers_img {
    display: flex;
    /* border: 2px solid red; */
    justify-content: center;
    align-items: center;
    background: url(../img/Polygon_img.png) no-repeat scroll center/contain;
}
.secondOffers_img img {
    width: clamp(95%, 30vw, 100%);
}
.secondOffers_content {
    display: flex;
    flex-direction: column;
    gap: 3em;
    background: url(../img/irregularBg_img.png) no-repeat scroll center/contain;
    justify-content: center;
}
.secondOffers_contentHeading {
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.secondOffers_contentHeading p {
    font-size: clamp(1em, 2vw, 1.3em);
}
.secondOffersList_wrapper {
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.secondOffersList {
    display: flex;
    gap: 0.3em;
    align-items: center;
    font-size: clamp(1em, 2vw, 1.3em);
}
.secondOffersList img {
    width: clamp(1em, 2vw, 1.3em);
}
.secondOffersList_link_wrapper {
    display: flex;
    gap: 1em;
    width: 90%;
}
.secondOffersList_link_wrapper img {
    width: 100%;
}
@media (max-width:800px) {   
    .secondOffers_img img {
        width: 80%;
    }
    .secondOffersList {
        align-items: start;
    }
    .secondOffers_wrapper {
        padding: 4em 1em;
    }
    .secondOffers_content {
        gap: 1.5em;
    }
}
@media (max-width:700px) {   
    .secondOffers_img img {
        width: 100%;
    }
}
@media (max-width:650px) {   
    .secondOffers_img {
        display: none;
    }
    .secondOffers_wrapper {
        display: flex;
    }
    .secondOffers_content {
        gap: 2.5em;
    }
}







.achievement_wrapper {
    display: flex;
    flex-direction: column;
    gap: 2em;
    padding: 4em 1em;
}
.achievement_content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
}
.achievement_content p {
    font-size: clamp(1em, 2vw, 1.3em);
    max-width: 40rem;
    margin: 0 auto
}
.achievementCounter_wrapper {
    display: flex;
    justify-content: center;
}
.counter-background{
    /* background-color: var(--primary_color_3); */
    background: #1F2F83 url(../img/counterBg_img.png) no-repeat scroll center/cover;
    border-radius: 16px;
    width: 80%;
    padding: 2em 1em; 
}
.counter-container{
    display: grid;
    grid-template-areas: 'box1 box2 box3 box4';
    justify-content: space-evenly;
    padding: 3rem 1rem;
    margin: 0 auto;
}
.counter-box1{
    grid-area: box1;
}
.counter-box2{
    grid-area: box2;
}
.counter-box3{
    grid-area: box3;
}
.counter-box4{
    grid-area: box4;
}
.counter{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:.2rem;
}
.counter_group1 {
    font-size:clamp(2.3rem, 5vw, 3rem);
    color: #fff;
    font-weight: 700;
}
.counter_group2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.counter__text1{
    font-size: clamp(0.9rem, 2.5vw, 1.125rem);
    color: var(--primary_color_1);
    color: white;
    font-weight: 600;
    font-family: var(--font-3-poppins);
    line-height: 1.2;
    text-transform: capitalize;
    text-align: center;
}
.counter__text2{
    font-size:clamp(0.7rem, 2.5vw, 0.938rem);
    color: #999 !important;
    text-align: center;
}
.num{
    font-size:clamp(2.3rem, 5vw, 3rem);
    color: var(--primary_color_1);
    color: white;
    text-align: center;
    font-weight: 700;
    font-family: var(--font-3-poppins);
    margin-bottom: .7rem;
}
@media (max-width:820px) {
    .counter-container{
        grid-template-areas: 'box1 box2' 'box3 box4' ;
        gap: 4em;
        grid-auto-rows: 1fr 1fr;
        grid-auto-columns: 1fr 1fr;
        padding: 2rem 1rem;
    }  
    .counter-background {
        width: 100%;
        border-radius: 8px;
    }
}
@media (max-width:500px) {
    .counter-container{
        grid-template-areas:'box1' 'box2' 'box3' 'box4' ;
        padding: 1rem;
        gap: 3em;
    }
    
}













.customers_wrapper {
    display: flex;
    flex-direction: column;
    gap: 2em;
    padding: 4em 1em;
}
.customers_heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
}
.customers_heading p {
    font-size: clamp(1em, 2vw, 1.3em);
    max-width: 40rem;
    margin: 0 auto
}
.swiper {
    padding: 1em !important;
}
.customers_swiper {
    width: 100%;
    height: 400px;
    display: flex !important;
    flex-direction: column;
    gap: 4em !important;
    /* border: 2px solid red; */
}
.swiper-slide {
    display: flex !important;
    opacity: 0.5;
    transform: scale(0.95) !important;
    height: 80% !important;
}
.swiper-slide-active {
    transform: scale(1) !important;
    opacity: 1;
}
.clients_remark {
    background-color: #fff;
    display: flex !important;
    flex-direction: column;
    gap: 1em;
    padding: 0.5em 2.5em;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.client_rating {
    display: flex;
    gap: 0.5em;
    color: gold;
}
.client_img {
    width: 70%;
    position: relative;
    z-index: 5;
}
.client_img img {
    width: clamp(3em, 5vw, 4em);
}
.client_img, .client_name, .client_occupation, .client_comment {
    text-align: center;
}
.client_name {
    font-size: clamp(1em, 2vw, 1.2em);
    font-weight: 800;
}
.client_occupation {
    font-size: clamp(0.9em, 2vw, 1.2em);
}
.client_comment {
    font-size: clamp(0.8em, 1vw, 1em);
}
.swiper-pagination-bullet {
    background-color: #fff !important;
    width: clamp(1em, 1.5vw, 2em) !important;
    height: clamp(1em, 1.5vw, 2em) !important;
    opacity: 1 !important;
    border: 1px solid #1A276D !important;
}
.swiper-pagination-bullet-active {
    background-color:  #1A276D !important;
    border: 1px solid #1A276D;
}
@media(max-width: 850px) {
    .clients_remark {
        padding: 1em;
    }
}






.newsletter_wrapper {
    display: flex;
    flex-direction: column;
    gap: 2em;
    background: url(../img/Newsletter_img.png) no-repeat scroll center/cover;
    width: 80%;
    padding: 3em 2em;
    border-radius: 8px;
    margin: 0 auto 3em auto;
    color: #fff !important;
}
.newsletter_content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
}
.newsletter_content p {
    font-size: clamp(1em, 2vw, 1.3em);
    max-width: 40rem;
    margin: 0 auto;
}
.form_inner {
    display: flex;
    background-color: #fff;
    justify-content: space-between;
    /* border: 2px solid red; */
    border-radius: 8px;
    padding: 0.5em;
    align-items: center;
    margin: 0 auto;
    width: 60%;
    gap: 0.3em;
}
.form_inner input {
    font-size: clamp(0.8em, 2vw, 1em);
    width: 100%;
    padding: 1em;
    border: none;
    font-family: var(--primary_font_1);
}
.form_inner input:focus-visible {
    outline: none !important;
}
.form_inner .submit_btn {
    padding: 1em;
    border-radius: 8px;
    border: none;
    background-color: var(--primary_color_1);
    font-size: clamp(0.8em, 2vw, 1em);
    color: #fff;
    cursor: pointer;
}
.form_inner .submit_btn:hover {
    background-color: #E8EBFA;
    color: #1A276D;
}
@media (max-width:750px) {
    .form_inner {
        width: 100%;
    }
    .newsletter_wrapper {
        width: 90%;
        padding: 3em 1em;
    }
}




footer {
    background-color: #EEF1F6;
    display: flex;
    flex-direction: column;
    gap: 3em;
}
.footerInner_wrapper {
    display: grid;
    gap: 2em;
    padding: 3em 2em 1em 2em;

    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.footerMain_grid_box {
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.footer_logo_box {
    display: flex;
    align-items: center;
    font-weight: 700;
    gap: 0.3em;
    color: var(--primary_color_1);
    font-size: clamp(1em, 1.5vw, 1.2em) !important;
}
.footer_logo_box img {
    width: clamp(1.2em, 2vw, 1.5em);
}
.footerMain_grid_box p {
    font-size: clamp(1em, 1.5vw, 1.3em);
}
.footerSocials_wrapper {
    display: flex;
    gap: 2em;
}
.footerSocials_wrapper a {
    font-size: clamp(0.7em, 1vw, 1em);
    padding: 0.8em 1.1em;
    border-radius: 50%;
    background-color: #1A276D;
    color: #fff;
}
.footerLink_grid_box {
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.footerLink_grid_box .bold {
    font-size: clamp(1.2em, 2vw, 1.3em);
    font-weight: 700;
}
.footerLink_gridBox_group {
    display: flex;
    flex-direction: column;
    gap: 2em;
    text-transform: capitalize;
    font-weight: 600;
    font-size: clamp(0.9em, 1.3vw, 1.2em);
}
.footerLink_gridBox_group a {
    display: flex;
    align-items: center;
    gap: 0.4em;
}
.footerLink_gridBox_group a p {
    font-size: clamp(0.9em, 1.2vw, 1.3em);
}
@media (max-width:950px) {
    .footerInner_wrapper {
        grid-template-columns: 1fr 1fr 1fr;
        align-items: flex-start;
    }
    .footerMain_grid_box {
        grid-area: 1 / 1 / span 3 / span 3;
    }
}
@media (max-width:520px) {
   .footerInner_wrapper {
        display: flex;
        gap: 4em;
        flex-direction: column;
   } 
}




.copyright_wrapper {
    border-top: 1px solid #D3D3D3;
    padding: 2em 1em 1em 1em;
    align-items: center;
    display: flex;
    gap: 3em;
    justify-content: space-between;
}
.copyright_button_wrapper {
    display: flex;
    gap: 1.5em;
}
.copyright_wrapper p {
    font-size: clamp(0.9em, 1vw, 1.2em);
    font-weight: 600;
}
.copyright_button_wrapper a {
    padding: 0.7em 1.2em;
    border: 1px solid #1A276D;
    color: var(--primary_color_1);
    font-size: clamp(0.8em, 1vw, 1.2em);
    border-radius: 8px;
    font-weight: 600;
}
.copyright_button_wrapper .blue {
    background-color: var(--primary_color_1);
    color: #fff;
}
.backToTop {
    position: fixed;
    right: 1em;
    bottom: 1em;
    padding: 1em 1.2em;
    color: #fff;
    border-radius: 8px;
    background-color: #0E52DA;
    font-size: clamp(0.9em, 1vw, 1.2em);
    font-weight: 600;
}
@media (max-width:730px) {
    .copyright_wrapper {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}