/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header / .header-con
3. Banner / .banner-con
4. Video Section / .video-con
5. Decorate Your Interior / .decor-interior-con
6. How it works / .working-con
7. Completed projects  / .complete-projects-con
8. Better living / .better-living-con
9. Testimonials / .testimonials-con
10. Subscribe / .subscribe-newsletter-con
11. Footer / .footer-con
*/
/*------------------------------------------------------------------
# [Color Codes]

# primary--color: #ff7433;
# black--color: #000000;
# secondary--color: #ffffff;
# text-color: #777777;
# dark-blue-family-color: #012b3f;
# dark-green-family: #183f3c;
# green-family: #16392b;
# light-green-color: #2dca73;
# grey-bg-color: #cbcbcb;
# beige-color: #fff5ec;
# light-orange-color: #ffb48f;

*/
/*------------------------------------------------------------------
# [Typography]

Body copy: "Jost", sans-serif;
Headings: "Jost", sans-serif;
*/


@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
;

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a,
button input {
    outline: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

figure {
    margin: 0;
}

body {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: var(--text-color);
    font-family: "Jost", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
span {
    font-family: "Jost", sans-serif;
}

:root {
    --primary--color: #ff7433;
    --black--color: #000000;
    --secondary--color: #ffffff;
    --text-color: #777777;
    --dark-blue-family-color: #012b3f;
    --dark-green-family: #183f3c;
    --green-family: #16392b;
    --grey-family: #4d5955;
    --light-grey-family: #e7ebeb;
    --light-green-color: #2dca73;
    --grey-bg-color: #cbcbcb;
    --beige-color: #fff5ec;
    --light-orange-color: #ffb48f;
}

/* BG OUTER WRAPPER */
.bg-outer-wrapper {
    background-image: url('../images/banner-img.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 959px;
}

/* HEADER SECTION */
.header-con .navbar-light .navbar-nav .nav-link {
    font-size: 18px;
    color: var(--secondary--color);
    font-weight: 500;
    padding: 10px 0 !important;
    position: relative;
}

.header-con .navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary--color);
}

.header-con .navbar-expand-lg .navbar-nav {
    gap: 43px;
    justify-content: center;
    align-items: center;
}

.header-con {
    z-index: 3;
    padding: 30px 0;
}

.header-con .navbar {
    padding: 0;
}


.header-con .navbar-light .navbar-nav .nav-link:hover::before {
    width: 100%;
}

.header-con .navbar-light .navbar-nav .nav-link::before {
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    content: '';
    position: absolute;
    background: var(--primary--color);
    transition: ease-in-out 0.3s;
}

.header-con .navbar-light .navbar-nav .dropdown .nav-link:hover::after {
    width: 0;
}

.header-con .navbar-light .navbar-nav .dropdown .nav-link::after {
    width: unset;
    position: absolute;
    background: none;
    top: 22px;
    font-size: 15px;
}

.header-con .navbar-light .navbar-nav .dropdown-menu {
    padding: 10px 0;
    margin: 0;
    background-color: var(--secondary--color);
    border: 0;
    z-index: 2;
    width: 230px;
    margin-top: 10px;
    box-shadow: 0px 0px 100px rgb(0 0 0 / 15%);
    border-radius: 0;
}

.header-con .navbar-light .navbar-nav .dropdown-menu a:last-child {
    border-bottom: none;
}

.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item {
    padding: 7px 25px;
    border-bottom: 1px solid var(--secondary--color);
    font-size: 18px;
    line-height: 26px;
}

.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item:active,
.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item:active {
    background-color: var(--primary--color);
    color: var(--secondary--color);
}

.header-con .navbar-light .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary--color);
    color: var(--secondary--color);
}

.header-con .navbar-light .navbar-brand {
    margin: 0;
    padding: 0;
}

/* HEADER SECTION */
/* BACK TO TOP BUTTON */
#back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 60px;
    z-index: 99;
    font-size: 18px;
    border: none;
    background-color: var(--primary--color);
    color: white;
    cursor: pointer;
    border-radius: 0;
    width: 80px;
    height: 80px;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
}

.header-contact .contact-btn {
    background-color: var(--light-green-color);
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
    min-width: 136px;
    color: var(--secondary--color);
    height: 50px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    padding: 10px;
    width: 100%;
    text-decoration: none;
}

.header-contact .contact-btn:hover {
    background-color: var(--primary--color);
    transition: ease-in-out 0.6s;
}


.header-contact {
    margin-left: 39px;
}

#back-to-top-btn:focus {
    outline: none;
}

@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(255, 116, 51, .99);
    }

    to {
        box-shadow: 0 0 0 45px rgb(24, 63, 60, .01);
    }
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(255, 116, 51, .99);
    }

    to {
        box-shadow: 0 0 0 45px rgb(24, 63, 60, .01);
    }
}

#back-to-top-btn::after {
    font-size: 18px;
    font-weight: 600;
    content: "\f062";
    line-height: 50px;
    color: var(--secondary--color);
    font-family: "Font Awesome 5 free";
}


#back-to-top-btn:hover {
    cursor: pointer;
}

/* BACK TO TOP BUTTON */
/* LOADER SECTION */
.loader-mask {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    z-index: 99999;
    background-color: #fff;
}

.loader {
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    position: absolute;
    text-indent: -9999em;
    display: inline-block;
    margin: -25px 0 0 -25px;
    color: var(--primary--color);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.loader div {
    top: 0;
    left: 0;
    opacity: .5;
    float: none;
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--primary--color);
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* LOADER SECTION */

/* BANNER SECTION */
.banner-content-con {
    padding-top: 200px;
}

.dark-triangle {
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('../images/dark-triangle.png');
    width: 66px;
    height: 66px;
    transition: ease-in-out 0.3s;
}

.banner-con .banner-image-con::before {
    background: url(../images/shape.png);
    content: "";
    width: 125px;
    height: 125px;
    position: absolute;
    left: 83px;
    top: 80px;
    z-index: 2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-con .form-group input {
    background-color: var(--secondary--color);
    position: relative;
    width: 445px;
    padding: 10px 10px 10px 30px;
    border: none;
    height: 80px;
    font-size: 16px;
}

.banner-con .form-group button {
    position: absolute;
    top: 10px;
    right: 104px;
    height: 60px;
    width: 150px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    color: var(--secondary--color);
    background-color: var(--primary--color);
    border: none;
    padding: 5px;
    cursor: pointer;
}

.banner-con .form-group input:focus {
    box-shadow: inset 0 1px 1px rgb(22 57 43 / 8%), 0 0 8px rgb(255 116 51 / 60%);
    border: 1px solid rgb(255, 116, 51);
}

.banner-con .form-group input:focus-visible {
    outline: none;
}

.banner-con .form-group button:hover {
    background-color: var(--light-green-color);
    transition: ease-in-out 0.6s;
}

p.font-size-20 {
    margin-bottom: 42px;
}

.banner-con .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 60px;
    text-align: left;
}

.banner-con .owl-dots button {
    outline: none;
    box-shadow: none;
    border: 1px solid;
    border-color: var(--light-green-color);

}

.banner-con .owl-dots button.active span {
    background-color: var(--light-green-color) !important;
    color: var(--light-green-color);
    opacity: 100%;
    text-align: center;
    margin: 12px;
}

.banner-con .owl-theme .owl-dots .owl-dot span {
    background: var(--light-green-color) !important;
    width: 10px;
    opacity: 100%;
    height: 10px;
    display: block;
    cursor: pointer;
    margin-bottom: 0;
    border-radius: 100px;
    margin: 12px;
}

.banner-con .owl-dots button.active {
    border: 1px solid var(--light-green-color);
    border-radius: 100px;
}

.banner-image-con img {
    right: -395px;
    bottom: -80px;
    z-index: 1;
}

.banner-image-con .banner-white-con .carousel-inner img {
    width: auto;
}

.banner-image-con {
    height: 911px;
}

.banner-white-con {
    background-image: url('../images/banner-white-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 0 50px rgb(0 0 0 / 10%);
    height: 231px;
    width: 255px;
    padding: 30px;
    z-index: 2;
    top: 50%;
    bottom: 0;
    margin: 0 auto;

}

.banner-white-con img {
    margin-bottom: 16px;
}

.banner-white-con h5 {
    margin-bottom: 14px;
    color: var(--dark-green-family);
}

.banner-white-con p {
    font-size: 16px;
    line-height: 24px;
}

.banner-white-con .carousel-control-prev i,
.banner-white-con .carousel-control-next i {
    color: var(--dark-green-family);
}

.banner-white-con .carousel-control-prev,
.banner-white-con .carousel-control-next {
    top: -68px;
    opacity: 100%;
}

.banner-white-con .carousel-control-prev {
    left: 22px;
}

.banner-white-con .carousel-control-next {
    right: 22px;
}

/* VIDEO SECTION */
.video-con .vector1 {
    bottom: 55px;
    left: 0;
}

.video-con {
    overflow: hidden;
    height: 963px;
}

.video-con .vector2 {
    right: 146px;
    bottom: 148px;
}

.video-con .video-inner-wrap::before {
    background: url(../images/video-img.jpg);
    content: "";
    width: 539px;
    height: 500px;
    position: absolute;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.video-con .video_wrapper_box {
    width: 460px;
    height: 202px;
    text-align: center;
    margin: auto;
    box-shadow: 0 50px 50px rgb(0 0 0 / 10%);
    background-color: var(--secondary--color);
    opacity: 90%;
    padding: 38px 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: -36%;
}

.video-con .video-content-con h2 {
    margin-bottom: 20px;
}

.video-con .video-content-con {
    padding-top: 128px;
    margin-left: -14px;
}

.video-con .video-content-con p {
    margin-bottom: 26px;
}

.vid-outer-con {
    height: 500px;
    position: relative;
    width: 539px;
}

.video_wrapper_box h4 {
    color: var(--dark-blue-family-color);
    margin-top: 17px;
}

.vid-outer-con .dark-triangle {
    top: -15px;
    right: -15px;
    background-image: url('../images/video-corner.png');
    width: 110px;
    height: 110px;
    transition: ease-in-out 0.3s;
}

/* SPECIAL */
/* .heading-title-con p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 26px;
} */

.heading-title-con h5.special-text {
    margin-bottom: 12px;
}

.heading-title-con h2 {
    margin-bottom: 70px;
}

/* FEATURES SECTION */
.features-con .feature-white-box {
    background-color: var(--secondary--color);
    box-shadow: 0px 0px 50px rgb(0 0 0 / 10%);
    transition: ease-in-out 0.3s;
    border-bottom: 5px solid transparent;
    padding: 46px 35px;
    /* min-height: 140px; */
}

.features-con {
    margin-top: -76px;
}

.features-con .feature-white-box:hover {
    border-bottom: 5px solid var(--primary--color);
    border-right: 1px solid #e1e1e1;
    border-left: 1px solid #e1e1e1;
    transition: ease-in-out 0.3s;
}

.features-con .feature-white-box span.counter,
.features-con .feature-white-box span {
    font-size: 50px;
    font-weight: 600;
}

.features-con .feature-white-box sup {
    font-size: 30px;
    font-weight: 600;
}

.features-con .feature-white-box h5 {
    color: var(--dark-green-family);
    font-size: 20px;
    line-height: 24px;
    margin-left: 18px;
    font-weight: 600;
}

/* DECORATE INTERIOR SECTION */
.decorate-interior-con .interior-box .interior-bottom {
    padding: 36px 27px 31px 30px;
    /* box-shadow: 0px 0px 50px rgb(0 0 0 / 10%); */
    transition: ease-in-out 0.6s;
}

.decorate-interior-con .interior-box {
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 50px rgb(0 0 0 / 10%);
    border-bottom: 2px solid transparent;
}

.decorate-interior-con .col-lg-4.col-md-4 {
    display: flex;
}

.decorate-interior-con .heading-title-con h2 {
    margin-bottom: 87px;
}

.decorate-interior-con .interior-box .interior-bottom h4 {
    color: var(--dark-blue-family-color);
    font-weight: 600;
}

.decorate-interior-con .interior-box .interior-bottom a {
    color: var(--grey-family);
    font-size: 18px;
    font-weight: 400;
    transition: ease-in-out 0.3s;
}

.decorate-interior-con .interior-box .interior-bottom a i {
    position: relative;
    top: 2px;
    transition: ease-in-out 0.3s;
}

.decorate-interior-con .interior-box .interior-bottom a:hover {
    text-decoration: none;
    color: var(--primary--color);
}

.decorate-interior-con .interior-box .interior-bottom a:hover i {
    color: var(--primary--color);
}

.decorate-interior-con .interior-box.overlay:hover .dark-triangle {
    background-image: url('../images/orange-triangle.png');
    z-index: 1;
}

.decorate-interior-con .interior-box .dark-triangle {
    width: 86px;
    height: 86px;
}

.decorate-interior-con .interior-box:hover h4 {
    color: var(--primary--color);
}

.decorate-interior-con .interior-box:hover {
    border-bottom: 2px solid var(--primary--color);
    box-shadow: 0px 50px 50px rgb(0 0 0 / 10%);
    transition: ease-in-out 0.6s;
}

.decorate-interior-con .interior-box.overlay:hover figure {
    opacity: 1;
    background-image: linear-gradient(to top, #183f3c 0%, #ff7433 100%);
}

.decorate-interior-con .interior-box.overlay:hover img {
    opacity: 0.4;
}


/* HOW IT WORKS SECTION */
.working-con .white-box {
    background-color: var(--secondary--color);
    padding: 41px 39px 34px;
    transition: ease-in-out 0.6s;
    position: relative;
    border-bottom: 2px solid transparent;
}

.working-con .white-box img {
    margin-bottom: 36px;
}

.working-con .white-box h4 {
    color: var(--dark-blue-family-color);
    margin-bottom: 27px;
}

.working-con .white-box p {
    margin-bottom: 24px;
}

.working-con .heading-title-con h2 {
    margin-bottom: 87px;
}

.working-con .vector4 {
    left: 150px;
    bottom: 150px
}

.working-con .vector3 {
    top: 0;
    right: 0;
}

.working-con .dark-triangle {
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('../images/skin-corner.png');
    transition: ease-in-out 0.3s;
    width: 86px;
    height: 86px;
}

.working-con .white-box:hover {
    box-shadow: 0 50px 50px rgb(0 0 0 / 16%);
    border-bottom: 2px solid var(--primary--color);
}

.working-con .white-box:hover span.number-special {
    color: var(--primary--color);
}

.working-con .white-box:hover .dark-triangle {
    background-image: url('../images/orange-corner.png');
}

.working-con .white-box:hover h4 {
    color: var(--primary--color);
}

/* COMPLETED PROJECTS */
.complete-projects-con .tabs-box ul.nav-tabs {
    margin-bottom: 50px;
    border-bottom: none;
}

.complete-projects-con .tabs-box ul.nav-tabs li {
    background-color: var(--light-grey-family);
    /* padding: 10px 19px; */
    min-height: 50px;
    margin: 0 5px;
    min-width: 70px;
}

.complete-projects-con .tabs-box ul.nav-tabs li:first-child {
    margin-left: 0;
}

.complete-projects-con .heading-title-con h5.special-text {
    margin-bottom: 12px;
}

.complete-projects-con .heading-title-con h2 {
    margin-bottom: 86px;
}

.complete-projects-con .tabs-box ul.nav-tabs li:last-child {
    margin-right: 0;
}

.complete-projects-con .tabs-box ul.nav-tabs li a {
    color: var(--grey-family);
    font-size: 20px;
    padding: 10px 19px;
    font-weight: 600;
    display: block;
}

.complete-projects-con .tabs-box ul.nav-tabs li a:hover {
    text-decoration: none;
}

.complete-projects-con .tabs-box ul.nav-tabs li .dark-triangle {
    background-image: url('../images/li-corner.png');
    width: 20px;
    height: 20px;
    transition: ease-in-out 0.3s;
}

.complete-projects-con .tabs-box ul.nav-tabs li:has(a.active) .dark-triangle {
    background-image: url('../images/li-corner-hover.png');
    color: var(--secondary--color);
}

.complete-projects-con .tabs-box ul.nav-tabs li:has(a.active) {
    background-color: var(--primary--color);
    color: var(--secondary--color);
}

.complete-projects-con .tabs-box ul.nav-tabs li:has(a.active) a {
    color: var(--secondary--color);
}

.complete-projects-con .projct-img-wrap {
    margin-bottom: 30px;
}

.complete-projects-con .projct-img-wrap figure {
    transition: ease-in-out 0.3s;
}

.complete-projects-con .projct-img-wrap.overlay:hover figure {
    opacity: 1;
    background-image: linear-gradient(to top, #183f3c 0%, #ff7433 100%);
}

.complete-projects-con .projct-img-wrap.overlay:hover img {
    opacity: 0.4;
}

.complete-projects-con .projct-img-wrap.overlay:hover .dark-triangle {
    background-image: url('../images/orange-triangle.png');
    z-index: 1;
}

.complete-projects-con .interior-life {
    background-color: var(--light-green-color);
    width: 340px;
    height: 57px;
    line-height: 57px;
    text-align: center;
    left: 0;
    bottom: 20px;
    z-index: 2;
    font-size: 24px;
    font-weight: 600;
    box-shadow: 0 0 50px rgb(0 0 0 / 10%);
    background-size: contain;
}

.complete-projects-con .projct-img-wrap .dark-triangle {
    width: 86px;
    height: 86px;
}

.complete-projects-con .projct-img-wrap .interior-life {
    display: none;
}

.complete-projects-con .projct-img-wrap:hover .interior-life {
    display: block;
}

/* BETTER LIVING SECTION STYLING */

.better-living-con {
    background-image: url('../images/better-living-bg-img.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.better-living-con .living-box {
    margin-bottom: 44px;
}

.better-living-con .living-box h4 {
    position: relative;
    padding-left: 34px;
    margin-bottom: 28px;
}

.better-living-con .living-box h4 img {
    position: absolute;
    top: 2px;
    left: 0;
}

.better-living-con .white-box {
    width: 350px;
    padding: 50px 35px;
    box-shadow: 0 50px 50px rgb(0 0 0 / 10%);
    text-align: center;
    border-bottom: 2px solid var(--primary--color);
    background-color: var(--secondary--color);
    margin-bottom: 4px;
}

.better-living-con .white-box .dark-triangle {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../images/living-corner.png');
    width: 66px;
    height: 66px;
    transition: ease-in-out 0.3s;
    background-size: contain;
}

.better-living-inner-wrap1 {
    margin-bottom: 0;
    top: -164px;
}

/*  */
.better-living-con img {
    margin-bottom: 22px;
}

.better-living-con h5 {
    margin-bottom: 14px;
    color: var(--dark-green-family);
}

.better-living-con p {
    font-size: 18px;
    line-height: 30px;
}

.better-living-con .white-box h3 {
    margin-bottom: 21px;
}

.better-living-con .carousel-control-prev i,
.better-living-con .carousel-control-next i {
    color: var(--dark-green-family);
}

.better-living-con .carousel-control-prev,
.better-living-con .carousel-control-next {
    top: -169px;
    opacity: 100%;
}

.better-living-con .carousel-control-prev {
    left: 60px;
}

.better-living-con .carousel-control-next {
    right: 60px;
}

.better-living-con .better-con {
    padding-right: 87px;
}

.better-living-con .better-con .col-lg-12 {
    padding: 0;
}

.better-living-con .better-living-inner-wrap1 .heading-title-con {
    position: absolute;
    right: 45px;
    top: 258px;
}

.better-living-con .living-img-outer .dark-triangle {
    position: absolute;
    bottom: 0;
    top: unset;
    right: 0;
    background-image: url('../images/green-corner.png');
    width: 88px;
    height: 92px;
    transition: ease-in-out 0.3s;
}

.better-living-con .living-img-outer {
    margin-top: -121px;
}

.better-living-con .living-img-outer figure {
    text-align: right;
}

.better-living-con .better-living-row {
    margin-top: -50px;
}

/* TESTIMONIALS SECTION */
.testimonials-con .vector3 {
    top: 0;
    right: 0;
}

.testimonials-con .vector4 {
    left: 149px;
    bottom: 149px
}

.testimonials-con .testimonial-img figure {
    text-align: left;
}

.testimonials-con .testimonial-img .quote-img {
    right: 0;
    top: 0;
    /* box-shadow: 0px 10px 50px rgb(0 0 0 / 20%); */
}

.testimonials-con .testimonial-img .review-person {
    /* box-shadow: 0px 10px 50px rgb(0 0 0 / 20%); */
    border: 5px solid var(--beige-color);
    border-radius: 100px;
}

.testimonials-con .testimonial-content p {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 28px;
    padding-right: 19%;
    color: var(--text-color);
}

.testimonials-con .testimonial-content .review-name {
    color: var(--primary--color);
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 14px;
    font-weight: 600;
}

.testimonials-con .testimonial-content .review-designation {
    color: var(--text-color);
    font-size: 18px;
    line-height: 18px;
}

.testimonials-con .carousel .carousel-control-prev,
.testimonials-con .carousel .carousel-control-next {
    right: 0;
    left: unset;
    color: var(--text-color);
    font-size: 20px;
    width: 65px;
    background-color: var(--beige-color);
    height: 65px;
    border-radius: 100px;
    border: 2px solid var(--text-color);
    line-height: 65px;
    text-align: center;
    opacity: 1;
}

.testimonials-con .carousel .carousel-control-prev:hover,
.testimonials-con .carousel .carousel-control-next:hover {
    border: 2px solid var(--primary--color);
    background-color: var(--primary--color);
    color: var(--secondary--color);
}

.testimonials-con .carousel .carousel-control-prev {
    top: 84px;
}

.testimonials-con .carousel .carousel-indicators {
    right: unset;
    text-align: center;
    width: 200px;
    margin: 0 auto;
    bottom: 40px;
}

.testimonials-con .carousel .carousel-indicators li {
    border-radius: 100px;
    width: 26px;
    height: 26px;
    background-color: transparent;
    margin: 0;
    border: 1px solid transparent;

}

.testimonials-con .carousel .carousel-indicators li span {
    display: block;
    background-color: var(--primary--color);
    width: 10px;
    height: 10px;
    border-radius: 100px;
    margin: 7px;

}

.testimonials-con .carousel .carousel-indicators li.active {
    border: 1px solid var(--primary--color);
}

.testimonials-con .carousel .carousel-indicators li:first-child {
    margin-left: 0;
}

.testimonials-con .carousel .carousel-indicators li:last-child {
    margin-right: 0;
}

/* TRUSTED COMPANIES SECTION */
.comapny-inner-con {
    background-color: var(--secondary--color);
    padding: 50px 50px 50px 60px;
    box-shadow: 0px 0px 50px rgb(0 0 0 / 10%);
    margin-top: -75px !important;
}

.comapny-inner-con li img {
    transition: ease-in-out 0.6s;
}

.comapny-inner-con li img:hover {
    transform: translateY(-3px);
}

/* SUBSCRIBE NEWSLETTER SECTION */
.subscribe-newsletter-con {
    background-image: url('../images/newsletter-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
}

.subscribe-newsletter-con .form-group input {
    background-color: var(--secondary--color);
    position: relative;
    width: 540px;
    padding: 10px 10px 10px 30px;
    border: none;
    height: 80px;
    font-size: 16px;
}

.subscribe-newsletter-con .form-group input::placeholder {
    font-size: 18px;
    color: var(--black--color);
}

.subscribe-newsletter-con form {
    width: 540px;
    margin: 0 auto;
}

.subscribe-newsletter-con .form-group button {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 60px;
    width: 150px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    color: var(--secondary--color);
    background-color: var(--primary--color);
    border: none;
    padding: 5px;
    cursor: pointer;
}

.subscribe-newsletter-con .form-group input:focus {
    box-shadow: inset 0 1px 1px rgb(22 57 43 / 8%), 0 0 8px rgb(255 116 51 / 60%);
    border: 1px solid rgb(255, 116, 51);
}

.subscribe-newsletter-con .form-group input:focus-visible {
    outline: none;
}

.subscribe-newsletter-con .form-group button:hover {
    background-color: var(--light-green-color);
    transition: ease-in-out 0.6s;
}

.subscribe-newsletter-con .newsletter-wrap h2 {
    margin-bottom: 21px;
}

.subscribe-newsletter-con .newsletter-wrap p {
    margin-bottom: 52px;
}

.subscribe-newsletter-con .vector5 {
    right: 0;
    bottom: 0;
}

/* FOOTER SECTION */
.footer-con {
    padding-top: 100px;
}

.footer-con .footer-inner-links .line {
    color: var(--primary--color);
    width: 30px;
    height: 2px;
    background-color: var(--primary--color);
    text-align: left;
    margin: 0 0 32px 0;
}

.footer-con .footer-inner-links h4 {
    color: var(--dark-blue-family-color);
    font-weight: 600;
    margin-bottom: 14px;
    margin-top: 0;
}

.footer-con .footer-inner-links li a:before {
    content: "\f0da";
    color: var(--dark-green-family);
    font-weight: bold;
    display: inline-block;
    margin-left: 0;
    position: absolute;
    font-family: 'FontAwesome';
    top: 0;
    left: 0px;
}

.footer-con .footer-inner-con .footer-logo img {
    margin-bottom: 32px;
}

.footer-con .footer-inner-con p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 34px;
}

.footer-con .footer-inner-links li a {
    font-size: 16px;
    color: var(--text-color);
    line-height: 24px;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

.footer-con .footer-inner-links .carousel a i {
    width: 24px;
    height: 50px;
    background-color: var(--dark-blue-family-color);
    opacity: 95%;
    color: var(--secondary--color);
    text-align: center;
    line-height: 50px;
    font-size: 15px;
}

.footer-con .footer-inner-links .carousel .carousel-control-next,
.footer-con .footer-inner-links .carousel .carousel-control-prev {
    width: auto;
    opacity: 1;
}

.footer-con .footer-inner-links .carousel .carousel-item {
    margin-top: 7px;
}

.footer-con .footer-inner-links a:hover::after {
    width: 100%;
}

.footer-con .footer-inner-links .carousel-control-prev:hover::after,
.footer-con .footer-inner-links .carousel-control-next:hover::after {
    width: auto;
}

.footer-con .footer-inner-links a:hover {
    color: var(--primary--color);
    text-decoration: none;
}

.footer-con .footer-inner-links a::after {
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    content: '';
    position: absolute;
    background: var(--primary--color);
    transition: ease-in-out 0.3s;
}

.footer-con .footer-inner-con {
    padding-right: 60px;
}

.footer-con .footer-inner-con ul li {
    background-color: var(--grey-bg-color);
    border-radius: 100px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 1px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.footer-con .footer-inner-con ul li i {
    color: var(--secondary--color);
    font-size: 15px;
}

.footer-con .footer-inner-con ul li:hover {
    background-color: var(--primary--color);
    transform: translateY(-2px);
}

.footer-con .footer-inner-links .carousel a i:hover {
    opacity: 80%;
}

.copyright-con {
    padding: 17px 0px;
}

.footer-con .iner-row {
    padding-bottom: 77px;
    border-bottom: 1px solid #dfe0e6;
}

.footer-con .con2 {
    margin-left: -3px;
}

/* PROJECTS PAGE STYLING */

.video-con.projects-interior-design-con {
    height: auto;
}

/* BG OUTER WRAPPER */
.sub-banner-wrapper {
    background-image: url('../images/sub-banner-bg-image.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
}

.sub-banner-wrapper .sub-banner-img-con::before {
    background: url(../images/shape.png);
    content: "";
    width: 125px;
    height: 125px;
    position: absolute;
    left: 0;
    top: 84px;
    z-index: 2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sub-banner-wrapper .sub-banner-img-con img {
    top: 84px;
    z-index: 1;
}

.sub-banner-wrapper .sub-banner-cotent-con {
    padding-top: 120px;
}

/* Breadcrumb */
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary--color);
    font-size: 16px;
}

.breadcrumb-item.active {
    color: var(--primary--color);
    font-size: 16px;
}

.breadcrumb-item {
    font-size: 16px;
    line-height: 16px;
}

.breadcrumb {
    background: transparent;
    padding: 0;

}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--secondary--color);
    font-size: 16px;
}

.breadcrumb-con {
    margin-bottom: 0;
}

.breadcrumb-item a:hover {
    color: var(--light-green-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "~";
}

.sub-banner-wrapper .sub-banner-cotent-con p.font-size-20 {
    margin-bottom: 27px;
}

/* SERVICES PAGE STYLING */
.services-offer-con .white-box {
    padding: 38px 26px 36px;
    width: 100%;
}

.services-offer-con .col-lg-3.col-md-6 {
    display: flex;
}

.services-offer-con .white-box ul li::before {
    content: "\f0da";
    color: var(--primary--color);
    font-weight: bold;
    display: inline-block;
    margin-left: 0;
    position: absolute;
    font-family: 'FontAwesome';
    top: 0;
    left: 0px;
    font-size: 15px;
}

.services-offer-con .white-box ul li {
    padding-left: 16px;
}

.sub-banner-wrapper h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 70px;
    color: var(--secondary--color);
    margin-bottom: 26px;
}

/* PLAN AND PRICING SECTION */
.plan-and-pricing-con .white-box {
    box-shadow: 0px 0px 50px rgb(0 0 0 / 5%);
}

.sub-features-outer-wrapper .sub-feature-con .dark-triangle {
    top: -15px;
    right: -15px;
    background-image: url('../images/video-corner.png');
    width: 110px;
    height: 110px;
    transition: ease-in-out 0.3s;
    z-index: 1;
}

.sub-features-outer-wrapper .sub-feature-con {
    width: 539px;
}

.sub-features-outer-wrapper.video-con {
    height: auto;
}

.plan-and-pricing-con ul {
    margin-bottom: 35px;
}

.plan-and-pricing-con ul li {
    padding-left: 26px;
}

.plan-and-pricing-con ul li i {
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 16px;

}

.plan-and-pricing-con .col-lg-4.col-md-4 {
    display: flex;
}

.plan-and-pricing-con .white-box {
    width: 100%;
}

.plan-and-pricing-con .white-box:hover ul li i {
    color: var(--primary--color);
}

.plan-and-pricing-con .white-box:hover .order-now a {
    background-color: var(--primary--color);
}

/* TESTIMONAIL PAGE STYLING */
.testimonial-con2 .white-box {
    /* box-shadow: 0px 0px 50px rgb(0 0 0 / 5%); */
    box-shadow: 0 0px 30px rgb(0 0 0 / 5%) inset;
}

.testimonial-con2 .owl-carousel .owl-item img {
    width: auto;
}

.testimonial-con2 .owl-carousel .owl-item .white-box {
    width: 350px;
}

.testimonial-con2 .dark-triangle,
.plan-and-pricing-con .dark-triangle {
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('../images/price-skin-corner.png');
    transition: ease-in-out 0.3s;
    width: 86px;
    height: 86px;
}

.testimonial-con2 .white-box:hover .dark-triangle,
.plan-and-pricing-con .white-box:hover .dark-triangle,
.about-works-con .white-box:hover .dark-triangle {
    background-image: url('../images/price-orng-corner.png');
}

.testimonial-con2 .white-box img {
    filter: grayscale(100%);
}

.testimonial-con2 .white-box:hover img,
.testimonial-con2.expert-team-members-con .white-box img {
    filter: grayscale(0%);
}


.testimonial-con2 .white-box h4 {
    margin-bottom: 6px;
}

.testimonial-con2 .white-box span {
    margin-bottom: 22px;
    font-size: 16px;
}

.testimonial-con2 .white-box:hover {
    box-shadow: 0 5px 50px rgb(0 0 0 / 16%) inset;
}

.testimonial-con2 .owl-dots button {
    outline: none;
    box-shadow: none;
    border: 1px solid;
    border-color: var(--primary--color);

}

.testimonial-con2 .owl-dots button.active span {
    background-color: var(--primary--color) !important;
    color: var(--primary--color);
    opacity: 100%;
    text-align: center;
    margin: 5px;
}

.testimonial-con2 .owl-theme .owl-dots .owl-dot span {
    background: var(--primary--color) !important;
    width: 10px;
    opacity: 100%;
    height: 10px;
    display: block;
    cursor: pointer;
    margin-bottom: 0;
    border-radius: 100px;
    margin: 5px;
}

.testimonial-con2 .owl-theme .owl-dots .owl-dot {
    margin: 0 2px;
}

.testimonial-con2 .owl-theme .owl-nav.disabled+.owl-dots {
    margin: 0 auto;
    text-align: center;
    margin-top: 90px;
}

.testimonial-con2 .owl-dots button.active {
    border: 1px solid var(--primary--color);
    border-radius: 100px;
}

/* ABOUT PAGE STYLING */
.architecture-con .vector1 {
    bottom: 55px;
    left: 0;
}

.about-works-con .dark-triangle {
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('../images/grey-shape.png');
    transition: ease-in-out 0.3s;
    width: 86px;
    height: 86px;
}

.testimonial-con2.expert-team-members-con .dark-triangle {
    background-image: url('../images/grey-shape.png');
    z-index: 1;
}

.architecture-con .vector2 {
    right: 146px;
    bottom: 148px;
}

.expert-team-members-con .team-content {
    display: none;
}

.expert-team-members-con .white-box:hover {
    border: none;
}

.expert-team-members-con .white-box.overlay:hover figure {
    opacity: 1;
    background-image: linear-gradient(to top, #183f3c 0%, #ff7433 100%);
}

.expert-team-members-con .white-box.overlay:hover img {
    opacity: 0.2;
    filter: none;
}

.expert-team-members-con .white-box.overlay:hover .dark-triangle {
    background-image: url('../images/orange-triangle.png');
    z-index: 1;
}

.expert-team-members-con .white-box:hover .team-content {
    display: block;
}

.expert-team-members-con .white-box .team-content {
    bottom: 30px;
    padding: 0 35px;
}

.expert-team-members-con .white-box .team-content p {
    margin-bottom: 8px;
}

.expert-team-members-con .white-box .team-content ul li a {
    color: var(--secondary--color);
    border-radius: 100px;
    border: 1px solid var(--secondary--color);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 25px;
}

.expert-team-members-con .white-box .team-content ul li i {
    color: var(--secondary--color);
    font-size: 12px;
}

.expert-team-members-con .white-box .team-content ul li a:hover {
    background-color: var(--primary--color);
    border: 1px solid var(--primary--color);
}

/*  */
.testimonial-con2.expert-team-members-con .owl-theme .owl-dots .owl-dot {
    margin: 0 3px;
}

.testimonial-con2 .owl-dots button.active span {
    margin: 7px;
}

.testimonial-con2 .owl-theme .owl-dots .owl-dot span {
    margin: 7px;
}

/*  */
.architecture-con .architecture-image-con .dark-triangle {
    top: -15px;
    right: -15px;
    background-image: url('../images/video-corner.png');
    width: 110px;
    height: 110px;
    transition: ease-in-out 0.3s;
    z-index: 1;
}

.architecture-con .progress_list .choose-measure .text {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    display: inline-block;
}

.architecture-con .progress_list {
    width: 540px;
}

.architecture-con .progress_list .choose-measure .percentage {
    float: right;
    position: relative;
    right: -5px;
}

.architecture-con .progress_list .choose-measure .percentage span,
.architecture-con .progress_list .choose-measure .percentage .plus {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.architecture-con .progress_list .choose-measure .progress {
    overflow: visible;
    height: 20px;
    margin-bottom: 30px;
    background-color: #47525c;
    border-radius: 0;
}

.architecture-con .progress_list .choose-measure .progress.bar1 {
    background-color: rgb(45, 202, 115, 10%);
}

.architecture-con .progress_list .choose-measure .progress.bar2 {
    background-color: rgb(255, 116, 51, 10%);
}

.architecture-con .progress_list .choose-measure .progress.bar3 {
    background-color: rgb(22, 57, 43, 10%);
}

.architecture-con .progress_list .choose-measure .progress-bar {
    float: left;
    height: 100%;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    animation: progress-animation 5s ease-in-out;
    border-radius: 0;
    position: relative;
}

.architecture-con .choose-measure .progress-bar1 {
    width: 75%;
    background-color: var(--light-green-color);
}

.architecture-con .choose-measure .progress-bar2 {
    width: 85%;
    background-color: var(--primary--color);
}

.architecture-con .choose-measure .progress-bar3 {
    width: 90%;
    background-color: var(--green-family);
}

.architecture-con .choose-measure:last-child .progress {
    margin-bottom: 0 !important;
}

@keyframes progress-animation {
    0% {
        width: 0%;
    }
}

.architecture-con .choose-measure .progress-bar::after {
    right: 0;
    width: 2px;
    height: 36px;
    content: '';
    position: absolute;
    background-color: var(--light-green-color);
    transition: ease-in-out 0.3s;
    z-index: 1;
}

.architecture-con .choose-measure .progress-bar2::after {
    background-color: var(--primary--color);
}

.architecture-con .choose-measure .progress-bar3::after {
    background-color: var(--green-family);
}

/* CONTACT US PAGE STYLING */
ul.icons li {
    background-color: var(--grey-bg-color);
    border-radius: 100px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 1px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

ul.icons li i {
    color: var(--secondary--color);
    font-size: 14px;
}

ul.icons li:hover {
    background-color: var(--light-green-color);
    transform: translateY(-2px);
}

.contact-info-con span.follow-us {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue-family-color);
    margin-bottom: 14px;
}

.contact-info-con form ul li {
    float: left;
    width: 255px;
    margin-right: 28px;
    margin-bottom: 30px;
}

.contact-info-con form ul li input,
.contact-info-con form ul li select {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--secondary--color);
    border: none;
    height: 70px;
    box-shadow: 0 0 50px rgb(0 0 0 / 10%);
}

.contact-info-con form ul li select {
    color: var(--text-color);
}

.contact-info-con form ul li select::placeholder {
    color: var(--text-color);
}

.contact-info-con form ul li:nth-child(2) {
    margin-right: 0;
}

.contact-info-con .sub-feature-con img {
    margin-bottom: 36px;
}

.contact-info-con form ul li input:focus-visible,
.contact-info-con form ul li select:focus-visible {
    outline: none;
    box-shadow: none;
    border: none;
}

.contact-info-con form ul li input:focus,
.contact-info-con form ul li select:focus {
    box-shadow: inset 0 1px 1px rgb(255 116 51 / 8%), 0 0 8px rgb(255 116 51 / 60%);
    border-color: var(--primary--color);
    outline: none;
}

.contact-map-con iframe {
    width: 100%;
    height: 362px;
    border: none;
    position: relative;
    pointer-events: none;
}

.contact-box-outer-wrap .contact-box figure {
    width: 50px;
    height: 50px;
    background-color: var(--dark-blue-family-color);
    text-align: center;
    line-height: 45px;
    vertical-align: middle;
    display: flex;
    align-items: center;
    border-radius: 100px;
    justify-content: center;
    flex-shrink: 0;
    transition: ease-in-out 0.3s;
}

.contact-box-outer-wrap .contact-box {
    background-color: var(--secondary--color);
    box-shadow: 0px 0px 50px rgb(0 0 0 / 10%);
    transition: ease-in-out 0.3s;
    border-bottom: 5px solid transparent;
    padding: 30px 36px;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    display: flex;
    width: 100%;
}

.contact-box-outer-wrap .contact-box:hover {
    border-bottom: 5px solid var(--primary--color);
    border-right: 1px solid #e1e1e1;
    border-left: 1px solid #e1e1e1;
    transition: ease-in-out 0.3s;
}

.contact-box-outer-wrap .box-content {
    padding-left: 18px;
}

.contact-box-outer-wrap .box-content p,
.contact-box-outer-wrap .box-content a {
    font-size: 18px;
    line-height: 30px;
}

.contact-box-outer-wrap .box-content h4 {
    color: var(--dark-green-family);
    transition: ease-in-out 0.3s;
}

.contact-box-outer-wrap .contact-box:hover h4 {
    color: var(--primary--color);
}

.contact-box-outer-wrap .col-lg-4.col-md-4 {
    display: flex;
}

.contact-box-outer-wrap .contact-box:hover figure {
    background-color: var(--primary--color);
}

.contact-box-outer-wrap .contact-box a {
    position: relative;
    color: var(--text-color);
}

.contact-box-outer-wrap .contact-box a:hover::after {
    width: 100%;
}

.contact-box-outer-wrap .contact-box a::after {
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    content: '';
    position: absolute;
    background: var(--primary--color);
    transition: ease-in-out 0.3s;
}

.contact-box-outer-wrap .contact-box a:hover {
    color: var(--primary--color);
    text-decoration: none;
}

.contact-box-outer-wrap .contact-box:hover p,
.contact-box-outer-wrap .contact-box:hover a {
    color: var(--dark-green-family);
}

/* TEAMS PAGE STYLING */
.team-about-con ul.icons li {
    height: 40px;
    width: 40px;
    line-height: 40px;
}

.team-membrs-wrap .white-box {
    margin-bottom: 30px;
    border-bottom: none;
}

/* COMING SOON PAGE STLYING  */
.unique-banner-wrapper {
    background-image: url('../images/coming-soon-banner-img.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    flex-grow: 1;
    min-height: 100vh;
}

.coming-soon-banner {
    flex-grow: 1;
}

.coming-soon-banner .form-group input {
    background-color: var(--secondary--color);
    position: relative;
    width: 445px;
    padding: 10px 10px 10px 30px;
    border: none;
    height: 80px;
    font-size: 16px;
}

.coming-soon-banner form {
    width: 445px;
    margin-bottom: 47px;
}

.coming-soon-banner .form-group button {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 60px;
    width: 150px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    color: var(--secondary--color);
    background-color: var(--primary--color);
    border: none;
    padding: 5px;
    cursor: pointer;
}

.coming-soon-banner .form-group input:focus {
    box-shadow: inset 0 1px 1px rgb(22 57 43 / 8%), 0 0 8px rgb(255 116 51 / 60%);
    border: 1px solid rgb(255, 116, 51);
}

.coming-soon-banner .form-group input:focus-visible {
    outline: none;
}

.coming-soon-banner .form-group button:hover {
    background-color: var(--light-green-color);
    transition: ease-in-out 0.6s;
}

.coming-soon-banner ul.icons li {
    background-color: transparent;
    border-radius: 100px;
    height: 40px;
    width: 40px;
    line-height: 36px;
    text-align: center;
    margin-right: 1px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--secondary--color);
}

.coming-soon-banner ul.icons li i {
    color: var(--secondary--color);
    font-size: 14px;
}

.coming-soon-banner ul.icons li:hover {
    background-color: var(--light-green-color);
    transform: translateY(-2px);
    border: 1px solid var(--light-green-color);
}

.coming-soon-banner figure.logo-img {
    margin-bottom: 130px;
}

.coming-soon-banner h1 {
    font-size: 75px;
    line-height: 80px;
    margin-bottom: 30px;
}

.unique-img-con .dark-triangle {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../images/shape.png');
    width: 125px;
    height: 125px;
    transition: ease-in-out 0.3s;
}

.coming-soon-banner .con3-outer {
    margin-top: 134px;
}

/* ERROR PAGE STYLING */
.comingsoon_outer {
    flex-grow: 1;
    min-height: 100vh;
    text-align: center;
    position: relative;
}

.comingsoon_outer .error-con {
    flex-grow: 1;
}

.comingsoon_outer .error-con .orange-btn {
    min-width: 180px;
}

#contactpage span.error {
    font-size: 15px;
    line-height: 18px;
    margin-top: 10px;
    display: block;
    padding-left: 10px;
    color: red;
}

.contact-box-outer-wrap .contact-box:hover a {
    color: var(--primary--color);
}
