
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100;0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;0,9..40,900;0,9..40,1000;1,9..40,100;1,9..40,200;1,9..40,300;1,9..40,400;1,9..40,500;1,9..40,600;1,9..40,700;1,9..40,800;1,9..40,900;1,9..40,1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Manrope:wght@200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;  
    color:#1C1C1C;
    overflow-x: hidden;    
    font-family: 'DM Sans', sans-serif;
}

/* comman */
html{
    scroll-behavior: smooth;
    margin: 0!important;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/*comman-area*/
ol, ul{
    margin: 0;
    padding: 0;
}
img{
    display: block;
}
a{  
    text-decoration: none;
    transition: all 0.5s ease;
}
a:focus, a:hover, a:active{
    text-decoration: none;
    outline: none;
}
h1,h2,h3,h4,h5,h6{
    font-weight: normal;
    margin: 0;
}
h1,h2{
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -1.28px; 
}
h3{
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 110%; /* 35.2px */
    letter-spacing: -1.28px; 
}
p{
    margin: 0;
    font-size: 20px;
    line-height: normal;
    font-weight: normal;
    color: #717171;
}
figure{
    margin: 0!important;
}
img{
    max-width: 100%;
    height: auto;
}
button:focus{
    outline: none;
    box-shadow: none;
}
.container, .container-fluid{
  padding: 0 15px;
}





/* Header */
.header{
    z-index: 11111;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
}
/* .header.fixed{
    position: fixed;
    top: 0;
    left: 0;
    background-color: #1C1C1C;
    animation: slideDown 0.5s ease-out;
} */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header-static{
    position: static;
    background-color: #1C1C1C;
}
.navbar-toggler{
    padding: 0;
    z-index: 1;
    position: relative;
    border: none;
    margin: 0 0 0 auto;
}
.navbar-toggler-icon{
    width: auto;
    height: auto;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.bar1, .bar2, .bar3 {
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 100px;
  transition: 0.4s;
}
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-3px, 6px);
  transform: rotate(-45deg) translate(-3px, 6px);
}
.change .bar2 {
    opacity: 0;
}
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-4px, -7px);
  transform: rotate(45deg) translate(-4px, -7px);
}
.navbar-brand{
    margin: 0 0 0 0;
    padding: 0rem 7px 0 0;
    max-width: 129px;
    width: 100%;
}
.navbar{
    min-height: auto;
    padding: 23px 0;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.navbar-expand-lg .navbar-nav{
    margin: 0 auto;
    flex-direction: column;
    text-align: center;
}
.navbar-expand-lg .navbar-nav .nav-item{
    margin: 0 auto;
    display: table;
    position: relative;
    transition: all 0.5s ease-in;
}

.navbar-expand-lg .navbar-nav .nav-link{
    padding: 0;
    display: table;
    margin: 0 auto;
    font-size: 100px;
    font-weight: 900;
    line-height: normal;
    position: relative;
    color: #000;
    text-transform: uppercase;
    /*font-family: "Inter", sans-serif;*/
    font-family: "Open Sans", sans-serif;
    text-stroke: 1px #fff;
    -webkit-text-stroke: 1px #fff;
}
.navbar-expand-lg .navbar-nav .nav-item::before{
    content: "";
    width: 100px;
    height: 100px;
    background-image: url('../images/arrow-left-red.png');
    background-size: cover;
    position: absolute;
    right: -240px;
    top: 12px;
    transition: all 0.5s ease;
    opacity: 0;
}


.dropdown-toggle::after {
    border: none;
    background-image: url('../images/arrow-right.png');
    width: 7px;
    height: 11px;
    background-size: cover;
    transform: rotate(90deg);
    background-repeat: no-repeat;
    vertical-align: middle;
    margin: 0 0 0 8px;
    display: none;
}

.navigation-menu{
    position: fixed;
    background-color: #000;
    height: 100%;
    width: 100%;
    top: 100%;
    left: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    overflow-y: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navigation-menu::-webkit-scrollbar {
  display: none;
}
.navigation-menu {
  -ms-overflow-style: none;  
  scrollbar-width: none; 
}
.openmenu{
    opacity: 1;
    visibility: visible;
    top: 0;
}
.close-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}
.navigation-menu .navbar-collapse{
    display: block;
}
.menu-button{
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
}

.close-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.close-btn{
    margin: 0 0 0 auto;
    color: #fff;
}

.navbar-expand-lg .openmenu .navbar-nav .nav-item:nth-child(odd){
    transform: translateX(-100px);
}
.navbar-expand-lg .openmenu .navbar-nav .nav-item:nth-child(even){
    transform: translateX(100px);
}

.navbar-expand-lg .navbar-nav .nav-item:hover .nav-link{
    transform: rotate(-180deg);
}
.navbar-expand-lg .navbar-nav .nav-item:hover::before{
    opacity: 1;
    right: -140px;
}

.navbar-expand-lg .navbar-nav .nav-item:nth-child(even)::before{
    transform: rotate(-180deg);
    right: auto;
    left: -240px;
}
.navbar-expand-lg .navbar-nav .nav-item:nth-child(even):hover::before{
    left: -140px;
}



.navbar-expand-lg .navbar-nav .dropdown-menu{
    position: static;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    background-color: transparent!important;
}
.navbar-expand-lg .navbar-nav .dropdown-menu li:nth-child(odd) {
    transform: translateX(0px);
}
.navbar-expand-lg .navbar-nav .dropdown-menu li:nth-child(even) {
    transform: translateX(0px);
}
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item{
    background-color: transparent!important;
    padding: 0;
    display: table;
    margin: 0 auto;
    font-size: 60px;
    font-weight: 900;
    line-height: normal;
    position: relative;
    color: #000;
    text-transform: uppercase;
    text-stroke: 1px #fff;
    -webkit-text-stroke: 1px #fff;
    text-align: center;
}

.navbar-expand-lg .navbar-nav .nav-item .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-item.current-menu-item  .nav-link,
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item.active{
    color: #000;
    text-stroke: 1px #d13f46;
    -webkit-text-stroke: 1px #d13f46;
}

.navbar-expand-lg .navbar-nav .dropdown-menu .nav-item::before {
    width:60px;
    height:60px;
}
.close-bar-inner{
    display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo-top{
    display: flex;
    align-items: flex-end;
    position: relative;
}
.logo-c{
    position: absolute;
    top: 0;
    right: -13px;
    width: 9px;
}
.logo-line{
    position: absolute;
    right: -1px;
    top: 0.5px;
    height: 6px;
    width: 88px;
}
.logo-top img{
    margin: 0 4px 0 0;
    object-fit: contain;
}
.logo-top img:last-child{
    margin-right: 0;
}
.logo-1{
    width: 33px;
    height: 36px;
}
.logo-2{
    width: 25px;
    height: 26px;
}
.logo-3{
    width: 25px;
    height: 25px;
}
.logo-4{
    width: 25px;
    height: 29px;
}
.bottom-logo{
    display: flex;
    justify-content: center;
    padding: 6px 0 0 0;
}
.bottom-logo img{
    max-width: 88px;
    width: 100%;
}



/* Banner */
.hero-banner-image{
    position: relative;
    background-color: #1C1C1C;
}
.hero-banner-image video{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    margin-bottom: -7px;
}
.hero-banner-wrape{
    position: absolute;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}
.hero-banner-text{
    max-width: 700px;
    width: 100%;
}
.hero-banner-text h1{
    color: #fff;
    margin: 0 0 32px 0;
}
.btn.btn-primary{
    padding: 12px 24px;
    border: 1px solid #1C1C1C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    color: #fff;
    border-radius: 0;
    background-color: #1C1C1C;
}
.btn.btn-primary img{
    display: inline-block;
    vertical-align: middle;
    margin: -1px 0 0 10px;
}
.btn.border-btn{
    background-color: transparent;
    border-color: #1C1C1C;
    color: #1C1C1C;
}
.btn.white-btn{
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}
.btn.btn-primary:hover{
    background-color: #D13F46 ;
    border-color: #D13F46 ;
    color: #fff;
}


.hero-banner-footer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.banner-logo ul{
    list-style: none;
    margin: 0 -15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.banner-logo ul li{
    padding: 0 15px;
}

.hero-banner-info{
    border-top: 1px solid #C6C6C6;
    padding: 32px 0 80px 0;
    margin-top: 24px;
}
.hero-banner-info-text{
    max-width: 463px;
    width: 100%;
}
.hero-banner-info-text p{
    color: #fff;
    margin: 0 0 22px 0;
    letter-spacing: -0.4px;
}
.get-btn{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    color: #fff;
}
.get-btn:hover{
    color: #fff;
}
.get-btn span{
    text-decoration-line: underline; 
}
.get-btn img{
    display: inline-block;
    vertical-align: middle;
    margin: -2px 0 0 10px;
}
.hero-banner-info-block h3{
    margin: 0 0 4px 0;
    font-size: 64px;
    font-weight: 500;
    line-height: 110%;
    color: #fff;
    letter-spacing: -1.28px; 
}
.hero-banner-info-block p{
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.32px;
    color: #fff; 
}
.hero-banner-info-row{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}
.hero-banner-info-col{
    padding: 0 15px;
}
.hero-banner-footer .banner-logo ul li img {
    filter: invert(1) brightness(12) grayscale(2);
}







/* What we offer Section */
.what-we-offer-section{
    padding: 80px 0 128px 0;
}
.title h3{
    position: relative;
    padding: 0 0 4px 0;
    font-size: 16px;
    margin: 0 0 25px 0;
    font-weight: 300;
    line-height: 110%;
    display: table;
    text-transform: uppercase; 
}
.title h3::before{
    content: "";
    width: 100%;
    height: 2px;
    background: linear-gradient(91deg, #D13F46 1.41%, rgba(255, 255, 255, 0.00) 100%); 
    position: absolute;
    bottom: 0;
    left: 0;
}

.offer-item{
    padding: 24px 0;
    border-bottom: 1px solid #C6C6C6;
    transition: all 0.5s ease;
}
.what-we-offer-title h2{
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0;
    color: #1C1C1C;
    position: relative;
    display: table;
    cursor: pointer;
    padding: 0 64px 0 0;
    transition: all 0.5s ease;
}
.what-we-offer-title h2::before{
    content: "";
    width: 48px;
    height: 48px;
    background-image: url('../images/arrow_outward.png');
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.5s ease;
    opacity: 0;
}
.what-we-offer-title h2 img{
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 8px;
}
.what-we-offer-text p{
    margin: 0 0 24px 0;
}
.what-we-offer-text ul{
    list-style: circle;
    margin: 0 0 0 20px;
}
.what-we-offer-text ul li{
    margin-bottom: 8px;
    font-size: 20px;
    line-height: normal; 
}


.offer-item .what-we-offer-wrape{
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease;  
    opacity: 0;
}
.offer-item:hover .what-we-offer-wrape{
    height: auto;
    opacity: 1;
    overflow: visible;
}
.offer-item:hover .what-we-offer-title h2::before{
    opacity: 1;
}








/* Selling Points Section */
.gx-30{
    --bs-gutter-x: 30px;
}
.selling-points-wrape{
    display: flex;
    align-items: center;
    min-height: 100%;
    margin-bottom: 30px;
}
.selling-points-text h2{
    margin: 0 0 24px 0;
}
.selling-points-text p{
    margin: 0 0 40px 0;
}
.selling-points-block{
    background-color: #000000;
    padding: 30px ;
    padding-top: 50px;
    margin: 0 0 30px 0;
    min-height: 475px;
}
.selling-points-block h3{
    margin: 50px 0 40px 0;
    color: #fff;
}
.selling-points-block p{
    color: #AAA;
}




/* Selected Portfolio Section */
.selected-portfolio-section{
    padding: 98px 0 0 0;
}

.title-button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #C6C6C6;
    padding: 0 0 48px 0;
    margin: 0 0 64px 0;
}
.selected-portfolio-section .title-button{
    padding-right: 27px;
}
.selected-portfolio-item{
    margin: 0 0 64px 0;
    padding: 0 0 64px 0;
    border-bottom: 1px solid #C6C6C6;
}
.selected-portfolio-item:last-child{
    margin: 0 0 0px 0;
    padding: 0 0 0px 0;
    border-bottom: none;
}
.selected-portfolio-image{
    padding: 0 11px 0 0;
}
.selected-portfolio-image img{
    width: 100%;
    height: 369px;
    object-fit: cover;
}
.selected-portfolio-wrape{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    min-height: 100%;
    padding: 0 0 0 7px;
}
.selected-portfolio-text h3{
    margin: 0 0 24px 0;
}
.selected-portfolio-text h3 a{
    color:#1c1c1c;
}
.selected-portfolio-text p{
    margin: 0 0 24px 0;
}
.selected-portfolio-tag ul{
    list-style: none;
}
.selected-portfolio-tag ul li{
    display: inline-block;
    margin: 0 6px 0 0;
}
.selected-portfolio-tag ul li span{
    padding: 8px 16px;
    border: 1px solid #AAA;
    color: #1C1C1C;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 110%; /* 17.6px */
    text-transform: uppercase; 
    border-radius: 100px;
    display: block;
}



/* Get in Touch Section */
.getintouch-section{
    padding: 64px 0 127px 0;
}
.getintouch-block{
    text-align: center;
    padding: 46px 20px; 
    background-image: url('../images/getintouch-img.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}
.getintouch-block h2{
    margin: 0 0 12px 0;
    color: #fff;
}
.getintouch-block h3{
    margin: 0 0 24px 0;
    color: #fff;
}



/* Apart Section */
.apart-section{
    background-color: #1C1C1C;
    padding: 128px 0 44px 0;
    position: relative;
    z-index: 1;
}
.position-right{
    right: -539px;
    top: -107px;
    z-index: -1;
}
.round-ball{
    position: absolute;
    max-width: 713px;
    max-width: 713px;
    width: 100%;
    height: 100%;
    border-radius: 713px;
    opacity: 0.4;
    background: #12314E;
    filter: blur(107.5px); 
}
.title-button-white{
    padding-bottom: 48px;
    border-color: #717171;
}
.title-button-white h2{
    color: #fff;
}
.apart-section .title-button{
    margin-bottom: 80px;
}
.apart-block{
    margin: 0 0 80px 0;
}
.apart-block-inner{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 40px 0;
}
.apart-block-inner img{
    width: 48px;
}
.apart-block-text{
    width: calc(100% - 48px);
    padding: 0 0 0 8px;
}
.apart-block-text h3{
    color: #fff;
    margin: 0 0 0 0;
}
.apart-block p{
    color: #AAA;
}




/* Latest Blogs Section */
.latest-blog-section{
    background-color: #1C1C1C;
    position: relative;
    z-index: 1;
}
.position-left{
    bottom: -370px;
    left: -506px;
    z-index: -1;
}
.blog-minus-mg{
    margin: 0 0 -32px 0;
    z-index: 1;
    position: relative;
}
.latest-blog-data{
    border-bottom: 1px solid #717171;
    padding: 0 0 96px 0;
}
.latest-blog-block img{
    width: 100%;
    height: 243px;
    object-fit: cover;
}
.latest-blog-block h3{
    margin: 24px 0 16px 0;
    color: #fff;
    
}
.latest-blog-block p{
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

/* Footer */
.footer{
    background-color: #1C1C1C;
    padding: 128px 0 0 0;
}
.foot-contact-data{
    padding: 0 0 96px 0;
}
.foot-text h2{
    color: #fff;
    margin: 0 0 16px 0;
}
.foot-text p,.foot-text h6{
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal; 
    color: #fff;
    margin: 0 0 37px 0;
}
.foot-text h6{
    line-height: 110%; /* 19.8px */
    letter-spacing: -0.72px; 
    color: #fff;
    margin: 0 0 16px 0;
}
.foot-text h6 a{
    color: #fff;
}
.foot-text h6 img{
    display: inline-block;
    margin: 0 12px 0 0;
}
.foot-text ul{
    list-style: none;
}
.foot-text ul li{
    display: inline-block;
    vertical-align: middle;
    margin: 0 7px 0 0;
}
.foot-text ul li a{
    display: block;
}

.form-group{
    margin: 0 0 24px 0;
}
.form-control{
    border: 1px solid #8E8E8E;
    background-color: #1C1C1C!important;
    height: 41px;
    padding-left: 16px;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    color: #fff!important;
    line-height: normal; 
    outline: none!important;
    border-radius: 0;
    box-shadow: none!important;
}
.form-control::placeholder{
    color: #8E8E8E!important;
}
.form-control:focus{
    border: 1px solid #fff;
}
.textarea{
    padding-top: 13px;
    height: 160px;
}
.btn.submit-btn{
    padding-right: 40px;
    background-image: url('../images/arrow-right-wh.png');
    background-size: 7px;
    background-repeat: no-repeat;
    background-position: 83% center;
    margin: 0 0 0 auto;
    display: table;
}

.wpcf7-not-valid-tip{
    margin:10px 0 0 0;
    font-size:16px;
}
.wpcf7 form .wpcf7-response-output{
    border-color:#dc3232;
    color:#fff;
    font-size:16px;
}


.foot-link-data{
    padding: 32px 0 0px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #717171;
}

.foot-link ul,.foot-social ul{
    list-style: none;
    margin: 0;
}
.foot-link ul li{
    display: inline-block;
    margin: 0 32px 0 0;
}
.foot-link ul li:last-child{
    margin-right: 0;
}
.foot-link ul li a{
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; 
    padding:0;
    color: #fff!important;
    display: block;
}
.foot-link ul li a:hover{
    color:#d13f46!important;
}
.foot-social ul li{
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px 0 0;
}
.foot-social ul li:last-child{
    margin-right: 0;
}
.foot-social ul li a{
    display: block;
}
.foot-logo{
    padding: 48px 0;
}
.foot-logo img{
    width: 100%;
}


.copyright{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 40px 0;
}
.copyright p,.copyright ul li a{
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 15.4px */
    letter-spacing: -0.56px; 
    color: #8E8E8E;
}
.copyright ul{
    margin: 0;
    list-style: none;
}
.copyright ul li{
    display: inline-block;
    margin: 0 20px 0 0;
}
.copyright ul li:last-child{
    margin-right: 0;
}
.copyright ul li a{
    display: block;
}

.whatsapp-icon{
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    z-index: 11;
}
.whatsapp-icon img{
    width: 44px;
}

.page-template-contact .whatsapp-icon{
    display:table;
}


/*============================= About =============================*/

/* Inside Video Banner */
.inside-video-banner{
    padding: 0;
}
.inside-video{
    position: relative;
}
.inside-video video,.inside-video .inside-image{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    margin: 0 0 -7px 0;
}
.inside-video-wrape{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}
.inside-video-text{
    text-align: center;
}
.inside-video-text h1{
    color: #fff;
    margin: 0 0 80px 0;
}
.btn.rounded-btn{
    border-radius: 100px;
    padding: 8px 16px;
}
.inside-video-text p{
    margin: 48px auto 0 auto;
    max-width: 757px;
    width: 100%;
    color: #fff;
}




/* Gallery Section */
.gallery-section{
    padding: 96px 0 0 0;
}
.gallery-data{
    column-count: 3;
    column-gap: 32px;
}
.gallery-image{
    margin: 0 0 32px 0;
}
.gallery-image img{
    width: 100%;
}


/* Our Values Section */
.our-values-section{
    padding: 96px 0 64px 0;
}
.our-values-section .title-button{
    margin: 0 0 80px 0;
    padding-bottom: 48px;
}
.our-values-block{
    position: relative;
    padding: 0 30px 0 24px;
}
.our-values-block::before{
    content: "";
    width: 1px;
    height: 100%;
    background-color: #C6C6C6;
    position: absolute;
    left: 0;
    top: 0;
}
.our-values-text h3{
    margin: 0 0 24px 0;
}
.our-values-text p{
    margin: 0 0 32px 0;
    min-height: 174px;
}




/* Discover Section */
.discover-section{
    padding: 64px 0 80px 0;
}
.gx-48{
    --bs-gutter-x: 48px;
}
.discover-block{
    padding: 60px;
    background-color: #000000;
    min-height: 720px;
    background-image: url('../images/bg-img-1.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 0 48px 0;
}
.discover-block h2{
    color: #F0F0F0;
    margin: 0 0 32px 0;
}
.discover-block ul{
    list-style: none;
    margin: 60px 0 0 0;
}
.discover-block ul li{
    display: block;
    margin: 0 0 24px 0;
}
.discover-block ul li:last-child{
    margin-bottom: 0;
}
.discover-block ul li a{
    position: relative;
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; 
    padding: 0 0 0 20px;
}
.discover-block ul li a::before{
    content: "";
    width: 8px;
    height: 8px;
    background-color: transparent;
    border: 1px solid #fff;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 100px;
    transition: all 0.5s ease;
}
.discover-block ul li.active a,
.discover-block ul li a:hover{
    color: #00BBE6;
}
.discover-block ul li.active a::before,
.discover-block ul li a:hover::before{
    background-color: #00BBE6;
    border-color: #00BBE6;
}

.half-block{
    min-height: 336px;
    background-image: url('../images/bg-img-2.png');
}



/* About Blog Section */
.about-blog-section{
    padding-top: 128px;
}








/*================================ Our Services ================================*/

/* Our Services Section */
.our-services-section{
    padding: 80px 0 64px 0;
}
.head-lg{
    padding-bottom: 48px;
    margin-bottom: 80px;
}
.our-services-item{
    margin: 0 0 80px 0;
}
.our-services-image img{
    width: 100%;
    height: 369px;
    object-fit: cover;
}
.our-services-text h2{
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0;
    color: #1C1C1C;
    position: relative;
    display: table;
    margin: 0 0 34px 0;
    transition: all 0.5s ease;
}
.our-services-text h2 img{
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 16px;
}
.our-services-text p{
    margin: 0 0 24px 0;
}
.our-services-text ul{
    list-style: circle;
    margin: 0 0 0 20px;
}
.our-services-text ul li{
    margin-bottom: 12px;
    font-size: 20px;
    line-height: normal; 
}





/* Our Process Section */
.our-process-section{
    padding: 64px 0 0 0;
}
.our-process-block {
    position: relative;
    margin: 0 0 30px 0;
}
.our-process-block::before{
    content: "";
    width: 152px;
    height: 1px;
    border-top: 1px dashed #C6C6C6;
    position: absolute;
    top: 65px;
    right: 5px;
}
.our-process-block h3{
    margin: 24px 0;
    color: #1C1C1C;
}
.process-col:last-child .our-process-block::before{
    display: none;
}




/*================================ Service Details ================================*/


/*================== Social Media Marketing Detail Page ==================*/

/* Inside Small Banner */
.inside-small-image{
    position: relative;
    background-color: #000;
    min-height: 768px;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: right top;
}
.inside-small-img{
    width: 100%;
    height: 768px;
    object-fit: cover;
}
.inside-small-wrape{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}
.inside-small-text h1{
    color: #fff;
    margin: 0 0 40px 0;
}
.inside-small-text p{
    color: #C6C6C6;
    max-width: 664px;
    width: 100%;
}




/* Service Accordion Section */
.service-accordion-section{
    padding: 80px 0 16px 0;
}
.service-accordion-section .title h3{
    margin: 0 0 48px 0;
}
.service-accordion-item,.faq-accordion-item{
    margin: 0 0 48px 0;
    border-bottom: 1px solid #C6C6C6;
}
.service-accordion-button,.faq-accordion-button{
    width: 100%;
    text-align: left;
    border: none;
    background-color: transparent;
    padding: 0 0 28px 0;
    color: #1C1C1C;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    position: relative;
}
.service-accordion-button::before,.faq-accordion-button::before{
    content: "";
    width: 48px;
    height: 48px;
    background-image: url('../images/ac-icon.png');
    background-size: cover;
    position: absolute;
    right: 0;
    top: 1px;
    transform: rotate(45deg);
    transition: all 0.5s ease;
}
.service-accordion-button.collapsed::before,.faq-accordion-button.collapsed::before{
    transform: rotate(0deg);
}
.service-accordion-body,.faq-accordion-body{
    padding: 48px 0 48px 0;
    border-top: 1px solid #C6C6C6;
}
.service-accordion-text p{
    color:#555;
}


/* Specialisations Section */
.specialisations-section{
    padding: 64px 0;
}
.specialisations-section .title-button{
    margin-bottom: 48px;
    padding-bottom: 48px;
}

.specialisations-wrape{
    min-height: 100%;
    display: flex;
    align-items: center;
    padding: 0 0 0 0;
}
.specialisations-text h3{
    color: #1c1c1c;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 0;
    margin: 0 0 40px 0;
}
.specialisations-text p{
    color: #4B5662;   
}
.text-right-data{
    padding-left: 64px;
}
.text-left-data{
    padding-right: 64px;
}
.specialisations-image img{
    width: 100%;
    height: 680px;
    object-fit: cover;
}



/* Discover Block Section */
.discover-block-section{
    padding: 64px 0 80px 0;
}






/*================================= Contact Us =================================*/

/* Contact Section */
.contact-section{
    padding: 128px 0 64px 0;
}
.contact-section .foot-text h2,
.contact-section .foot-text h6,
.contact-section .foot-text h6 a,
.contact-section .foot-text p{
    color: #1C1C1C;
}
.contact-section .form-control{
    border-color: #8E8E8E;
    color: #1C1C1C!important;
    background-color: #fff!important;
}
.contact-section .form-control::placeholder{
    color: #8E8E8E!important;
}
.contact-section .form-control:focus{
    border-color: #1C1C1C;
}
.contact-section .submit-btn{
    border-color: #1C1C1C;
    color: #1C1C1C;
    background-image: url('../images/arrow-right.png');
}
.contact-section .wpcf7 form .wpcf7-response-output{
    color: #1C1C1C;
}




/* Map Section */
.map-section{
    padding: 64px 0;
}
.map-section iframe{
    width: 100%;
    height: 400px;
    border: 2px solid #1C1C1C;
}


/* Faq Section */
.faq-section{
    padding: 64px 0 16px 0;
}
.faq-parent{
    max-width: 1013px;
    width: 100%;
    margin: 0 auto;
}
.faq-accordion-body p{
    color: #555;
}






/*=============================== Blog ===============================*/

/* Blog Section */
.blog-section{
    padding: 100px 0 84px 0;
}
.blog-box{
    margin: 0 0 40px 0;
}
.blog-box img{
    width: 100%;
    height: 374px;
    object-fit: cover;
}
.blog-box h3{
    color: #000;
    margin: 24px 0 16px 0;
}
.loadmore-btn{
    margin: 0 auto;
    display: table;
    margin-top: 30px;
}
.blog-row .alm-reveal{
    margin:0 -15px;
    display: flex;
    flex-wrap: wrap;
}
.blog-col{
    width:50%;
    padding:0 15px;
}
.alm-load-more-btn {
    background-color: transparent!important;
  border-color: #1C1C1C!important;
  color: #1C1C1C!important;
  padding: 12px 24px!important;
  border: 1px solid #1C1C1C!important;
  font-size: 16px!important;
  font-style: normal!important;
  font-weight: 400!important;
  line-height: 110%!important;
  border-radius: 0!important;
  margin: 0 auto!important;
    display: table!important;
    margin-top: 30px!important;
    opacity:1!important;
}
.blog-box p{
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

/*=========================== Blog Details ===========================*/

/* Blog Details Section */
.blog-details-section{
    padding: 100px 0 62px 0;
}
.blog-details-parent{
    max-width: 1125px;
    width: 100%;
    margin: 0 auto;
}
.blog-details-text h1{
    margin: 0 0 16px 0;
}
.blog-details-text p{
    margin: 0 0 24px 0;
}
.blog-details-text h3{
    margin: 40px 0 16px 0;
}
.blog-details-text img{
    width:100%;
    margin: 40px 0;
}





/*======================================= Privacy Policy =======================================*/

/* Policy Section */
.policy-section{
    padding: 128px 0 48px 0;
}
.policy-title-data{
    padding: 0 0 80px 0;
}
.policy-title-text h3{
    margin: 0 0 24px 0;
}
.policy-title-text p{
    color: #1C1C1C;
}

.text-item-row{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid rgba(28, 28, 28, 0.5);
    padding: 80px 0;
}
.textitem-title{
    width: 23%;
    padding: 0 15px 0 0;
}
.textitem-contain{
    width: 77%;
    padding: 0 0 0 15px;
}
.textitem-contain h6{
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 22px */
    letter-spacing: -0.4px; 
    color: #1C1C1C;
}
.textitem-contain p{
    color: #1C1C1C;
    margin: 0 0 20px 0;
}
.textitem-contain p a{
    color: #1C1C1C;
}
.textitem-contain p:last-child{
    margin: 0;
}
.textitem-contain ul{
    margin:0 0 0 0px;
    list-style:none;
}
.textitem-contain ul li{
    margin:0 0 20px 0;
}
.textitem-contain ul li:last-child{
    margin:0 0 0px 0;
}
.textitem-contain ul li b{
    display:block;
}
.textitem-contain ul li a{
    color:#1C1C1C;
    text-decoration:underline;
}






/*========================= Portfolio =========================*/

/* Portfolio Section */
.portfolio-slider-image{
    height: calc(100vh - 100px);
    padding: 100px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.portfolio-slider-image::before{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.85) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.portfolio-slider-text{
    max-width: 781px;
    width: 100%;
}
.portfolio-slider-text h2{
    color: #fff;
    margin: 30px 0 24px 0;
}
.portfolio-slider-text p{
    color: #fff;
    margin: 0px 0 40px 0;
    max-width: 665px;
    width: 100%;
}
.portfolio-section{
    position: relative;
}
.portfolio-slider .slick-dots{
    position: absolute;
    top: 50%;
    left: 102px;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 1;
    width: auto;
    text-align: center;
}
.portfolio-slider .slick-dots li{
    margin: 15px auto;
    display: table;
}
.portfolio-slider .slick-dots li button{
    width: 8px;
    height: 8px;
    border: 1px solid #C6C6C6;
    border-radius: 100px;
    background-color: transparent;
    opacity: 1!important;
    display: block;
    text-align: center;
    transition: all 0.5s ease;
    font-size: 0;
}
.portfolio-slider .slick-dots li.slick-active button{
    background-color: #D13F46;
    border-color: #D13F46;
    opacity: 1;
    transform: scale(1.5);
}
.slick-vertical .slick-slide{
    border: none;
}





/*========================= Portfolio Details =========================*/
.portfolio-details-section{
    padding: 110px 0 59px 0;
}
.portfolio-details-text{
    padding: 0 0 50px 0;
}
.portfolio-details-text h1{
    margin: 50px 0 16px 0;
}
.portfolio-details-text p{
    margin: 0 0 30px 0;
}
.view-btn{
    color: #1C1C1C;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline; 
}
.view-btn:hover{
    color: #1C1C1C;
}


.portfolio-details-info{
    padding: 50px 0 10px 0;
    border-top: 1px solid rgba(28, 28, 28, 0.5);
}
.portfolio-details-info-block {
    margin: 0 0 40px 0;
}
.portfolio-details-info-block h6{
    margin: 0 0 15px 0;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 22px */
    letter-spacing: -0.4px; 
    color: #393939;
}

.portfolio-details-image{
    position: relative;
}
.portfolio-details-image::before{
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.85) 100%);
    position: absolute;
    top: 0;
    left: 0;
}
.portfolio-details-image img{
    width: 100%;
}

.about-project{
    padding: 50px 0 0 0;
}
.about-project-title{
    margin-bottom: 30px;
}
.about-project-item{
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid rgba(28, 28, 28, 0.5);
    padding: 50px 0;
    width: 100%;
}
.about-project-item-title{
    width: 23%;
    padding: 0 15px 0 0;
}
.about-project-item-contain{
    width: 77%;
    padding: 0 0 0 15px;
}


.portfolio-details-image-block img{
    width: 100%;
    height: 374px;
    object-fit: cover;
}

.portfolio-details-foot-text{
    padding: 0 0 0 0;
}
.portfolio-details-foot-text h3{
    margin: 50px 0 16px 0;
}
.portfolio-details-foot-text p{
    margin: 0 0 20px 0;
}




/*================= 404 =================*/
.error-section{
    padding: 180px 0 70px 0;
    text-align: center;
}
.error-data img{
    margin: 0 auto;
    max-width: 500px;
    width: 80%;
    margin-bottom: 30px;
}
.error-data h1{
    margin: 0 0 20px 0;
}


.basic-section{
    padding:64px 0;
}
.basic-text h1{
    margin:0 0 16px 0;
}
.basic-text h3{
    margin:0px 0 16px 0;
}
.basic-text p{
    margin:0 0 30px 0;
}



.single-post .blog-details-text .wp-container-core-columns-layout-2{
    margin:20px 0 10px 0;
}
.single-post .blog-details-text .wp-block-columns img{
    width:100%;
    margin:0;
    height:380px;
    object-fit:cover;
}

.page-template-privacy-terms .foot-contact-data{
    display:none;
}
.page-template-privacy-terms .foot-link-data{
    border:none;
}
.page-template-privacy-terms .footer{
    padding-top:48px;
}

.blog-row .alm-btn-wrap .alm-load-more-btn.done:disabled {
  display:none!important;
}

.navbar-nav .dropdown-menu{
    top:20px;
}
.dropdown:hover>.dropdown-menu {
  /*display: block;*/
}
#menu-header-menu li.menu-item-has-children {
    padding-right: 15px;
}
.dropdown-toggle::after { display:none;}
.submenutoggle {
    border: none;
    background-image: url('../images/arrow-right-wh-lg.png');
    width: 40px;
    height: 40px;
    background-size: cover;
    /*transform: rotate(90deg);*/
    background-repeat: no-repeat;
    vertical-align: middle;
    color: #fff;
    margin: 0 0 0 8px;
    position: absolute;
    right: -35px;
    top: 40px;
    cursor: pointer;
    display:none;
}

















