/*  =========== Variable ===========  */
:root{
    --primary-color: #16163f;
    --secondary-color: #0054ff;
    --black: #000;
    --white: #fff;
    --info-color: #666;
    --back-hover: #ffffff33;
    --highlight: #ff636b;
}
    

/* ===========  Fonts ===========  */
body{
    font-family: 'Roboto';
}


/* =========== Default CSS ===========  */

html{
    scroll-behavior: smooth;
    padding: 0 !important;
}
html::-webkit-scrollbar{
    width: 0.6vw;
}
html::-webkit-scrollbar-thumb{
    background-color:  var(--primary-color);
    border-radius: 10px;
}
html::-webkit-scrollbar-track{
    background-color: #f9fafb;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
img{
    max-width: 100%;
    display: block;
}
a{
    text-decoration: none !important;
}
input:focus{
    outline: none;
}
.row{
    display: flex;
    flex-wrap: wrap;
}

/*  =========== Collums ===========  */
.col-1{
    width: 8.33%;
}
.col-2{
    width: 16.66%;
}
.col-3{
    width: 25%;
}
.col-4{
    width: 33.33%;
}
.col-5{
    width: 41.66%;
}
.col-6{
    width: 50%;
}
.col-7{
    width: 58.33%;
}
.col-8{
    width: 66.66%;
}
.col-9{
    width: 75%;
}
.col-10{
    width: 83.33%;
}
.col-11{
    width: 91.66%;
}
.col-12{
    width: 100%;
}

/* ====== container ======= */
.container{
    max-width: 1200px !important;
    margin: 0 auto;
}

/* ====== cstm  btn ======= */
.cstm-btn a{
    display: flex;
    align-items: center;
}
.cstm-btn a span{
    background-color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 3px;
    color: var(--white);
    transition: all 0.5s;
}
.cstm-btn a span i{
    font-size: 14px;
}
.cstm-btn:hover span{
    border: 1px solid var(--secondary-color);
    background-color: transparent;
    color: var(--secondary-color);
}


/* ===== Sub - Title ===== */
.sub-title{
    text-align: center;
    margin-bottom: 50px;
}
.sub-title span{
    text-align: center;
    color: var(--secondary-color);
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
}

/* ========= Pre - Loader ======= */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f5f5;
    z-index: 9999999;
  }
  
  #status {
    width: 120px;
    height: 120px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -60px 0 0 -60px;
  }
  

/* ===== Pop - Up ===== */
.pop-up{
    position: fixed;
    z-index: 999999;
    background-color: var(--white);
    box-shadow: 5px 5px 10px rgba(0,0,0,0.07),
                -5px -5px 10px rgba(0,0,0,0.07);
    bottom: 0;
    width: 450px;
    left: 0;
    padding: 20px 30px 10px 10px;;
}
.pop-up .data{
    display: flex;
    align-items: center;
    justify-content: center;
}
.pop-up .data img{
    height: 40px;
    width: 55px;
    margin-right: 30px;
}
.pop-up .data h4{
    font-size: 18px;
    color: var(--black);
    opacity: 0.7;
    margin: 0;
}
.pop-up .pop-btns{
    display: flex;
    align-items: center;
    justify-content: end;
}
.pop-up .pop-btns{
    margin-top: 30px;
}
.pop-up .pop-btns .cancel{
    color: var(--secondary-color);
    font-size: 18px;
    text-transform: capitalize;
    margin-right: 30px;
}
.pop-up .pop-btns .allow{
    text-transform: capitalize;
    color: var(--white);
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 7px 30px;
    border-radius: 5px;
    font-size: 18px;
    transition: all 0.3s;
}
.pop-up .pop-btns .allow:hover{
    color: var(--secondary-color);
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
}


/* ====== Back to  Top ====== */
.back-top{
    position: fixed;
    right: 40px;
    visibility: hidden;
    opacity: 0;
    bottom: 0;
    z-index: 9998;
    transition: all 0.5s;
}
.back-top i{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--primary-color);
    height: 45px;
    width: 45px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
}
.go{
    bottom: 40px;
    visibility: visible;
    opacity: 1;
}

/* ====== Main-Header ===== */
.main-header{
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99999 !important;
}


/* ====== Top - Header ====== */
.top-header{
    padding: 10px 0;
    background-color: var(--primary-color);
    z-index: 99999 !important;
}
.top-header .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-header .contact{
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}
.top-header .contact li{
    display: flex;
    align-items: center;
    list-style: none;
}
.top-header .contact li a{
    color: var(--white);
}
.top-header .contact li a i{
    margin-right: 15px;
    font-size: 18px;
}
.top-header .contact li a span{
    font-weight: 300;
    opacity: 0.9;
    font-size: 14px;
    letter-spacing: 1px;
}
.top-header .contact .line{
    width: 1px;
    height: 25px;
    background-color: var(--white);
    margin: 0 30px;
}
.top-header .social{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.top-header .social li{
    list-style: none;
}
.top-header .social li a{
    color: var(--white);
    transition: all 0.3s;
    font-size: 18px;
}
.top-header .social li a:hover{
    color: var(--secondary-color);
}
.top-header .social .line{
    width: 1px;
    height: 15px;
    background-color: var(--white);
    margin: 0 15px;
}


/* ===== Header ===== */
header{
    box-shadow: 0 10px 20px rgba(0,0,0,0.09);
    z-index: 99999 !important;
    background-color: var(--white);
}
header button{
    display: none;
    border: none;
    background-color: transparent;
}
header button i{
    background-color: var(--secondary-color);
    font-size: 18px;
    border-radius: 50%;
    padding: 15px;
    color: var(--white);
}
header .navbar-brand{
    display: flex;
    align-items: center;
    padding-left: 0;
}
header .navbar-brand img{
    width: 55px;
    height: 40px;
}
header .menus{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}
header .menus li{
    margin: 15px 25px;
    list-style: none;
}
header .menus li a{
    color: var(--black);
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 40px;
    transition: all 0.2s;
}
header .menus span{
    width: 1px;
    height: 15px;
    background-color: #acacac;
}
header .menus li .active{
    color: var(--secondary-color);
}
header .menus li a:hover{
    color: var(--secondary-color);
}
header .header-btns{
    display: flex;
    align-items: center;
    padding-right: 0;
    justify-content: flex-end;
}
.open-header{
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 1s;
}

/* ====== Banner ====== */
.banner{
    position: relative;
    background-image: url('../img/banner-back.png');
    background-size: cover;
    /* padding-top: 100px; */
}
.banner .image{
    display: flex;
    justify-content: end;
}
.banner img{
    width: 80%;
}
.banner .extra-img .dot-1{
    position: absolute;
    top: 10%;
    left: 10%;
    height: 20px;
    width: 20px;
    opacity: 0.3;
    background-color: var(--secondary-color);
    border-radius: 50%;
    animation: dot1 50s infinite linear;
}
@keyframes dot1 {
    0%{
        top: 20%;
        left: 10%;
    }
    25%{
        top: 10%;
        left: 40%;
    }
    50%{
        top: 60%;
        left: 60%;
    }
    75%{
        top: 100%;
        left: 20%;
    }
    100%{
        top: 20%;
        left: 10%;
    }
}
.banner .extra-img .dot-2{
    position: absolute;
    top: 23%;
    right: 0%;
    height: 20px;
    width: 20px;
    opacity: 0.3;
    background-color: var(--secondary-color);
    border-radius: 50%;
    animation: dot2 20s infinite linear;
}
@keyframes dot2 {
    0%{
        top: 23%;
        right: 0%;
    }
    50%{
        top: 12%;
        right: 10%;
    }
    100%{
        top: 0%;
        right: 20%;
    }
}
.banner .row{
    align-items: center;
    padding: 200px 0;
    padding-bottom: 100px;
}
.banner h1{
    color: var(--primary-color);
    font-size: 40px;
    line-height: 60px;
    font-weight: 600;
    margin-bottom: 10px;
}
.banner p{
    color: var(--info-color);
    font-size: 16px;
    opacity: 0.8;
    line-height: 30px;
    margin-bottom: 50px;
}
.banner .banner-btn .banner-cstm-btn span{
    font-size: 20px;
    color: var(--secondary-color);
    padding: 12px 30px;
    border: 1px solid var(--secondary-color);
    border-radius: 3px;
    transition: all 0.5s;
}
.banner .banner-btn .banner-cstm-btn span i{
    margin-left: 0px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}
.banner .banner-btn .banner-cstm-btn:hover span{
    background-color: var(--back-hover);
}
.banner .banner-btn .banner-cstm-btn:hover span i{
    margin-left: 10px;
    visibility: visible;
    opacity: 1;
}
.banner .banner-btn .one{
    margin-right: 20px;
}
.banner .banner-btn .two span{
    border: 3px solid var(--secondary-color);
}


/* ===== Service ====== */
.service{
    padding: 50px 0;
    padding-bottom: 100px;
}
.service .service-image{
    display: flex;
    justify-content: end;
    margin-bottom: 40px;
}
.service .service-image img{
    width: 40%;
    height: 200px;
}
.service .col-6{
    text-align: right;
}
.service h2{
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
}
.service p{
    font-size: 16px;
    color: var(--info-color);
    opacity: 0.8;
    line-height: 28px;
    margin-bottom: 30px;
}
.service .skill{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.service .skill span{
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
}
.service .skill i{
    z-index: 10 !important;
    position: relative;
    color: var(--white);
    font-size: 8px;
}
.service .skill i::after{
    position: absolute;
    z-index: -1 !important;
    top: -3px;
    content: "";
    left: -4px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    width: 15px;
    height: 15px;
}
.service button{
    outline: none;
    background-color: transparent;
    border: none;
    width: 20px;
}
.service ul li{
    text-align: left;
    color: var(--info-color);
    opacity: 0.8;
    padding-top: 5px;
    padding-bottom: 5px;
}
.service .accordion-item{
    margin-bottom: 20px;
    border: 1px solid #e7e7e7 !important;
}
.service .two{
    padding-left: 30px;
    text-align: left;
}
.service .one{
    padding-right: 30px;
}
.service .service-cstm-btn{
    margin-top: 30px;
}
.service .service-cstm-btn span{
    font-size: 18px;
    color: var(--secondary-color);
    padding: 12px 30px;
    border: 1px solid var(--secondary-color);
    border-radius: 3px;
    transition: all 0.5s;
}
.service .service-cstm-btn span i{
    margin-left: 0px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}
.service .service-cstm-btn:hover span{
    background-color: var(--back-hover);
}
.service .service-cstm-btn:hover span i{
    margin-left: 10px;
    visibility: visible;
    opacity: 1;
}
.service .one .service-cstm-btn:hover span i{
    margin-right: 10px;
    visibility: visible;
    opacity: 1;
}

/* ====== Process ====== */
.process{
    padding-top: 50px;
    padding-bottom: 100px;
}
.process .sub-title{
    margin-bottom: 70px;
}
.process .col-3{
    padding: 0 25px;
    text-align-last: left;
}
.process .col-3 .icon i{
    color: var(--highlight);
    font-size: 38px;
    margin-bottom: 20px;
}
.process .col-3 .content h5{
    color: var(--primary-color);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
}
.process .col-3 .content p{
    color: var(--info-color);
    opacity: 0.8;
    font-size: 16px;
    line-height: 26px;
}


/* ======= Work ======== */
.work{
    padding: 50px 0;
}
.work .left{
    position: relative;
}
.work .left .shape-1{
    position: absolute;
    height: 25px;
    width: 25px;
    top: 10%;
    right: 0;
    background-color: var(--highlight);
    opacity: 0.2;
    border-radius: 50%;
    animation: shapes1 120s infinite linear;
}
@keyframes shapes1 {
    0%{
        top: 0%;
        right: 0%;
    }
    25%{
        top: 50%;
        right: 100%;
    }
    50%{
        top: 90%;
        right: 0%;
    }
    75%{
        top: 50%;
        right: 100%;
    }
    100%{
        top: 0%;
        right: 0%;
    }
}
.work .left .shape-2{
    position: absolute;
    height: 35px;
    width: 35px;
    bottom: 10%;
    left: 0;
    background-color: var(--secondary-color);
    opacity: 0.2;
    border-radius: 50%;
    animation: shapes2 120s infinite linear;
}
@keyframes shapes2 {
    0%{
        bottom: 0%;
        left: 0%;
    }
    25%{
        bottom: 50%;
        left: 100%;
    }
    50%{
        bottom: 90%;
        left: 0%;
    }
    75%{
        bottom: 50%;
        left: 100%;
    }
    100%{
        bottom: 0%;
        left: 0%;
    }
}
.work .right{
    position: relative;
}
.work .right .shape-1{
    position: absolute;
    height: 25px;
    width: 25px;
    top: 10%;
    right: 0;
    background-color: var(--highlight);
    opacity: 0.2;
    border-radius: 50%;
    animation: shapes21 120s infinite linear;
}
@keyframes shapes21 {
    0%{
        top: 0%;
        right: 0%;
    }
    25%{
        top: 50%;
        right: 100%;
    }
    50%{
        top: 90%;
        right: 0%;
    }
    75%{
        top: 50%;
        right: 100%;
    }
    100%{
        top: 0%;
        right: 0%;
    }
}
.work .right .shape-2{
    position: absolute;
    height: 35px;
    width: 35px;
    bottom: 10%;
    left: 0;
    background-color: var(--secondary-color);
    opacity: 0.2;
    border-radius: 50%;
    animation: shapes22 120s infinite linear;
}
@keyframes shapes22 {
    0%{
        bottom: 0%;
        left: 0%;
    }
    25%{
        bottom: 50%;
        left: 100%;
    }
    50%{
        bottom: 90%;
        left: 0%;
    }
    75%{
        bottom: 50%;
        left: 100%;
    }
    100%{
        bottom: 0%;
        left: 0%;
    }
}
.work .col-4 h6{
    color: var(--info-color);
    opacity: 0.6;
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 20px;
}
.work .col-4 h2{
    color: var(--primary-color);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
}
.work .col-4 p{
    color: var(--info-color);
    line-height: 24px;
    opacity: 0.8;
    font-size: 15px;
    margin-bottom: 30px;
}
.work .visit{
    width: max-content;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}
.work .visit i{
    color: var(--highlight) !important;
    font-size: 28px;
    margin-right: 15px;
}
.work .work-btn{
    display: flex;
    justify-content: end;
}
.work .work-btn .work-cstm-btn span{
    font-size: 20px;
    color: var(--secondary-color);
    padding: 12px 30px;
    border: 1px solid var(--secondary-color);
    border-radius: 3px;
    transition: all 0.5s;
}
.work .work-btn .work-cstm-btn span i{
    margin-left: 0px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}
.work .work-btn .work-cstm-btn:hover span{
    background-color: var(--back-hover);
}
.work .work-btn .work-cstm-btn:hover span i{
    margin-left: 10px;
    visibility: visible;
    opacity: 1;
}
.work .work-btn .one{
    margin-right: 20px;
}
.work .work-btn .two span{
    border: 3px solid var(--secondary-color);
}

/* ======= Appointment ======= */
.appointment{
    text-align: center;
    padding: 150px 0;
    background-color: var(--black);
    background-image: url('../img/appointment-back.png') !important;
    background-size: cover;
    background-position: center;
}
.appointment h2{
    text-align: center;
    color: var(--white);
    font-weight: 700;
    font-size: 40px;
    padding-bottom: 10px;
    text-transform: capitalize;
}
.appointment p{
    text-align: center;
    color: var(--white);
    opacity: 0.5;
    letter-spacing: 3px;
    word-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.appointment .appointment-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}
.appointment .appointment-btn .appointment-cstm-btn span{
    font-size: 20px;
    color: var(--white);
    padding: 12px 30px;
    border: 1px solid var(--white);
    border-radius: 3px;
    transition: all 0.5s;
}
.appointment .appointment-btn .appointment-cstm-btn span i{
    margin-left: 0px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}
.appointment .appointment-btn .appointment-cstm-btn:hover span{
    background-color: var(--back-hover);
}
.appointment .appointment-btn .appointment-cstm-btn:hover span i{
    margin-left: 10px;
    visibility: visible;
    opacity: 1;
}
.appointment .appointment-btn .one{
    margin-right: 20px;
}
.appointment .appointment-btn .two span{
    border: 3px solid var(--white);
}


/* ========= About ========== */
.about{
    padding: 100px 0;
}
.about .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about .sub-title{
    text-align: left;
}
.about .data h2{
    font-size: 35px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 20px;
}
.about .data p{
    font-size: 16px;
    line-height: 30px;
    color: var(--info-color);
    opacity: 0.8;
    margin-bottom: 50px;
}
.about .bars span{
    text-transform: uppercase;
    font-size: 12px;
    line-height: 30px;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--primary-color);
}
.about .web-design{
    margin-left: 10%;
}
.about .graphic-design{
    margin-left: 20%;
}
.about .image{
    position: relative;
    height: 600px;
    background-color: #f0f0f0 !important;
    padding: 0;
}
.about .image img{
    left: -20%;
    top: -10%;
    position: absolute;
    padding: 100px 0;
    width: 100%;
}
.about .extra{
    display: none;
}


/* ======= What - do ======= */
.what-do{
    background-image: url('../img/what-do-back.png');
    background-size: cover;
    padding: 100px;
    padding-bottom: 50px;
    background-color: var(--secondary-color);
}
.what-do .main .col-4{
    text-align: center;
}
.what-do .main .col-4 h2{
    color: var(--white);
    font-size: 100px;
    font-weight: 800;
    margin: 0;
    padding: 0;
}
.what-do .sub .col-4{
    margin-top: 100px;    
    margin-bottom: 100px;
    padding-right: 50px;
}
.what-do .main .col-4 p{
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
}
.what-do .main-num{
    display: flex;
    justify-content: center;
    align-items: center;
}
.what-do .main .col-4 .main-num span{
    color: var(--white);
    font-size: 100px;
    font-weight: 800;
    margin: 0;
    padding: 0;
}
.what-do .sub h4{
    margin-bottom: 20px;
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 3px;
}
.what-do .sub ul{
    padding: 0;
    margin: 0;
}
.what-do .sub ul li{
    padding-bottom: 7px;
    color: var(--white);
    font-size: 14px;
    text-transform: capitalize;
}
.what-do .sub ul li span{
    font-weight: 700;
    font-size: 15px;
}
.what-do .social ul{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.what-do .social ul li{
    list-style: none;
    padding: 0 20px;
}
.what-do ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background-color: transparent;
    border: 2px solid var(--back-hover);
    border-radius: 50%;
    color: var(--white);
    transition: 0.5s;
}
.what-do ul li:hover a{
    background-color: var(--back-hover);
}


/* ====== Testimonials ======= */
.testimonial{
    padding: 100px 0;
}
.testimonial .col-4{
    padding-right: 50px;
}
.testimonial .image img{
    height: 70px;
    width: 70px;
    margin-bottom: 30px;
    border-radius: 50%
}
.testimonial p{
    font-size: 16px;
    color: var(--info-color);
    opacity: 0.8;
    line-height: 25px;
    margin-bottom: 50px;
}
.testimonial h6{
    font-size: 16px;
    color: var(--primary-color);
    margin: 0;
    text-transform: capitalize;
}
.testimonial span{
    text-transform: capitalize;
    font-size: 16px;
    color: var(--info-color);
    opacity: 0.8;
}


/* ====== Header ====== */
footer{
    text-align: center;
    padding-top: 100px;
    padding-bottom: 20px;
    background-color: var(--black);
    background-image: url('../img/appointment-back.png') !important;
    background-size: cover;
    background-position: center;
}
footer h2{
    text-align: center;
    color: var(--white);
    font-size: 40px;
    padding-bottom: 10px;
    text-transform: capitalize;
}
footer p{
    text-align: center;
    color: var(--white);
    opacity: 0.5;
    letter-spacing: 3px;
    word-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
footer .footer-btn{
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .footer-btn .footer-cstm-btn span{
    font-size: 20px;
    color: var(--white);
    padding: 12px 30px;
    border: 1px solid var(--white);
    border-radius: 3px;
    transition: all 0.5s;
}
footer .footer-btn .footer-cstm-btn span i{
    margin-left: 0px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}
footer .footer-btn .footer-cstm-btn:hover span{
    background-color: var(--back-hover);
}
footer .footer-btn .footer-cstm-btn:hover span i{
    margin-left: 10px;
    visibility: visible;
    opacity: 1;
}
footer .footer-btn .one{
    margin-right: 20px;
}
footer .social ul{
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
footer .social ul li{
    list-style: none;
    padding: 0 20px;
}
footer .social ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background-color: transparent;
    border: 2px solid var(--back-hover);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.5s;
}
footer .social ul li:hover a{
    background-color: var(--back-hover);
}
footer .credit{
    color: var(--info-color);
    opacity: 0.7;
}
footer .credit a{
    color: var(--secondary-color);
    font-weight: 700;
    padding: 0 5px;
}


/* ======================================= */
/* =========== Service-page ============== */
/* ======================================= */
/* banner */
.service-home{
    background-image: url('../img/service-back-home.png');
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-position: right bottom;
    padding-bottom: 100px;
    margin-bottom: 50px;
}
.service-home p{
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}
/* service-strategy */
.service-strategy .sub-title{
    margin-bottom: 30px;
}
.service-strategy img{
    margin-bottom: 30px;
}
.service-strategy .row{
    margin-bottom: 50px;
}
.service-strategy .service-strategy-cstm-btn{
    display: flex;
    margin: 0 auto;
    justify-content: center;
}
.service-strategy .service-strategy-cstm-btn span{
    font-size: 20px;
    color: var(--secondary-color);
    padding: 12px 30px;
    border: 3px solid var(--secondary-color);
    border-radius: 3px;
    transition: all 0.5s;
}
.service-strategy .service-strategy-cstm-btn span i{
    margin-left: 0px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}
.service-strategy .service-strategy-cstm-btn:hover span{
    background-color: var(--back-hover);
}
.service-strategy .service-strategy-cstm-btn:hover span i{
    margin-left: 10px;
    visibility: visible;
    opacity: 1;
}
/* service-packages  */
.service-packages{
    padding-top: 50px;
}
.service-packages .col-6{
    padding-right: 50px;
    margin-bottom: 40px;
}
.service-packages .icon{
    margin-right: 20px;
}
.service-packages .icon i{
    font-size: 20px;
    color: transparent;
    -webkit-text-stroke: 1px #0054ff;
}
.service-packages .content h6{
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.service-packages .content p{
    color: var(--info-color);
    line-height: 26px;
    opacity: 0.8;
}
/* servcie-appointment */
.service-appointment{
    padding-top: 100px;
    margin-bottom: 50px;
}
.service-appointment .cards img{
    width: 80%;
    border-radius: 10px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.service-appointment .cards .content .credit{
    display: flex;
    align-items: center;
    justify-content: start;
}
.service-appointment .cards{
    padding: 20px 30px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.09),
                -10px -10px 30px rgba(0,0,0,0.09);
    border-radius: 5px;
    margin-bottom: 30px;
}
.service-appointment .cards .content .credit{
    margin-bottom: 20px;
}
.service-appointment .cards .content .credit img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    margin-left: 0;
    margin-bottom: 0;
}
.service-appointment .cards .content .credit .name h5{
    margin: 0;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
}
.service-appointment .cards .content .credit .name span{
    margin: 0;
    color: var(--info-color);
    opacity: 0.7;
    font-size: 12px;
    font-weight: 500;
}
.service-appointment .cards .content h4{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1px;
}
.service-appointment .cards .content p{
    font-size: 14px;
    color: var(--info-color);
    opacity: 0.8;
    text-transform: capitalize;
}
.service-appointment .cards .content .appointment-btn{
    display: flex;
    justify-content: end;
}
.service-appointment .cards .content .btn{
    margin-left: auto;
    background-color: var(--secondary-color) !important;
    color: var(--white);
    font-size: 12px;
    transition: all 0.3s;
}
.service-appointment .cards .content .btn:hover{
    background-color: var(--primary-color) !important;
}
/* footer */
.service-footer footer{
    background-size: 120%;
    /* background-position: 80%; */
    background-color: var(--secondary-color);
}
.service-footer footer .credit{
    color: var(--white);
    opacity: 1;
}
.service-footer footer .credit a{
    font-weight: 400;
    color: var(--black);
}
.service-footer footer .col-8{
    margin: 0 auto;
}
.service-footer footer .sub-title span{
    color: var(--white) !important;
}
.service-footer footer form{
    margin-bottom: 20px;
}
.service-footer footer form input{
    margin-bottom: 20px;
    padding: 15px 20px;
    border: none;
}
.service-footer footer form .name,
.service-footer footer form .email,
.service-footer footer form .company,
.service-footer footer form .mobile{
    width: 49.5%;
}
.service-footer footer form .content,
.service-footer footer form .functions,
.service-footer footer form .state,
.service-footer footer form .experience{
    width: 100%;
}
.service-footer footer form textarea{
    width: 100%;
    height: 150px;
    padding: 15px 20px;
}
.service-footer footer .service-footer-cstm-btn{
    display: flex;
    margin-left: auto;
    justify-content: end;
}
.service-footer footer .service-footer-cstm-btn button{
    outline: none;
    background-color: transparent;
    border: none;
    width: max-content;
}
.service-footer footer .service-footer-cstm-btn span{
    font-size: 20px;
    color: var(--white);
    padding: 12px 30px;
    border: 3px solid var(--white);
    border-radius: 3px;
    transition: all 0.5s;
}
.service-footer footer .service-footer-cstm-btn span i{
    margin-left: 0px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}
.service-footer footer .service-footer-cstm-btn:hover span{
    background-color: var(--back-hover);
}
.service-footer footer .service-footer-cstm-btn:hover span i{
    margin-left: 10px;
    visibility: visible;
    opacity: 1;
}
.service-footer footer .social{
    margin-top: 50px;
}
.work ul{
    margin-bottom: 0;
}
.work ul li{
    font-size: 14px;
    color: var(--info-color);
    opacity: 0.8;
}


/* ======================================= */
/* =========== Portfolio-page ============== */
/* ======================================= */
/* banner */
.portfolio-home .row{
    padding-top: 100px !important;
    padding-bottom: 50px !important;
}
/* footer */
.portfolio-footer footer{
    background-size: 120%;
    /* background-position: 80%; */
    background-color: var(--secondary-color);
}
.portfolio-footer footer .credit{
    color: var(--white);
    opacity: 1;
}
.portfolio-footer footer .credit a{
    font-weight: 400;
    color: var(--black);
}

/* ======================================= */
/* =========== about-page ============== */
/* ======================================= */
/* vision */
.about-vision .row{
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-vision .data h2{
    color: var(--primary-color);
    font-size: 30px;
    text-transform: capitalize;
}
.about-vision .data p{
    color: var(--info-color);
    font-size: 14px;
    line-height: 28px;
    opacity: 0.8;
}
.about-vision .points{
    padding-left: 50px;
}
.about-vision .points h3{
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}
.about-vision .points h4{
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}
.about-vision .points h5{
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}
/* process */
.about-process .two{
    margin-top: 40px;
}
.about-process .three{
    margin-top: 80px;
}
.about-process .four{
    margin-top: 120px;
}

/* ======================================= */
/* =========== contact-page ============== */
/* ======================================= */
/* contact-form */
.contact-form{
    padding-bottom: 70px !important;
}
.contact-form .sub-title{
    text-align-last: left;
}
.contact-form .medium{
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 30px;
}
.contact-form .medium i{
    color: #ff636b;
    font-size: 25px;
    margin-right: 20px;
}
.contact-form .medium span{
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}
.contact-form .col-8{
    background-color: var(--secondary-color);
    padding: 50px;
}
.service-footer footer form{
    margin-bottom: 20px;
}
.contact-form form input{
    margin-bottom: 20px;
    padding: 15px 20px;
    border: none;
}
.contact-form form .name,
.contact-form form .email,
.contact-form form .company,
.contact-form form .mobile{
    width: 49.5%;
}
.contact-form form .content,
.contact-form form .functions,
.contact-form form .state,
.contact-form form .experience{
    width: 100%;
}
.contact-form form textarea{
    width: 100%;
    height: 150px;
    padding: 15px 20px;
    margin-bottom: 30px;
}
.contact-form .contact-form-footer-cstm-btn{
    display: flex;
    margin-left: auto;
    justify-content: end;
}
.contact-form .contact-form-footer-cstm-btn button{
    outline: none;
    background-color: transparent;
    border: none;
    width: max-content;
}
.contact-form .contact-form-footer-cstm-btn span{
    font-size: 20px;
    color: var(--white);
    padding: 12px 30px;
    border: 3px solid var(--white);
    border-radius: 3px;
    transition: all 0.5s;
}
.contact-form .contact-form-footer-cstm-btn span i{
    margin-left: 0px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}
.contact-form .contact-form-footer-cstm-btn:hover span{
    background-color: var(--back-hover);
}
.contact-form .contact-form-footer-cstm-btn:hover span i{
    margin-left: 10px;
    visibility: visible;
    opacity: 1;
}
.contact-form .social{
    margin-top: 50px;
}

.contact-form .social ul{
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: left;
    margin-bottom: 40px;
}
.contact-form .social ul li{
    list-style: none;
    padding: 0 5px;
}
.contact-form .social ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    font-size: 12px !important;
    width: 55px;
    background-color: transparent;
    border: 2px solid #ececec;
    border-radius: 50%;
    color: var(--black);
    transition: all 0.5s;
}
.contact-form .social ul li:hover a{
    background-color: #ececec;
}

/* ======================================= */
/* =========== casestudy-page ============== */
/* ======================================= */
.casestudy-banner{
    position: relative;
    background: linear-gradient(180deg,#474ab6 0%,#9271f6 100%);
    padding-top: 300px;
    padding-bottom: 300px;
}
.casestudy-banner h2{
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
}
.casestudy-banner .casestudy-web-btn span{
    color: var(--white);
    font-size: 20px;
    padding: 10px 30px;
    border: 3px solid var(--white);
    background-color: transparent;
    border-radius: 5px;
}
.casestudy-banner .inner-image{
    position: absolute;
    top: 35%;
}
/* features */
.casestudy-features{
    padding-top: 450px;
    text-align: center;
}
.casestudy-features h4{
    text-align: center;
    margin: 0 auto;
    font-size: 24px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 50px;
    max-width: 900px;
}
.casestudy-features .row .data{
    width: 20% !important;
}
.casestudy-features .row .data ul{
    padding: 0;
}
.casestudy-features .row .data h6{
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 12px;
    letter-spacing: 3px;
}
.casestudy-features .row .data ul li{
    color: var(--info-color);
    opacity: 0.9;
    text-transform: capitalize;
    font-size: 14px;
    list-style: none;
}
.casestudy-features .row .case-service,
.casestudy-features .row .other{
    margin-top: 60px !important;
}
.casestudy-features .row .deliverables{
    margin-top: 120px !important;
}
.color-main{
    padding: 50px 0;
}
.color-main .color{
    width: 20%;
}
.color-main .color .round{
    position: relative;
    margin: 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #52526c;
}
.color-main .color .round::before{
    position: absolute;
    content: "";
    top: -23%;
    left: -23%;
    width: 120px;
    z-index: -1 !important;
    height: 120px;
    background-color: #52526c;
    opacity: 0.08;
    border-radius: 50%;
}
.color-main .info .round{
    margin-top: 30px;
}
.color-main .black .round{
    margin-top: 60px;
    background-color: #000;
}
.color-main .black .round::before{
    content: "";
    background-color: #000;
}
.color-main .primary .round{
    margin-top: 30px;
    background-color: #000248;
}
.color-main .primary .round::before{
    content: "";
    background-color: #000248;
}
.color-main .secondary .round{
    background-color: #0d6efd;
}
.color-main .secondary .round::before{
    content: "";
    background-color: #0d6efd;
}
.color-main .back-bg .round{
    margin-top: 40px;
    background-color: #ff636b;
}
.color-main .back-bg .round::before{
    content: "";
    background-color: #ff636b;
}
.color-main .color p{
    font-size: 14px;
    letter-spacing: 2px;
    color:var(--primary-color);
    margin-top: 50px;
    text-align: center;
    font-weight: 500;
}