/* ============================================
    Website : PhoneNumber.store
    File : CSS FILE
    Author : NAME OF AUTHOR
================================================*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


    :root{

        /* =============
        COLORS
        ================*/

        --nav-bg: #ffffff;
        --nav-text: #090d2f;
        --body-bg: #ffffff;
        --primary-color: #005de0;
        --secondary-text: #ababab;
        --secondary-color: #c4c5c7; 
        --dark-color: #333333;
        --lightblue-color: #ccdef7;
        --white-color: #ffffff;
        --icon-bg: #15203b;
        --prime-btn: #005de0;
        --prime-btn-hover: #0356c9;
        --dark-btn :#000c29;
        --dark-color :#000c29;
        --dark-btn-hover : #2f343f;
        --prime-gradient: linear-gradient(-60deg, #54d6eb 0%, #035cdd 100%);
        --input-bg: #ffffff;
        --input-text: #333333;
        --placeholder-text: #eee;

        /*=============
         FONT FAMILIES
        ===============*/
        --primary-font: "Manrope", sans-serif;
        --secondary-font: "Roboto", sans-serif;
    }

    /* Custom-Classes */


    .nav-bg{
        background-color: var(--nav-bg);
    }
    .nav-text{
        background-color: var(--nav-text);
    }
    .body-bg{
        background-color: var(--body-bg);
    }
    .primary-bg{
        background-color: var(--primary-color);
    }
    .primary-text{
        color: var(--primary-color);
    }
    .dark-text{
        color: var(--dark-color);
    }
    .secondary-bg{
        background-color: var(--secondary-color);
    }
    .secondary-text{
        color: var(--secondary-text);
    }
    .dark-bg{
        background-color: var(--dark-color);
    }
    .dark-text{
        color: var(--dark-color);
    }
    .lightblue-bg{
        background-color: var(--lightblue-color);
    }
    .lightblue-text{
        color: var(--lightblue-color);
    }
    .white-text{
        color: var(--white-color);
    }
    .white-bg{
        background-color: var(--white-color);
    } 
    .icon-bg{
        background-color: var(--icon-bg);
    }
    .gradient{
        background-image: var(--prime-gradient);
    }
    .input-bg{
        background-color: var(--input-bg);
    }
    .input-text{
        color: var(--input-text);
    }
    .placeholder-text{
        color: var(--placeholder-text);
    }
    .prime-font{
        font-family: var(--primary-font);
    }
    .second-font{
        font-family: var(--secondary-font);
    }

    /* Project CSS */
    *{
        font-family: var(--primary-font);
        line-height: inherit;
    }
    .fs-7{
        font-size: 14px;
    }
    .fs-8{
        font-size: 12px;
    }
    .fs-9{
        font-size: 10px;
    }
    a{
        color: inherit;
        text-decoration: none;
    }
    a:hover{
        color: inherit;
        text-decoration: none;
    }

    /* header css */

    .nav-link{
        font-size: 12px;
        font-weight: 900;
        color: var(--nav-text) !important;
        text-transform: uppercase;
        padding: 0;
    }
    .nav-icons a{
        width: 40px;
        height: 40px;
        border: 1px solid var(--secondary-color);
        color: var(--dark-color);
        border-radius: 50%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
    }

    /* banner css */

    .banner-main{
        background:linear-gradient(0deg, rgba(10, 10, 10, 0.4), rgba(0, 0, 0, 0.4)), url("../images/siteImages/mainimage.webp"); 
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 1200px;
        background-position: center center;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .banner-main::before{
        content: '';
        width: 500px;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: url("../images/siteImages/bansideimg-1.png")no-repeat;
        background-position: right center;
        background-size: cover;
    }
    .banner-main::after{
        content: '';
        width: 500px;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        background: url("../images/siteImages/bansideimg-2.png")no-repeat;
        background-size: cover;
        background-position: left center;
    }
    .banner-content{
        max-width: 900px;
        margin: auto;
        text-align: center;
    }
    .bannercust_ad{
        width: 650px;
    }

    /* footer css */
    #footer-main{
        background: url("../images/siteImages/footer-bg.jpg")no-repeat;
        background-size: cover;
        min-height: 450px;
        padding: 0px;
    }
    .footer-container{
        padding: 150px 0px 75px 0;
    }
    .footer-icons a{
        width: 40px;
        height: 40px; 
        color: var(--dark-color);
        border-radius: 50%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
    } 
    .prime-btn{
        background-color: var(--prime-btn);
        color: white;  
    }
    .prime-btn:hover{
        background-color: var(--prime-btn-hover) !important;
        color: white !important;
    }
    .dark-btn{
        background-color: var(--dark-btn);
        color: white;  
    }
    .dark-btn:hover{
        background-color: var(--dark-btn-hover) !important;
        color: white !important;
    }
    .newsletter-main{
        min-height: 600px;
        position: relative;
        z-index: 2;
    }
    .footer-main{
        margin-top: -200px; 
        padding-top: 150px !important;
    }

    /* phone number style */
    .phone_number_body{
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
        border: 1px solid #999999;
        padding: 15px;
        border-radius: 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 22px;
    }    
    .phone_number_body .phonenumber{
        border-radius: 50%;
        min-height: 70px;
        min-width: 70px;
        border: 1px solid #bcdbfd;
        display: flex;
        gap: 2px;
        align-items: center;
        justify-content: center;
        box-shadow: 1px 2px 0px 1px #cfe6ff;
        background-color: white !important; 
        color: var(--primary-color);
        transition: 0.25s ease; 
    }
    .phone_number_body .phonenumber:hover, .phone_number_body .phonenumber:active{
        transform: scale(0.9);
    }
    .green-badge{
        min-width:30px;
        height:30px;
        background-color: green;
        box-shadow:4px 3px 5px 0px #a3a3a3;
        border-radius: 50%;
    }
    .yellow-badge{
        min-width: 30px;
        height: 30px;
        background-color: orange;
        box-shadow:4px 3px 5px 0px #a3a3a3;
        border-radius: 50%;
    }


    /* button style */
    .btn-effect{
        position: relative;
        z-index: 2;
        color: white !important;
        overflow: hidden;  
        border: 2px solid var(--prime-btn) !important;
    }
    .btn-effect.effect-dark{
        border: 2px solid var(--dark-btn) !important;
    }
    .btn-effect:hover{
        color: var(--primary-color) !important;
    }
    .btn-effect.effect-dark:hover{
        color: 2px solid var(--dark-color) !important;
    }
    .btn-effect:hover::before{
        left:-60%;
    }
    .btn-effect:hover::after{
        right:-60%;
    }
    .btn-effect::before{
        content: '';
        width: 60%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        background-color: var(--prime-btn);
        clip-path: polygon(25% 0, 105% 0, 100% 100%, 0% 125%);
        transform: rotate(180deg);
        transition: 0.4s ease;
    }
    .btn-effect::after{
        content: '';
        width: 60%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
        background-color: var(--prime-btn);
        clip-path: polygon(25% 0, 105% 0, 100% 100%, 0% 125%);
        transition: 0.4s ease;
    }
    .btn-effect.effect-dark::before, .btn-effect.effect-dark::after{ 
        background-color: var(--dark-btn); 
    } 
    /* phone_number_list */ 
    .phone_number_box{
        box-shadow: 2px 2px 2px 2px rgba(214, 214, 214, 0.26);
        border: 1px solid rgb(219, 219, 219);
        padding: 15px 20px; 
        border-radius: 5px;
        margin-bottom:  25px;
    }
    .phone_number_box > div{
        width: 20%;
        min-width: 300px;
    }
    .phone_number_list .slimScrollDiv,
    #phone_number_list {
        height: 100% !important;
        max-height: 900px;
        padding: 15px 15px 0 0;
    }
    .slimScrollBar {
        background: rgb(0, 93, 224) !important;
    }

    /* New Css Styles */
    .padding-3 {
        padding: 11px 0px;
    }
    .white-badge-numbers {
        min-width: 35px;
        height: 35px;
        background-color: white;
        box-shadow: 4px 3px 5px 0px #a3a3a3;
        border-radius: 50%;
    }
    .green-badge-numbers {
        min-width: 35px;
        height: 35px;
        background-color: green;
        box-shadow: 4px 3px 5px 0px #a3a3a3;
        border-radius: 50%;
    }
    .lightblue-badge-numbers {
        min-width: 35px;
        height: 35px;
        background-color: lightblue;
        box-shadow: 4px 3px 5px 0px #00000050;
        border-radius: 50%;
    }
    .yellow-badge-numbers {
        min-width: 35px;
        height: 35px;
        background-color: orange;
        box-shadow: 4px 3px 5px 0px #a3a3a3;
        border-radius: 50%;
    }
    .pink-badge-numbers {
        min-width: 35px;
        height: 35px;
        background-color: pink;
        box-shadow: 4px 3px 5px 0px #a3a3a3;
        border-radius: 50%;
    }
    .numbers-button {
        min-height: 70px;
        min-width: 15%;
        flex-grow: 1;
        font-size: 14px;
        line-height: 17px;
    }
    .text-pink {
        color: pink !important;
    }
    .numbers-button > span {
        font-size: 14px;
        line-height: 8px;
    }

    /* Secondary Color Button Design */
    .btn-effect-secondary {
        position: relative;
        z-index: 2;
        color: white !important;
        background-color: gray;
        overflow: hidden;
        border: 2px solid var(--secondary-btn) !important;
    }
    .btn-effect-secondary.effect-dark {
        border: 2px solid var(--dark-btn) !important;
    }
    .btn-effect-secondary:hover {
        color: var(--primary-color) !important;
    }
    .btn-effect-secondary.effect-dark:hover {
        color: 2px solid var(--dark-color) !important;
    }
    .btn-effect-secondary:hover::before {
        left: -60%;
    }
    .btn-effect-secondary:hover::after {
        right: -60%;
    }
    .btn-effect-secondary::before {
        content: '';
        width: 60%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        background-color: var(--secondary-btn);
        clip-path: polygon(25% 0, 105% 0, 100% 100%, 0% 125%);
        transform: rotate(180deg);
        transition: 0.4s ease;
    }
    .btn-effect-secondary::after {
        content: '';
        width: 60%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
        background-color: var(--secondary-btn);
        clip-path: polygon(25% 0, 105% 0, 100% 100%, 0% 125%);
        transition: 0.4s ease;
    }
    .btn-effect-secondary.effect-dark::before,
    .btn-effect.effect-dark::after {
        background-color: var(--dark-btn);
    }

.xlg-top-spacer {
    margin-top: 50px;
}

.page-banner-section.small {
    min-height: 400px;
}

@media only screen and (max-width: 767px) {
    .page-banner-section .shape-2 {
        left: -25%;
    }
}
@media only screen and (max-width: 991px) {
    .page-banner-section .shape-2 {
        width: 350px;
        height: 350px;
    }
}
@media only screen and (max-width: 1199px) {
    .page-banner-section .shape-2 {
        width: 420px;
        height: 420px;
    }
}
.page-banner .title {
    font-size: 60px;
    line-height: 1.25;
    font-family: "Manrope", sans-serif;
    display: inline-block;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 1;
}
.page-banner-section .shape-2 {
    width: 545px;
    height: 545px;
    border: 3px solid #005de0;
    opacity: 0.9;
    border-radius: 50%;
    position: absolute;
    left: -10%;
    bottom: -40%;
}

.page-banner-section.small {
    min-height: 400px;
}

@media only screen and (max-width: 767px) {
    .page-banner-section {
        min-height: 350px;
    }
}
@media only screen and (max-width: 991px) {
    .page-banner-section {
        min-height: 450px;
    }
}
@media only screen and (max-width: 1199px) {
    .page-banner-section {
        min-height: 520px;
    }
}

.page-banner-section {
    padding-top: 80px;
    min-height: 650px;
    display: flex;
    background-color: rgba(214, 214, 214, 0.26) !important;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-attachment: fixed;
}
.section, .main-wrapper {
    float: left;
    width: 100%;
}
.mb-5 {
    margin-bottom: 3rem !important;
}
.small, small {
    font-size: .875em;
}

.page-banner-section .shape-2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(-48deg, #54d6eb 0%, #035cdd 100%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(0.8);
}

.page-banner .title::before {
    content: "";
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-image: linear-gradient(-48deg, #54d6eb 0%, #035cdd 100%);
    opacity: 0.9;
    position: absolute;
    left: -25px;
    top: -20px;
    z-index: -1;
}

.page-banner-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #0e2641;
    opacity: 0.3;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.single-blog .blog-img .top-meta {
    position: absolute;
    top: 35px;
    left: 30px;
}

.single-blog .blog-img .top-meta .date {
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    background-image: linear-gradient(120deg, #54d6eb 0%, #035cdd 100%);
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    border-radius: 5px;
    font-family: "Manrope", sans-serif;
    display: inline-block;
    text-align: center;
    line-height: 12px;
    padding: 10px;
}

.single-blog .blog-img .top-meta .date span {
    font-size: 28px;
    line-height: 18px;
    font-weight: 500;
    line-height: 30px;
    display: block;
}

.faq-section .faq-wrap .faq-accordion {
    padding-left: 85px;
}

.faq-section {
    padding-bottom: 120px;
}
.section-padding-03 {
    padding-top: 120px;
}
.accordion {
    overflow-anchor: none;
}

.faq-section .faq-wrap .faq-accordion .accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.faq-section .faq-wrap .faq-accordion .accordion-item {
    border: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}
.accordion-item:first-of-type {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}
.accordion-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
}

.faq-section .faq-wrap .faq-accordion .accordion-item .accordion-header.header-one {
    padding-top: 0;
}
.faq-section .faq-wrap .faq-accordion .accordion-item .accordion-header {
    padding-top: 20px;
    padding-bottom: 30px;
}
.accordion-header {
    margin-bottom: 0;
}
h2 {
    font-size: 30px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Manrope", sans-serif;
    color: #090d2f;
    font-weight: 700;
    margin-top: 0;
    line-height: 1.5;
    margin-bottom: 0;
}
.faq-section .faq-wrap .faq-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background: #ffffff;
    box-shadow: none;
}
@media (min-width: 1024px) {
    .faq-section .faq-wrap .faq-accordion .accordion-item .accordion-header .accordion-button {
        font-size: 22px;
        line-height: 30px;
    }
}

@media (min-width: 1024px) {
    .faq-section .faq-wrap .faq-accordion .accordion-item .accordion-header .accordion-button .number {
        font-size: 18px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}
.faq-section .faq-wrap .faq-accordion .accordion-item .accordion-header .accordion-button .number {
    font-size: 14px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    color: #333333;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: #f2f2f2;
    border-radius: 50%;
    margin-right: 14px;
}
.faq-section .faq-wrap .faq-accordion .accordion-item .accordion-header .accordion-button .faq-button {
    position: absolute;
    right: 0;
    height: 32px;
    width: 32px;
    color: #005de0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
    transition: all 0.3s linear;
}

.faq-section .faq-wrap .faq-accordion .accordion-item .accordion-header .accordion-button .faq-button i {
    font-size: 15px;
}
.faq-section .faq-wrap .faq-accordion .accordion-item .accordion-header .accordion-button {
    padding: 0;
    font-size: 14px;
    line-height: 20px;
    font-family: "Manrope", sans-serif;
    color: #333333;
    font-weight: 700;
    padding-right: 45px;
    position: relative;
    transition: all 0.3s linear;
}
.faq-section .faq-wrap .faq-accordion .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}
.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #e7f1ff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}
[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}

button, input[type="submit"] {
    cursor: pointer;
}
a, button, img, input {
    transition: all 0.3s linear;
    outline: 0;
}
a, button {
    color: inherit;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}
button, select {
    text-transform: none;
}
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button {
    border-radius: 0;
}
button, select {
    text-transform: none;
}
button, input {
    overflow: visible;
}
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button {
    -moz-border-radius: 0;
    border-radius: 0;
}

.fa-chevron-right:before {
    content: "\f054";
}

.tech-hero-section-5 {
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

.tech-hero-section-5 .shape-1 {
    position: absolute;
    left: 0;
    top: 15px;
    z-index: 1;
}

@media (min-width: 1024px) {
    .tech-hero-section-5 .shape-2 {
        display: block;
    }
}
.tech-hero-section-5 .shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: none;
}

.tech-hero-section-5:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
}

.tech-hero-section-5 .hero-content {
    max-width: 880px;
    margin: 0 auto;
    padding-top: 85px;
    position: relative;
    z-index: 9;
}
.tech-hero-section-5 .hero-content .sub-title {
    font-size: 16px;
    line-height: 30px;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 30px;
}
.tech-hero-section-5 .hero-content p {
    font-size: 22px;
    line-height: 30px;
    font-family: "Manrope", sans-serif;
    color: #ffffff;
    margin-top: 25px;
}
.tech-hero-section-5 .hero-content .title {
    font-size: 60px;
    line-height: 80px;
    color: #ffffff;
}

.about-section .about-wrap .about-content ul li {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 30px;
    font-family: Manrope, sans-serif;
    font-weight: 400;
    color: #4c4d56;
}

.about-section-5 {
    padding-bottom: 320px;
    background: #09091d;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.section-padding-03 {
    padding-top: 120px;
}

.about-section-5 .about-wrap .about-left .section-title .sub-title {
    color: #ffffff;
}
.section-title .sub-title {
    font-size: 14px;
    line-height: 30px;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    color: #005de0;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-section-5 .about-wrap .about-left .section-title .title {
    color: #ffffff;
}
.section-title .title {
    font-size: 40px;
    line-height: 54px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    color: #333333;
}

.about-section-5 .about-wrap .about-right p {
    font-size: 16px;
    line-height: 30px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    color: #ffffff;
}

.about-section-5 .about-wrap .about-right .about-author {
    display: flex;
    margin-top: 50px;
}
.about-section-5 .about-wrap .about-right .about-author .author-text .name {
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}

.features-section-7 {
    padding-bottom: 145px;
}

.features-section-7 .features-wrap .features-content .section-title .title span {
    color: #005de0;
}


.section-padding-03 {
    padding-top: 120px;
    
}
.section-title .title {
    font-size: 40px;
    line-height: 54px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    color: #333333;
}

.g-min-height-600 {
    min-height: 600px;
}
.g-bg-size-cover {
    background-size: cover !important;
    background-position: center !important;
}

.g-bg-cover {
    position: relative;
}

.g-mb-90 {
    margin-bottom: 6.42857rem !important;
}

.g-z-index-1 {
    z-index: 1;
}
.g-pos-rel {
    position: relative !important;
}

@media (min-width: 0) {

  .g-mb-30 {
        margin-bottom: 2.14286rem !important;
    }
}

.g-color-white {
    color: #fff !important;
}

.g-font-weight-900 {
    font-weight: 900 !important;
}

.g-bg-cover::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.g-bg-white-gradient-opacity-v1, .g-bg-white-gradient-opacity-v1--after::after {
    background-image: linear-gradient(to top, rgba(0, 0, 0, .7) 0, rgba(0, 0, 0, 0) 100%);
    background-repeat: repeat-x;
}


.blog-date {
    position: absolute;
    bottom: 70px;
    left: 30px;
}

.blog-date .date span {
    font-size: 68px;
    font-weight: 500;
    line-height: 100px;
    display: block;
}

.blog-date .date {
    width: 165px;
    height: 165px;
    line-height: 65px;
    text-align: center;
    background-image: linear-gradient(120deg, #7d86e4 0%, #d43ec2 100%);
    color: #fff;
    font-size: 20px;
    line-height: 18px;
    border-radius: 5px;
    font-family: "Manrope", sans-serif;
    display: inline-block;
    text-align: center;
    
    padding: 10px;
}

.contact-info-section .contact-info-wrap .single-contact-info .info-icon i {
    font-size: 40px;
}


.contact-info-section .contact-info-wrap .single-contact-info .info-icon {
    width: 100px;
    height: 100px;
    line-height: 103px;
    background: #005de0;
    color: #ffffff;
    border-radius: 50%;
    margin: 0 auto;
    margin-top: -115px;
}

.contact-info-section .contact-info-wrap .single-contact-info {
    background: #ffffff;
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.11);
    padding: 55px 20px;
    border-radius: 10px;
    margin-top: 70px;
}

i[class^="flaticon-"]:before, i[class*=" flaticon-"]:before {
    font-family: flaticon !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contact-info-section .contact-info-wrap .single-contact-info .info-content .title {
    font-size: 18px;
    line-height: 36px;
    color: #333333;
    margin-top: 15px;
}

.contact-info-section .contact-info-wrap .single-contact-info .info-content p {
    font-size: 20px;
    line-height: 36px;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    color: #005de0;
}

.section-padding-02 {
    padding-top: 145px;
}
.section, .main-wrapper {
    float: left;
    width: 100%;
}

.faq-section {
	padding-bottom: 120px;
}

@media only screen and (max-width: 1199px) {
	.faq-section {
		padding-bottom: 100px;
	}
}

@media only screen and (max-width: 991px) {
	.faq-section {
		padding-bottom: 80px;
	}
}

@media only screen and (max-width: 767px) {
	.faq-section {
		padding-bottom: 60px;
	}
}

.faq-section .faq-wrap .faq-left {
	display: flex;
	margin-bottom: 30px;
}

@media (max-width: 1024px) {
	.faq-section .faq-wrap .faq-left img {
		height: 195px;
	}
}

.faq-section .faq-wrap .faq-left .title {
	font-size: 48px;
	line-height: 60px;
	max-width: 270px;
	color: #333333;
	margin-left: 40px;
}

@media only screen and (max-width: 1199px) {
	.faq-section .faq-wrap .faq-left .title {
		font-size: 40px;
		line-height: 55px;
		margin-left: 30px;
	}
}

@media only screen and (max-width: 575px) {
	.faq-section .faq-wrap .faq-left .title {
		font-size: 30px;
		line-height: 40px;
	}
}

.faq-section .faq-wrap .faq-accordion {
	padding-left: 85px;
}

@media only screen and (max-width: 1199px) {
	.faq-section .faq-wrap .faq-accordion {
		padding-left: 0;
	}
}

@media only screen and (max-width: 991px) {
	.faq-section .faq-wrap .faq-accordion {
		margin-top: 8px;
	}
}

.faq-section .faq-wrap .faq-accordion .accordion-item {
	border: 0;
	margin-bottom: 10px;
	border-bottom: 1px solid #e5e5e5;
}

.faq-section .faq-wrap .faq-accordion .accordion-item:first-of-type {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.faq-section
	.faq-wrap
	.faq-accordion
	.accordion-item:first-of-type
	.accordion-button {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.faq-section .faq-wrap .faq-accordion .accordion-item .accordion-header {
	padding-top: 20px;
	padding-bottom: 30px;
}

@media only screen and (max-width: 1199px) {
	.faq-section .faq-wrap .faq-accordion .accordion-item .accordion-header {
		padding-bottom: 18px;
	}
}


/* #accordionExample .accordion-item:first-of-type {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

*/
#accordionExample .number {
    margin-bottom: -40px!important;

}

.accordion-header .h3 {
    /*margin-bottom: -10px!important;*/
    padding-top:10px!important;
    margin-left: 50px!important;
    font-size: 22px!important;

} 

        

.faq-section
	.faq-wrap
	.faq-accordion
	.accordion-item
	.accordion-header.header-one {
	padding-top: 0;
}

.faq-section
	.faq-wrap
	.faq-accordion
	.accordion-item
	.accordion-header
	.accordion-button {
	padding: 0;
	font-size: 14px;
	line-height: 20px;
	font-family: "Manrope", sans-serif;
	color: #333333;
	font-weight: 700;
	padding-right: 45px;
	position: relative;
	transition: all 0.3s linear;
}

@media (min-width: 1024px) {
	.faq-section
		.faq-wrap
		.faq-accordion
		.accordion-item
		.accordion-header
		.accordion-button {
		font-size: 22px;
		line-height: 30px;
	}
}

.faq-section
	.faq-wrap
	.faq-accordion
	.accordion-item
	.accordion-header
	.accordion-button::after {
	display: none;
}

.faq-section
	.faq-wrap
	.faq-accordion
	.accordion-item
	.accordion-header
	.accordion-button
	.number {
	font-size: 14px;
	font-family: "Manrope", sans-serif;
	font-weight: 700;
	color: #333333;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	background: #f2f2f2;
	border-radius: 50%;
	margin-right: 14px;
}

@media (min-width: 1024px) {
	.faq-section
		.faq-wrap
		.faq-accordion
		.accordion-item
		.accordion-header
		.accordion-button
		.number {
		font-size: 18px;
		width: 40px;
		height: 40px;
		line-height: 40px;
	}
}

.faq-section
	.faq-wrap
	.faq-accordion
	.accordion-item
	.accordion-header
	.accordion-button
	.faq-button {
	position: absolute;
	right: 0;
	height: 32px;
	width: 32px;
	color: #005de0;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(90deg);
	transition: all 0.3s linear;
}

.faq-section
	.faq-wrap
	.faq-accordion
	.accordion-item
	.accordion-header
	.accordion-button
	.faq-button
	i {
	font-size: 15px;
}

.faq-section
	.faq-wrap
	.faq-accordion
	.accordion-item
	.accordion-header
	.accordion-button:focus {
	border: 0;
	box-shadow: none;
}

.faq-section
	.faq-wrap
	.faq-accordion
	.accordion-item
	.accordion-header
	.accordion-button:not(.collapsed) {
	background: #ffffff;
	box-shadow: none;
}

.faq-section
	.faq-wrap
	.faq-accordion
	.accordion-item
	.accordion-header
	.accordion-button:not(.collapsed)
	.faq-button {
	position: absolute;
	right: 0;
	height: 32px;
	width: 32px;
	color: #005de0;
	text-align: center;
	transform: rotate(-90deg);
	transition: all 0.3s linear;
}

.faq-section
	.faq-wrap
	.faq-accordion
	.accordion-item
	.accordion-header
	.accordion-button:not(.collapsed)
	.faq-button
	i {
	font-size: 15px;
}

.faq-section
	.faq-wrap
	.faq-accordion
	.accordion-item
	.accordion-header
	.accordion-button:hover {
	color: #005de0;
}

.faq-section .faq-wrap .faq-accordion .accordion-item .accordion-body {
	padding: 0 20px 20px 32px;
}

@media (min-width: 1024px) {
	.faq-section .faq-wrap .faq-accordion .accordion-item .accordion-body {
		padding-left: 50px;
		padding-right: 50px;
		padding-bottom: 50px;
	}
}

.faq-section .faq-wrap .faq-accordion .accordion-item .accordion-body p {
	font-size: 13px;
	line-height: 22px;
	color: #4c4d56;
}

@media (min-width: 1024px) {
	.faq-section .faq-wrap .faq-accordion .accordion-item .accordion-body p {
		font-size: 16px;
		line-height: 30px;
	}
}

.faq-section
	.faq-wrap
	.faq-accordion
	.accordion-item:hover
	.accordion-button
	.faq-button {
	transform: rotate(-90deg);
}

.whatsapp-icon {
            position: fixed;
            right: 50px;
            bottom: 50px;
            z-index: 999;
}
.whatsapp-icon img {
    max-width: 40px;
}

.blogtext h1 {
    margin-top:60px
}

.blogtext h2 {
    margin-top:50px
}

.blogtext h3 {
    margin-top:40px
}

.blogtext h4 {
    margin-top:30px
}


.whatsappicon {
    color: white;
    background-color: green;
    border-radius: 50%;
    padding: 10px;
}

.section-title2 {
    max-width: 690px;
    margin: 0 auto;
}

.testimonial-section-7 .testimonial-wrap .testimonial-slider-wrap {
    padding-top: 20px;
}

.section-title2 .title {
    font-size: 48px;
    line-height: 54px;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    color: #333333;
}

.swiper-container-pointer-events {
    touch-action: pan-y;
}

.testimonial-wrap .swiper-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.swiper-container-android .swiper-slide, .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.section-padding {
    padding-top: 95px;
    padding-bottom: 95px;
}
.slide {
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.testimonial-section-7 .testimonial-wrap .testimonial-slider-wrap .single-testimonial {
    background: #ffffff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.11);
    border-radius: 10px;
    margin-top: 50px;
    margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
}

.testimonial-section-7 .testimonial-wrap .testimonial-slider-wrap .single-testimonial .testimonial-content {
    padding: 50px 85px 60px 50px;
}

.testimonial-section-7 .testimonial-wrap .testimonial-slider-wrap .single-testimonial .testimonial-content .testimonial-quote {
    height: 75px;
    width: 75px;
    line-height: 75px;
    font-size: 45px;
    text-align: center;
    border-radius: 50%;
    color: #005de0;
    background: #ccdef7;
}

input::placeholder {
    color: #ddd !important;
    opacity: 1;
}



/* Tech Hero Section 5 - Responsive Fixes */
@media only screen and (max-width: 1199px) {
    .tech-hero-section-5 .hero-content .title {
        font-size: 48px;
        line-height: 62px;
    }
    .tech-hero-section-5 .hero-content p {
        font-size: 18px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 991px) {
    .tech-hero-section-5 {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .tech-hero-section-5 .hero-content {
        max-width: 100%;
        padding: 85px 30px 40px;
    }
    .tech-hero-section-5 .hero-content .title {
        font-size: 40px;
        line-height: 52px;
    }
    .tech-hero-section-5 .hero-content p {
        font-size: 16px;
        line-height: 26px;
    }
    .tech-hero-section-5 .hero-content .sub-title {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .tech-hero-section-5 {
        height: auto;
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .tech-hero-section-5 .hero-content {
        padding: 70px 20px 30px;
        text-align: center;
    }
    .tech-hero-section-5 .hero-content .title {
        font-size: 30px;
        line-height: 42px;
        word-break: break-word;
    }
    .tech-hero-section-5 .hero-content p {
        font-size: 15px;
        line-height: 24px;
        margin-top: 15px;
    }
    .tech-hero-section-5 .hero-content .sub-title {
        font-size: 12px;
        line-height: 22px;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 480px) {
    .tech-hero-section-5 .hero-content {
        padding: 60px 15px 20px;
    }
    .tech-hero-section-5 .hero-content .title {
        font-size: 24px;
        line-height: 34px;
    }
    .tech-hero-section-5 .hero-content p {
        font-size: 14px;
        line-height: 22px;
    }
    .tech-hero-section-5 .hero-content .sub-title {
        font-size: 11px;
        line-height: 20px;
    }
}




@media (max-width: 768px) {
    .whatsapp-icon {
        right: 15px;
        bottom: 15px;
        transform: scale(0.7);
        transform-origin: bottom right;
    }
}

@media (max-width: 480px) {
    .whatsapp-icon {
        right: 80px;
        bottom: 10px;
        transform: scale(0.55);
        transform-origin: bottom right;
    }
}
