@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

*,
ul,
li,
::after,
::before {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    list-style: none;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #000;
}


:root {
    --theme: #1173bf;
    --softtheme: #EEEEEE;
}

.bg_theme {
    background-color: var(--theme) !important;
    color: black;
}

.accordion-button:not(.collapsed) {
    background: #1173bf !important;
    color: #fff !important;
    box-shadow: none !important;
}

.bgs_theme {
    background-color: var(--softtheme) !important;
}


.t_theme {
    color: var(--theme) !important;
}



.bo_theme {
    border-color: var(--theme) !important;
}

.img_shadow {
    filter: drop-shadow(0px 4px 5px #ddd);
}

/* header */
.header {
    background: url(../images/back.jpg) no-repeat top / 100% 100%;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: stretch;
    flex-direction: column;
}

/* navbar */
.navbar-brand img {
    width: 160px;
    margin-right: auto !important;
}

.nav-link {
    font-size: 18px;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    margin: 0 15px;
    font-weight: 600;
}

.nav-link.active,
.nav-link:hover {
    text-decoration: underline;
    color: #fff !important;
}

.theme_white_btn {
    border-radius: 100px;
    font-size: clamp(14px, 1vw, 18px);
    padding: 10px 20px;
    color: #fff;
    background-color: var(--theme);
    text-decoration: none;
    font-weight: 600;
}

/* \ navbar */


/* banner */
.first_heading {
    font-size: clamp(30px, 4vw, 75px);
    color: white;
    font-weight: bold;
}

.first_para {
    font-size: clamp(18px, 1.3vw, 24px);
    font-weight: 600;
    color: white;
    margin: 30px 0px 50px;
}

.store_link {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}

.store_link a {
    text-decoration: none;
}

.store_link a img {
    max-width: 201px;
    width: 10vw;
    min-width: 110px;
    border: 1px solid #fff;
    border-radius: 5px;
}

.first_rside_img {
    max-width: 90%;
    width: 25vw;
    min-width: 250px;
}

/* \ banner */

/* \ header */

/* about_section */
.sub_heading {
    font-size: clamp(18px, 2vw, 28px);
    color: var(--theme);
    font-weight: bold;
    margin-bottom: 15px;
}

.heading {
    font-size: clamp(25px, 2vw, 34px);
    color: #000;
    font-weight: bold;
    margin-bottom: 25px;
}

.para {
    font-size: clamp(14px, 1vw, 16px);
    color: #54565A;
    line-height: 28px;
}

.rmore_btn {
    padding: 8px 0;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 3px solid var(--theme);
    color: #000;
    font-size: clamp(16px, 1vw, 20px);
}

.vid_box {
    position: relative;
}

.vid_box img {
    width: 100%;
}

.play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--theme);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
}

/* \ about_section */


/* screen short */
.bg_gray_img {
    background: url(../images/bg02.png) no-repeat top right/ 100% 100%;
}

.screenshot_slider img {
    width: 100%;
}

.scr_btn_right,
.scr_btn {
    width: 50px;
    height: 50px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #000;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    border-radius: 50%;
}

.swiper-button-disabled.scr_btn {
    background-color: var(--theme);
    color: #fff;
}

/* \ screen short */


/* our team */

.our_heading_section {
    position: relative;
    z-index: 0;
}

.our_heading_section::before {
    content: '';
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-50%);
    border-top: 3px dashed #e5e5e5;
}

.large_heading {
    font-size: clamp(40px, 10vw, 161px);
    color: #e5e5e5;
    font-weight: bold;
    display: inline-block;
    background-color: white;
    padding: 0 16px;
    margin-left: -16px;
}

/* \ our team */
.clinets_names h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.clinets_names {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 1;
}

.socials {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: -34px;
    transition: all 0.3s ease;
}

.img_clients:hover .socials {
    bottom: 10px;
}

.socials i {
    background: #5d82d1;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 0px;
    border-radius: 50%;
    color: #fff;
}

.socials a {
    display: inline-block;
    margin: 0px 7px;
    border-radius: 50%;
}

.clinets_names h5 {
    color: #185A37;
    font-size: 20px;
}

/* map area */
iframe {
    height: 800px;
}

.get_in h2 {
    font-weight: 900;
    font-size: 40px;
}

.get_in h3 {
    font-size: 20px;
}

.absolutes {
    position: absolute;
    top: 0;
    width: 34%;
    transform: translate(0%, 10%);
    padding: 50px 40px;
}

.contact_form textarea.form-control {
    height: 130px;
    padding: 12px 20px;
}

.contact_form .form-label {
    font-weight: 700;
}

.contact_form .form-control {
    height: 50px;
    padding: 0px 20px;
    box-shadow: 0px 0px 5px #ddd;
    border: none;
    margin-bottom: 10px;
}

.contact_form p {
    font-size: 14px;
    color: #999;
}

.contact_form h3 {
    color: #185A37;
    font-size: 24px;
}

.btn_green {
    background-color: var(--theme);
}

/* about page */
.abut_pages {
    background-color: #E3E3E3;
}

.about_page.header {
    min-height: auto;
}

.about_page p {
    font-size: 16px;
    line-height: 28px;
    color: #0d0d0d;
    font-weight: 400;
    margin-bottom: 28px;
    text-align: justify;
}

.about_page h2 {
    font-weight: 700;
}

.about_page_text img {
    float: right;
    padding: 0px 0px 60px 70px;
    max-width: 350px;
    width: 100%;
}

.map_icons i {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 37px;
    border-radius: 50%;
    background: var(--theme);
    color: #fff;
    padding: 4px;
}

.map_text h5 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

.map_text h4 {
    font-weight: 600;
    font-size: 20px;
}

/* footer */
footer {
    background-color: var(--theme);
}

.navbar_links h3,
.navbar_address h3 {
    font-size: 20px;
    font-weight: 700;
}

.navbar_links a {
    color: #fff;
    text-decoration: none;
    width: 100%;
    display: inline-block;
    padding: 8px 0px;
    font-size: 16px;
    font-weight: 500;
}

.navbar_address li {
    padding: 8px 0px;
    font-size: 15px;
    font-weight: 500;
}
.btm_logo img {
    width: 70%;
}


.cms p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}

.cms h1 {
    font-size: 35px;
    margin-bottom: 20px;
}

.cms h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.cms h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.cms h4 {
    font-size: 20px;
    margin-bottom: 18px;
}

.cms h5 {
    font-size: 18px;
    margin-bottom: 16px;
}

.cms h6 {
    font-size: 16px;
    margin-bottom: 14px;
}

.cms ul {
    padding-left: 20px;
}

.cms ul li {
    font-size: 18px;
    margin-bottom: 15px;
}

/* media max-width */
@media (max-width: 767.98px) {
    .about_page_text img {
        padding: 0px;
    }
    .map_text h5 {
    font-size: 11px;
}
.map_text h4 {
    margin-bottom: 0px;
}
.text-center {
    font-size: 14px;
}

}

@media (max-width: 991.98px) {

    .navbar-collapse,
    .navbar-collapse.collapsing {
        position: fixed;
        top: 0;
        left: -100%;
        background-color: #fff;
        z-index: 10;
        height: 100vh !important;
        width: 100%;
        max-width: 300px;
        display: flex;
        justify-content: start;
        align-items: stretch;
        flex-direction: column;
        transition: all 0.2s ease-in-out;
    }

    .navbar-collapse.show {
        left: 0;
    }

    .nav-link.active,
    .nav-link:hover {
        text-decoration: underline;
        color: #000 !important;
    }

    .nav-link {
        color: #000;
        font-size: 14px;
    }

    .btm_logo img {
        max-width: 120px;
    }

    .navbar-toggler {
        border: 1px solid #fff;
    }

    .btm_logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .header {
        padding-bottom: 40px;
        background-size: 200% 130%;
        background-position: top;
        min-height: auto;
    }

    .about_page.header {
        padding-bottom: 0px;
    }

    .navbar-brand img {
        width: 90px;
    }

    .store_link_btm p {
        width: 100% !important;
        float: left;
        margin-right: 23px;
    }

    .absolutes {
        position: relative;
        width: 100%;
        padding: 0px 40px;
        margin-bottom: 60px;
    }

    .screenshot_slider img {
        max-height: 500px;
        object-fit: contain;
    }
}

@media (max-width:567.98px) {
    .absolutes {
        padding: 0px 10px;
    }
}

/* \ media max-width */