@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h2,h3,h4,p {
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
}
h1 ,h2, h3 ,h4 ,p{
        font-family: 'Montserrat';
}


.container-fluid {
    overflow: hidden;
}

.bordered_btn a {
    text-decoration: none;
}

.sec_btn a {
    text-decoration: none;
}

/* ul li {
    padding: 0;
    list-style: none;
} */

.rajhdani {
    font-family: "Rajdhani", sans-serif;
}

.inter {
    font-family: "Inter", sans-serif;
}

section {
    padding: 90px 0;
}

.btns_wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 20px;
}

.sec_btn a {
    color: white;
    font-size: 17px;
    font-weight: 300;
    padding: 20px 15px;
}

/* Top Bar Start */

.topbar_sec {
    background-image: linear-gradient(to left, #00C6F1, #02AEE7, #096FCB);
    border-bottom: 1.5px solid black;
    padding: 14px 0;
}

.topbar_sec .chat_wrapper .txt span {
    font-size: 14px;
    line-height: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

.topbar_sec .chat_wrapper .txt p {
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
}

/* Top Bar End */

/* Header Start */

.header_sec {
    padding: 10px 0;
}
/*.dropdown-item {*/
/*    display: block;*/
/*    padding: 8px 31px;*/
/*    font-weight: 400;*/
/*    color: #212529;*/
/*    text-align: inherit;*/
/*    text-decoration: none;*/
/*    margin: 4px;*/
/*    white-space: nowrap;*/
/*    background-color: transparent;*/
/*    border: 0;*/
/*    margin-top: 12px;*/
/*}*/
/*.dropdown-menu {*/
/*    position: absolute;*/
/*    z-index: 1000;*/
/*    display: none;*/
/*    min-width: 10rem;*/
/*    padding: .5rem 0;*/
/*    margin: 0;*/
/*    font-size: 1rem;*/
/*    color: #212529;*/
/*    text-align: left;*/
/*    list-style: none;*/
/*    background-color: #fff;*/
/*    background-clip: padding-box;*/
/*    border: 1px solid rgba(0, 0, 0, .15);*/
/*    border-radius: .25rem;*/
/*}*/
ul.dropdown-menu.show li a {
    font-size: 17px;
    font-weight: 400;
    color: #000;
    padding: 7px 26px;
}
ul.dropdown-menu.show li a:hover {
    background: linear-gradient(to left, #00C6F1, #02AEE7, #096FCB);
    color: #ffff;
}

.logo img {
    width: 24%;
}
.header_sec .navbar-nav li a {
    font-size: 18px;
    font-weight: 500;
    color: #575757;
}

/* Header End */

/* Banner Start */

.banner_sec {
    background-image: url('../img/banner-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
    padding: 140px 0;
}

.banner_sec::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to left, #00C6F1, #02AEE7, #096FCB);
    z-index: -1;
    opacity: 0.6;
}

.banner_sec .txt p:first-child {
    font-size: 20px;
    font-weight: 500;
    color: #F8F9FA;
    margin-bottom: 10px;
}

.banner_sec .txt h1 {
    font-size: 45px;
    line-height: 48px;
    font-weight: 900;
    color: #F8F9FA;
    margin-bottom: 20px;
}

.banner_sec .txt p {
    font-size: 19px;
    line-height: 28px;
    font-weight: 300;
    color: #F8F9FA;
    max-width: 650px;
    margin-bottom: 60px;
}

.bordered_btn {
    display: inline-block;
}

.bordered_btn a {
    display: inline-block;
    padding: 26px 55px;
    background: transparent;
    color: #fff;
    font-size: 17px;
    font-weight: 300;
    position: relative;
}

/* .bordered_btn a span {
    position: relative;
    z-index: 2;
} */


/* logo slider */
.slick-slide.slick-current.slick-active .slider-card {
    /* Item */


    background: linear-gradient(180deg, #000000 0%, #01C0EF 48.56%, #000000 100%);
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.logo-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.logo-track img {
    height: 50px;
    margin: 0 23px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px 0;
    /* background: #F1F2FF; */
    padding: 34px 0px;
}

/* logo slider  end */

.bordered_btn a::before,
.bordered_btn a::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
}

.bordered_btn a::before {
    top: 16px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}

.bordered_btn a::after {
    bottom: 15px;
    right: 8px;
    border-left: none;
    border-top: none;
}

.bordered_btn span::before,
.bordered_btn span::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
}

.bordered_btn span::before {
    top: 16px;
    right: 8px;
    border-left: none;
    border-bottom: none;
}

.bordered_btn span::after {
    bottom: 15px;
    left: 8px;
    border-right: none;
    border-top: none;
}


.banner_sec .form {
    background-color: #FFFFFF;
    border-radius: 16px;
    border: 0;
    padding: 20px 15px;
    position: relative;
    z-index: 0;
}

.banner_sec .form::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    height: 98%;
    width: 98%;
    background-color: transparent;
    border: 5px solid #096FCB;
    z-index: -1;
    border-radius: 16px;
}

.banner_sec .form h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 20px;
}

.banner_sec .form form {
    padding: 0 40px;
}

.banner_sec .form form input {
    width: 100%;
    height: 45px;
    background-color: #FFFBF1;
    border-radius: 5px;
    border: 1px solid #8c8c8c77;
    margin-bottom: 20px;
    padding: 0 10px;
}

.banner_sec .form form input::placeholder {
    font-size: 14px;
}

.banner_sec .form form input:focus {
    outline: 0;
}

.banner_sec .form form .btn {
    padding: 0;
    width: 100%;
}

.banner_sec .form form .btn button {
    background: linear-gradient(to left, #00C6F1, #02AEE7, #096FCB);
    border: 0;
    width: max-content;
    padding: 5px 30px;
    border-radius: 5px;
    margin: 10px auto 20px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Banner End */

/* Brands Start */

.brands_sec {
    padding: 10px 0 90px;
}

.brands_sec .brands {
    border-bottom: 1px solid #D9D9D9;
}

/* Brands End */

/* Service Start */
.sevices_sec.service-2 {
       /*background-image: url(../img/including-bg.png);*/
    
}
.sevices_sec {
    padding-top: 0;
}


.sevices_sec img {
    width: 100%;
}
.sevices_sec .txt h2 {
    font-size: 42px;
    line-height: 46px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    max-width: 700px;
}

.sevices_sec .txt p {
    max-width: 700px;
    margin-bottom: 20px;
}

.sevices_sec .txt p,
.sevices_sec .txt ul li {
    font-size: 19px;
    line-height: 28px;
    font-weight: 400;
    color: #212529;
}

.sevices_sec .txt ul {
    padding-left: 20px;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.sevices_sec .txt ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.sevices_sec .bordered_btn {
    display: inline-block;
}

.sevices_sec .bordered_btn a {
    display: inline-block;
    padding: 26px 55px;
    background: transparent;
    color: #000000;
    font-size: 17px;
    font-weight: 400;
    position: relative;
}

.sevices_sec .bordered_btn a::before,
.sevices_sec .bordered_btn a::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #000000;
}

.sevices_sec .bordered_btn a::before {
    top: 16px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}

.sevices_sec .bordered_btn a::after {
    bottom: 15px;
    right: 8px;
    border-left: none;
    border-top: none;
}

.sevices_sec .bordered_btn span::before,
.sevices_sec .bordered_btn span::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #000000;
}

.sevices_sec .bordered_btn span::before {
    top: 16px;
    right: 8px;
    border-left: none;
    border-bottom: none;
}

.sevices_sec .bordered_btn span::after {
    bottom: 15px;
    left: 8px;
    border-right: none;
    border-top: none;
}

.service-2 {
    padding: 52px 0px !important;
}
/* Service End */
.including-sec-1 {
    padding: 54px 0px;
}
/*including-sec-1*/

    .including-sec-1 h5 {
    box-sizing: border-box;
    border-radius: 22.1782px;
    padding: 9px 15px;
    color: #fff;
    border: 1px solid #ffff;
        width: 30%;

}
.including-sec-1 .container {
    background-image: url(../img/including-sec-1-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0px; 
}
.left-section {
    padding: 105px 33px;
} 
.including-sec-1 h3 {
    font-weight: 700;
    font-size: 33px;
    line-height: 43px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    color: #FFFFFF;
    margin: 20px 0px;
}    
.left-section p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 22px;
    color: #FFFFFF;
}    
.main-percentage {
    background: #ffff;
    left: 228px;
    top: 2135.13px;
    border-radius: 5px;
    padding: 18px;
}
.percentage-box {
    display: flex;
    padding: 14px;
    gap: 27px;
    align-items: baseline;
}
.percentage-content p {
    width: 328px;
    height: 48px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    color: #000000;

}  
/*including-sec-2*/
.including-sec-2 h3 {

    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 56px;
    letter-spacing: -0.04em;
    text-transform: capitalize;
    color: #191919;
}
.Experienced-content {
  
    width: 415px;
    background: #F9F3F7;
    margin: 20px 0px;
    padding: 20px;
        height: 86%;
}
.including-sec-2 {
    margin-bottom: 72px;
}
.Experienced-content span {
    top: 2317px;
    background: linear-gradient(270deg, #00C6F1 0%, #096FCB 100%);
    padding: 0px 14px;
    font-size: 34px;
    color: #fff;
    border-radius: 9px;
    font-weight: 600;
}
.Experienced-content h4 {
    font-weight: 600;
    font-size: 25px;
    line-height: 23px;
    leading-trim: both;
    text-edge: cap;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    color: #27213C;
    margin: 20px 0px;
}
.Experienced-content a {
    font-weight: 700;
    font-size: 18.2316px;
    line-height: 23px;
    text-transform: uppercase;
    background: linear-gradient(270deg, #00C6F1 0%, #096FCB 100%);
    background-clip: text;
    text-fill-color: transparent;
}
/* CTA Start */

.cta_sec {
    background-image: url('../img/cta_background.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.cta_sec .img {
       position: absolute;
    top: -128px;
}

.cta_sec .txt p {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    color: white;
    max-width: 500px;
}



.cta_sec .txt h2 {
    font-size: 42px;
    line-height: 46px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

/* CTA End */
/* service slider */
.service-slider h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 42px;
    display: flex;
    align-items: center;
    color: #212529;
}

.service-slider p {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    display: flex;
    align-items: center;

}

.row.slider-content.justify-content-end {
    margin-top: 48px;
}

.service-slider {
    background-image: url('../img/slider-bg.png');
}

.slider-card {
    padding: 20px;
    background: #FAFAFA;
    width: 306px;
    height: 533px;
    border: 2px solid #DADADA;
}
.left-column {
    border-right: 4px solid #DADADA;
    z-index: 1;
}
.row.contact-us-section img {
    width: 46%;
}

/* .slider-card:hover {

    width: 337px;
    height: 533px;
    left: 53px;
    top: 50px;
    background: linear-gradient(180deg, #000000 0%, #01C0EF 48.56%, #000000 100%);
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
} */
.slider-card span {
    font-weight: 300;
    font-size: 83px;
    display: flex;
    align-items: center;
}

.slider-card h4 {
    font-weight: 700;
    font-size: 22px;
    line-height: 69px;
    align-items: center;
    /* color: #212529; */
}

.section-3 {
    background-image: url('../img/sacrificing-bg.png');
}

.section-3 img {
    width: 100%;
}

.section-3-content h3 {
    font-weight: 900;
    font-size: 42px;
    line-height: 44px;
    display: flex;
    align-items: center;
    color: #F8F9FA;
}

.section-3-content p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    display: flex;
    align-items: center;
    color: #F8F9FA;
}

.section-3-content ul {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    align-items: center;
    color: #F8F9FA;
    padding: 16px 18px;
}

.section-3-content ul li {
    padding: 7px 0px;
}

/* section-4  */
.section-4 {
    padding: 67px 0px;
}

.section-4 {
    padding: 67px 0px;
    background: #EBF2FF;
}

.section-4 span {
    color: #2E3192;
}

.section-4 span {
    color: #2E3192;
    font-size: 32px;
    font-weight: 600;
}

.rating-box-1 {
    background-image: url('../img/10+.png');
}

.rating-box-2 {
    background-image: url('../img/250+.png');
}

.rating-box-3 {
    background-image: url('../img/700+.png');
}

.rating-box-1 span {
    position: absolute;
    font-size: 127px;
    top: -61px;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #dfe7f7;
    z-index: 0;
}

.row.rating-corner {
    border: 1px solid #DFDFDF;
    padding: 38px;
}

.rating-box-1 {
    position: relative;
}

.rating-box-1 img {
    position: relative;
    z-index: 1;
}

.rating-box-1 p {
    z-index: 2;
    position: relative;
    font-size: 20px;
    font-weight: 500;
}

/* section 4  end */

/* portfolio */
.portfolio-content h3 {
    font-weight: 700;
    font-size: 38px;
    line-height: 29px;
    color: #1B1B1B;
}

.portfolio-content {
    text-align: center;
}

.portfolio-content {
    text-align: center;
}

.portfolio-content p {
    font-size: 22px;
    line-height: 25px;
    align-items: center;
    text-align: center;
    color: #1B1B1B;
    margin: 29px 171px;
}

.gallery img {
    margin: 0px 4px;
    margin-bottom: 20px;
}

.portfolio-content .bordered_btn a {
    color: #000;

}


.portfolio-content .bordered_btn span::after {
    bottom: 15px;
    left: 8px;
    border-right: none;
    border-top: none;
}

.portfolio-content .bordered_btn a::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #000;
    top: 16px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}


/* reach-out */
.reach-out-main {
    background-image: url('../img/reach-out-bg.png');
    text-align: center;
}

.reach-out-main h3 {
    font-weight: 900;
    font-size: 42px;
    align-items: center;
    color: #F8F9FA;
}

.reach-out-main p {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    align-items: center;
    text-align: center;
    color: #F8F9FA;
}

/* main-order */
section.main-order h3 {
    font-weight: 700;
    font-size: 40px;
    line-height: 46px;
    color: #1C1D1E;
}

.main-order p {
    font-weight: 400;
    font-size: 19px;
    line-height: 27px;
    color: #49494A;
}

button.text-white.rajhdani {
    width: 144px;
    height: 41px;
    background: #022E49;
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
}


.card h3 {
    font-style: normal;
    font-weight: 600;
    line-height: 17px !important;
    text-transform: capitalize;
    color: #000000;
}

.section-wrapper {
    margin: 50px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}


.right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
}


.card {
    background: #ffffff;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    width: 100%;
    top: 121px;
    left: -123px;
}


.card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px !important;
}

.card p {
    font-weight: 400;
    font-size: 14px;
    line-height: 27px;
    letter-spacing: -0.02em;
    color: #000000;
}


.left-image {
    width: 125%;
    height: 100%;
    background-image: url(../img/order-img.png);
}

/* section-5 */
.desired-content ul {
    padding: 0px;
}

.desired-content span {
    color: #2E3192;
    font-size: 35px;
    font-weight: 600;
}

.desired-content h3 {
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 25px;
}

.desired-content p ul li {
    font-weight: 400;
    font-size: 17.0876px;
    line-height: 26px;
    display: flex;
    align-items: center;
    color: #8F8E93;
}

.desired-content ul li {
    list-style: none;
    display: flex;
    gap: 7px;
    margin: 15px;
    align-items: flex-start;
}



.desired-content ul li img {
    display: flex;
    justify-content: inherit;
}

.desired-content ul li img {
    width: 55px;
    height: 21px;
}

/* section-6 */
.contact-form span {
    font-weight: 400;
    font-size: 22px;
    color: #F8F9FA;
}

.professional-service {
    padding: 79px 0px;
}

.contact-form {
    align-items: center;

    color: #fff;
}

.contact-form h3 {
    font-weight: 900;
    font-size: 46px;
    align-items: center;
    text-align: center;
    color: #F8F9FA;
}

.contact-form p {
    font-weight: 400;
    font-size: 20px;
    align-items: center;
    text-align: center;
    color: #F8F9FA;
}

.contact-form .form-container {
    background-image: url('../img/get-in-touch.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 20px;
    text-align: center;
}


.contact-form h1 {
    margin-bottom: 5px;
    font-size: 32px;
}


.contact-form p {
    margin-bottom: 30px;
    font-size: 16px;
}


.contact-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form ::placeholder {
    color: #fff !important;
    opacity: 1;
    /* For Firefox */
}

.contact-form .bordered_btn a {
    padding: 26px 107px;
    font-size: 17px;
    font-weight: 500;
}


.contact-form input,
textarea {
    width: 100%;
    padding: 25px 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff !important;
    font-size: 15px;
    backdrop-filter: blur(4px);
}


.contact-form textarea {
    height: 120px;
    resize: none;
}


.contact-form button {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 30px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
}


.contact-form button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* end */
.professional-service .container {
    background-image: url(../img/sec-6-bg.png);
    padding: 115px 0px;
    background-repeat: no-repeat;
    text-align: center;
     margin-bottom: 52px;
    
}

section.professional-service h3 {
    font-weight: 500;
    font-size: 40px;
    line-height: 49px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
}

section.professional-service p {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    opacity: 0.7;
}

.professional-service img {
    position: absolute;
}

/* contact-form */
.contact-form {
    background-image: url(../img/form-bg.png);
    text-align: center;
}

/* faqs */
.faqs {
    padding: 62px 0px;
    background: #f7f7fb;
    padding-bottom: 115px;
}

.faqs .center-heading {
    text-align: center;
}

.faqs .center-heading>span {
    border: 1px solid #4632da;
    background: #4632da10;
    padding: 10px;
    font-size: 14px;
    border-radius: 35px;
    font-weight: 600;
    display: inline-block;
    color: #4632da;
}

.faqs .center-heading>h3 {

    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 54px;
    text-align: center;
    color: #0B272E;

}

.faqs .center-heading>p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 30px;
}

.faqs .faqs-box .accordion-button:not(.collapsed) {
    background: linear-gradient(270deg, #00C6F1 0%, #096FCB 100%);
    box-shadow: none;
    color: #ffff;
}

.faqs .faqs-box .accordion-button:focus {

    box-shadow: none;

    font-size: 15px;

    background: linear-gradient(270deg, #00C6F1 0%, #096FCB 100%);

}

.accordion-body {
    background: #ECECEC;
    color: #000;
}

.faqs .faqs-box h4 button {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    /*border-radius: 20px !important;*/
}

.faqs .faqs-box p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0px;
}

.faqs .faqs-box .accordion-item {
    border: none;
    border-radius: 20px !important;
    margin-bottom: 20px;
}



/* end */
/* footer  */
.footer {
    background-image: url('../img/footer-bg.png');
}

/* footer */
footer.footer {
    background-color: #1B1B1B;
    padding: 50px 0px;
}
footer.footer img {
    width: 25%;
}

.footer-logo p {
    color: #ffff;
    font-size: 20px;
    line-height: 35px;
    margin: 20px 0px;
}

footer.footer .row {
    margin: 28px 0px;
    align-items: center;
}

.footer-links {
    border-left: 2px solid #ffff;
    padding-left: 20px;
}

.footer-links>ul>li {
    padding: 12px 0px 0 0px;
    color: white;
    transition: all ease-in-out 0.3s;
}

.contact-links {
    border: none;
}

.contact-links ul i {
    padding-right: 33px;
}

.row.contact-us-section {
    border-top: 2px solid #ffff;
    border-bottom: 2px solid #fff;
    padding: 20px 0px;
}

.footer-links>ul>li>a:hover {
    color: #02AEE7;
    padding-left: 10px;
}
.genre-list ul li {
    display: inline-block;
    width: 34%;
}

/*  */




.footer-links>h6 {
    color: #D1CAB6;
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 600;
}

.footer-links>p {
    color: white;
    font-size: 1rem;
    margin-top: 16px;
    margin-bottom: 0px;
    font-weight: 400;
}



.footer-links>ul>li:hover {
    color: #546DD4;
}

.footer-links>ul>li>a {
    text-decoration: none;
    font-size: 1rem;
    color: white;
    font-weight: 400;
    transition: all ease-in-out 0.3s;
}



.social>p>span {
    margin: 0;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

.social>p>a {
    color: #FFE100;
    margin: 0 5px;
    font-size: 1.2rem;
    transition: all ease-in-out 0.3s;
    padding: 0px 16px 0 0;
    border-radius: 30px;
}

.social>p>a:hover {
    color: #ffffff;
}

.footer-bootom-links>p {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
}

.footer input,
.footer input:focus {
    border-left: 1px solid rgba(255, 255, 255, 1);
    border-right: none;
    border-radius: 0;
}

.footer button,
.footer input,
.footer input:focus {
    border-top: 1px solid rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.footer input {
    color: #ffffff !important;
    background: transparent;
}

.footer input::placeholder {
    color: white !important;
}

.footer button {
    border-radius: 0;
    background: 0 0;
    border-right: 1px solid rgba(255, 255, 255, 1);
    border-left: none;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 1rem;
    background: transparent;
}

.footer-links>ul>li img {
    margin-right: 8px;
}

.footer-links>ul>li p {
    font-size: 1rem;
    color: #9f9f9f;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-links>ul>li a {
    text-decoration: none;
    font-size: 1rem;
    color: #FFFFFFCC;
    font-weight: 400;
    transition: all ease-in-out 0.3s;
}

.social-link>p>a:nth-child(1) {
    border-right: 2px solid white;
}

hr {
    background-color: white;
    opacity: 1;
}

.social-link>p>a {
    color: #ffffff;
    margin: 0 5px;
    transition: all ease-in-out 0.3s;
    padding: 0px 10px 0 0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
}

.social-link>p>a:hover {
    color: #fff;
}

.footer-bootom-links>span {
    margin: 0;
    color: white;
    font-size: 1rem;
    font-weight: 400;
}

.contact-us-section .social-icons {
    text-align: end;
    font-size: 26px;
    /* color: #ffff !important; */
}

.row.contact-us-section a {
    color: #fff;
}

/* end */

/* about */
.col-lg-5.sacrificing img {
    width: 100%;
}

.row.about {
    margin: 25px 0px;
}

.section-4 .row {
    align-items: center;
}



.section-7 {
    padding: 40px 0px;
    background: #F9FDFF;
}

.section-7 .container-fluid {

    padding: 36px;
}

.review-card {
    width: 430px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin: 0px 8px;
    height: 20%;
}
.symbol-icon img {
    margin-left: 124px;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e5e7eb;
    margin-right: 12px;
    /* Replace this background with your image later */
}

.user-info {
    line-height: 1.3;
}


.user-info small {
    color: #6b7280;
}

.review-text {
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0 15px;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.review-logo {
    width: 18px;
    height: 18px;
    background-color: #e5e7eb;
    border-radius: 50%;
    /* Placeholder for Reviews.io logo */
}

.review-footer span {
    color: #111;
    font-size: 14px;
    font-weight: 500;
}


.user-info h4 {
    font-size: 15px;
    line-height: 22px;
    align-items: center;

    font-weight: bold;
    color: #1e293b;

}

.animate-up {
    animation: up 3s ease-in-out infinite;
}

@keyframes up {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }

    100% {
        transform: translateY(0);
    }
}

/* marquee */
.marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}


.track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-right 25s linear infinite;
    /* or scroll-left */
}

.scroll-left {
    animation: marquee-left 32s linear infinite;
}

.scroll-right {
    animation: marquee-right 32s linear infinite;
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.client-service {
    background: #ECF2FF;
    position: relative;
    top: -37px;
    z-index: 2;
    right: -53px;
    border: 2px solid #546dd440;
    padding: 50px;
}

.client-service:after {
    content: "";
    position: absolute;
    bottom: -41px;
    right: -3px;
    width: 43px;
    height: 41px;
    background: #546dd440;
    clip-path: polygon(3% 0, 0 98%, 100% 0);
}

.track-section {
    margin-top: 163px;
    box-sizing: border-box;
    height: 61px;
    left: 37px;
    right: 49px;
    top: 544px;
    background: #F3ECF7;
    border: 1px solid #D7C4FA;
    border-radius: 8px;
    text-align: center;
    padding: 17px;
}

.section-7 h3 {
    font-weight: 500;
    font-size: 43px;
    text-align: center;
    color: #05171D;
}

.section-7 p {
    font-size: 20.4859px;
    line-height: 26px;
    text-align: center;
    color: #747474;
}

.main-service h3 {

    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
    color: #0B272E;
}

ul.rating-satrt {
    list-style: none;
    display: flex;
    gap: 5px;
    color: #F2B01E;
    margin: 0;
    padding: 0;
}

/* customer */
.customer-support {
    background-color: #FFFDF8;
    padding: 57px 0px;
    /* text-align: center; */
}
.quality-content:before {
    content: "";
    position: absolute;

    margin: 0px -21px;
    /* position: absolute; */
    width: 12px;
    height: 40px;
    /* left: 1006px; */
    /* top: 3918px; */
    background: #096FCB;
    border-radius: 4px;

}
.quality-content p {
    text-align: justify !important;
}
.customer-support p {
    text-align: center;
}
.customer-support h3 {
    font-size: 43px;
    line-height: 52px;
    text-align: center;
    text-transform: capitalize;
    color: #292F36;
}

.customer-support .row {
    margin: 46px 0px;
}

.portfolio-content .bordered_btn a::after,
.portfolio-content .bordered_btn span::before,
.portfolio-content .bordered_btn span::after{
    border-color: #000;
}

.customer-support .bordered_btn a::after,
.customer-support .bordered_btn span::before,
.customer-support .bordered_btn span::after{
    border-color: #000;
}

.customer-support .bordered_btn a::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #000;
    top: 16px;
    left: 8px;
    border-right: none;
    border-bottom: none;
}
.customer-support .bordered_btn a{
    color:#000;
    
}
.customer-support .bordered_btn {
    text-align: center;
}

/* model popup */
.model-discount span {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  color: white;
}
.model-discount label {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}
.model-sec .modal-body {
  padding: 0;
  position: relative;
}
.model-sec .modal-content {
  border-radius: 30px;
  border: none;
}
.model-discount {
    padding: 30px 40px 30px 40px;
    margin: 10px;
    background: linear-gradient(180deg, #000000 0%, #01C0EF 48.56%, #000000 100%);
    border-radius: 30px;
}
.model-input {
  border-color: white;
  color: black !important;
}
.model-input:focus {
  border-color: #000000 !important;
}
.model-input::placeholder {
  color: #000000 !important;
}

.model-discount .btn-close{
    border: 2px solid white;
    border-radius: 30px;
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 8px;
}
/*.btn-close {*/
/*     background-image: url('../img/modal-cross.svg');*/
/*}*/




.percentage-box {
  display: flex;
  align-items: center;
  gap: 25px;
}

.circular-progress {
  position: relative;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  background: conic-gradient(#00AEEF 0deg, #e0e0e0 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.circular-progress::before {
  content: "";
  position: absolute;
  height: 70px;
  width: 70px;
  background: #fff;
  border-radius: 50%;
}

.progress-value {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}
/*contact us*/
.contact-us {
    text-align: center;
}
.contact-us .txt p {
    max-width: none;
    line-height: 30px;
    margin-bottom: 16px;
    font-size: 20px;
}
.btns_wrapper {
    display: inline-flex;
}
.contact-2 p {
    font-size: 21px;
}
.contact-2 h3 {
    font-size: 36px;
}
/*fiction*/
.fiction-gallery img {
    margin: 0px -2px;
}
.fiction-service p {
    font-size: 20px;
    line-height: 29px;
    padding: 6px 85px;
}
.novel-service .container h3 {
    padding: 0px 52px;
    font-size: 28px;
}
.novel-service .container p {
    padding: 0px 154px;
    font-size: 20px;
    line-height: 37px;

    
}
.Experienced-content p {
    font-size: 15px;
}
.marketing-service p {
    font-size: 19px;
    line-height: 26px;

    padding: 0px 102px;
}
.blog .row {
    align-items: center;
}
.privacy-policy-content h3 {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 28px;
    align-items: center;
    color: #000000;
}
.privacy-policy-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    align-items: center;
    color: #000000;
}
.blog-section {
    background: linear-gradient(90deg, rgba(5, 147, 219, 1) 0%, rgba(1, 187, 236, 1) 64%);
    padding: 36px;
    text-align: center;
}
.blog-section h4 {
 
    top: 2014.31px;
    
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    
    align-items: center;
    text-transform: uppercase;
    color: #FFFFFF;
}
.blog-section h3 {
    font-weight: 700;
    font-size: 19px;
    line-height: 32px;
    align-items: center;
    text-transform: uppercase;
    color: #FFFFFF;
}
a.req-quote {
    
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    border-radius: 20px;
    text-decoration: none;
    padding: 11px 24px;
    border: none;
}

.blog-page {
    padding: 50px 0px;
}
.blog-page h2 {
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    line-height: 56px;
    /* display: flex; */
    align-items: center;
    text-align: center;
    text-transform: capitalize;
    color: #263238;
}
.blog-page span {
    color: #01BDED;
}
img.blog-img-2 {
    width: 100%;
    margin-bottom: 20px;
}
.blog-page h5 {
    background: #03B2E8;
    padding: 20px;
    color: #fff;
    text-transform: uppercase;
}
.blog-page ul li {
    list-style: none;
    padding-left: 0px;
    margin-left: -21px;
    font-weight: 400;
    font-size: 17px;
    align-items: center;
    color: #777777;
    margin-bottom: 18px;
}
.blog-page h3 {
    font-weight: 400;
    font-size: 25.9524px;
    line-height: 64px;

    align-items: center;
    letter-spacing: -0.521305px;
    color: #292929;
}