@font-face {
    font-family: 'Gilroy';
    src: url('./fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Gilroy", sans-serif;
    background-color: #0F110E;

    @media (max-width: 768px) {
        width: 100%;
        overflow-x: hidden;
    }
}

/* nav section start */
header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6)),
        url(./images/corporate\ page/jorgen-hendriksen-_-nX3P8xI9E-unsplash.png);
    background-size: cover;
    background-position: center;

    @media (max-width: 768px) {
        width: 100%;
        margin: 0 auto;
        background:
            linear-gradient(rgba(0, 0, 0, 0.6)),
            url(./images/corporate\ page/jorgen-hendriksen-_-nX3P8xI9E-unsplash.png);
        background-size: cover;
        background-position: center;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        background:
            linear-gradient(rgba(0, 0, 0, 0.6)),
            url(./images/corporate\ page/jorgen-hendriksen-_-nX3P8xI9E-unsplash.png);
        background-size: cover;
        background-position: center;
        width: 100%;
        margin: 0 auto;
    }
}

.nav_container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;

    @media (max-width: 768px) {
        width: 90%;
        margin: 0 auto;
        overflow-x: hidden;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 90%;
        margin: 0 auto;
        overflow-x: hidden;
    }
}

.logo {
    width: 10%;

    @media (max-width: 768px) {
        width: 30%;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 20%;
    }
}

.logo img {
    width: 100%;
}

.link {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;

    @media (max-width: 768px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.link li a {
    text-decoration: none;
    color: #BABABA;
    font-size: 16px;
    cursor: pointer;
}

.login_cart {
    display: flex;
    align-items: center;
    gap: 30px;

    @media (max-width: 768px) {
        gap: 50px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        gap: 70px;
    }
}

.cart img {
    @media (max-width: 768px) {
        width: 80%;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
    }
}

.login_wrapper {
    position: relative;
    display: inline-block;

    @media (max-width: 768px) {
        display: none;
    }
}

.login {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.login h3 {
    color: #BABABA;
    font-weight: 400;
}

.login i {
    color: #FE4806;
    font-size: 20px;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(201, 199, 199, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 15px;
    flex-direction: column;
    gap: 10px;
    min-width: 150px;
    z-index: 999;
}

.dropdown a {
    display: block;
    padding: 5px 15px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.603);
    font-size: 13px;
    color: black;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.dropdown a:hover {
    background: #000000;
    color: white;
}


.login_wrapper:hover .dropdown {
    display: flex;
}

.login_wrapper:hover .login i {
    transform: rotate(180deg);
    transition: 0.3s;
}

.toggle_btn {
    display: none;

    @media (max-width: 768px) {
        width: 25%;
        display: block;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 30%;
        display: block;
    }
}

.toggle_btn img {
    @media (max-width: 768px) {
        width: 100%;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
    }
}

.sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    /* initially hidden */
    width: 280px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
        url('./images/mobielandtabvie.jpg') no-repeat center center / cover;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 0 32px 0 rgba(108, 108, 108, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    transition: all 0.3s ease;
    z-index: 999;
    color: white;

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 580px;
        right: -580px;
        padding: 50px;
    }
}

.sidebar.active {
    right: 0;
    /* Show sidebar */
}

.sidebar .close-btn {
    font-size: 40px;
    cursor: pointer;
    color: #000000;
    position: absolute;
    right: 15px;

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 80px;
    }
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 20px 0;
}

.sidebar ul li a {
    color: #000000;
    text-decoration: none;

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 30px;
    }
}

.menu-icon {
    font-size: 30px;
    cursor: pointer;
    color: white;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.productlink {
    position: relative;
}

.prodcutlink:hover .product_card,
.product_card:hover {
    display: block;
}

.product_card {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
}

.card_overlay {
    display: flex;
    position: relative;
    padding: 30px 40px;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid #707070;
    border-radius: 15px;
    justify-content: center;
    gap: 40px;
}

.card_ov {
    width: 200px;
    height: 240px;
    border-radius: 30px;
    background: rgba(60, 60, 60, 0.3);
    /* semi-transparent background */
    border: 4px solid rgba(255, 255, 255, 0.2);
    /* light border */
    box-shadow:
        inset -5px -5px 10px rgba(255, 255, 255, 0.15),
        inset 5px 5px 10px rgba(0, 0, 0, 0.4),
        0 0 0 2px #999,
        0 0 0 4px #0000001f,
        0 5px 15px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(30px);
    /* for Safari */
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.cardinner-white {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 120px;
    background: white;
    border-radius: 30px;
    /* Replace with your own image */
    background-size: cover;
    background-position: center;
}

.card_text {
    position: absolute;
    bottom: 25px;
    width: 100%;
    font-size: 15px;
    letter-spacing: 1px;
    color: #D9D9D9;
}

/* nav section end */


/* hero section starts */

.hero {
    width: 100%;
    margin: 0 auto;
    background-image: url('./images/corporate page/Mask Group 7042.jpg');
    background-size: cover;
    height: 100%;
    background-position: center;
    overflow-x: hidden;
    overflow: hidden;

    @media (max-width: 768px) {
        width: 100%;
        margin: 0 auto;
        background-image: url('./images/corporate page/hero.jpg');
        height: 120%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        margin-bottom: 150px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
        margin: 0 auto;
        height: 120%;
        background-image: url('./images/corporate page/hero.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        margin-bottom: 150px;
    }
}

.hero_container {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 330px;

    @media (max-width: 768px) {
        width: 90%;
        margin: 0 auto;
        flex-direction: column;
        gap: 200px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 90%;
        margin: 0 auto;
        flex-direction: column;
        gap: 200px;
    }
}

.hero_container_top {
    width: fit-content;
    padding: 20px 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0 0 50px 50px;
    border-left: 5px solid rgba(255, 255, 255, 0.4);
    border-bottom: 5px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    line-height: 50px;

    @media (max-width: 768px) {
        width: 100%;
        padding: 20px 10px;
        line-height: 35px;
    }
}

.hero_container_top h5 {
    font-size: 35px;
    font-weight: 600;
    color: #303030;

    @media (max-width: 768px) {
        font-size: 22px;
    }
}

.hero_container_top h6 {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #424041;

    @media (max-width: 768px) {
        font-size: 36px;
    }
}

.hero_container_bottom {
    display: flex;
    align-items: center;
    gap: 50px;
    z-index: 1;
    padding-bottom: 70px;

    @media (max-width: 768px) {
        flex-direction: column;
        width: 100%;
        margin-top: 70px;
    }
}

.bottom_text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;

    @media (max-width: 768px) {
        width: 100%;
    }
}

.bottom_text h5 {
    color: #FFFFFF;
    font-size: 30px;

    @media (max-width: 768px) {
        font-size: 18px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 22px;
    }
}

.bottom_text p {
    width: 60%;
    text-align: center;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;

    @media (max-width: 768px) {
        width: 90%;
        font-size: 11px;
    }
}

.btn {
    display: flex;
    align-items: center;
    gap: 10px;

    @media (max-width: 768px) {
        flex-direction: column;
    }
}

.btn button {
    background-color: #FFFFFF;
    color: black;
    font-weight: 500;
    padding: 13px 40px;
    border-radius: 44px;
    border: none;
    outline: none;
    letter-spacing: 1px;

    @media (max-width: 768px) {
        padding: 13px 80px;
        font-size: 13px;
    }
}

/* hero section ends */

/* brand section starts */

.brand_container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow-x: hidden;
    margin-bottom: 170px;
    margin-top: 170px;
}

.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #111, #aaa, #111);
    padding: 10px 0;
    color: #000;
    position: relative;
    width: 1100px;
    margin: 0 auto;

    @media (max-width: 767px) {
        width: 100%;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
    }
}

.trust-text {
    color: #111;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 20px;

    @media (max-width: 768px) {
        font-size: 13px;
    }
}

.brand_logo {
    width: 1100px;
    margin: 0 auto;

    @media (max-width: 768px) {
        width: 90%;
    }
}

.brand_logo .logoimg1 {
    width: 99%;

    @media (max-width: 768px) {
        display: none;
    }
}

.brand_logo .logoimg2 {
    display: none;

    @media (max-width: 768px) {
        display: block;
        width: 100%;
    }
}

/* brand section ends */

/* mobile mockup section starts */

.mobile_mockup {
    max-width: 1300px;
    margin: 20px auto;
    overflow-x: hidden;
    padding: 140px 0;
    position: relative;

    @media (max-width: 768px) {
        width: 100%;
        margin: 0 auto;
        padding: 50px 0;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        padding: 90px 0;
    }
}

.bg_img img:nth-child(1) {
    width: 15%;
    position: absolute;
    top: 0;
    right: 70px;

    @media (max-width: 768px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.bg_img img:nth-child(2) {
    width: 8%;
    position: absolute;
    bottom: 0;
    left: 70px;

    @media (max-width: 768px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.mobile_mockup_container {
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;

    @media (max-width: 768px) {
        width: 100%;
        margin: 0 auto;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
        margin: 0 auto;
    }
}

.mobile_mockup_img {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.mobile_mockup_img img:nth-child(1) {
    width: 7%;
    opacity: .2;

    @media (max-width: 768px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.mobile_mockup_img img:nth-child(2) {
    width: 10%;

    @media (max-width: 768px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.mobile_mockup_img img:nth-child(3) {
    width: 15%;

    @media (max-width: 768px) {
        width: 30%;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 30%;
    }
}

.mobile_mockup_img img:nth-child(4) {
    width: 25%;

    @media (max-width: 768px) {
        width: 40%;
        order: 2;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 40%;
        order: 2;
    }
}

.mobile_mockup_img img:nth-child(5) {
    width: 15%;

    @media (max-width: 768px) {
        order: 3;
        width: 30%;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 30%;
        order: 3;
    }
}

.mobile_mockup_img img:nth-child(6) {
    width: 10%;

    @media (max-width: 768px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.mobile_mockup_img img:nth-child(7) {
    width: 7%;
    opacity: .2;

    @media (max-width: 768px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

/* mobile mockup section ends */

/* contact form section starts */

.contact_form {
    width: 100%;
    margin: 110px auto;

    @media (max-width: 768px) {
        width: 100%;
        overflow-x: hidden;
    }
}

.contact_form_container {
    width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;

    @media (max-width: 768px) {
        width: 90%;
        margin: 0 auto;
    }
}

.contact_form_head {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_form_head h5 {
    padding: 12px 30px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 400;

    @media (max-width: 768px) {
        font-size: 16px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 17px;
    }
}

.contactForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form_email {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form_email label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

    @media (max-width: 768px) {
        font-size: 13px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 15px;
    }
}

.form_email input {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
}

.first_last_name {
    display: flex;
    align-items: center;
    justify-content: space-between;

    @media (max-width: 768px) {
        flex-direction: column;
        gap: 8px;
    }
}

.first_name {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 8px;

    @media (max-width: 768px) {
        width: 100%;
    }
}

.first_name label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

    @media (max-width: 768px) {
        font-size: 13px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 15px;
    }
}

.first_name input {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
}

.last_name {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 8px;

    @media (max-width: 768px) {
        width: 100%;
    }
}

.last_name label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

    @media (max-width: 768px) {
        font-size: 13px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 15px;
    }
}

.last_name input {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
}

.job_company_name {
    display: flex;
    align-items: center;
    justify-content: space-between;

    @media (max-width: 768px) {
        flex-direction: column;
        gap: 8px;
    }
}

.job_titel {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 8px;

    @media (max-width: 768px) {
        width: 100%;
    }
}

.job_titel label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

    @media (max-width: 768px) {
        font-size: 13px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 15px;
    }
}

.job_titel input {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
}

.company_name {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 8px;

    @media (max-width: 768px) {
        width: 100%;
    }
}

.company_name label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

    @media (max-width: 768px) {
        font-size: 13px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 15px;
    }
}

.company_name input {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
}

.phone_number {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.phone_number>.phone {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

    @media (max-width: 768px) {
        font-size: 13px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 15px;
    }
}

.phone select {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
    color: #FFFFFF;

    @media (max-width: 768px) {
        font-size: 13px;
        padding: 15px 20px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 15px;
        padding: 15px 30px;
    }
}

.phone_number input {
    width: 75%;
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;

    @media (max-width: 768px) {
        width: 50%;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 70%;
    }
}

.quantity_aboutus {
    display: flex;
    align-items: center;
    justify-content: space-between;

    @media (max-width: 768px) {
        flex-direction: column;
        gap: 8px;
    }
}

.quantity_aboutus .quantity {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 8px;

    @media (max-width: 768px) {
        width: 100%;
    }
}

.quantity label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

    @media (max-width: 768px) {
        font-size: 13px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 15px;
    }
}

.quantity input {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
    color: #FFFFFF;
}

.quantity_aboutus .aboutus {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 8px;

    @media (max-width: 768px) {
        width: 100%;
    }
}

.aboutus label {
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 20px;

    @media (max-width: 768px) {
        font-size: 13px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 15px;
    }
}

.aboutus select {
    background: linear-gradient(to bottom, #666, #999);
    border: none;
    outline: none;
    padding: 15px 30px;
    font-size: 15px;
    border-radius: 40px;
    color: #FFFFFF;
}

.submit_button {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.submit_button>button {
    padding: 10px 40px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(to bottom, #ff9966, #ff5e62);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

/* contact form section ends */


/* setup process section starts */

.setup_pro_container {
    width: 1100px;
    margin: 70px auto;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
    padding: 70px 0;

    @media (max-width: 767px) {
        width: 100%;
        flex-direction: column;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
        flex-direction: column;
    }
}

.setup_pro_bgimg .img1 {
    position: absolute;
    top: 0;
    right: 0;

    @media (max-width: 767px) {
        top: 800px;
        right: 0;
    }
}

.setup_pro_bgimg .img2 {
    position: absolute;
    bottom: 0;
    left: 0;

    @media (max-width: 767px) {
        top: 0;
    }
}

.setup_pro_video {
    width: 550px;
    height: 700px;

    @media (max-width: 767px) {
        height: 600px;
    }
}

.setup_pro_video video {
    width: 100%;
    transition: all 0.3s ease;
}

.setup_pro {
    text-align: start;

    @media (max-width: 767px) {
        text-align: center;
    }

        @media (min-width: 768px) and (max-width: 1024px) {
            text-align: center;
        }
}

h1 {
    font-size: 3rem;
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: 1px;

    @media (max-width: 767px) {
        font-size: 2.4rem;
    }
}

.subtitle {
    font-size: .9rem;
    margin-bottom: 2rem;
    color: #ccc;

    @media (max-width: 767px) {
        font-size: .8rem;
    }
}

.step-label {
    background-color: #FC4D0D;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: .7rem;
    font-weight: bold;
    color: #FFFFFF;
    font-weight: 400;
    box-shadow: 0 0 10px #f4f6ff inset;
}

.instructions {
    margin-bottom: 1rem;
    font-size: .9rem;
    color: #ccc;

    @media (max-width: 767px) {
        font-size: .8rem;
    }
}

.icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
}

.icon-box.active {
    background-color: #f75c1e;
    color: #f75c1e;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px #f4f6ff inset;
    transition: background 0.3s;
    position: relative;
    color: #FFFFFF;
    font-size: .5rem;
}

.icon-label {
    position: absolute;
    top: 80px;
}

.icon {
    font-size: 24px;
    color: white;
}

/* setup process section ends */

/* Saving Contact section starts */

.saving_connection {
    position: relative;
    width: 100%;
    margin: 180px auto;
}

.saving_con_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    overflow-x: hidden;
}

.saving_pro_bgimg {
    position: absolute;
    width: 1100px;
    margin: 0 auto;

    @media (max-width: 767px) {
        position: absolute;
        width: 100%;
        margin: 0 auto;
    }
}

.saving_pro_bgimg .img1 {
    position: absolute;
    top: 0;
    right: 0;
    height: 130px;

    @media (max-width: 767px) {
        top: 900px;
        right: 30px;
        height: 60px;
    }
}

.saving_pro_bgimg .img2 {
    position: absolute;
    top: 1050px;
    left: 0;
    height: 170px;

    @media (max-width: 767px) {
        top: 320px;
        left: 20px;
        height: 100px;
    }
}

.saving_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;

    @media (max-width: 767px) {
        background: transparent;
        flex-direction: column;
        justify-content: space-between;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        flex-direction: column;
    }
}

.saving_card_bg {
    background: linear-gradient(to right, #0F110E 43%, #1C1C1C 50%, #2F2F2F 70%, #404040 100%);
    width: 75%;
    height: 300px;
    position: absolute;
    right: 0;
    z-index: -1;

    @media (max-width: 992px) {
        display: none;
    }
}




.saving {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1100px;
    margin: 0 auto;

    @media (max-width: 991.98px) {
        width: 100%;
        flex-direction: column;
    }
}

.saving_con_video {
    width: 50%;

    @media (max-width: 991.98px) {
        order: 2;
        max-width: 680px;
        width: 100%;
        margin-top: 40px;
        margin-bottom: 100px;
    }

    @media (min-width: 992px) and (max-width: 1024px) {
        order: 2;
    }
}

.saving_con_video video {
    width: 100%;
}

.saving_con {
    width: 60%;
    display: flex;
    align-items: center;
    gap: 50px;
    line-height: 50px;
    padding: 40px 0;

    @media (max-width: 991.98px) {
        background: linear-gradient(to left, #0F110E, #404040);
        order: 1;
        width: 100%;
        justify-content: center;
        gap: 20px;
        line-height: 30px;
        padding: 20px 0;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        order: 1;
        justify-content: center;
        gap: 50px;
        line-height: 50px;
    }
}

.saving_con h4 {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #FFFFFF;
    padding-left: 30px;

    @media (max-width: 767px) {
        font-size: 1.5rem;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        font-size: 2.7rem;
    }
}

.saving_con_img {
    width: 18%;
}

.saving_con_img img {
    width: 100%;
}

.saving_con_container_img {
    width: 1100px;
    margin: 0 auto;
    opacity: .5;

    @media (max-width: 767px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.saving_con_container_img>img {
    width: 100%;
}

.connect_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -80px;
    width: 100%;
    margin: 0 auto;
    /* background: linear-gradient(to left, #0F110E 43%, #1C1C1C 50%, #2F2F2F 70%, #404040 100%); */

    @media (max-width: 767px) {
        background: transparent;
        flex-direction: column;
        justify-content: space-between;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        flex-direction: column;
    }
}

.contract_card_bg {
    background: linear-gradient(to left, #0F110E 43%, #1C1C1C 50%, #2F2F2F 70%, #404040 100%);
    width: 75%;
    height: 300px;
    position: absolute;
    left: 0;
    z-index: -1;

    @media (max-width: 992px) {
        display: none;
    }
}

.connect {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1100px;
    margin: 0 auto;

    @media (max-width: 991.98px) {
        width: 100%;
        flex-direction: column;
    }
}

.connect_con_video {
    width: 50%;

    @media (max-width: 767px) {
        max-width: 680px;
        width: 100%;
        margin-top: 40px;
    }
}

.connect_con_video video {
    width: 100%;
}

.connect_con {
    width: 60%;
    display: flex;
    align-items: center;
    gap: 50px;
    line-height: 50px;
    padding: 40px 0;

    @media (max-width: 992px) {
        margin-bottom: 60px;
        background: linear-gradient(to left, #0F110E, #404040);
        width: 100%;
        justify-content: center;
        gap: 20px;
        line-height: 30px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        justify-content: center;
        gap: 50px;
        line-height: 50px;
    }
}

.connect_con h4 {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #FFFFFF;

    @media (max-width: 767px) {
        order: 1;
        font-size: 1.5rem;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        order: 1;
        font-size: 2.7rem;
    }
}

.connect_con_img {
    width: 18%;

    @media (max-width: 767px) {
        order: 2;
        width: 20%;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        order: 1;
        width: 20%;
    }
}

.connect_con_img img {
    width: 100%;
}

/* Saving Contact section ends */


/* slider img section starts */

.slider_img_container {
    width: 100%;
    margin: 90px auto;
    overflow-x: hidden;
}

/* Default show pagination */
.swiper-pagination {
    display: none;
}

@media (max-width: 767px) {
    .swiper-pagination {
        margin-bottom: -40px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #3a3a3a;
        opacity: 1;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .swiper-pagination .swiper-pagination-bullet-active {
        background: #ffffff;
    }
}

.slider .card1 {
    background-image: url('./images/corporate page/Path\ 251.png');
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    border: 1px solid #99999994;
    width: 270px;
    height: 400px;
    border-radius: 15px;
    overflow-x: hidden;
    overflow-y: hidden;
}

.slider .card2 {
    background-image: url('./images/corporate page/Path 246.png');
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    border: 1px solid #FFFFFF;
    width: 270px;
    height: 400px;
    border-radius: 15px;
    overflow-x: hidden;
    overflow-y: hidden;
}

.slider .card3 {
    background-image: url("./images/corporate page/Path 258.png");
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    border: 1px solid #FFFFFF;
    width: 270px;
    height: 400px;
    border-radius: 15px;
    overflow-x: hidden;
    overflow-y: hidden;
    opacity: .5;
}

.slider .card4 {
    background-image: url('./images/corporate page/Path 262.png');
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    border: 1px solid #FFFFFF;
    width: 270px;
    height: 400px;
    border-radius: 15px;
    overflow-x: hidden;
    overflow-y: hidden;
    opacity: .4;
}

.slider .card5 {
    background-image: url('./images/corporate page/Path 250.png');
    background-position: center;
    background-size: cover;
    object-fit: cover;
    background-repeat: no-repeat;
    border: 1px solid #FFFFFF;
    width: 270px;
    height: 400px;
    border-radius: 15px;
    overflow-x: hidden;
    overflow-y: hidden;
}

.slider .img1 {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.slider .img2 {
    width: 80%;
    position: absolute;
    top: 30px;
    left: 10px;
    opacity: .5;
}

.text_card {
    width: 270px;
    height: 130px;
    overflow: hidden;
    /* background: rgba(88, 88, 88, 0.6);
    backdrop-filter: blur(10px); */
    color: #fff;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    position: absolute;
    bottom: 0;
    padding-bottom: 10px;
}

.text_card:hover {
    height: 220px;
    border-radius: 15px;
    transform: translateY(-20px);
    /* padding: 5px; */
    background: rgba(88, 88, 88, 0.39);
    backdrop-filter: blur(10px);
}

.text_card_content {
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.text_card:hover .text_card_content {
    gap: 20px;
}

.text_card_header {
    width: 100%;
}

.text_card_header h2 {
    margin: 0;
    font-size: 20px;
    background: rgba(122, 121, 121, 0.525);
    backdrop-filter: blur(15px);
    letter-spacing: 1px;
    font-weight: 400;
    padding-left: 20px;
}

.text_card:hover .text_card_header h2 {
    text-align: center;
}

.text_card_subtitle {
    display: flex;
    justify-content: space-between;
    background: rgba(122, 121, 121, 0.97);
    backdrop-filter: blur(10px);
    height: 12px;
    padding: 0 10px 0 20px;
}

.text_card:hover .text_card_subtitle {
    flex-direction: column;
    text-align: center;
}

.text_card_subtitle .subtitle {
    color: #FFFFFF;
    font-size: .5rem;
}

.text_card:hover .text_card_subtitle .subtitle {
    font-size: .6rem;
}

.text_card_subtitle .stars {
    font-size: .4rem;
}

.text_card:hover .text_card_subtitle .stars {
    margin-top: -30px;
    font-size: .6rem;
}

.text_card_body {
    padding: 0 10px 0 20px;
}

.text_card_body p {
    font-size: .5rem;
    color: #C2C2C2;
}

.text_card:hover .text_card_body p {
    font-size: .6rem;
}

.text_card_body p .b {
    font-weight: 400;
    font-size: .7rem;
}

.text_card:hover .text_card_body p .b {
    font-size: .6rem;
}

.text_card_body div {
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #C2C2C2;
}

.text_card:hover .text_card_body div {
    opacity: 1;
    font-size: .6rem;
}

.slider .upIcon {
    position: absolute;
    right: 15px;
    top: 15px;
    background: rgba(241, 235, 225, 0.1);
    backdrop-filter: blur(10px);
    padding: 4px;
    border-radius: 7px;
    font-size: 1.2rem;
    color: #FC4D0D;
    border: 1px solid #FFFFFF;
    cursor: pointer;
}

.slider .leftIcon {
    position: absolute;
    right: 15px;
    top: 15px;
    background: rgba(241, 235, 225, 0.1);
    backdrop-filter: blur(10px);
    padding: 4px;
    border-radius: 7px;
    font-size: 1.2rem;
    color: #FC4D0D;
    border: 1px solid #FFFFFF;
    padding: 5px 10px;
    cursor: pointer;
}


.slider .leftIcon span {
    color: black;
    font-size: 1rem;
    margin-right: 10px;
}

.slider .leftIcon i {
    font-size: 1.2rem;
}

/* slider img section ends */

/* press & media section starts */

.press_media {
    width: 100%;
    margin: 0 auto;
}

.press_med_container {
    background-image: url(./images/media/media-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow-x: hidden;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.press-media-btn {
    padding: 10px 30px;
    background: linear-gradient(145deg, #5e5e5e, #7a7a7a);
    border: none;
    color: white;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 500;
    border-radius: 10px;
    outline: none;
    transition: background 0.3s ease;

    @media (max-width: 767px) {
        font-size: 14px;
    }
}

.arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;

    @media (max-width: 767px) {
        display: none;
    }

}


.left-arrow {
    background: rgba(255, 255, 255, 0.132);
    backdrop-filter: blur(20px);
}

.right-arrow {
    background: rgba(255, 255, 255, 0.279);
    backdrop-filter: blur(20px);
}

.press_med_img {
    width: 106%;

    @media (max-width: 767px) {
        display: none;
    }
}

.press_med_img img {
    width: 100%;
    transition: all 0.3s ease;
}

@keyframes slideIn {
    0% {
        transform: translateX(150%) scale(0.8) rotate(5deg);
        opacity: 0;
    }

    40% {
        transform: translateX(-20px) scale(1.05) rotate(-2deg);
        opacity: 1;
    }

    60% {
        transform: translateX(10px) scale(1);
        rotate: 1deg;
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0) scale(1) rotate(0deg);
    }
}

.slide-animate {
    animation: slideIn 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

.press_carousel_track {
    display: none;

    @media (max-width: 767px) {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        position: relative;
        overflow-x: hidden;
    }

}

.cardcar {
    flex-shrink: 0;
    width: 220px;
    height: 280px;
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.cardcar.active {
    opacity: 1;
    transform: scale(1);
}

.cardcar>img {
    width: 100%;
    height: auto;
}

.left_right_arrow {
    display: none;

    @media (max-width: 767px) {
        display: flex;
        gap: 250px;
        color: white;
        position: absolute;
        top: 45px;
        font-size: 40px;
    }
}

/* press & media section ends */

/* frequently section starts */

.frequently_container {
    width: 1100px;
    margin: 100px auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 55px;
    align-items: center;
    justify-content: center;

    @media (max-width: 767px) {
        width: 100%;
        margin: 0 auto;
        overflow-x: hidden;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
    }
}

.frequently_text {
    @media (max-width: 767px) {
        width: 90%;
        margin: 0 auto;
    }
}

.frequently_text h2 {
    font-size: 27px;
    color: #ffffff;
    background-color: #FC4D0D;
    margin: 0;
    padding: 12px 35px;
    border-radius: 20px;
    box-shadow: inset 0 12px 47px #8F2600;
    font-weight: 400;
    display: inline-block;

    @media (max-width: 767px) {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
}

.search_faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 1100px;

    @media (max-width: 767px) {
        width: 100%;
        margin: 0 auto;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
        margin: 0 auto;
    }
}

.search_faq .search {
    width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    border-radius: 30px !important;
    padding: 10px 30px;
    background: rgba(70, 72, 69, 100);

    @media (max-width: 767px) {
        width: 95%;
        margin: 0 auto;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 95%;
        margin: 0 auto;
    }
}

.search_faq .search input {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    color: white;
    font-size: 1rem;
    background-color: transparent;
}

.search_faq .search i {
    color: white;
    font-size: 1.7rem;
}

.accordion-container {
    width: 800px;
    margin: 0 auto;

    @media (max-width: 767px) {
        width: 90%;
        margin: 0 auto;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 90%;
        margin: 0 auto;
    }
}

.accordion-item {
    margin-top: 10px;
    border: 2px solid #ffffff00;
    background-color: transparent;
    border-radius: 30px !important;
    box-shadow: inset 0 3px 6px #000000;
}

.accordion-header {
    display: flex;
    justify-content: start;
    gap: 25px;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background: #2E302D;
    border: none;
    width: 100%;
    font-size: 22px;
    outline: none;
    border-radius: 30px;
    box-sizing: border-box;
    border: 2px solid rgb(255 255 255 / 18%);
    backdrop-filter: blur(60px);
    box-shadow: inset 0px 3px 6px 0px rgba(0, 0, 0, 0.8902);
    color: #fff;

    @media (max-width: 767px) {
        font-size: 14px;
    }
}

.accordion-header svg {
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px;
    background: #363636;
    margin-top: -58px;
    padding-top: 58px;
    border-radius: 30px;
    color: #fff;
    text-align: left;
    font-size: 20px;
    line-height: 28px;

    @media (max-width: 767px) {
        font-size: 15px;
    }
}

.accordion-content p {
    padding: 10px 20px;
    margin: 0;
    color: #F6F6F6;
    font-size: 1rem;
}

.active svg {
    transform: rotate(180deg);
}

.active2 {
    background: rgba(112, 113, 111, 100%);
}

/* frequently section ends */

/* footer section starts */

.footer_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
    background-color: #101010;

    @media (max-width: 767px) {
        margin-top: 40px;
        margin-bottom: 0;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        margin-top: 40px;
        margin-bottom: 0;
    }
}

.footer_logo {
    width: 1100px;
    margin: 0 auto;
    margin-top: 70px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;

    @media (max-width: 767px) {
        width: 95%;
        margin: 0 auto;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 95%;
        margin: 0 auto;
    }
}

.footer_logo_img {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.footer_logo_img img:nth-child(1) {
    width: 30%;

    @media (max-width: 767px) {
        margin-top: 70px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        margin-top: 80px;
    }
}

.footer_logo_img img:nth-child(2) {
    width: 30%;

    @media (max-width: 767px) {
        margin-top: 70px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        margin-top: 80px;
    }
}

.footer_logo_contact button {
    padding: 15px 40px;
    font-size: 20px;
    color: #fff;
    background: radial-gradient(circle at center, #333 0%, #111 100%);
    border: 1px solid #666;
    border-radius: 50px;
    box-shadow:
        inset 0 0 8px rgba(255, 255, 255, 0.1),
        0 0 4px rgba(255, 255, 255, 0.1);
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;

    @media (max-width: 767px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.footer_logo_contact button:hover {
    box-shadow:
        inset 0 0 12px rgba(255, 255, 255, 0.2),
        0 0 6px rgba(255, 255, 255, 0.2);
}

.footer_links {
    width: 1100px;
    margin: 0 auto;
    overflow-x: hidden;
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 40px 10px 0 10px;

    @media (max-width: 767px) {
        width: 90%;
        margin: 0 auto;
        flex-direction: column;
        gap: 50px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 90%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: auto auto;
        gap: 40px;
    }
}

.footer_links .navigate_link {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #FFFFFF;
}

.navigate_media {
    display: flex;
    justify-content: space-between;
    gap: 150px;

    @media (max-width: 767px) {
        width: 100%;
        justify-content: space-between;
    }
}

.navigate_text h4 {
    font-size: 1.1rem;
}

.footer_navs ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_navs ul li {
    list-style: none;
}

.footer_navs ul li a {
    text-decoration: none;
    color: #CECECE;
    font-size: .8rem;
}

.footer_links .media_links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #FFFFFF;
}

.media_text h4 {
    font-size: 1.1rem;
}

.footer_links .shop_links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #FFFFFF;
}

.shop_text h4 {
    font-size: 1.1rem;
}

.footer_links .address_link {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #FFFFFF;
}

.address_text h4 {
    font-size: 1.1rem;
}

.footer_address {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer_address div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer_address p {
    color: #CECECE;
    font-size: .8rem;
}

.footer_address ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_address ul li {
    list-style: none;
    color: #CECECE;
    font-size: .8rem;
}

.social_links {
    display: none;

    @media (max-width: 767px) {
        display: flex;
        width: 90%;
        margin: 30px auto;
        color: white;
        align-items: center;
        justify-content: space-between;
        font-size: 30px;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: flex;
        width: 90%;
        margin: 30px auto;
        color: white;
        align-items: center;
        justify-content: space-between;
        font-size: 50px;
    }
}

.payment {
    width: 1200px;
    margin: 0 auto;

    @media (max-width: 767px) {
        width: 100%;
        margin: 0 auto;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        width: 100%;
        margin: 0 auto;
    }
}

.payment .img1 {
    width: 100%;

    @media (max-width: 767px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.payment .img2 {
    display: none;
    width: 100%;

    @media (max-width: 767px) {
        display: block;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: block;
    }
}

.copyright {
    width: 1100px;
    margin: 0 auto;
    text-align: center;

    @media (max-width: 767px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 1024px) {
        display: none;
    }
}

.copyright p {
    color: #CBCBCB;
    font-size: .9rem;


}

/* footer section ends */