
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro);
@import url(https://fonts.googleapis.com/css?family=Teko:700);
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@700&display=swap');

:root {
    --main-font-family: 'Libre Baskerville', serif;
    --medium-font-family: 'Libre Baskerville', serif;
    --main-color: #646667;
    --secondary-color: #150050;
    --black: #000;
    --white: #fff;
    --grey: #666;
    --border-radius: 1rem;
    --border: 0.1rem solid rgba(0, 0, 0, 0.1);
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    background: #FAFAFA;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}

.social-icon-header {
    width: 100%;
    padding: 5px 0;
    background-color: #1F1F2E;
}
.social-icon-header a {
    color: #fff;
    margin: 0 20px;
    transition: all, .3s linear;
}
.social-icon-header a:hover {
    color: #646667;
}
header {
    width: 100%;
    /* height: 86px; */
    padding: 10px 0;
}
.navbar-nav{
    width: 100%;
    justify-content: space-evenly;
}
.navbar-toggler {
    border-color: #000;
}
.navbar-toggler.first i{
    color: var(--basic-100, #000);
}
.navbar-toggler i{
    color: var(--basic-100, #fff);
}
.nav-link.active {
    color: #000!important;
}
.dropdown-item.active {
    background-color: #fff;
    color: #646667;
    padding-left: 1.2rem;
}

.dropdown:hover .dropdown-menu{
    display: block;
}
#scrollNavbar .social-icon-header a {
    color: #fff;
}
#scrollNavbar {
    width: 100%;
    position: fixed;
    top: -137px;
    transition: transform .3s linear;
}
#scrollNavbar a {
    color: #000;
}
#scrollNavbar a:hover{
    color: #646667;
}
#scrollNavbar .navbar-flex {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: .5rem 0;
    justify-content: space-between;
}
#scrollNavbar .navbar-flex .logo img{
    margin-right: 20px;
}
#scrollNavbar .navbar-toggler {
    position: absolute;
    top: 26px;
    right: 10px;
    color: #000;
    border-color: #646667;
    background-color: #646667;
}
#scrollNavbar .dropdown-menu li .dropdown-item{
    color: #fff;
    font-weight: 500;
    font-family: var(--medium-font-family);
}
#scrollNavbar .dropdown-menu li .dropdown-item:hover{
    color: #646667;
}
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 7% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 45%;
}
.modal-content h2{
    color: #253A87;
    font-weight: 900;
}
  
.close {
    position: absolute;
    top: 0px;
    right: 26px;
    color: #aaa;
    font-size: 55px;
    font-weight: bold;
    cursor: pointer;
}
  
.close:hover,
.close:focus {
    color: rgb(247, 8, 8);
    text-decoration: none;
    cursor: pointer;
}

.quote-form {
    width: 100%;
    margin: 0 auto;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
  
input,
textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
  
button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
  
.button:hover {
    background-color: #646667;
}
  

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.carousel-slider {
    height: 100%;
    object-fit: cover;
}

.logo img{
    width: 123px;
}

.contact-detail a{
    color: #000;
    font-weight: 900;
}
.contact-detail .btn-qoute {
    padding: 10px 15px;
    background-color: #646667;
    color: #fff;
    font-weight: 600;
}
.contact-detail i{
    margin-right: 5px;
    color: #253A87;
}

.nav-link {
    color: #646767;
    margin-right: 0px;
    font-weight: 600 ;
    font-family: var(--main-font-family);
}
.nav-link:hover {
    color: #000;
}

.dropdown-menu {
    padding: 0 0;
    top: 40px;
    background-color: #646667;
    
}
.dropdown-menu li a {
    transition: all, .5s;
    color: #fff;
    position: relative;
    font-weight: 500;
    font-family: var(--main-font-family);
}
.dropdown-menu li a::before{
    content: '';
    width: 0px;
    height: 2px;
    background-color: #646667;
    position: absolute;
    top: 13px;
    left: 15px;
    transition: all, .5s;
}

.dropdown-menu li:hover a{
    background-color: #fff;
    color: #646667;
    padding-left: 2rem;
    cursor: pointer;
    font-weight: 500;
}
.dropdown-menu li:hover a::before{
    width: 16px;
}

         
.btn-grad {
    background: rgb(100,102,103);
    background: linear-gradient(90deg, rgba(100,102,103,1) 0%, rgba(172,172,176,1) 51%, rgba(51,52,52,1) 100%);
    padding: 10px 25px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    font-weight: 900;
}

.btn-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}
 


.carousel-item {
    /* height: 70vh; */
    height: calc(100vh - 200px);
}
.carousel-item img {
   position: relative;
}
/* .carousel-item img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
} */

.carousel-control-prev-icon, .carousel-control-next-icon{
    background-color: #fff;
    color: #030303;
    padding: 15px;

}
:is(.carousel-control-next-icon, .carousel-control-next-icon):hover{
    background-color: #fff;
    outline: 0;
    opacity: 0.9;
}
.carousel-caption h5 {
    font-size: 34px;
}
.carousel-caption p {
    font-size: 20px;
}
.vector {
    width: 100%;
    padding: 50px 0;
}
.divpreview img{
    width: 100%;
}

.vector {
    position: relative;
}

.graphic-box {
    position: relative;
   
}
#carouselExampleCaptions {
    position: relative;
}
#carouselExampleCaptions .logo-3m{
    width: 26%;
    position: absolute;
    top: 20px;
    right: 52px;
    z-index: 99;
    box-shadow: 9px 8px 5px -3px rgba(0,0,0,0.75);
    -webkit-box-shadow: 9px 8px 5px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: 9px 8px 5px -3px rgba(0,0,0,0.75);
}
#carouselExampleCaptions .logo-3m img{
    width: 100%;
}

.grid {
    display: grid;
    width: 100px;
    height: 100px;
    background-color: antiquewhite;
}
svg {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #5b5b5b00;
}
polygon {
    cursor: pointer;
}
.poly-1 {
    position: relative;
}

.poly-1~#main .card {
    position: absolute;
    top: 10px;
    left: 1px;
}

#hoverCard {
    position: absolute;
    width: 275px;
    border: 4px solid #fff;
    background-color: #fff;
}
.carousel-control-prev-icon, .carousel-control-next-icon{
    width: 40px;
    height: 55px;
    display: flex;
    padding: 14px 8px;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* border-radius: 0% 100% 100% 0% / 30% 0% 100% 70% ; */
    background-color: rgba(0,0,0,0.7);
}
.carousel-content {
    width: 58%;
    position: absolute;
    top: 40%;
    color: #FFF;
    font-family: Montserrat;
    text-align: start;
    left: 17%;
    z-index: 99;
}
.carousel-content :is(h5, h4, h3, h2){
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 22px;
}
.carousel-content p{
    font-size: 20px;
    font-weight: 600;
}
.section {
    margin:100px 0;
}
.title-head h1 {
    margin-bottom: 49px;
    color: #ff0202;
    font-size: 40px;
    /* font-family: Montserrat; */
    font-family: 'Libre Baskerville', serif;
    font-weight: 900;
    line-height: 30px;
}
.title-head h3{
    font-family: var(--main-font-family);
}

.left-text {
    text-align: justify;
    font-size: 18px;
    line-height: 2;
}
.right-container {
    width: 100%;
    display: grid;
    grid: 184px/ auto auto;
    grid-gap: 6px;
}

.image-gallery {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.image-container img{
    width: 100%;
}
.image-container {
    position: relative;
}
.image-gallery .img-caption {
    width: 100%;
    background: rgba(19, 19, 19, 0.62);
    position: absolute;
    bottom: 0;
    color: #FFF;
    text-align: center;
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 700;
    transform: translateY(64px);
    transition: all, .3s ease-in;
}
.image-gallery:hover .img-caption{
    transform: translateY(10px);
}
.image-gallery .img-caption .img-card-title{
    font-size: 15px;
    font-weight: 900;
}

.image-gallery .img-card-caption{
    margin-top: 10px;
}
.rectangular-img {
    width: 100%;
    border-radius: 15px;
    position: relative;
}
.rectangular-img img{
    height: 446px;
    width: 100%;
}
.rectangular-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 85%;
    height: 382px;
    position: absolute;
    top: 30px;
    left: 24px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0px 5px;
    text-align: center;
    z-index: 999;
    opacity: 0;
    font-size: 20px;
    transition: all, .3s ease-out;
}
.rectangular-caption h4{
    font-weight: 900;
}
.rectangular-img:hover .rectangular-caption {
    opacity: 1;
}

/* service offer  */

.service-frame {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    padding: 32px 42px;
    gap: 10px;
    border-radius: 9px;
    background: #FFF;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
    transition: all, .5s linear;
}
.service-frame img{
    width: 128px;
    height: 128px;
    margin-bottom: 37px;
}
.service-frame .frame-title{
    color: #000;
    text-align: center;
    font-size: 22px;
    font-family: Montserrat;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 35px;
}
.service-frame .frame-caption {
    color: #878787;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    /* line-height: 2px; */
}
.service-frame .frame-btn {
    color: #646667;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}
.service-frame .frame-btn i{
    margin-left: 5px;
    transition: all, .2s ease-in-out;
}
.service-frame .frame-btn:hover i{
    margin-left: 12px;
}
.service-frame:hover {
    box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.25);
}
.service-frame:hover .hangout-2{
    box-shadow: 0px 10px 22px -8px rgba(0,0,0,0.48);
    -webkit-box-shadow: 0px 10px 22px -8px rgba(0,0,0,0.48);
    -moz-box-shadow: 0px 10px 22px -8px rgba(0,0,0,0.48);
}

/* Our Clients  */
#clientCardGrid {
    display: none;
}

#clientCardCarousel {
    display: block;
}

.client-frame {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
    
}
.brand-logo {
    display: flex;
    width: var(--brandCardSize);
    height: var(--brandCardSize);
    padding: 48px;
    margin: 9px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    background: transparent;
    transition: all .4s ease-in-out;
}
/* .brand-logo:hover {
    box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.25);
} */

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* testimonial content  */

.large-format-printing {
    width: 100%;
    height: 854px;
    display: flex;
    align-items: center;
    background: url('../images/large-format-printing-1.png'), lightgray 50% / cover no-repeat;
}

.rectangular41 {
    position: relative;
    width: 100%;
    height: 538px;
    background: rgba(0, 0, 0, 0.90);
    padding: 38px 43px;
    
}
.test-card {
    display: flex;
    height: 462px;
    flex-direction: column;
    padding: 49px 23px;
    align-items: center;
    border-radius: 7px;
    background: #FFF;
}
.test-card img {
    width: 113px;
    height: 113px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #FFF;
    margin-bottom: 21px;
}
.test-card .client-name {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-family: Montserrat;
    font-weight: 600;
    line-height: 5px;
}
.test-card .company-name {
    color: #686868;
    text-align: center;
    font-size: 13px;
    font-family: Montserrat;
    font-weight: 600;
    margin-bottom: 20px;
}
.test-card .rating-star{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 21px;
}
.test-card .rating-star i{
    margin: 0 10px;
    color: rgba(255, 185, 52, 1);
    font-size: 25px;
}
.rating-star-none i{
    color: rgba(135, 135, 135, 1);
}

.test-card .review{
    text-align: center;
    overflow: hidden;
}
.gallery-carousel .owl-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
}
.gallery-carousel .owl-carousel .owl-nav button{
    padding: 10px 20px!important;
    align-items: flex-start;
    display: flex;
    background: #000;
    border: none;
    color: #fff;
    margin: 10px 3px;
}
.gallery-carousel .owl-carousel .owl-nav button span{
    font-size: 20px;
    font-weight: bolder;
}
.gallery-carousel .owl-nav button:hover {
    background-color: #646767;
}

.rectangular41 .owl-carousel .owl-nav.disabled {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 25px;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}
.rectangular41 .owl-carousel .owl-nav button{
    padding: 5px 28px!important;
    align-items: flex-start;
    display: flex;
    background: #fff;
    border: none;
    color: #000;
    font-weight: bolder;
    margin-bottom: 5px;
}
.rectangular41 .owl-carousel .owl-nav button:hover{
    background-color: #646767;
    color: #fff;
}
.rectangular41 .owl-carousel .owl-stage-outer {
    position: absolute;
    width: 100%;
    left: 83px;
}





/*********** About Section Start ************/

    /* Breadcrumb Style  */

.breadcrumb-bg {
    background-image: url('../images/print-prep.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0px;
}
.breadcrumb-bg::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.54);
}
.breadcrumb-text {
    position: relative;
    z-index: 990;
}
.breadcrumb-text h1{
    color: #FFF;
    font-size: 65px;
    font-family: var(--main-font-family);
    font-weight: 700;
}
.breadcrumb-text p{
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.breadcrumb-text p a{
    color: #FFF;
    font-weight: 800;
}
.breadcrumb-text p a:hover{
    color: #646667;   
}


    /* About Us section  */

.about-content {
    text-align: justify;
    font-size: 18px;
    margin-top: 35px;
}
.right-image {
    position: relative;
}
.right-image img{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    box-shadow:  4px 4px 20px 0px rgba(0, 0, 0, 0.25);
    transition: all, .3s;
}
.right-image .bg-shadow{
    width: 100%;
    aspect-ratio: 1/.6;
    background-color: #646667;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: -1;
}
.right-image:hover img{
    top: -5px;
    left: -5px;
}




    /* About service Card  */

.about-section .service-frame .frame-caption{
    text-align: justify;
    font-size: 15px;
    height: 135px;
    overflow: hidden;
    
}

.about-section .service-frame {
    gap: normal;
    position: relative;
}
.about-section .service-frame .hangout-1{
    position: absolute;
    top: -13px;
    left: 7px;
    width: 61px;
    height: 40px;
    z-index: 935;
}
.about-section .service-frame .hangout-2{
    position: absolute;
    bottom: -54px;
    right: 7px;
    width: 95px;
    height: 62px;
    z-index: 935; 
}

    /* Image Hover  */

.image-hover-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.snip1543 {
    background-color: #fff;
    color: #ffffff;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    margin: 10px;
    max-width: 315px;
    min-width: 230px;
    height: 236px;
    overflow: hidden;
    position: relative;
    text-align: left;
    width: 100%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
      
      .snip1543 *,
      .snip1543 *:before,
      .snip1543 *:after {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all 0.45s ease;
        transition: all 0.45s ease;
      }
      
      .snip1543 img {
        backface-visibility: hidden;
        max-width: 100%;
        vertical-align: top;
      }
      
      .snip1543:before,
      .snip1543:after {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        content: '';
        background-color: #262728;
        opacity: 0.5;
        -webkit-transition: all 0.45s ease;
        transition: all 0.45s ease;
      }
      
      .snip1543:before {
        -webkit-transform: skew(30deg) translateX(-80%);
        transform: skew(30deg) translateX(-80%);
      }
      
      .snip1543:after {
        -webkit-transform: skew(-30deg) translateX(-70%);
        transform: skew(-30deg) translateX(-70%);
      }
      
      .snip1543 figcaption {
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        z-index: 1;
        bottom: 0;
        padding: 25px 40% 25px 20px;
      }
      
      .snip1543 figcaption:before,
      .snip1543 figcaption:after {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #646667;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
        content: '';
        opacity: 0.5;
        z-index: -1;
      }
      
      .snip1543 figcaption:before {
        -webkit-transform: skew(30deg) translateX(-100%);
        transform: skew(30deg) translateX(-100%);
      }
      
      .snip1543 figcaption:after {
        -webkit-transform: skew(-30deg) translateX(-90%);
        transform: skew(-30deg) translateX(-90%);
      }
      
      .snip1543 h3,
      .snip1543 p {
        margin: 0;
        opacity: 0;
        letter-spacing: 1px;
      }
      
      .snip1543 h3 {
        font-family: 'Teko', sans-serif;
        font-size: 36px;
        font-weight: 700;
        line-height: 1em;
        text-transform: uppercase;
      }
      
    .snip1543 p {
        font-size: 0.9em;
    }
      
    .snip1543 a {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
    }
      
    .snip1543:hover h3,
    .snip1543.hover h3,
    .snip1543:hover p,
    .snip1543.hover p {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 0.9;
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }
      
    .snip1543:hover:before,
    .snip1543.hover:before {
        -webkit-transform: skew(30deg) translateX(-20%);
        transform: skew(30deg) translateX(-20%);
        -webkit-transition-delay: 0.05s;
        transition-delay: 0.05s;
    }
      
    .snip1543:hover:after,
    .snip1543.hover:after {
        -webkit-transform: skew(-30deg) translateX(-10%);
        transform: skew(-30deg) translateX(-10%);
    }
      
    .snip1543:hover figcaption:before,
    .snip1543.hover figcaption:before {
        -webkit-transform: skew(30deg) translateX(-40%);
        transform: skew(30deg) translateX(-40%);
        -webkit-transition-delay: 0.15s;
        transition-delay: 0.15s;
    }
      
    .snip1543:hover figcaption:after,
    .snip1543.hover figcaption:after {
        -webkit-transform: skew(-30deg) translateX(-30%);
        transform: skew(-30deg) translateX(-30%);
        -webkit-transition-delay: 0.1s;
        transition-delay: 0.1s;
    }

     /* Image Hover End */

    /* CLient Carousel */
#clientCardCarousel .owl-stage-outer{
    background-color: #fff;
}

#clientCardCarousel .owl-item{
    display: flex;
    justify-content: center;
}

.client-carousel .brand-logo {
    display: flex;
    width: 100%;
    height: auto;
    padding: 30px 10px; 
    margin: 0px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    background: transparent;
    transition: all .4s ease-in-out;
}
.client-carousel .brand-logo img{
    width: 100%;
    height: 98px;
    object-fit: contain;
    opacity: .5;
    filter: grayscale(100%);
}
.client-carousel .brand-logo:hover img{
    opacity: 1;
    filter: none;
}
.client-carousel .owl-nav{
    display: flex;
    flex-direction: row!important;
    justify-content: center;
    margin-top: 25px;
}
.client-carousel .owl-carousel :is(.owl-nav button.owl-prev, .owl-nav button.owl-next){
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 900;
    padding: 5px!important;
    background-color: #000;
    border-radius: 50%;
    color: #fff;
}
.client-carousel .owl-carousel .owl-nav button.owl-prev{
    margin-right: 10px;
}
.client-carousel .owl-carousel :is(.owl-nav button.owl-prev, .owl-nav button.owl-next):hover{
    background-color: #646767;
}

/******** About Section End  *********/

/******** Service section Start  *********/

.service-card {
    width: 100%;
    position: relative;
    /* width: 418px; */
    height: 336px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    padding: 22px;
    color: #fff;
    border-radius: 5px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color:  #D9D9D9;
}
.layer::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.service-card h2{
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.service-card p {
    color: #FFF;
    /* font-family: 'Inter', sans-serif; */
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    height: 110px;
    overflow: hidden;
    font-style: normal;
    text-align: justify;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 37px;
}
.service-card .btn{
    display: flex;
    padding: 7px 14px;
    align-items: flex-start;
    border-radius: 4px;
    color:  #FFF;
    background: #646667;
    text-transform: uppercase;
    font-weight: 900;
}
.service-card .btn:hover{
    background-color: #ff0202;
}

.service-card h2, p, a{
    position: relative;
    z-index: 99;
}
         


.service-card .btn-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}
 

.page-title.service::after {
    width: 2%;
}
.page-title.service:hover::after{
    width: 11%; 
}
.figure-img.img-fluid.rounded {
    height: 360px;
}
.figure-img.img-fluid.rounded~.figure-caption {
    color: #646667;
}

:root {
    --cover-timing: 0.5s;
    --cover-ease: cubic-bezier(0.66, 0.08, 0.19, 0.97);
    --cover-stagger: 0.15s;
    --text-timing: 0.75s;
    --text-stagger: 0.015s;
    --text-ease: cubic-bezier(0.38, 0.26, 0.05, 1.07);
    --title-stagger: 0.05s;
    --highlight: white;
    --brandCardSize: 225px;
}

main {
    display: grid;
    place-items: center;
  }

#main .card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9/12;
    display: flex;
    flex-direction: column;
    border-radius: 7px;
    box-shadow: rgba(255, 255, 255, 0.3) 0 5vw 6vw -8vw,
      rgba(255, 255, 255, 0) 0 4.5vw 5vw -6vw,
      rgba(50, 50, 80, 0.5) 0px 4vw 8vw -2vw, rgba(0, 0, 0, 0.8) 0px 4vw 5vw -3vw;
    transition: box-shadow 1s var(--cover-ease);
  }
  
  #main .card > * {
    z-index: 2;
  }
  
  #main .card > img {
    z-index: 0;
    transition: all 0.8s cubic-bezier(0.66, 0.08, 0.19, 0.97);
  }
  
  #main .card::before,
  #main .card::after {
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    transform-origin: left;
    transform: scaleX(0);
    transition: all var(--cover-timing) var(--cover-ease);
    z-index: 1;
  }
  
  #main .card::after {
    transition-delay: var(--cover-stagger);
    top: 50%;
  }
  
  #main .card:hover,
  #main .card:focus {
    box-shadow: white 0 5vw 6vw -9vw, var(--highlight) 0 5.5vw 5vw -7.5vw,
      rgba(50, 50, 80, 0.5) 0px 4vw 8vw -2vw, rgba(0, 0, 0, 0.8) 0px 4vw 5vw -3vw;
  }
  
  #main .card:hover::before,
  #main .card:hover::after,
  #main .card:focus::before,
  #main .card:focus::after {
    transform: scaleX(1);
  }
  
  #main .card:hover h2 .char,
  #main .card:hover p .word,
  #main .card:focus h2 .char,
  #main .card:focus p .word {
    opacity: 1;
    transform: translateY(0);
    color: inherit;
  }
  
  #main .card:hover h2 .char,
  #main .card:focus h2 .char {
    transition-delay: calc(0.1s + var(--char-index) * var(--title-stagger));
  }
  
  #main .card:hover p .word,
  #main .card:focus p .word {
    transition-delay: calc(0.1s + var(--word-index) * var(--text-stagger));
  }
  
  #main .card:hover img,
  #main .card:focus img {
    transform: scale(1.1);
  }
  
  #main .card:nth-of-type(1) {
    --highlight: #111518;
  }
  
  #main .card:nth-of-type(2) {
    --highlight: #358289;
  }
  
  #main .card:nth-of-type(3) {
    --highlight: #dd7360;
  }
  
  #main .text {
    position: absolute;
    inset: 20px;
    top: auto;
    display: none;
    transition: all var(--cover-timing) var(--cover-ease);
  }
  
  #main h2 {
    font-size: 30px;
    font-size: clamp(20px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 0.2em;
    color: #FFF;
  }
  #main .card:hover .text{
    display: block;
  }
  
  #main .card:hover h2{
    color: #ff0202;
  }
  
  #main p {
    font-size: 12px;
    font-size: clamp(10px, 1.25vw, 14px);
    font-weight: 700;
    line-height: 1.4;
    text-align: justify;
    margin-top: 0.2em;
    margin-bottom: 0;
    color: #fff;
  }
  
  #main h2 .char,
  p .word {
    color: var(--highlight);
    display: inline-block;
    opacity: 0;
    position: relative;
    transform: translateY(20px);
    transition-property: transform, opacity, color;
    transition-timing-function: var(--text-ease);
    transition-duration: var(--text-timing), var(--text-timing),
      calc(var(--text-timing) * 2);
  }
  
  #main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
  }
  
  main {
    grid-template-columns: 1fr;
    grid-template-rows: 60px;
    grid-gap: 2em;
  }
  
  
  #main .card {
    width: 100%;
    max-width: 500px;
  }
  
  #main h1 {
    color: #efefe9;
    font-weight: 100;
    font-size: 2.4rem;
  }

/******** Service section end *********/


/********* Contact start *************/

.contact-display {
    width: 100%;
    display: flex;
}

.contact-image{
    width: 100%; 
    height: 557px; 
}
.contact-form-detail{
    flex:1;
}
.contact-form {
    width: 100%;
    /* max-width: 550px; */
    background: #fff;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
    flex: 1 1 40rem;
    padding: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-form h3 {
    color: #000;
    font-size: 3rem;
    padding-bottom: 20px;
    text-transform: capitalize;
}
.contact-form .box {
    width: 100%;
    font-size: 16px;
    color: #150050;
    background-color: #fff;
    text-transform: none;
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}
.contact-form .btn {
    display: inline;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 25px;
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}
.contact-form .btn:hover{
    background-color: #646767;
}




/********* Contact end *************/


/********* footer style start *************/
footer {
    width: 100%;
    background-color: #131313;
    color: #fff;
    padding: 50px 0;
}

footer .container .row .col-md-3 h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
    margin-bottom: 25px;
}

footer .container .row .col-md-3 ul {
    padding: 0;
}
footer .container .row .col-md-3 ul li{
    padding-bottom: 16px;
}

footer .container .row .col-md-3 ul li a, footer .container .row .col-md-3 p {
    color: #FFF;
    font-size: 14px;
    transition: all, .5s ease;
}

/* hover effect style  */
footer .container .row .col-md-3 ul li a:hover{
    color: #646667;
    font-size: 14px;
}

.social-links {
    display: flex;
}
.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    /* border: 2px solid #fff; */
    border-radius: 0.5rem;
    margin-right: 10px;
    color: #646667;
    font-size: 14px;
    transition: all, .5s ease;
}
.social-links a i{
    font-size: 18px;
}
.social-links a:hover {
    background-color: #646767;
    color: #fff;
}




.top-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    position: fixed;
    bottom: 35px;
    right: 50px;
    align-items: center;
    justify-content: center;
    border: 2px solid #646667;
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: 999999;
}
.top-arrow i{
    color: #646667;
    font-weight: 900;
}
.top-arrow:hover i{
    color: #fff;
}
.top-arrow:hover{
    background-color: #ff0202;
    border: 2px solid #ff0202;
}

