
/*** Spinner Start ***/
/*** Spinner ***/
:root {
    --primary-color: #1d1d4d;
    --secondary-color: #f47424;
    --hover-color1 : rgb(214, 233, 251);
  }
body{
    font-family: "Lato", sans-serif !important;
    overflow-x: hidden;
}
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    color: var(--secondary-color) !important;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
/**** All types of titles design start ***/

h1{
    color: var(--primary-color);
    font-weight: 900;
    font-size: 45px;
    line-height: 72px;
}
h2{
    color: var(--primary-color);
    font-weight: 700;
    font-size: 36px;
    line-height: 50px;
}
h3{
    color: var(--primary-color);
    font-weight: 600;
    font-size: 25px;
    
}
h4{   
     color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
    line-height: 45px;
}
h5{
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}
.text-black{
    color: var(--primary-color);
}
.h-rank{
    font-size: 16px !important;
    font-weight: 300 !important;
    margin:0 ;
    padding: 0;
    line-height: normal !important;
}
.p-rank{
    font-size: 65px;
    margin-top: 0;
}

p{
    font-size: 16px;
    color: #413f3f ;
}
.section-gap {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media only screen and (max-width: 600px) {
 
h1{
    
    line-height: 60px;
}
.h-rank{
    font-size: 15px !important;
    
}
.p-rank{
    font-size: 45px;
    line-height: normal;
   
}
}

.secondary-color{
    color: var(--secondary-color);
}
/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}
@media only screen and (max-width: 600px) {
    .btn-lg-square {
        width: 32px;
        height: 32px;

    }
}

.btn-lg-square i{
    color: #fff;
}
.btn-lg-square:hover{
    box-shadow: inset 300px 0 0 0 var(--primary-color) !important;
    color: var(--secondary-color) !important;
   
}
.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--primary-color);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--primary-color);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--primary-color);
    color: white !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}
.footer-copyright{

    background-color: #01011b;

}
.bg-breadcrumb {
    background: linear-gradient(#0d6f82, #8d8d8d);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0px 0 0px 0;
}
.bg-breadcrumb li a{
    font-weight: bold;
}
.bg-breadcrumb li{
    color: var(--secondary-color) !important;
}
.breadcrumb-item::before {
   
    color: #ffffff !important;
    
}
.breadcrumb{
    background-color: #1d1d4da1;
    padding: 10px 30px;
    border-radius: 30px;
}
.breadcrumb-item{
    color: white !important;
}
.breadcrumb-item, .breadcrumb-item a{
    font-size: 18px;
}
/*** Website btn design start ***/

.arbyte-btn {
    color: var(--primary-color);
    font-size: 16px;
    border: 1px solid var(--secondary-color);
    border-radius: 0.5em;
    display: block;
    width: 12em;
    height: 50px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 3em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    margin: 1em;
    cursor: pointer;
}

.arbyte-btn span {
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.arbyte-btn:hover {
    color: #fff;
}

.arbyte-btn:hover span {
    transform: translateY(0) scale(2);
}

.arbyte-btn span:nth-child(1) {
    --n: 1;
}

.arbyte-btn span:nth-child(2) {
    --n: 2;
}

.arbyte-btn span:nth-child(3) {
    --n: 3;
}

.arbyte-btn span:nth-child(4) {
    --n: 4;
}

@media(max-width:768px){
    .arbyte-btn {
        font-size: 14px;
        width: 10em;
        height: 40px;
        letter-spacing: 0.1em;
        line-height: 40px;
        margin: 1em;
    }
}

/*** Website btn design end ***/

/* header btn design start */
.hero-btn {
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 180.52px;
    min-height: 45px;
    font-size: 1.2em;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 400;
    position: relative;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color : transparent;
    overflow: hidden;
}
@media(max-width:480px){
    .hero-btn {
        min-width: 140px;
        min-height: 40px;
        font-size: 1em;
       
    }
}

.hero-btn i {
    font-size: 1em;
    padding: 0 10px;
    transition: all 0.2s linear;
}

    .hero-btn:hover i {
        transform: translateX(13px);
    }

    .hero-btn::before, .hero-btn::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background-color: var(--primary-color);
    z-index: -1;
    transition: all 300ms ease-in;
    }

    .hero-btn:hover {
        color: #fff;
    }

    .hero-btn::before {
        opacity: 0.3;
    }

    .hero-btn::after {
        transition-delay: 0.2s;
    }

    .hero-btn:hover::before, .hero-btn:hover::after {
        top: 0;
    }
/* header btn design start */

/*** Section Title Start ***/
.section-title {
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--secondary-color) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--secondary-color) !important;
}

.sub-title {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    display: inline-block;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--secondary-color) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--secondary-color) !important;
}

.text-justify{
    text-align: justify;
}

/*** Navbar ***/

.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: larger;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #1e1d4e !important;
    font-size: larger;
    font-weight: 600;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-light .navbar-brand img {
    max-height: 70px;
    transition: .5s;
    width: 200px;
}

.sticky-top.navbar-light .navbar-brand img {
    margin: 10px 0;
    max-height: 65px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--primary-color);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--secondary-color);
        color: var(--primary-color);
    }
    .navbar-toggler:focus {
        text-decoration: none;
        outline: none;
        box-shadow: none;
    }
    .navbar-nav{
        
            text-align: center;
            margin-top: 10px;
        
    }
    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 60px;
    }
}
.navbar-wrapper {
    position: relative !important;
}
.sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light) !important;
        width: 100%;
        padding: 2em;
        left: 50%;
        top: 0%;
        transform: translateX(-50%);
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    
}
@media (min-width: 992px) {
    
    
    

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: 35px;
        left: 50%;
        background: var(--secondary-color);
        transition: .5s;
    }
    .navbar-light.sticky-top .navbar-nav .nav-link::before {
        
        bottom: 20px;
       
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}



/* call to action start */
.call-to-action{
background-color: #344754 !important;
}
.call-to-action-btn {
    padding: 10px;
    color: white;
    transition: all 100ms ease;
    background: #eb7310;
    font-size: 14px;
    font-size: 16px;
    border: 1px solid var(--secondary-color);
    border-radius: 0.5em;
    width: 12em;
    height: 50px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: sans-serif;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 3em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    margin: 1em;
    cursor: pointer;
}
.call-to-action-btn::before {
    content: "";
    display: block;
    background-image: url(../img/website_design_arrow.png);
    position: absolute;
    left: 0px;
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 70px;
    transform: translate(-60%);
    top: 0;
}
.call-to-action-btn:hover{
    background-color: var(--primary-color);
    border: none;
    color: white;
    border: 1px solid white;

}
.call-to-action p{
    font-weight: 600;
    font-size: 20px;
    line-height: 45px;
}
@media (max-width: 768px) {
    .call-to-action-btn::before {
        visibility: hidden;
    }
.call-to-action-btn-wrap{
    text-align: center;
    margin-top: 15px;
}
.call-to-action-img img {
    border: 1px solid #2b2b2b6e;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 4px rgb(37 143 157 / 41%);
}
}
@media (max-width: 576px) {
    .call-to-action-btn-wrap {
        margin-top: 0px;
    }
    .call-to-action-btn {
        padding: 8px;
        font-size: 14px;
        width: 12em;
        height: 50px;
        
    }
}
/* call to action end */



/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgb(0 22 82 / 95%), rgb(9 11 68 / 92%)), url(../img/testimonial-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #ff861a;
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--primary-color);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--primary-color);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--secondary-color) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 600px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }
    
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--secondary-color) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-rating{
    color: var(--secondary-color);
}
.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}
@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-next, .testimonial .testimonial-carousel .owl-nav .owl-prev{
        
        width: 32px;
        height: 32px;
        
    }
    
}

/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--secondary-color) !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--secondary-color) !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--secondary-color) !important;
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--secondary-color) !important;
}
.testimonial-header{
    color: var(--secondary-color);
}
/*** Testimonial End ***/


/*** Footer design start ***/

.vertical-logo{
    height: 120px;
}
@media only screen and (max-width: 1200px) {
    .vertical-logo {
        width: 300px;
    }
}
@media only screen and (max-width: 576px) {
    .vertical-logo {
        width: 250px;
    }
}

.footer{
    position: relative;
    background-color: var(--primary-color);
}
.footer-floating{
    width: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    position: absolute;
    top: -10%;
    background-color: white;
    border-radius: 1rem;
    padding: 20px 15px;
    box-shadow: 0 0 25px 4px rgba(19, 66, 135, .2);
}
.footer-floating a{
    flex: 1;
    border-radius: 0.5rem;
    margin: 0 0.5rem;
    border: 1px dotted var(--secondary-color);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    background: var(--white-color);
    color: var(--font-color);
    box-shadow: 0 0 15px 4px rgba(19, 66, 135, .1);
}
.footer-floating a:hover{
    box-shadow: 0 0 15px 4px rgba(19, 66, 135, .2);
}

.footer-contact-icon{
    height: 40px;
    width: 40px;
    min-width: 40px;
    line-height: 40px;
    margin-right: 10px;
    text-align: center;
    background-color: var(--secondary-color);
    display: block;
    border-radius: 50px;
    background-image: linear-gradient(90deg, #3F51B5 0px, var(--secondary-color) 51%, #2196F3);
    background-size: 200%;
}
.footer-left-icons{
    background-color: var(--secondary-color);
    border: none;
}
.footer-copyright{
    width: 100%;
}
.footer-copyright p{
    font-size: 15px;
    color: white;
}
.footer-floating-img{
    width: 30px;
}
.footer-floating-text{
    font-size: 18px;
    color: black;
    letter-spacing: 1px;
}
.footer-item a{
    transition: 0.5s;
}
.footer-item a:hover{
    letter-spacing: 2px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px){
    .footer-floating{
        width: 80%;
        gap: 0;
        top: -7%;
        background-color: white;
        padding: 15px 15px;
    }
    .footer-floating a{
       padding: 5px;
    
    }
    .footer-floating-img {
        width: 25px;
    }
    }
    @media only screen and (min-width: 769px) and (max-width: 991px){
        .footer-floating{
            width: 88%;
            gap: 0;
        }
        .footer-floating a {
            margin: 0 5px;
            padding: 7px 13px;}

        .footer-floating-text{
            font-size: 14px;
            letter-spacing: 0;
        }
    }
    @media only screen and (max-width: 768px) {
        .footer-floating {
            width: 80%;
            gap: 0;
            top: -4%;}

        .footer-floating-text{
           display: none;
        }
        .footer-floating a {
            border-radius: 0.3rem;
            margin: 0 0.3rem;
            padding:7px 10px;
            
        }
        .footer-copyright p {
            font-size: 13px;
           
        }
    }
/*** Footer design end ***/

/* whatsapp icon start */
.whatsapp-icon {
    position: fixed;
    right: 0px;
    top: 500px;
    visibility: hidden;
}
.whatsapp-icon.show{
    
    visibility: visible;
}
.whatsapp-icon  img{
    height: 40px;
    width: 40px;
}
@media only screen and (max-width: 600px) {
    .whatsapp-icon  img{
        height: 32px;
        width: 32px;
    }
}

/* whatsapp icon end */

/* global presence start */
.global-presence-single{
padding: 10px;
transition: all 0.4s ease;
}
.global-presence-single .global-presence-single-wrap{
background-color:#acaee32f;
padding: 20px;
}
.global-presence-single-wrap a{
    display: inline-block;
    transition: all 0.4s ease;
}
.global-presence-single:hover .global-presence-single-wrap{
    background-color: var(--hover-color1);
}
.global-presence-single:hover .global-presence-single-wrap button{
    background-color: var(--secondary-color);
    color: #fff;
    }

.gp-btn-div{
    background-color: transparent;
    height: 40px;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    border: 1px solid #80808029;
    
}
.gp-btn-div a{
    color:var(--primary-color)
}
.global-presence-single:hover .gp-btn-div{
background-color: var(--secondary-color);
color: #fff;

}

.global-presence-single:hover .gp-btn-div a{

color: #fff;
}
.global-presence-single:hover .gp-btn-div .fa-arrow-right{
    
        
            animation: s 1s infinite ease-in-out;
            
        
}
.global-presence-contact a{
    display: flex;
    align-items: center;
    color: var(--primary-color);
}
/* global presence end */

.navbar.navbar-expand-lg{
padding: 0;
}
.navbar.navbar-expand-lg.sticky-top{
padding: 6px 20px;
}
@media only screen and (max-width: 600px) {
    nav.navbar.navbar-expand-lg {
        padding: 10px 10px;
    }
    nav.navbar.navbar-expand-lg.sticky-top {
        padding: 0px 10px;
    }
}

.web-designing-services-single{
    transition: all 0.2 ease;
}
.web-designing-services-single:hover{
    background-color: rgb(214, 233, 251);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.industry-services-single-left {
    background: var(--secondary-color);
    border-radius: 100%;
    color: #f5f8fa;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    height: 60px;
    line-height: 60px;
    text-align: center;
    width: 60px;
}
.fa-whatsapp:before {
    font-size: 20px;
}
.alert-danger button {
    margin-right: 5px;
    border: none;
    border-radius: 10px 0px 0px 0px;
    position: absolute;
    top: -1px;
    left: -1px;
}
.alert-danger p{
    margin-left: 15px;
}
.form-floating textarea{
    color: #01011b;
}
.form-floating textarea:focus{
    color: #01011b;
}

@media only screen and (max-width: 600px) {
    .fs-1{
        font-size: 16px;
    }
    .sub-title {
        font-size: 15px; 
    }
    .section-title .sub-style::before {
        width: 80px;
        margin-left: -80px;
    }
    .sub-title::before {
        width: 80px;
        margin-right: -80px;
    }
}
