﻿body {
    font-family: "Roboto", sans-serif;
}

/*<<<<<<<<<Nav-start>>>>>>>>>>>*/
.wrapper {
    position: fixed;
    width: 100%;
    box-shadow: 2px 2px 5px #ffffff47, -2px -2px 2px #ffffff;
    background: linear-gradient(105deg, #070707, #061324);
    z-index: 2;
}

.wrapper nav {
    position: relative;
    display: flex;
    max-width: calc(100% - 200px);
    margin: 0 auto;
    height: 90px;
    align-items: center;
    justify-content: space-between;
}

nav .nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

nav .nav-content .links {
    display: flex;
    gap: 30px;
    margin: 0px
}

.nav-content .logo {
    display: flex;
    align-items: center;
}


.nav-content .logo a {
    color: #a443ff;
    font-size: 30px;
    font-weight: 600;
}

.nav-content .links li {
    list-style: none;
    line-height: 70px;
}

.nav-content .links li a,
.nav-content .links li label {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Roboto';
}

.nav-content .links li label {
    display: none;
}

.nav-content .links li a:hover,
.nav-content .links li label:hover {
    background: #dbae7b;
    color: #fff;
}

.wrapper .search-icon,
.wrapper .menu-icon {
    color: #fff1f1;
    font-size: 18px;
    cursor: pointer;
    line-height: 70px;
    width: 70px;
    text-align: center;
}

.wrapper .menu-icon {
    display: none;
}

.wrapper #show-search:checked~.search-icon i::before {
    content: "\f00d";
}

.wrapper .search-box {
    position: absolute;
    height: 100%;
    max-width: calc(100% - 50px);
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.wrapper #show-search:checked~.search-box {
    opacity: 1;
    pointer-events: auto;
}

.search-box input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 17px;
    color: #000;
    background: #ffff;
    padding: 0 100px 0 15px;
}

.search-box input::placeholder {
    color: #545252;
}

.search-box .go-icon {
    position: absolute;
    display: flex;
    right: 10px;
    top: 50%;
    align-items: center;
    transform: translateY(-50%);
    line-height: 60px;
    width: 51px;
    height: 50px;
    justify-content: center;
    border: none;
    outline: none;
    color: #000;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    background: transparent;
}

.wrapper input[type="checkbox"] {
    display: none;
}

/* Dropdown Menu code start */
.nav-content .links ul {
    position: absolute;
    background: #dfaf7a;
    top: 80px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    padding: 0px
}

.nav-content .links li:hover>ul {
    top: 70px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.nav-content .links ul li a {
    color: #fff;
    display: block;
    width: 100%;
    line-height: 30px;
    border-radius: 0px !important;
}

.nav-content .links ul ul {
    position: absolute;
    top: 0;
    right: calc(-100% + 8px);
}

.nav-content .links ul li {
    position: relative;
}

.nav-content .links ul li:hover ul {
    top: 0;
}

/* Responsive code start */
@media screen and (max-width: 1250px) {
    .wrapper nav {
        max-width: 100%;
        padding: 0 20px;
    }

    nav .nav-content .links {
        margin-left: 30px;
    }

    .nav-content .links li a {
        color: #000;
        padding: 8px 13px;
        font-size: 17px;
    }

    .wrapper .search-box {
        max-width: calc(100% - 100px);
    }

    .wrapper .search-box input {
        padding: 0 100px 0 15px;
    }
}

@media screen and (max-width: 900px) {
    .wrapper .menu-icon {
        display: block;
    }

    .nav-content .logo a {
        font-size: 25px;
    }

    .nav-content .logo img {
        width: 150px;
    }

    nav .nav-content {
        justify-content: end;
    }

    .wrapper #show-menu:checked~.menu-icon i::before {
        content: "\f00d";
    }

    nav .nav-content .links {
        display: block;
        position: fixed;
        background: #14181f;
        height: 100%;
        width: 100%;
        top: 70px;
        left: -100%;
        margin-left: 0;
        max-width: 350px;
        overflow-y: auto;
        padding-bottom: 100px;
        transition: all 0.3s ease;
    }

    nav #show-menu:checked~.nav-content .links {
        left: 0%;
    }

    .nav-content .links li {
        margin: 15px 20px;
    }

    .nav-content .links li a,
    .nav-content .links li label {
        line-height: 20px;
        font-size: 17px;
        display: block;
        padding: 8px 18px;
        cursor: pointer;
        font-family: 'Roboto';
        color: #fff;
    }

    .nav-content .links li a.desktop-link {
        display: none;
    }

    /* dropdown responsive code start */
    .nav-content .links ul,
    .nav-content .links ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        background: none;
        max-height: 0px;
        overflow: hidden;
    }

    .nav-content .links #show-features:checked~ul,
    .nav-content .links #show-services:checked~ul,
    .nav-content .links #show-items:checked~ul {
        max-height: 100vh;
    }

    .nav-content .links ul li {
        margin: 7px 20px;
    }

    .nav-content .links ul li a {
        font-size: 17px;
        line-height: 30px;
        border-radius: 5px !important;
    }
}

@media screen and (max-width: 400px) {
    .wrapper nav {
        padding: 0 10px;
    }

    .nav-content .logo a {
        font-size: 23px;
    }

    .wrapper .search-box {
        max-width: calc(100% - 70px);
    }

    .wrapper .search-box .go-icon {
        width: 30px;
        right: 0;
    }

    .wrapper .search-box input {
        padding-right: 30px;
    }
}

/*<<<<<<<<<Nav-End>>>>>>>>>>>*/
/*<<<<<<<<<banner-start>>>>>>>>>>>*/
.banner-btn {
    border: 1px solid #fdfcff;
    padding: 10px 50px;
    font-family: 'Roboto';
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 500;
    background: #ffffffc7;
}

.banner-sm-heading {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 50%);
    text-align: center;
    z-index: 1
}

.banner-sm-heading h1 {
    font-size: 80px;
    font-weight: bold;
    color: #fff;
    font-family: 'Roboto';
}

.banner-sm-heading p {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

.banner-btn1 {
    background: #c39d74;
    border: 1px solid #ffffff;
    padding: 16px 60px;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    margin-top: 15px
}

.banner-section::after {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000070;
    content: "";
}

.banner-section::before {
    top: 0;
    right: 0;
    position: absolute;
    width: 600px;
    height: 100%;
    background-image: url(https://themazine.com/html/Logiz/images/media/img_05.png);
    background-size: cover;
    content: "";
}

.banner-section {
    position: relative;
}

/*<<<<<<<<<banner-End>>>>>>>>>>>*/


/*<<<<<<<<<section1-start>>>>>>>>>>>*/
.setion1-card-icon {
    background: #ffffff;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px auto;
}

.section1-card-heding {
    font-size: 30px;
    font-weight: bold;
    font-family: 'Roboto';
}

.section1-card-sub-heding {
    font-family: 'Roboto';
    font-size: 17px;
    font-weight: 500;
    margin-top: 15px;
}

.section1 {
    padding: 100px 0px;
}

.section1-card {
    background: #FAF7F6;
    transition: .5s ease all
}

.section1-card:hover {
    background: #c39d74;
}

.section1-card:hover .section1-card-sub-heding {
    color: #fff
}

.section1-card:hover .section1-card-heding {
    color: #fff
}

/*<<<<<<<<<section1-End>>>>>>>>>>>*/


/*<<<<<<<<<section2-start>>>>>>>>>>>*/
.section2 {
    padding: 80px;
    background: #faf7f6;
}

.pbmit-fld-wrap {
    text-align: right;
}

.pbmit-fid-title {
    color: #00112e;
    margin-top: 15px;
    display: block;
    font-weight: 500;
}

.pbmit-fid-inner {
    color: #ffffff;
}

.pbmit-fid-inner {
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 0;
    font-weight: 700;
    color: transparent;
    -webkit-text-size-adjust: 0;
    overflow: visible !important;
    text-shadow: 1px 1px 0 #00358d, -1px -1px 0 #00358d, 1px -1px 0 #00358d, -1px 1px 0 #00358d, 1px 1px 0 #00358d;
    -webkit-text-stroke-color: #00358d;
    -webkit-text-fill-color: inherit;
    -webkit-text-stroke-width: 0;
}

.section2-card2 {
    padding: 30px;
    background: #fff;
    border-radius: 35px;
    border: 1px solid #f0f0f7;
}

.section2-card2 .heading {
    margin-bottom: 110px;
    font-weight: 500;
    font-family: 'Roboto';
    font-size: 30px;
}

.section2-card1 {
    border-radius: 35px;
    overflow: hidden;
}

.section2-text p {
    font-size: 14px;
    font-family: 'Roboto';
    font-weight: 400;
    color: #00112e;
}

.section2-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section2-text ul li {
    font-size: 16px;
    line-height: 26px;
    padding-left: 10px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #43484a;
    align-self: center;
    transition: color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section2-text ul li i {
    margin-right: 15px;
    color: #00358d;
}

/*<<<<<<<<<section2-End>>>>>>>>>>>*/

/*<<<<<<<<<section3-start>>>>>>>>>>>*/
.section3 {
    padding: 100px 0px;
}

.color-heading img {
    margin-left: 5px;
}

.color-heading {
    color: #000000;
    font-weight: 500;
}

.section3-text h1 {
    font-size: 60px;
    font-weight: 700;
}

.section3-sub-heading {
    font-size: 20px;
    margin: 15px 0px;
}

.section3-ul li {
    margin: 15px 0px;
    font-size: 17px;
    font-weight: 500;
    color: #000;
}

.section3-ul {
    font-size: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.box.d-flex.align-items-center.mt-15 {
    border: 1px solid #0000001f;
    padding: 15px;
    border-radius: 20px;
    background: #e5e9f2;
}

.section3-img img {
    border-radius: 0px 0px 65px 65px;
}

.section3-text {
    padding-left: 60px;
}

.box.d-flex.align-items-center.mt-15 strong {
    font-size: 14px;
}

/*<<<<<<<<<section3-End>>>>>>>>>>>*/

/*<<<<<<<<<section4-start>>>>>>>>>>>*/

.flexing-div-section4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section4 {
    background: #deb789;
    padding: 50px;
    margin: 50px;
    border-radius: 60px;
    margin-top: 0px
}

.sm-heading {
    color: #080808;
    font-weight: 500;
    font-size: 20px;
}

.big-heading {
    font-size: 60px;
    color: #000000;
    margin-bottom: 50px;
}

.section4-card {
    padding: 16px;
    border: 1px solid #ffffff1a;
    border-radius: 20px;
    transition: .5s ease all
}

.section4-card:hover .section4-img img {
    filter: brightness(1);
    transition: .5s ease all
}

.section4-img img {
    margin-top: 15px;
    border-radius: 15px;
    filter: brightness(.5);
}

.flexing-div-section4 h6 {
    font-size: 26px;
}

/*<<<<<<<<<section4-End>>>>>>>>>>>*/

/*<<<<<<<<<section5-start>>>>>>>>>>>*/
.section5 {
    margin: 50px 0px;
}

.section5-card {
    background: #deb789;
    padding: 30px;
    border-radius: 15px;
}

.section5-color-heading {
    font-size: 16px;
    font-weight: 500;
    color: #b77120;
}

.section5-heading {
    color: #000;
    font-weight: bold;
    font-size: 60px;
    margin-bottom: 50px;
}

.section5-card p {
    font-size: 20px;
    font-weight: 500;
    color: #020202;
    margin: 0px
}

.section5-card h1 {
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 50px;
    color: #070707
}

.fomr-control {
    display: block;
    font-weight: normal;
    line-height: normal;
    border: 1px solid #000000;
    background-color: #00000000;
    height: 60px;
    font-size: 15px;
    padding: 10px 30px;
    border-radius: 40px;
    width: 100%;
    outline: none;
    color: #000000;
}

.fomr-control::placeholder {
    color: #000 !important;
}

.section5-img img {
    height: 545px;
    border-radius: 30px;
}

.fomr-control::placeholder {
    color: #fff
}

.btn-form-section5 {
    width: 100%;
    border-radius: 50px;
    border: 1px solid #161616;
    padding: 15px;
    background: #000000;
    color: #deb789;
    font-size: 18px;
    font-weight: 500;
    transition: .5s ease all;
}

.btn-form-section5:hover {
    background: #000000;
    color: #ffffff;
}

/*<<<<<<<<<section5-End>>>>>>>>>>>*/
/*<<<<<<<<<section6-start>>>>>>>>>>>*/
.section6 {
    margin: 50px;
    margin-top: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}

.slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slider .slide {
    height: 100px;
    width: 250px;
}

/*<<<<<<<<<section6-End>>>>>>>>>>>**/


/*<<<<<<<<<Footer-start>>>>>>>>>>>**/
.footer {
    background: linear-gradient(105deg, #070707, #061324);
    padding-top: 80px;
    padding-bottom: 40px;
}

/*/*END FOOTER SOCIAL DESIGN*/
.single_footer {}

@media only screen and (max-width:768px) {
    .single_footer {
        margin-bottom: 30px;
    }
}

.single_footer h4 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
}

.single_footer h4::after {
    content: "";
    display: block;
    height: 2px;
    width: 40px;
    background: #fff;
    margin-top: 20px;
}

.single_footer p {
    color: #fff;
}

.single_footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.single_footer ul li {}

.single_footer ul li a {
    color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    line-height: 36px;
    font-size: 15px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 600;
}

.single_footer ul li a:hover {
    color: #fff;
}

.single_footer_address {}

.single_footer_address ul {}

.single_footer_address ul li {
    color: #fff;
}

.single_footer_address ul li span {
    font-weight: 400;
    color: #fff;
    line-height: 28px;
}

.contact_social ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

/*START NEWSLETTER CSS*/
.subscribe {
    display: block;
    position: relative;
    margin-top: 15px;
    width: 100%;
}

.subscribe__input {
    background-color: #fff;
    border: medium none;
    border-radius: 5px;
    color: #333;
    display: block;
    font-size: 15px;
    font-weight: 500;
    height: 60px;
    letter-spacing: 0.4px;
    margin: 0;
    padding: 0 150px 0 20px;
    text-align: center;
    text-transform: capitalize;
    width: 100%;
}

@media only screen and (max-width:768px) {
    .subscribe__input {
        padding: 0 50px 0 20px;
    }
}

.subscribe__btn {
    background-color: transparent;
    border-radius: 0 25px 25px 0;
    color: #01c7e9;
    cursor: pointer;
    display: block;
    font-size: 20px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
}

.subscribe__btn i {
    transition: all 0.3s ease 0s;
}

@media only screen and (max-width:768px) {
    .subscribe__btn {
        right: 0px;
    }
}

.subscribe__btn:hover i {
    color: #ff3666;
}

button {
    padding: 0;
    border: none;
    background-color: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/*END NEWSLETTER CSS*/

/*START SOCIAL PROFILE CSS*/
.social_profile {
    margin-top: 40px;
}

.social_profile ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.social_profile ul li {
    float: left;
}

.social_profile ul li a {
    text-align: center;
    border: 0px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
    margin: 0px 5px;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width:768px) {
    .social_profile ul li a {
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width:480px) {
    .social_profile ul li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

.social_profile ul li a:hover {
    background: #ff3666;
    border: 1px solid #ff3666;
    color: #fff;
    border: 0px;
}

/* -------------------Faq Start------------------------- */
.accordion-button:not(.collapsed) {
    color: #080808;
    background-color: #e4ba8a;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, .06);
    margin-bottom: 0 !important;
}

.accordion-body {
    box-shadow: -10px 10px 30px rgba(0, 0, 0, .06);
    background: #fff3ea;
}

.accordion-button {
    font-weight: bold;
    background: #070b10;
    color: #fff;
    padding: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, .06);
}

.accordion-item {
    border: none;
    margin: 20px 0;
    border-radius: 20px;
    overflow: hidden;
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb(255,255,255)'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

/* -------------------Faq Start End------------------------- */
/*END SOCIAL PROFILE CSS*/
.copyright {
    margin-top: 70px;
    padding-top: 40px;
    color: #fff;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
}

.copyright a {
    color: #01c7e9;
    transition: all 0.2s ease 0s;
}

.copyright a:hover {
    color: #ff3666;
}

.single_footer ul li {
    margin-bottom: 5px;
    color: #fff;
}

.social_profile ul li spna i {
    padding: 15px;
    color: #fff;
    margin-top: 0px !important;
    padding-top: 0;
}

.footer-contact {
    display: flex;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    align-items: start;
}

.footer-contact svg {
    width: 20px;
}

.footer-contact span {
    width: calc(100% - 30px);
}

/*<<<<<<<<<Footer-End>>>>>>>>>>>**/

/*<<<<<<<<<Responsiv-start>>>>>>>>>>>**/
@media(max-width:991px) {
    .banner-sm-heading {
        position: absolute;
        transform: translate(0%, 50%);
        top: 0;
        left: 0;
    }

    .banner-sm-heading h1 {
        font-size: 20px;
        font-weight: bold;
    }

    .banner-section::before {
        display: none
    }

    .banner-sm-heading p {
        font-size: 14px;
    }

    img.img-fluid.banner-img {
        height: 445px;
    }

    .section2 {
        padding: 10px;
        background: #e5e9f2;
    }

    .section2-card1 {
        margin-bottom: 15px
    }

    .section2-card2 {
        margin-bottom: 15px
    }

    .section2-card2 .heading {
        font-size: 25px;
    }

    .section3-text {
        padding: 20px;
        margin-top: 15px
    }

    .section3-text h1 {
        font-size: 30px;
    }

    .box.d-flex.align-items-center.mt-15 {
        margin-bottom: 15px
    }

    .section4 {
        padding: 20px;
        margin: 10px;
    }

    .big-heading {
        font-size: 30px;
    }

    .section5-heading {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .section5-img img {
        height: auto;
        border-radius: 30px;
        margin-bottom: 20px
    }
}

/*<<<<<<<<<Responsiv-End>>>>>>>>>>>**/