/* Smooth transition for carousel images */
.carousel-item {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease-in-out;
}

@media screen and (max-width:700px) {
    .carousel-item {        
        height: 50vh;
}
}

 /* Floating WhatsApp Icon */
 .whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 63%;
padding: 9px 18px;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9;
}

.whatsapp-icon:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.years-icon {
    position: absolute;
    top: 20px;
    right: 20px;            
    color: white;
    border-radius: 63%;
padding: 9px 18px;
    font-size: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    transition: all 0.3s ease;
    z-index: 9; 
    width: 15%;           
}

/* social media  */
.social-icons {
    display: inline-block;
    margin-right: 15px;
}

.social-icons a {
    text-decoration: none;
    color: #9f464a;
    font-size: 30px;
}

/* Add some hover effect */
.social-icons a:hover {
    color: #0077b5; /* Example hover color (Facebook blue) */
}

        
        /* Custom styles for the sidebar */
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            width: 250px;
            background-color: #fff0d5e0;
            padding-top: 20px;
            z-index: 1000;
            box-shadow: 0px 2px 8px #4f4949;
        }

        .menu-item {
            list-style: none;
            margin-bottom: 5px;
            border-bottom: 2px solid #e1c5934d;
        }

        .menu-item a {
            color: darkslategrey;
            font-weight: 600;
            text-decoration: none;
            display: block;
            padding: 8px;
            padding-left: 30px;
            font-size: 16px;
        }

        /* Multi-Column Submenu */
        .submenu {
            display: none;
            position: absolute;
            left: 250px;
            top: 25%;
            width: 900px;  /* 3 columns, each of 300px width */
            background-image: linear-gradient(45deg, #f3e4c8, #d5b8aee6);
            background-color: #8b6659e3;
            padding: 15px;
            border-radius: 5px;
            z-index: 999;
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .menu-item:hover > .submenu {
            display: block;
            opacity: 1;
            transform: translateX(0);
        }

        .submenu-group {
            /* width: 33.33%;  */
            display: inline-flex;
            flex-direction: column;
            padding: 10px;
        }

        .submenu-group a {
            color: #443232;
            text-decoration: none;
            margin-bottom: 0px;
        }

        /* Content Section */
        .content {
            margin-left: 270px;
            padding: 20px;
        }

        .mentitle {
            font-size: 1.5rem !important;
            font-weight: bold  !important;
            color: #a34153 !important;
        }

        .floating {  
            animation-name: floating;
            animation-duration: 3s;
            animation-iteration-count: infinite;
            animation-timing-function: ease-in-out;
            /* margin-left: 30px; */
            margin-top: 5px;
        }

        @keyframes floating {
            from { transform: translate(0,  -5px); }
            65%  { transform: translate(0, 5px); }
            to   { transform: translate(0, -5px); }    
        }

        .submenu-group .menus::before {
            content: '✔';
            /* position: absolute;
            font-size: 16px;
            color: rgb(15, 235, 29);
            top: 50%;*/
            left: 9px;
            padding-right:5px; 
            transform: translateY(-50%);
        }


/* Caption styling */
.carousel-caption {
    position: absolute;
    top: 46%;
    right: -55%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: right;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
    background: #5a555559;
    padding-right: 3px;
}

.carousel-caption h1 {
    font-size: 60px;
    font-weight: bold;
    text-transform: capitalize;
    animation: fadeInText 1.5s ease-in-out forwards;
}

.carousel-caption p {
    font-size: 35px;
    font-weight:500;
    animation: fadeInText 2s ease-in-out forwards;
    text-transform: capitalize;
}

/* Slide in fade effect for caption */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional smooth transition effect on carousel control buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: background-color 0.3s ease-in-out;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Content styling */
.carousel-item img {
    transition: opacity 1s ease-in-out;
}

/* Hover transition effect for carousel image */
.carousel-item:hover img {
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 30px;
    }
    .carousel-caption p {
        font-size: 16px;
    }
}

    /* stat start  */
    .display-4 {
        font-weight: bold;
        font-size: 5rem !important;
        color: #301b4c;
        /* font-family: cursive; */
    }
    .nametag h4 {
        color: #b31414 !important;
        font-weight: bold;
        
    }

    /* color option start  */
    .color-picker {
        display: flex;
        gap: 10px;
        }
        .color-square {
            width: 50px;
            height: 50px;
            border: 2px solid #ccc;
            cursor: pointer;
        }
        .animated-carousel {
            display: inline-flex;
            list-style-type: none;
            padding: 0;
            margin: 0;
            animation: moveSquares 4s ease-in-out infinite;
        }

        .color-square {
            width: 50px;
            height: 50px;
            margin: 5px;
            transition: transform 0.5s ease;
        }

        @keyframes moveSquares {
            0% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(20px); /* Move to the right */
            }
            100% {
                transform: translateX(0); /* Move back to the starting position */
            }
        }

        /* mobile responsive menu  */
        .sidenav {
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 9;
            top: 0;
            left: 0;
            background-color: #000000ed;
            overflow-x: hidden;
            transition: 0.5s;
            padding-top: 60px;
          }
          
          .sidenav a {
            padding: 8px 8px 8px 32px;
            text-decoration: none;
            font-size: 25px;
            color: #818181;
            display: block;
            transition: 0.3s;
          }
          
          .sidenav a:hover {
            color: #f1f1f1;
          }
          
          .sidenav .closebtn {
            position: absolute;
            top: 0;
            right: 25px;
            font-size: 36px;
            margin-left: 50px;
          }
          
          @media screen and (max-height: 450px) {
            .sidenav {padding-top: 15px;}
            .sidenav a {font-size: 18px;}
          }

          .burgermenu {
            float: right;
            margin-top: 30%;
            margin-right: 15%;
            background: #ebd0a0;
            padding: 3px 8px;
          }

          /* button  */
          .slatebutton {
            float: right;           
            margin-right: 2%;
            margin-top: 2%;
            /* background: beige; */
            background: #D0A089;
            border: 1px solid #9b9b79;
            padding: 0.5% 2%;
            border-radius: 15px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .slatebutton:hover {
            transform: scale(1.1);
        }

        .sidebarcontact {
            margin-left: 30px;
        }

        .sidebarcontact a {
            text-decoration: none;
            color: rgb(44, 42, 42);
            line-height: 33px;
        }

        .sidebarcontact .fa {
            color: rgb(129, 68, 25);
        }

        .colbox {
            width:30px;
            height:30px;
            display: inline-block;
        }

        .bstyle img {
            border: 2px solid #f3ede4;
    padding: 0px;
        }

        /* showcase styles  */

        .showcase1 {
            background-image: url(../images/realtime/lime-gray.webp);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .showcase2 {
            background-image: url(../images/realtime/realtime1.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        .showcase3 {
            background-image: url(../images/realtime/realtime2.jpeg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .showcase4 {
            background-image: url(../images/realtime/realtime3.jpeg);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        
        .showcaseinner {
            width: 30%;
            position: absolute; 
            bottom: 15px;
            right: 15px;
        }

        .whatbtn {
            background: #107c18;
            color: white;
            box-shadow: 2px 3px #80808063;
        }

        .whatbtn:hover {
            background: #076a0f;
            color: white;
        }
         

        .enqbtn {
            background: #10457c;
            color: white;
            box-shadow: 2px 3px #80808063;
        }

        .enqbtn:hover {
            background: #083666;
            color: white;
        }

        .avsize span {
            font-size: 1rem;
            line-height: 45px;  
            border: 1px solid #5e5656;
            padding:5%;
            border-radius: 20px;
            color: #5e5656;         
        }
        .avsize div {
            padding:0px;
        }
        .avsize span:hover {
                
            border: 1px solid  #c02727; 
            color: #c02727;      
        }
        .navsize {
            color: rgb(70, 68, 68) !important;
        }

        .spec h6 {
            margin-bottom:3%;
            margin-top: 3%;
        }
        .avsize img {
            margin-bottom:2% !important;
        }

        .ocol div {
            padding:4px !important
        }

        .ocol center {
            font-size: 0.8rem;
        }

        .ocol center img {
            margin-bottom: 10%;
        }
        
        
         /* wall showcase images  */
        .wall-show1 {
            background-image: url(../images/realtime/wall1.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .wall-show2 {
            background-image: url(../images/realtime/wall2.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .wall-show3 {
            background-image: url(../images/realtime/wall3.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .wall-show4 {
            background-image: url(../images/realtime/wall4.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .wall-show5 {
            background-image: url(../images/realtime/wall5.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .wall-show6 {
            background-image: url(../images/realtime/wall6.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .wall-show7 {
            background-image: url(../images/realtime/wall7.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        .wall-show8 {
            background-image: url(../images/realtime/wall8.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        .wall-show9 {
            background-image: url(../images/realtime/wall9.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        .wall-show10 {
            background-image: url(../images/realtime/wall10.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        .wall-show11 {
            background-image: url(../images/realtime/wall11.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }

         /* murals showcase images  */
        .murals-show1 {
            background-image: url(../images/realtime/murals1.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .murals-show2 {
            background-image: url(../images/realtime/murals2.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .murals-show3 {
            background-image: url(../images/realtime/murals3.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .murals-show4 {
            background-image: url(../images/realtime/murals4.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .murals-show5 {
            background-image: url(../images/realtime/murals5.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .murals-show6 {
            background-image: url(../images/realtime/murals6.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .murals-show7 {
            background-image: url(../images/realtime/murals7.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .murals-show8 {
            background-image: url(../images/realtime/murals8.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .murals-show9 {
            background-image: url(../images/realtime/murals9.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .murals-show10 {
            background-image: url(../images/realtime/murals10.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .murals-show11 {
            background-image: url(../images/realtime/murals11.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .murals-show12 {
            background-image: url(../images/realtime/mural12.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .murals-show13 {
            background-image: url(../images/realtime/mural13.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        
         /* floor showcase images  */
        .flo-show1 {
            background-image: url(../images/realtime/floor1.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        .flo-show2 {
            background-image: url(../images/realtime/floor2.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        .flo-show3 {
            background-image: url(../images/realtime/floor3.JPG);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        .flo-show4 {
            background-image: url(../images/realtime/floor4.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        .flo-show5 {
            background-image: url(../images/realtime/floor5.JPG);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        .flo-show6 {
            background-image: url(../images/realtime/floor6.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
         
           /* pebbles showcase images  */
        .peb-show1 {
            background-image: url(../images/realtime/crazypeb1.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        .peb-show2 {
            background-image: url(../images/realtime/crazypeb2c.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        .peb-show3 {
            background-image: url(../images/realtime/crazypeb3.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        .peb-show4 {
            background-image: url(../images/realtime/crazypeb4.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        .peb-show5 {
            background-image: url(../images/realtime/crazypeb5.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }

        .peb-show6 {
            background-image: url(../images/realtime/crazypeb6.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        /* kitchens showcase images  */
        .kitchens-show1 {
            background-image: url(../images/realtime/kitchens1.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .kitchens-show2 {
            background-image: url(../images/realtime/kitchens2.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        } 
         .kitchens-show3 {
            background-image: url(../images/realtime/kitchens3.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        } 
         .kitchens-show4 {
            background-image: url(../images/realtime/kitchens4.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        } 
        .kitchens-show5 {
            background-image: url(../images/realtime/kitchens5.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        } 
        .kitchens-show6{
            background-image: url(../images/realtime/kitchens6.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        } 
        
  /* living room showcase images  */
  
  .living-show1 {
            background-image: url(../images/realtime/living-1.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .living-show2 {
            background-image: url(../images/realtime/living-2.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .living-show3 {
            background-image: url(../images/realtime/living-3.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        
        .living-show5 {
            background-image: url(../images/realtime/living-5.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .living-show6 {
            background-image: url(../images/realtime/living-6.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .living-show7 {
            background-image: url(../images/realtime/living-7.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .living-show8 {
            background-image: url(../images/realtime/living-8.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .living-show9 {
            background-image: url(../images/realtime/living-9.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
     /* cobbles showcase images  */    
        
        .cobbles-show1 {
            background-image: url(../images/realtime/cobbles-1.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
         .cobbles-show2 {
            background-image: url(../images/realtime/cobbles-2.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
         .cobbles-show3 {
            background-image: url(../images/realtime/cobbles-3.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
         .cobbles-show4 {
            background-image: url(../images/realtime/cobbles-4.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
         .cobbles-show5 {
            background-image: url(../images/realtime/cobbles-5.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
         .cobbles-show6 {
            background-image: url(../images/realtime/cobbles-6.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        
   /* sheets showcase images  */
        .sheets-show1 {
            background-image: url(../images/realtime/sheets1.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .sheets-show2 {
            background-image: url(../images/realtime/sheets2.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
         .sheets-show3 {
            background-image: url(../images/realtime/sheets3.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        .sheets-show4 {
            background-image: url(../images/realtime/sheets4.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        /* .sheets-show5 {*/
        /*    background-image: url(../images/realtime/sheets5.jpg);*/
        /*    background-size: cover;*/
        /*    position: relative;*/
        /*    height: 500px;*/
        /*}*/
         
        /* .sheets-show6 {*/
        /*    background-image: url(../images/realtime/sheets6.jpg);*/
        /*    background-size: cover;*/
        /*    position: relative;*/
        /*    height: 500px;*/
        /*}*/
        /*.sheets-show7 {*/
        /*    background-image: url(../images/realtime/sheets7.jpg);*/
        /*    background-size: cover;*/
        /*    position: relative;*/
        /*    height: 500px;*/
        /*}*/
         .sheets-show8 {
            background-image: url(../images/realtime/sheets8.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        
        .sheets-show9{
            background-image: url(../images/realtime/sheets9.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        
        .sheets-show10 {
            background-image: url(../images/realtime/sheets10.jpg);
            background-size: cover;
            position: relative;
            height: 500px;
        }
        
 
 /*-------- CONTACT SUPPORT SECTION ------------ */
.contact-page-support-section .contact-box {
    padding: 27px 29px 22px 29px;
    background: #ffffff;
    box-shadow: 0px 0px 100px 0px rgba(226,228,231,1);
    border-radius: 20px;
    margin-bottom: 20px;
}
.contact-page-support-section .contact-box figure {
    padding-top: 3px;
}
.contact-page-support-section .counter-box {
    /* right: -60px; */
    right: -32px;
    bottom: 60px;
}
.contact-page-support-section .contact-box a:hover {
    color: var(--e-global-color-accent);
}
.contact-page-support-section .about-service-section-text p {
    margin-bottom: 32px;
}
/*-------- CONTACT FORM SECTION ------------ */
.contact-form-section .contact-form-shape-img-1 {
    top: -50px;
    left: -299px;
}
.contact-form-section .customer-base-section-text {
    padding-top: 0px;
    margin-top: -10px;
}
.contact-form-section .contact-form .form-control {
    background: #ffffff;
    box-shadow: 0px 0px 40px 0px rgba(226,228,231,1);
    border-radius: 20px;
    height: 70px;
    padding: 0 30px;
    border: none;
    font-size: 16px;
    line-height: 26px;
    color: #606480;
}
.contact-form-section .contact-form .textarea {
    height: 150px;
    padding-top: 23px;
    padding-bottom: 23px;
}
.contact-form-section .contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form-section .contact-form .submitform-btn {
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    color: #ffffff;
    background: #f43334;
    padding: 20px;
    width: 100%;
    box-shadow: none;
    border: 1px solid #f43334;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
}
.contact-form-section .contact-form .submitform-btn:hover {
    border: 1px solid #f43334;
    color: #f43334;
    background: transparent;
}
.contact-form-section .customer-base-section-text p {
    margin-bottom: 35px;
}
.hover-effect:hover {
    transform: translateY(-5px);
}
.hover-effect {
    transition: all 0.3s ease-in-out;
}
.text-size-16 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #606480;
}
.text-decoration-none {
    text-decoration: none!important;
}
.d-inline-block {
    display: inline-block!important;
}




 
 .about-service-section .counter-box {
    width: 280px;
    padding: 25px 29px 18px 44px;
    background: #fff;
    box-shadow: 0px 0px 100px 0px rgb(226 228 231);
    border-radius: 10px;
    
}
.about-service-section .counter-box figure {
    margin-right: 22px;
}
.about-service-section .about-service-section-main-img img {
    box-shadow: 0px 0px 100px 0px rgb(243 245 247);
    border-radius: 20px;
}
.about-service-section .counter-box .number, .about-service-section .counter-box .suffix {
    color: #221c35;
    font-size: 40px;
    line-height: 38px;
    font-weight: 400;
    font-family: 'Abril Fatface', cursive;
}
.about-service-section .counter-box .customer {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #606480;
}
.about-service-section-text .about-service-section-shape-img-1 {
   
    top: -64px;
    right: -8px;
}
  .about-service-section .about-service-section-shape-img-2 {
        top: -74px;
        
        left: -45px; 
    }
 
.sub-banner-section-outer {
    background-image: url(../images/sub-banner-background-img.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.customer-base-section .customer-base-section-shape-img-2 {
    top: -74px;
    right: -90px;
}

.about-service-section {
    padding: 120px 0px;
}
.map-section {
    padding-bottom: 0 !important;
}
.review-section {
    padding: 120px 0 110px 0;
}
.float-left {
    float: left!important;
}
.font-weight-bold {
    font-weight: 700!important;
    font-size: 21px;
}

.customer-base-section h2 {
    line-height: 50px;
}


.about-service-section h2 {
    line-height: 50px;
}


 @media screen and (max-width: 575px){
    .customer-base-section h2 {
    line-height: 30px;
    }
   .about-service-section h2 {
    font-size: 24px;
    line-height: 30px;
    }
   .about-service-section .about-service-section-shape-img-2 {
        top: -10px !important;
        left: 0px !important;
    }
    .about-service-section .counter-box {
    right: -5px;
    bottom: 25px;
    width: 175px;
    }
    .about-service-section .counter-box figure {
    width: 40px !important;
    }
    .about-service-section .counter-box .number, .about-service-section .counter-box .suffix {
    font-size: 20px !important;
    line-height: 20px !important;
    }
    .about-service-section .about-service-section-main-img {
    width: 90%;
    }
    
 }
@media screen and (max-width: 767px){
  .about-service-section .about-service-section-shape-img-2 {
    top: -22px;
    width: 25%;
    left: 22px;
   }
   .about-service-section {
    padding: 60px 0px !important;
   }
   .about-service-section .counter-box {
    right: 10px;
    }
 .about-service-section h2 {
    padding-right: 0;
    font-size: 26px;
    }
   .about-service-section-text .about-service-section-shape-img-1, .about-service-section .about-service-section-shape-img-3 {
        display: none;
    }
    .about-service-section .about-service-section-main-img {
    width: 80%;
    margin: 0 auto;
    }
   
    .contact-form-section .contact-form-shape-img-1 {
        display: none;
    }
    .about-service-section .about-service-section-img-content {
    margin-bottom: 30px;
   }
   .contact-form-section .customer-base-section-img-content {
    margin-bottom: 30px;
   }
 }
 @media (max-width: 768px){ 
    
    .mp{height :250px !important}
    }
    
    
@media (min-width: 768px){ 
    .text-md-left {
        text-align: left!important;
    }
   
    }
  @media screen and (max-width: 991px){
    .about-service-section-text .about-service-section-shape-img-1 {
        top: -45px;
    }
    .about-service-section h2 {
    line-height: 35px;
    padding-right: 0;
    font-size: 29px;
    }
   .customer-base-section h2 {
     line-height: 35px;
    }
    .about-service-section .about-service-section-shape-img-2 {
    top: -22px;
   }
  .about-service-section .counter-box {
    width: 180px;
    padding: 20px 15px 15px 21px;
    right: -20px;
    bottom: 35px;
   }
   
  .about-service-section {
    padding: 70px 0px;
   }
   .about-service-section .counter-box figure {
    margin-right: 10px;
    width: 45px;
   }
   .about-service-section .counter-box .number, .about-service-section .counter-box .suffix {
    font-size: 24px;
    line-height: 24px;
   }
   .about-service-section .counter-box .customer {
    font-size: 14px;
    line-height: 24px;
    }
   
}
    
    
@media screen and (max-width: 1199px){
    .about-service-section-text .about-service-section-shape-img-1 {
        top: -60px;
        right: -20px;
        width: 75%;
    }
    .customer-base-section h2 {
    line-height: 40px;
    }
    .about-service-section h2 {
    line-height: 40px;
    padding-right: 15px;
    }
    .about-service-section {
     padding: 100px 0px;
     }
    .about-service-section .counter-box {
    width: 270px;
    padding: 25px 29px 18px 30px;
    right: -20px;
    }   
    .about-service-section .about-service-section-shape-img-2 {
    top: -32px;
    left: -22px;
    width: 35%;
    }
 }
@media only screen and (max-width: 1730px){ 
.about-service-section-text .about-service-section-shape-img-1 {
    top: -72px !important;
    right: -30px !important;

}
.contact-form-section .contact-form-shape-img-1 {
    top: -80px;
    left: 0px;
}
}

 About---
.interaction-section-listing-outer .variation-1::before {
    background-image: url(../images/interaction-section-listing-img-2.png);
}
.interaction-section-listing-inner::before {
    content: "";
    background-image: url(../images/interaction-section-listing-img-1.png);
    background-repeat: no-repeat;
    height: 54px;
    width: 54px;
    z-index: 5;
    position: absolute;
    left: 0;
    top: 4px;
}

.interaction-section-listing-outer {
    margin-bottom: 56px;
}
.interaction-section-listing-inner {
    padding-left: 79px;
}
.interaction-section-listing-inner h4 {
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 26px;
}
.text-size-18 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #606480;
}
@media only screen and (max-width: 1730px){
.interaction-section-text .interaction-section-shape-img-2 {
    top: -75px;
    right: -30px;
}
.about-section {
    position: relative;
    padding: 70px 0px 70px;
}
}
.interaction-section-text .interaction-section-shape-img-2 {
    top: -56px;
    right: -30px;
}
.interaction-section h2 {
    line-height: 50px;
}
@media (min-width: 992px){
.mb-lg-4, .my-lg-4 {
    margin-bottom: 1.5rem!important;
}
}
@media (min-width: 576px){
.mb-sm-3, .my-sm-3 {
    margin-bottom: 1rem!important;
}
}
.interaction-section-text .main-text {
    margin-bottom: 49px;
}
.interaction-section-img-content .interaction-section-shape-img-3 {
    bottom: -90px;
    right: -152px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.interaction-section-img-content .interaction-section-shape-img-1 {
    top: -74px;
    left: -45px;
}
.interaction-section-img-content .interaction-section-shape-img-1 img {
    z-index: 1;
        animation: shapeMove 3s linear 0s infinite;
}



@media screen and (max-width: 1199px){
.interaction-section-img-content .interaction-section-shape-img-3 img {
    width: 80%;
}
.interaction-section-img-content .interaction-section-shape-img-3 {
    bottom: -126px;
    right: -152px;
}
.interaction-section-text {
    padding-top: 0px;
}
.interaction-section-img-content .interaction-section-shape-img-1 {
    top: -30px;
    left: -8px;
}

}

@media only screen and (max-width: 1730px){
.interaction-section-text .interaction-section-shape-img-2 {
    top: -75px;
    right: -30px;
}
}



@media screen and (max-width: 575px){
	.interaction-section-img-content .interaction-section-shape-img-1 {
    width: 45%;
}
.interaction-section-listing-inner::before {
    left: 43%;
}
.interaction-section-listing-inner p {
    padding: 0 15px;
}
.text-size-18 {
    font-size: 14px;
    line-height: 22px;
}
.about-section {
    position: relative;
    padding: 10px 0px 10px;
}
.about-section .image-column .inner-column {
   
    padding-left: 67px !important;
}
}
@media screen and (max-width: 767px){
	.interaction-section-img-content .interaction-section-shape-img-1 {
    top: -25px;
    left: 20px;
}
.interaction-section-listing-inner::before {
    left: 45%;
    background-size: 45px;
}
.h4, h4 {
    font-size: 18px;
}
.interaction-section-listing-inner {
    padding-left: 0px;
    padding-top: 55px;
}
.interaction-section-listing-inner p {
    padding: 0 35px;
}
.about-section {
    position: relative;
    padding: 30px 0px 10px;
}
}
@media screen and (max-width: 991px){
.interaction-section-listing-inner::before {
    top: 0;
    background-size: 40px;
}
.h4, h4 {
    font-size: 18px;
}
.interaction-section-listing-inner {
    padding-left: 55px;
}
.interaction-section-listing-outer {
    margin-bottom: 30px;
}
.interaction-section-text .interaction-section-shape-img-2 img, .interaction-section-img-content .interaction-section-shape-img-3 img {
    display: none;
}
}
.position-relative {
    position: relative!important;
}
.about-section .image-column .inner-column {
    position: relative;
    padding-left: 120px;
}
.about-section .image-column .award-image {
    position: absolute;
    left: 0px;
    bottom: 40px;
    z-index: 1;
}
.about-section .image-column .image {
    position: relative;
}
.about-section .image-column .image img {
    position: relative;
    width: 100%;
    display: block;
}

@media only screen and (max-width: 479px){
.btn-style-one i, .about-section .image-column .award-image, .call-to-action-section-two .content-boxed h1 br, .video-gallery .overlay-box .overlay-inner .video-box {
    display: none;
}
}



.contact6 .contact9-content-area {
  border-radius: 8px;
  background: #FFF;
  padding: 48px;
  margin-top: 60px;
}
.contact6 .contact9-content-area .form-area h3 {
  color: #0F0A07;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
}
.contact6 .contact9-content-area .form-area p {
  color: #5F5F5F;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
}
.contact6 .contact9-content-area .form-area .single-input {
  margin-top: 20px;
}
.contact6 .contact9-content-area .form-area .single-input input, .contact6 .contact9-content-area .form-area .single-input textarea {
  width: 100%;
  background-color: #F1F1F1;
  border-radius: 4px;
  padding: 16px;
  border: none;
}
.contact6 .contact9-content-area .form-area .single-input input::-moz-placeholder, .contact6 .contact9-content-area .form-area .single-input textarea::-moz-placeholder {
  color: var(--Text-Color, #858585);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
}
.contact6 .contact9-content-area .form-area .single-input input::placeholder, .contact6 .contact9-content-area .form-area .single-input textarea::placeholder {
  color: var(--Text-Color, #858585);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 100% */
}
.contact6 .contact9-content-area .form-area .single-input input:focus, .contact6 .contact9-content-area .form-area .single-input textarea:focus {
  outline: none;
}
.contact6 .contact9-content-area .form-area .button-area {
  text-align: end;
  margin-top: 24px;
}
.contact6 .contact9-content-area .contact9-box {
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.09);
  padding: 24px;
  display: flex;
  align-items: center;
  margin-left: 40px;
  transition: all 0.4s;
  margin-bottom: 20px;
}
.contact6 .contact9-content-area .contact9-box .heading {
  padding-left: 20px;
}
.contact6 .contact9-content-area .contact9-box .heading h5 {
  color: var(--Text-Color, #181818);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 100% */
  transition: all 0.4s;
}
.contact6 .contact9-content-area .contact9-box .heading a {
  display: inline-block;
  color: var(--Paragraph-Color, #646375);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 162.5% */
  padding-top: 10px;
  transition: all 0.4s;
}
.contact6 .contact9-content-area .contact9-box .icon {
  background-color: #325D28;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.4s;
}
.contact6 .contact9-content-area .contact9-box .icon img {
  transition: all 0.4s;
  filter: brightness(40);
}
.contact6 .contact9-content-area .contact9-box:hover {
  transform: translateY(-10px);
  transition: all 0.4s;
  background-color: #325D28;
}
.contact6 .contact9-content-area .contact9-box:hover .icon {
  background-color: #fff;
  transition: all 0.4s;
}
.contact6 .contact9-content-area .contact9-box:hover .icon img {
  filter: none;
  transition: all 0.4s;
  transform: rotateY(180deg);
}
.contact6 .contact9-content-area .contact9-box:hover .heading h5 {
  color: #fff;
  transition: all 0.4s;
}
.contact6 .contact9-content-area .contact9-box:hover .heading a {
  color: rgba(255, 255, 255, 0.7529411765);
  transition: all 0.4s;
}

.service10 .service-box {
  margin-top: 30px;
  background-color: #f2f8fc;
  border-radius: 8px;
  padding: 28px 36px;
  text-align: center;
  transition: all 0.4s;
      height: 100%;
}
.service10 .service-box .icon {
  background-color: #F7F5FB;
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  margin: auto;
}
.service10 .service-box .heading h4 a {
  display: inline-block;
  color: #f43334;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  text-transform: uppercase;
  transition: all 0.4s;
  padding-top: 24px;
}
.service10 .service-box .heading p {
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  padding: 16px 0px 22px 0px;
  transition: all 0.4s;
}
.service10 .service-box .heading .learn {
  display: inline-block;
  color: #081120;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 100% */
  text-transform: uppercase;
  transition: all 0.4s;
}
.service10 .service-box:hover {
  transition: all 0.4s;
  transform: translateY(-10px);
  background-color: #f32353;
}
.service10 .service-box:hover h4 a {
  color: #fff;
  transition: all 0.4s;
}
.service10 .service-box:hover p {
  color: rgba(255, 255, 255, 0.7803921569);
  transition: all 0.4s;
}
.service10 .service-box:hover a.learn {
  color: #fff;
  transition: all 0.4s;
}

a {
  
    text-decoration: none;
}
.sp {
    padding: 40px 0px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  position: relative;
  padding: 0 0 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-one {
    padding: 0 0 10px;
  }
  .sp {
    padding: 0px 0px;
}
}
.about-one__image {
  position: relative;
}
@media (min-width: 1300px) {
  .about-one__image {
    margin-left: -85px;
  }
}
@media (min-width: 1400px) {
  .about-one__image {
    margin-left: -105px;
  }
}
.about-one__image-one {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.about-one__image-one img {
  max-width: 100%;
  height: auto;
  border-radius: 0 50% 50% 50%;
}
.about-one__image-one img.about-one__image-one__shape {
  border-radius: 0;
  position: absolute;
  right: 40px;
  top: 37px;
  z-index: -1;
  animation: shapeMove 3s linear 0s infinite;
}
.about-one__image-icon {
  width: 80px;
  height: 80px;
  background-color: #f32353;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.about-one__content {
  position: relative;
}
@media (max-width: 1199px) {
  .about-one__content {
    margin: 50px 0 0;
  }
}
.about-one__content .sec-title {
  /*padding-bottom: 31px;*/
}
.about-one__content__text {
  font-size: 16px;
 /* margin: 0 0 29px;*/
 text-align: justify;
}
.about-one__content__list {
  margin: 0 0 13px;
  padding: 0;
}
.about-one__content__list li {
  list-style: none;
  display: flex;
 /* align-items: center;*/
  font-size: 18px;
 /* line-height: 40px;*/
  font-weight: 700;
  color: #0b182a;
  /*letter-spacing: -0.36px;*/
}
.about-one__content__list li span {
  display: inline-block;
  margin-right: 9px;
  color: #ef1822;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  margin-top: 4px;
}
.about-one__content__quote {
  position: relative;
  background-color: #fff;
  padding: 20px 30px 27px;
  color:  #0b182a;
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  font-style: italic;
  box-shadow: 15px 29px 87px 0px rgba(0, 0, 0, 0.07);
  margin-left: -290px;
  margin-bottom: 30px;
  z-index: 11;
}
@media (max-width: 1199px) {
  .about-one__content__quote {
    margin-left: 0px;
  }
}
.about-one__content__quote::before {
  position: absolute;
  left: 10px;
  top: 0;
  width: 7px;
  content: "";
  height: 84%;
  background-color: #ef1822;
}
.about-one__content__quote::after {
  position: absolute;
  right: 0;
  bottom: -30px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 30px 0;
  border-color: transparent var(--hiredots-white, #fff) transparent transparent;
}
.about-one__content__author {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 79px;
  justify-content: flex-end;
  margin-right: 29px;
  text-align: right;
}
@media (max-width: 767px) {
  .about-one__content__author {
    margin: 20px 0 0;
  }
}
.about-one__content__author__thumb {
  width: 79px;
  height: 79px;
  border-radius: 50%;
  border: 2px solid var(--hiredots-base, #00cde5);
  padding: 4px;
  overflow: hidden;
}
.about-one__content__author__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.about-one__content__author__meta {
  display: block;
  position: relative;
  margin: 0;
  line-height: 1;
  padding-left: 20px;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.about-one__content__author__meta img {
  display: block;
  margin-bottom: -12px;
}
.about-one__award {
  position: relative;
  background-color:#f0f3f9;
  /*padding: 29px 40px 25px 20px;*/
      padding: 10px;
  text-align: right;
  max-width: 247px;
  margin: 20px 0 20px auto;
  border: 5px solid #fff;
  outline: 1px dashed #1c1b1b;
}
.about-one__award__content {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  line-height: 1;
}
.about-one__award__icon {
  font-size: 79px;
  line-height: 1;
  color:#ef1822;
}
.about-one__award__count {
  display: flex;
  font-size: 48px;
  color: #0b182a;
  font-weight: 800;
  letter-spacing: -1.9px;
  line-height: 1;
  margin: 0 0 0 14px;
  position: relative;
  top: 5px;
}
.about-one__award__text {
  margin: 4px 0 0;
  font-size: 20px;
      color: #f32353;
}
.about-one .hiredots-btn {
  margin-left: auto;
  max-width: 213px;
  display: flex;
}

.about-two {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .about-two {
    padding: 80px 0;
  }
}
.about-two__image {
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .about-two__image {
    max-width: 601px;
  }
}
.about-two__image__shape {
  position: absolute;
  left: -30px;
  top: 80px;
  z-index: -1;
  opacity: 0.3;
  max-width: 100%;
  animation: shapeMove 3s linear 0s infinite;
}
@media (min-width: 1300px) {
  .about-two__image__shape {
    left: -70px;
  }
}
@media (max-width: 1199px) {
  .about-two__image__shape {
    display: none;
  }
}
.about-two__image-one {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.about-two__image-one img {
  max-width: 100%;
  height: auto;
}
.about-two__image-two {
  position: relative;
  float: right;
  margin: -359px -30px 0 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .about-two__image-two {
    margin: 30px 0 0 0;
    text-align: left;
  }
}
.about-two__image-two img {
  max-width: 100%;
  height: auto;
}
.about-two__image-two::after {
  position: absolute;
  left: -95px;
  bottom: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 80px 95px;
  border-color: transparent transparent var(--hiredots-base, #00cde5) transparent;
}
@media (max-width: 767px) {
  .about-two__image-two::after {
    display: none;
  }
}
.about-two__image-icon {
  width: 80px;
  height: 80px;
  background-color: var(--hiredots-base, #00cde5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.about-two__content {
  position: relative;
  padding-left: 0;
}
@media (min-width: 1200px) {
  .about-two__content {
    padding-left: 69px;
  }
}
@media (max-width: 1199px) {
  .about-two__content {
    padding-top: 50px;
  }
}
.about-two__content .sec-title {
  padding-bottom: 22px;
}
.about-two__content__text {
  font-size: 15px;
  margin: 0 0 32px;
}
.about-two__content__info {
  background-color: #fff;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
.about-two__content__list {
  margin: 0;
  padding: 18px 30px 0;
  list-style: none;
  clear: both;
}
.about-two__content__list li {
  width: 50%;
  float: left;
  list-style: none;
  position: relative;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: -0.72px;
  color: #0b182a;
  font-weight: 700;
}
@media (max-width: 767px) {
  .about-two__content__list li {
    float: none;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .about-two__content__list li:nth-child(even), .about-two__content__list li:nth-child(2), .about-two__content__list li:nth-child(4), .about-two__content__list li:nth-child(6), .about-two__content__list li:nth-child(8) {
    padding-left: 35px;
  }
}
.about-two__content__list li span {
  font-size: 16px;
  display: inline-block;
  margin-right: 6px;
  line-height: inherit;
  color: var(--hiredots-base, #00cde5);
}
.about-two__content__title {
  position: relative;
  background-color: var(--hiredots-primary, #0b2f81);
  font-size: 16px;
  color: var(--hiredots-white, #fff);
  font-weight: 600;
  margin: 23px 0 0;
  padding: 12.5px 30px;
  display: flex;
  align-items: center;
  width: 100%;
}
.about-two__content__title span {
  font-size: 22px;
  line-height: inherit;
  margin-right: 18px;
}
.about-two__content__author-wrapper {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about-two__content__author-wrapper {
    display: block;
    float: left;
  }
  .about-two__content__author-wrapper .about-one__content__author {
    margin: 0 0 20px;
  }
}

.about-three {
  position: relative;
  padding: 120px 0 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-three {
    padding: 80px 0 0;
  }
}
.about-three__border {
  border-bottom: 1px solid var(--hiredots-border-color-2, #ced5dd);
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .about-three__border {
    padding-bottom: 80px;
  }
}
.about-three__image {
  position: relative;
  margin-right: -27px;
}
@media (min-width: 1280px) {
  .about-three__image {
    margin-left: -78px;
  }
}
@media (max-width: 991px) {
  .about-three__image {
    margin-right: 0;
  }
}
.about-three__image > img {
  max-width: 100%;
}
.about-three__content {
  position: relative;
  padding: 0 0 0 70px;
}
@media (max-width: 1199px) {
  .about-three__content {
    padding-left: 14px;
  }
}
@media (max-width: 991px) {
  .about-three__content {
    padding: 60px 0 0;
  }
}
.about-three__content .sec-title {
  padding-bottom: 30px;
}
.about-three__content__text {
  font-size: 16px;
  line-height: 30px;
  margin: 0 0 29px;
}
.about-three__list {
  margin: 0 0 29px;
  padding: 0;
  list-style: none;
}
.about-three__list li {
  list-style: none;
  position: relative;
  padding-left: 26px;
  font-size: 18px;
  line-height: 30px;
  color: var(--hiredots-black, #0b182a);
  font-weight: 600;
  margin: 0 0 6px;
}
.about-three__list li span {
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 0;
  margin: auto;
  line-height: inherit;
  color: var(--hiredots-base, #00cde5);
}
.about-three__call {
  position: relative;
  padding: 10px 0 0 73px;
  min-height: 61px;
  display: block;
  margin: 13px 0 40px;
}
.about-three__call__icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 61px;
  height: 61px;
  background-color: var(--hiredots-primary, #0b2f81);
  font-size: 25px;
  color: var(--hiredots-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.about-three__call__text {
  display: block;
  font-size: 14px;
  line-height: 1;
  color: var(--hiredots-text, #696e76);
  margin-bottom: 5px;
}
.about-three__call__number {
  color: var(--hiredots-black, #0b182a);
  font-size: 18px;
  font-weight: 800;
  display: inline-block;
  line-height: 1.2;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.about-three__call:hover .about-three__call__number {
  color: var(--hiredots-base, #00cde5);
  background-size: 100% 1px;
}
.about-three__info-box {
  position: relative;
  background-color: var(--hiredots-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 27px 30px 25px;
  max-width: 180px;
  margin: 0 0 0 auto;
  border-top: 4px solid var(--hiredots-primary, #0b2f81);
}
@media (max-width: 767px) {
  .about-three__info-box {
    margin: 30px 0 0;
  }
}
.about-three__info-box__icon {
  width: 103px;
  height: 103px;
  display: flex;
  justify-content: center;
  background-color: var(--hiredots-gray, #f0f3f9);
  border-radius: 50%;
  font-size: 60px;
  color: var(--hiredots-base, #00cde5);
  margin: auto;
}
.about-three__info-box__title {
  font-size: 18px;
  font-weight: 700;
  margin: -30px 0 0;
}