/*----------------------------------------------------------------
* Variable
--------------------------------------------------------------*/
:root {
    --event-primary: #008080;
    --event-secondary: #FFD700;
    --event-bg-color:#d7e1f0;
    --event-bg-two:#eac7dd;
    --event-asset: linear-gradient(90deg, rgba(255,215,0,1) 8%, rgba(255,255,255,1) 33%, rgba(192,192,192,1) 45%);;
    --event-black: #000000;
    --event-light: #ffffff;
    --event-body-font:"Inter", sans-serif;
    --event-styling-font:"Lobster", sans-serif;
    --event-heading-font: "Marcellus", serif;
}
html {
    scroll-behavior: smooth;
}
/***********************
* Common
***********************/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    font-family: var(--event-body-font);
    font-size: 16px;
    font-weight: 400;
    line-height:1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--event-black);
    text-transform: none;
    font-style: normal;
    margin: 0px !important;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   position: relative;
   font-family:var(--event-heading-font) ;
   letter-spacing: -0.01em;
}
h1 {
    font-size: 63px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
}
h2 {
    font-size: 45px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
}
h3 {
    font-size: 35px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
}
h4 {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
}
h5 {
    font-size: 25px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
}
h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
}
p {
    margin: 0 0 16px;
}
p.lead{
    font-size: 18px;
    font-weight: 400;
}
input:focus,
select:focus,
textarea:focus {
   box-shadow: none !important;
}
textarea:focus-visible {
    outline: 0;
}
input:-webkit-autofill {
   -webkit-background-clip: text;
}
[type=search]{
    outline-offset: 0;
}
input:focus-visible, 
button:focus-visible{
    outline: 0;
}
.gutter-y-10 {
    --bs-gutter-y: 10px;
}
.gutter-y-15 {
    --bs-gutter-y: 15px;
}
.gutter-y-20 {
    --bs-gutter-y: 20px;
}
.gutter-y-30 {
    --bs-gutter-y: 30px;
}
.gutter-y-40 {
    --bs-gutter-y: 40px;
}
.gutter-y-60 {
    --bs-gutter-y: 60px;
}

.gutter-x-15{
    --bs-gutter-x: 30px;
}
.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible{
    box-shadow: none;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    background-color: var(--event-primary);
    color: var(--event-light);
    border: none;
}
/***********************
* Button style
***********************/
.btn-primary{
    background-color: var(--event-primary);
    color: var(--event-light);
}
.btn-primary:hover{
    background-color: var(--event-secondary);
}
.btn-primary:hover::after, .btn-primary:hover::before{
    background: var(--event-primary);
}
.btn-thm {
    position: relative;
    margin: 0;
    padding: 10px 30px;
    outline: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 8px;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
  }

  .btn-thm:hover span {
    animation: storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
  }
  .btn-thm::before,
  .btn-thm::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
    z-index: -1;
    transform: translate(100%, -25%) translate3d(0, 0, 0);
  }
  
  .btn-thm:hover::before,
  .btn-thm:hover::after {
    opacity: 0.35;
    transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
  }
  
  .btn-thm:hover::before {
    transform: translate3d(50%, 0, 0) scale(0.9);
  }
  
  .btn-thm:hover::after {
    transform: translate(50%, 0) scale(1.1);
  }
  
  
/*************************
* Custom-cursor 
*************************/
.custom-cursor-one {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid var(--event-primary);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
}
.custom-cursor-two {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: var(--event-primary);
    opacity: .3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width .3s, height .3s, opacity .3s;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 999991;
}
.custom-cursor-hover, .custom-cursor-innerhover {
    background-color: var(--event-primary);
    opacity: 0.4;
    animation: scale 0.5s;
    height: 5px;
    width: 5px;
}
@keyframes scale {
    0%{
       height: 80px;
       width: 80px;
    }
    100%{
        height: 5px;
       width: 5px;
    }
}
/*******************
* Preloader
*******************/
.preloader {
    position: fixed;
    background-color: #0f110ff7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    overflow: hidden;
}
.loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
.loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
.loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.loder-image {
    position: absolute;
    max-width: 70px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/***********************
* header 
***********************/
.main-header {
    /* position: absolute; */
    width: 100%;
    z-index: 99999;
    background-color: #fff;
}
nav.main-menu {
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.main-menu-inner {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}
ul.main-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 30px;
}
ul.main-menu-list li {
   
    color: var(--event-primary);
    padding: 45px 0 40px;
    position: relative;
}
ul.main-menu-list li a{
    color: var(--event-primary);
    line-height: 1.2;
    font-weight: 500;
}
ul.main-menu-list li.active>a, ul.main-menu-list>li.active, ul.main-menu-list>li:hover, ul.main-menu-list>li:hover>a{
    color: var(--event-secondary);
    position: relative;
}
ul.main-menu-list li .mega-menu-ul {
    position: absolute;
    width: 100%;
    padding: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    background-color: #fff;
    z-index: 999;
    padding: 10px 0;
    left: 0px;
}
ul.main-menu-list li:hover ul {
    opacity: 1;
    transform: scaleY(1) translateZ(0px);
    visibility: visible;
}
ul.main-menu-list li ul li {
    padding: 15px 25px;
    border-bottom: none;
    transition: all 0.5s;
}
.inner-ul li{
    padding-left: 0px !important;
}
ul.main-menu-list li ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    height: 2px;
    width: 0;
    transform: translateY(-50%);
    background-color: var(--event-primary);
    transition: all 0.5s;
}
.title p {
    position: relative;
    padding-left: 20px; /* space for the disc */
    margin: 5px 0;
}

ul.main-menu-list li ul li:hover a{
    color: var(--event-primary);
}
ul.main-menu-list li ul li:last-child{
    border: none;
}
.header-side-menu {
    margin-right: 58px;
    width: 53px;
    height: 15px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-left: 60px;
    cursor: pointer;
}
.header-side-menu span {
    background-color: var(--event-light);
    height: 2px;
    display: inline-block;
    width: 100%;
}
.main-menu-right {
    display: flex;
    align-items: center;
}
.search-btn {
    padding: 45px 45px 40px;
    border: 1px solid rgb(224 224 224 / 17%);
    border-top: 0;
    border-bottom: 0;
    line-height: 0;
}
.search-btn img {
    height: 19px;
    width: 19px;
}
.main-menu-right .btn-light {
    margin-right: 55px;
}
.header-menu-collaps {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    align-items: end;
    cursor: pointer;
    display: none;
}
.header-menu-collaps span {
    width: 38px;
    display: inline-block;
    height: 2px;
    background-color:var(--event-primary);
}
.header-menu-collaps span:nth-child(2){
    width: 32px;
}
.header-menu-collaps span:nth-child(3){
    width: 16px;
}
.main-menu-logo {
    max-width: 215px;
}
a.header-call {
    display: flex;
    align-items: center;
    column-gap: 15px;
    color: var(--event-primary);
}
a.header-call:hover{
    color: var(--event-secondary);
}
a.header-call i {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: var(--event-light);
    background-color: var(--event-primary);
}
/***********************
 * mobile-nav
***********************/
.mobile-nav-wrapper {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
 }
 .mobile-nav-wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
 }
 .mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #56736c49;
    opacity: 0.9;
 }
 .mobile-nav-content {
    width: 100%;
    max-width: 300px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    background-color: var(--event-primary);
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 30px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s;
 }
 .mobile-nav-wrapper.expanded .mobile-nav-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: all 0.5s;
 }
 .mobile-nav-close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 42px;
    right: 15px;
 }
 .mobile-nav-close span {
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    background-color: var(--event-light);
    transform: translate(-50%, -50%) rotate(45deg);
 }
 .mobile-nav-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
 }
 ul.mobile-menu-list {
    margin: 0;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 10px;
 }
 ul.mobile-menu-list li {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
 }
 ul.mobile-menu-list li:last-child {
    border: none;
 }
 .locked {
    position: fixed;
    width: 100%;
    top: 0;
 }
 ul.mobile-menu-list li a {
    font-size: 16px;
    line-height: 50px;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.5s;
    padding: 0 25px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
 }
 ul.mobile-menu-list .dropdown ul {
    margin: 0;
    padding: 0;
    display: none;
    border-top: 1px solid #d5cdcd;
 }
 ul.mobile-menu-list .dropdown ul li a {
    padding-left: 35px;
 }
 .mobile-menu-list .menu-item-has-children button.expanded {
    transform: translateY(-50%)rotate(90deg);
 }
 .mobile-menu-list .menu-item-has-children button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)rotate(-0deg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    outline: none;
    float: right;
    transition: all 0.3s;
    line-height: 0px;
 }
 /***********************
 * back-to-top
***********************/
.prgoress_indicator {
    position: fixed;
    right: 26px;
    bottom: 35px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px var(--event-primary);
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}
.prgoress_indicator.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}
.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: var(--event-primary);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}
.prgoress_indicator::before {
  position: absolute;
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear !important;
}
.prgoress_indicator:hover ::after {
  color: var(--event-secondary);
}
.prgoress_indicator:hover ::before {
  opacity: 1;
}
.prgoress_indicator svg path {
  fill: none;
}
.prgoress_indicator svg.progress-circle path {
  stroke:var(--event-secondary);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear !important;
}
/***********************
* banner 
***********************/
.banner-section {
    position: relative;
    overflow: hidden;
}
.banner-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 190px;
    background: linear-gradient(180deg, rgb(0 0 0 / 81%) 31%, rgba(255, 255, 255, 0) 100%);
}
.banner-slider .box{
    padding: 100px 0;
    position: relative;
}
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.bg-image::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000000a1;
}
.bg-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.banner-content {
    position: relative;
    color: var(--event-light);
    max-width: 45%;
    margin-top: 100px;
}
.banner-content span {
    font-family: var(--event-styling-font);
    font-size: 24px;
    margin-bottom: 15px;
    display: inline-block;
}
.banner-content h1 {
    font-size: 70px;
    line-height: 80px;
    font-weight: 700;
}
.banner-shape{
    position: absolute;
    z-index: 1;
}
.banner-shape.two {
    right: 0;
    animation: roted1 10s infinite;
    top: 70px;
}
.banner-shape.three {
    left: 40%;
    top: 95px;
    animation: zoomin 10s infinite;
    transform: scale(0.3);
}
.banner-shape.four {
    right: -70px;
    bottom: -60px;
    max-width: 300px;
}
@keyframes zoomin {
    0%{
        transform: scale(0.3);
    }
    50%{
        transform: scale(1);
    }
    
    100%{
        transform: scale(0.3);
    }
}
@keyframes roted1 {
    0%{
        transform: rotate(0deg);
    }
    50%{
        transform: rotate(50deg);
    }
    100%{
        transform: rotate(0deg);
    }
}
.banner-image-two {
    width: 450px;
    height: 450px;
    background-color: #fff;
    padding: 50px;
    position: absolute;
    right: 160px;
    top: 23%;
    transform: translateY(-50%);
    box-shadow: 0px 0px 20px 10px var(--event-primary);
    animation: rotet 10s infinite;
}
@keyframes rotet {
    0%{
        transform: rotate(0deg);
    }
    25%{
        transform: rotate(10deg);
    }
    75%{
        transform: rotate(-10deg);
    }
    100%{
        transform: rotate(0deg);
    }
}
/***********************
* service 
***********************/
.service-section {
    padding: 100px 0;
}
.service-box {
    padding: 0 20px;
    text-align: center;
    transition: all 0.5s;
}
.service-box:hover{
    transform: translateY(-10px);
}
.service-icon {
    height: 120px;
    width: 120px;
    margin: auto;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background-color: var(--event-primary);
    position: relative;
}
.service-icon::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 0;
    width: 0;
    border-radius: 100%;
    transform: translate(-50%,-50%);
    background-color: var(--event-secondary);
    transition: all 0.5s;
}
.service-box:hover .service-icon::after{
    height: 100%;
    width: 100%;
}
.service-title h4 {
    font-size: 18px;
    font-weight: 600;
}
.service-icon img {
    max-width: 60px;
    position: relative;
    z-index: 1;
}
/***********************
* service one
***********************/
.service-section-one {
    padding: 100px 0 ;
    background-color: var(--event-bg-color);
    position: relative;
    overflow: hidden;
}
.service-shape {
    position: absolute;
    bottom: 0;
    transform: scaleX(-1);
    max-width: 360px;
}
.service-left-one {
    padding-right: 50px;
}
span.sub-title {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 12px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--event-primary);
}
.service-left-one .heading-title{
    margin-bottom: 12px;
}
.service-left-details-one{
    padding-left: 15px;
    border-left: 1px solid #fff;
    position: relative;
}
.service-left-details-one p{
    margin-bottom: 50px;
}
.service-right-one {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
}
.service-right-inner-one {
    width: 45%;
    flex-grow: 1;
}
.service-right-inner-one:nth-child(2){
    margin-top: 52px;
}
.service-box-one {
    border-radius: 10px;
    background-color: var(--event-light);
    margin-bottom: 20px;
    padding: 24px;
    transition: all 0.8s;
    position: relative;
    overflow: hidden;
}
.service-box-one img {
    position: absolute;
    top: -50px;
    right: -20px;
}
.service-icon-one {
    margin-bottom: 16px;
    position: relative;
}
.service-box-one h4 {
    font-size: 20px;
    margin-bottom: 13px;
    font-weight: 600;
}
.service-box-one p{
    margin-bottom: 13px;
}
.service-box-one:hover{
    background-color: var(--event-bg-two);
    color: var(--event-light);
}
.service-box-one:hover .service-btn-one{
    background-color: var(--event-light);
    border-radius: 6px;
}
a.service-btn-one {
    height: 42px;
    width: 42px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--event-bg-two);
    color: var(--event-black);
}
/***********************
* event 
***********************/
.nav-item button{
    background: transparent !important;
}
.event-section {
    padding: 100px 0;
}
.heading-box {
    margin-bottom: 50px;
}
.heading-box h2{
    margin-bottom: 12px;
    font-size: 36px;
}
.event-image {
    height: 300px;
    width: 100%;
    overflow: hidden;
}
.event-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 1s;
}
.event-box {
    border-radius: 12px;
    overflow: hidden;
    height: 495px;
}
.event-box:hover .event-image img{
    transform: scale(1.2);
}
.event-info {
    padding: 15px;
    background-color: var(--event-bg-color);
    transition: all 0.5s;
}
.event-box:hover .event-info{
    background-color: var(--event-bg-two);
}
.event-info h4{
    margin-bottom: 15px;
    font-size: 24px;
}
/***********************
* porffolio 
***********************/
.porffolio-section {
    padding: 100px 0;
    position: relative;
    background-image: url(../images/bg/banner-2.jpg);
    background-color: #202020ed;
    background-blend-mode: multiply;
    background-attachment: fixed;
    color: var(--event-light);
}
.porffolio-section .heading-box span{
    color: var(--event-light);
}
.porffolio-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.porffolio-box::after{
    content: "";
    position:absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
    transition: all 0.5s;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(215,225,240,0) 100%);
}
.porffolio-box:hover::after{
    height: 100%;
}
.porffolio-info {
    position: absolute;
    bottom: -130px;
    width: 100%;
    padding: 15px;
    z-index: 1;
    transition: all 0.5s;
}
.porffolio-box:hover .porffolio-info{
    bottom: 0;
}
.process-section {
    padding: 100px 0;
    overflow: hidden;
}
.process-box {
    padding: 0 20px;
    padding-right: 40px;
    border-right: 1px dashed  var(--event-bg-two);
}
.process-title {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 20px;
}
.process-title h4 {
    margin-bottom: 0;
}
.process-title span {
    height: 42px;
    width: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--event-bg-color);
    font-weight: 600;
    line-height: normal;
}
.process-btn{
    height: 42px;
    width: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--event-bg-color);
    color: var(--event-black);
}
.process-box:hover .process-btn{
    border-radius: 8px;
}
.cta-section{
    padding: 100px 0;
    background-image: url(../images/bg/banner-3.jpg);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-color: #000000b2;
    color: var(--event-light);
    overflow: hidden;
}
.cta-info h2{
    font-size: 60px;
}
.cta-info p{
    font-family: var(--event-styling-font);
    font-size: 22px;
}
.pakage-section {
    padding: 100px 0;
}
.pakage-section .heading-box{
    margin-bottom: 70px;
}
.pricing-item {
    box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
}
.pricing-top {
    padding: 30px;
    text-align: center;
    padding-top: 0;
    border-bottom: 1px solid #e4ebf2;
}
.pricing-img {
    width: 170px;
    height: 170px;
    padding: 10px;
    box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
    background: #fff;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    top: -85px;
    margin-bottom: -50px;
}
.pricing-img img {
    border-radius: 50%;
}
.pricing-text h4 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
}
.pricing-text h2 {
    font-size: 40px;
    color: var(--event-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}
.pricing-text h2 span {
    font-size: 16px;
}
.pricing-bottom {
    padding: 40px;
    padding-top: 35px;
    text-align: center;
}
.pricing-bottom-text ul{
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
}
.pricing-bottom-text ul li {
    padding-bottom: 15px;
}
.testimonial-section {
    padding: 100px 0;
    background-color: var(--event-bg-color);
    overflow: hidden;
}
.testimonial-box p {
    font-size: 22px;
    font-family: 'Marcellus';
    margin-bottom: 35px;
}
.testimonial-image {
    height: 400px;
    width: 400px;
    border-radius: 100%;
    overflow: hidden;
    box-shadow: 0px 0px 10px var(--event-primary);
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.testimonial-section ul.slick-dots{
   display: flex;
   align-items: center;
   column-gap: 10px;
}
.testimonial-section ul.slick-dots li button{
    border: 0;
    background-color: var(--event-primary);
    opacity: 0.5;
    font-size: 0;
    height: 15px;
    width: 15px;
    border-radius: 100%;
}
.testimonial-section ul.slick-dots li.slick-active button{
    opacity: 1;
}
.testimonial-info {
    display: flex;
    column-gap: 15px;
    align-items: center;
}
.testimonial-info h5 {
    margin-bottom: 0;
}
.testimonial-info span{
    color: #686868;
}
.testimonial-info-img {
    border-radius: 100%;
    overflow: hidden;
}
.partner-image {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-section {
    padding: 50px 0;
}
.portfolio-grids {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 30px;
}
.protfolio-section {
    padding: 100px 0;
    background-color: var(--event-bg-color);
}
.portfolio-grids > *:nth-child(1) {
    grid-column: span 3;
  }
  .portfolio-grids> *:nth-child(2) {
    grid-column: span 4;
    grid-row: span 2;
  }
  .portfolio-grids> *:nth-child(3) {
    grid-column: span 5;
  }
  .portfolio-grids > *:nth-child(4) {
    grid-column: span 3;
  }
  .portfolio-grids > *:nth-child(5) {
    grid-column: span 2;
  }
  .portfolio-grids > *:nth-child(6) {
    grid-column: span 3;
  }
  .portfolio-grids .grid {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.portfolio-grids .grid .img-holder{
    height: 100%;
    width: 100%;
}
.portfolio-grids .grid .img-holder img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.hover-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    transition: all 0.5s;
    opacity: 0;
    z-index: 1;
}
.hover-content::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 0;
    width: 0;
    background-color: #eac7ddad;
    transition: all 0.5s;
}
.portfolio-grids .grid:hover .hover-content {
   opacity: 1;
}
.portfolio-grids .grid:hover .hover-content::after{
    height: 100%;
    width: 100%;
}
.hover-content h4, .hover-content h4 a{
    color: var(--event-black);
    margin-bottom: 10px;
    font-size: 20px;
    position: relative;
    z-index: 1;
}
.hover-content span{
    position: relative;
    z-index: 1;
}
.blog-section {
    padding: 100px 0;
}
.blog-image {
    height: 350px;
    overflow: hidden;
    margin-bottom: 15px;
}
.blog-image img{
    transition: all 0.5s;
    width: 415px;
    height: 350px;
}
.blog-box:hover .blog-image img{
    transform: scale(1.2);
}
ul.blog-meta {
    display: flex;
    column-gap: 30px;
    margin-bottom: 12px;
}
ul.blog-meta li a {
    color: var(--event-primary);
}
.blog-info h4 {
    margin-bottom: 10px;
    font-size: 24px;
}
.blog-info h4 a{
    color: var(--event-black);
}
.blog-box:hover .blog-info h4 a{
    color: var(--event-primary);
}
.blog-info p {
    color: #6a6767;
}
footer.wpo-site-footer{
    padding-top: 100px ;
    background-color: var(--event-bg-color);
    overflow: hidden;
    margin-top: -8px;
}
.wpo-site-footer ul {
    list-style: none;
  }
  .wpo-site-footer p {
    color: #525252;
  }
  .wpo-site-footer li {
    color: #525252;
  }
  .wpo-site-footer .widget-title {
    margin-bottom: 30px;
  }
  @media (max-width: 767px) {
    .wpo-site-footer .widget-title {
      margin-bottom: 20px;
    }
  }
  .wpo-site-footer .widget-title h3 {
    font-size: 20px;
    color: var(--event-primary);
    margin: 0;
    text-transform: uppercase;
    position: relative;
    font-weight: 600;
  }
  @media (max-width: 991px) {
    .wpo-site-footer .widget-title h3 {
      font-size: 20px;
      font-size: 1.25rem;
    }
  }
  .wpo-site-footer .about-widget .logo {
    max-width: 180px;
    position: relative;
  }
 

  @media (max-width: 1500px) {
    .wpo-site-footer .about-widget {
      padding-right: 15px;
      padding-left: 15px;
    }
  }
  .wpo-site-footer .about-widget p {
    margin-bottom: 0.8em;
    line-height: 1.9em;
  }
  .wpo-site-footer .about-widget p:last-child {
    margin-bottom: 0;
  }
  .wpo-site-footer .about-widget ul {
    overflow: hidden;
    padding-top: 10px;
  }
  .wpo-site-footer .about-widget ul li {
    font-size: 22px;
    float: left;
  }
  .wpo-site-footer .about-widget ul li a {
    color: var(--event-primary);
    width: 36px;
    height: 36px;
    line-height: 40px;
    background: #fff;
    display: block;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
  }
  .wpo-site-footer .about-widget ul li a:hover {
    background: var(--event-primary);
    color: #fff;
  }
  .wpo-site-footer .about-widget ul li + li {
    margin-left: 25px;
  }
  @media screen and (max-width: 1600px) {
    .wpo-site-footer .about-widget ul li + li {
      margin-left: 10px;
    }
  }
  .wpo-site-footer .link-widget {
    overflow: hidden;
  }
  @media screen and (min-width: 1500px) {
    .wpo-site-footer .link-widget {
      padding-left: 75px;
    }
  }
  @media (max-width: 1199px) {
    .wpo-site-footer .link-widget {
      padding-left: 20px;
    }
  }
  @media (max-width: 991px) {
    .wpo-site-footer .link-widget {
      padding-left: 0;
    }
  }
  @media (max-width: 767px) {
    .wpo-site-footer .link-widget {
      max-width: 350px;
    }
  }
  .wpo-site-footer .link-widget ul li {
    position: relative;
  }
  .wpo-site-footer .link-widget ul li a {
    color: #575757;
    font-size: 17px;
  }
  .wpo-site-footer .link-widget ul li a:hover {
    color: var(--event-primary);
  }
  .wpo-site-footer .link-widget ul li + li {
    padding-top: 15px;
  }
  .wpo-site-footer .contact-ft {
    margin-top: 20px;
  }
  @media (max-width: 1500px) {
    .wpo-site-footer .contact-ft {
      padding-right: 0px;
    }
  }
  .wpo-site-footer .contact-ft ul li {
    padding-bottom: 15px;
    position: relative;
    padding-left: 35px;
    color: var(--event-primary);
    font-size: 16px;
  }
  .wpo-site-footer .contact-ft ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 20px;
  }
  .wpo-site-footer .contact-ft ul li .fi:before {
    font-size: 20px;
    margin-right: 15px;
  }
  .wpo-site-footer .wpo-lower-footer {
    text-align: center;
    position: relative;
    background: #fff;
  }
  .wpo-site-footer .wpo-lower-footer .row {
    padding: 20px 0;
    position: relative;
  }
  @media (max-width: 1200px) {
    .wpo-site-footer .instagram {
      margin-top: 40px;
    }
  }
  @media (max-width: 991px) {
    .wpo-site-footer .instagram {
      margin-top: 0px;
    }
  }
  .wpo-site-footer .instagram ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -3px;
  }
  .wpo-site-footer .instagram ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 5px;
    padding: 0px 3px;
  }
  .wpo-site-footer .instagram ul li img {
    width: 100%;
  }
  .copyright {
    margin-top: 50px;
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #86888f;
}
.copyright p{
    margin-bottom: 0;
}
.page-title {
    background: url(../images/page-title.jpg) no-repeat center top/cover;
    min-height: 360px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
  }
  @media (max-width: 767px) {
    .page-title {
      min-height: 250px;
    }
  }
  .page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    content: "";
    z-index: -1;
    opacity: 0.4;
  }
  .page-title .breadcumb-wrap {
    text-align: center;
  }
  .page-title .breadcumb-wrap h2 {
    font-size: 60px;
    color: #fff;
    line-height: 60px;
    margin-top: -10px;
    margin-bottom: 20px;
    font-weight: 900;
  }
  @media (max-width: 767px) {
    .page-title .breadcumb-wrap h2 {
      font-size: 30px;
      line-height: 35px;
      margin-bottom: 10px;
    }
  }
  .page-title .breadcumb-wrap ul {
    padding-left: 0;
    margin-bottom: 0;
  }
  .breadcumb-wrap ul li {
    display: inline-block;
    padding: 0px 5px;
    color: #fff;
    position: relative;
    font-size: 20px;
  }
  @media (max-width: 767px) {
    .breadcumb-wrap ul li {
      font-size: 18px;
    }
  }
  .breadcumb-wrap ul li:after {
    content: "/";
    position: relative;
    left: 7px;
  }
  .breadcumb-wrap ul li:last-child span {
    color: #cbd4fd;
  }
  .breadcumb-wrap ul li:last-child:after {
    display: none;
  }
  .breadcumb-wrap ul li a {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s;
  }
  .breadcumb-wrap ul li a:hover {
    color: var(--event-primary);
  }
  .breadcumb-wrap.title {
    padding-top: 60px;
}
.about-section-one {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    padding-bottom: 0px;
}

.about-right-one .heading-box{
    margin-bottom: 0;
}
.about-section-one .sub-title{
    margin-bottom: 9px;
}
.about-section-one .heading-title{
    margin-bottom: 36px;
}
 .heading-title>span{
    color: var(--event-primary);
}
.about-details-one {
    padding-left: 16px;
    border-left: 1px solid #D4D4D4;
    position: relative;
}
.about-details-one::after{
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 0;
    background-color: #616866;
    transition: all 3s;
}
.about-details-one.active::after{
    height: 75%;
}
.about-details-one>p{
    margin-bottom: 30px;
}
.about-details-inner-one {
    display: flex;
    align-items: start;
    column-gap: 30px;
    margin-bottom: 46px;
}
.about-details-inner-one>span{
    border-radius: 100%;
    background-color: var(--event-primary);
    padding: 18px;
}
.about-details-inner-one>span>span{
    height: 96px;
    width: 96px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EDF1F0;
}
.about-details-box-title h5{
    margin-bottom: 3px;
    font-weight: 500;
    color: #3B4443;
    font-family: var(--event-body-font);
}
.about-details-box-title p{
    margin-bottom: 0;
}
.about-project-one {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-top: 1px solid #D4D4D4;
    margin-left: -16px;
}
.about-project-one h4{
    font-size: 80px;
    font-weight: 700;
    font-family: var(--uniqo-body-font);
    background: linear-gradient(180deg, #DADFDE 13.89%, #FFFFFF 88.89%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-bottom: 0;
    width: 50%;
    text-align: center;
    border-right: 1px solid #D4D4D4;
}
.about-project-one p{
    margin-bottom: 0;
    width: 50%;
    padding: 0 50px;
    color: #3B4443;
}
.about-right-one .btn-primary {
    margin-top: 5px;
}
.about-left-one {
    height: 90%;
    width: 100%;
    border: 27px solid var(--event-primary);
}
.about-left-one img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.team-section {
    padding: 40px 0 100px 0;
}
.team-box-three {
    text-align: center;
    border-left: 1px dashed #CBCBCB;
}
.team-image-three {
    height: 200px;
    width: 200px;
    border-radius: 100%;
    overflow: hidden;
    margin: auto;
    margin-bottom: 20px;
}
.team-box-three h4{
    font-size: 20px;
    margin-bottom: 3px;
}
.team-box-three h4 a{
    color: var(--event-black);
}
.team-box-three p{
    margin-bottom: 12px;
    color: #525252;
}
ul.team-social-media-three {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: center;
}
ul.team-social-media-three li a {
    border-radius: 100%;
    height: 34px;
    width: 34px;
    background-color: var(--event-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    position: relative;
    color: var(--event-primary);
}
ul.team-social-media-three li a i{
    transition: all 0.5s;
}
ul.team-social-media-three li a:hover i{
    color: var(--event-light);
    position: relative;
    z-index: 1;
}
.team-section-three .col-lg-3:first-child .team-box-three{
    border-left: none;
} 
ul.team-social-media-three li a::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    height: 0;
    width: 0;
    border-radius: 100%;
    background-color: var(--event-primary);
    transition: all 0.5s;
}
ul.team-social-media-three li a:hover::after{
    height: 100%;
    width: 100%;
}
.vibe-section {
    padding: 100px 0;
    background-color: var(--event-bg-color);
}
.vibe-box {
    margin-top: 1.5rem;
    border: none;
    border-radius: 0px;
    color: white;
    transition: all .5s;
    background-blend-mode: overlay;
    background-color: rgba(0,0,0,.4);
        height: 360px;
        display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-size: cover;
}
.vibe-box-detail {
    margin: 12px;
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 337px;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
p.vibe-box-data{
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    max-height: 0;
    opacity: 0;
    margin-bottom: 25px;
    transition: margin,max-height,all .5s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}
.vibe-box:hover .vibe-box-detail {
    background: #008080a1;
    border: 3px solid #008080;
    transition: all .5s;
}
h5.vibe-box-more{
    border-bottom: 2px solid white;
opacity: 0;
transition: opacity,max-height,all .5s;
font-size: 16px;
}
.vibe-box:hover{
transform: scale(1.02);
box-shadow: 0 0 12px rgba(0,0,0,.36);
opacity: 1;
}
.vibe-box:hover .vibe-box-more{
    opacity: 1;
}
.vibe-box-hed{
    border-bottom: 2px solid white;
}
.vibe-box:hover .vibe-box-hed{
border: none;
}
.vibe-box:hover p.vibe-box-data{
    opacity: 1;
    max-height: 100px;
}
.cta-section-two {
    padding: 100px 0;
    background-image: url(../images/bg/banner-1.jpg);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: #000000ad;
    color: #fff;
}
.cta-info-two h2{
    font-size: 38px;
    font-weight: 600;
}
.cta-list-two {
    width: fit-content;
    margin-left: auto;
}
.cta-list-two ul li{
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 18px;
}
.service-box-two {
    text-align: center;
    padding: 30px;
    background-color: var(--event-bg-color);
    border-radius: 12px;
    transition: all 0.5s;
    height: 100%;
}
.service-section-two {
    padding: 100px 0;
}
.service-icon-box {
    max-width: 50px;
    margin: auto;
    margin-bottom: 30px;
    position: relative;
}
.service-icon-box::after{
    content: "";
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    height: 2px;
    width: 30px;
    background-color: var(--event-primary);
    transition: all 0.5s;
}
.service-icon-box::before{
    content: "";
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    height: 2px;
    width: 30px;
    background-color: var(--event-primary);
    transition: all 0.5s;
}
.service-box-two:hover .service-icon-box::after{
    width: 40px;
    left: -70px;
}
.service-box-two:hover .service-icon-box::before{
    width: 40px;
    right: -70px;
}
.service-box-two h4{
    margin-bottom: 15px;
    transition: all 0.5s;
    font-size: 24px;
}
.service-box-two:hover h4{
    color: var(--event-primary);
}
.service-box-two:hover{
    transform: translateY(-15px);
}
.service-icon-box img {
    filter: brightness(0.5);
}
.service-box-two p {color: #757575;}
.service-detail-section {
    padding: 100px 0;
}
.left-sidebar {
    position: sticky;
    top: 50px;
}
.service-category-box {
    background-color:var(--event-bg-color) ;
    padding: 40px 40px;
    margin-bottom: 30px;
    border-radius: 12px;
}
.service-category-box h4 {
    color: var(--event-primary);
    margin-bottom: 20px;
}
.service-category-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.service-category-box ul li {
    margin-bottom: 10px;
}
.service-category-box ul li a {
    background-color: var(--event-light);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--event-black);
    transition: all 0.5s;
    border-radius: 6px;
}
.service-category-box ul li a:hover{
    color: var(--event-primary);
}
.sidebar-cta {
    border-radius: 12px;
    padding: 100px 50px 50px;
    background-image: url(../images/bg/slide-3.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.sidebar-cta::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0000008f;
}
.sidebar-cta h2{
    position: relative;
    color: var(--event-light);
    z-index: 1;
}
.sidebar-cta .brand-bg-btn{
    position: relative;
    z-index: 1;
}
.fiber-broadband-faq-accordion .accordion-item {
    position: relative;
    margin-bottom: 10px;
    box-shadow: 0px 10px 60px 0px rgba(99, 99, 99, 0.10);
    border-radius: 5px;
}
.service-image-outer {
    display: flex;
    column-gap: 30px;
}
.service-image {
    margin-bottom: 20px;
}
.service-box-list {
    margin-bottom: 40px;
}
.service-box-list h4 {
    color: var(--event-black);
    margin-bottom: 10px;
}
.service-block {
    padding-right: 100px;
}
.service-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.fiber-broadband-faq-accordion .accordion-flush .accordion-item .accordion-button {
    padding: 23px 25px 20px;
    font-size: 20px;
    color: var(--event-black);
    font-weight: 500;
}
.fiber-broadband-faq-accordion .accordion-flush .accordion-item .accordion-button:not(.collapsed) {
    transition: all 0.3s;
    position: relative;
    background-color:var(--event-bg-color) ;
    color: var(--event-black);
}
.fiber-broadband-faq-accordion .accordion-flush .accordion-item .accordion-button:not(.collapsed)::before {
    content: "";
    position: absolute;
    width: 93%;
    height: 2px;
    background-color: var(--event-bg-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}
.fiber-broadband-faq-accordion .accordion-collapse .accordion-body {
    padding: 25px;
    transition: all 0.3s;
    border-radius: 0 0 15px 15px;
}
.accordion-button:focus{
    box-shadow: none;
}
ul.banifit-list li{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    column-gap: 15px;
}
ul.banifit-list li i{
    color: var(--event-primary);
}
.blog-single-section {
    padding: 100px 0;
    overflow: hidden;
}
.blog-list-box {
    margin-bottom: 40px;
}
.blog-single-image {
    position: relative;
    margin-bottom: 20px;
}
.blog-single-image a:last-child{
    position: absolute;
    left: 30px;
    bottom: 30px;
    background-color: var(--event-bg-color);
    color: var(--uniqo-light);
    padding: 6px 15px 20px;
    text-align: center;
}
.blog-single-image a p{
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 0;
}
.blog-single-image a span{
    font-weight: 600;
    margin-top: -18px;
    display: block;
}
.blog-single-meta ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    column-gap: 10px;
}
.blog-single-meta ul li span{
    font-weight: 300;
}
.blog-single-meta ul li a{
    font-weight: 600;
    color: var(--event-black);
}
.blog-single-meta ul li a:hover{
    color: var(--event-primary);
}
.blog-single-details h4 {
    margin-bottom: 10px;
}
.blog-single-details h4 a{
    color: var(--uniqo-dark-text);
    background-image: linear-gradient(transparent calc(100% - 1px), var(--event-primary) 1px);
    background-repeat: no-repeat;
    background-position-y: -1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: 1s cubic-bezier(.215,.61,.355,1) underline forwards;
}
.blog-single-details h4 a:hover{
    animation: 1s cubic-bezier(.215,.61,.355,1) underline-hover forwards;
}
.blog-single-details p{
    margin-bottom: 24px;
}
.blog-single-details a.btn {
    border: 1px solid #00000033;
}
.blog-sidebar.stcky {
    position: sticky;
    top: 150px;
}
.blog-block {
    margin-bottom: 35px;
    background-color: var(--event-bg-color);
    padding: 30px 35px;
}
.blog-serch-widget form {
    position: relative;
}
.blog-serch-widget form input[type="search"] {
    border: none;
    background-color: transparent;
    width: 85%;
}
.blog-serch-widget button{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
}
.blog-serch-widget button img{
    filter: brightness(0.4);
}
.blog-block h4{
    font-size: 20px;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--event-black);
    margin-bottom: 0;
}
.blog-block ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.category-widget ul li{
    padding: 18px 0;
    border-bottom: 1px solid #00000042;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s;
}
.category-widget ul li:last-child{
    border: none;
}
.category-widget ul li a{
    color: var(--event-black);
}
.category-widget ul li:hover{
  background-color: #000;
  padding: 18px;
  color: var(--event-light);
}
.category-widget ul li:hover a{
    color: var(--event-light);
}
.cta-widget{
    background-color: var(--event-bg-color);
}
.cta-widget h4{
    margin-bottom: 15px;
}
.cta-widget p{
    margin-bottom: 25px;
    font-size: 18px;
}
.blog-contact {
    margin-bottom:30px;
}
.blog-contact  a{
    color:#000;
}
.page-title .breadcumb-wrap h3 {
    font-size: 32px;
    color: #fff;
    line-height: 60px;
    margin-top: -10px;
    margin-bottom: 20px;
    font-weight: 900;
}
.bolg-cta-widget .tel{
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 35px;
    color: #000;
}
@keyframes underline {
    0% {
        background-size: 100% 100%;
        background-position-x: 100%
    }

    100% {
        background-size: 0 100%;
        background-position-x: 100%
    }
}
@keyframes underline-hover {
    0% {
        background-position-x: 0;
        background-size: 0 100%
    }

    100% {
        background-position-x: 0;
        background-size: 100% 100%
    }
}
 
.cta-blog-details {
    padding: 40px 60px;
    margin-top: 30px;
    background-color: var(--event-bg-color);
    font-size: 26px;
    color: var(--uniqo-dark-text);
    clip-path: polygon(0 0, 100% 0, 100% 0, 100% 71%, 91% 100%, 0 100%, 0 100%, 0 0);
    font-family: var(--event-heading-font);
}
ul.blog-details-list{
    margin: 30px 0;
    padding: 0;
    list-style: none;
}
ul.blog-details-list li{
    display: flex;
    column-gap: 10px;
    font-size: 18px;
    align-items: center;
    line-height: 25px;
    margin-bottom: 15px;
}
ul.blog-details-list li span{
    font-weight: 500;
    font-size: 25px;
    color: var(--event-black);
    line-height: 25px;
}
.Gallery-section-two {
    padding: 100px 0;
}
.nav-tabs {
    justify-content: center;
    margin-bottom: 50px;
    display: flex;
    border: none;
    column-gap: 30px;
}
.nav-link.active , .nav-link{
    border: none !important;
}
.nav-link.active , .nav-link:hover{
    color: var(--event-primary) !important;
}
.nav-link{
    color: var(--event-black);
    position: relative;
    font-size: 20px;
    font-family: var(--event-heading-font);
}
.nav-link::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background-color: var(--event-primary);
    transition: all 0.5s;
}
.nav-link.active::after{
    width: 100%;
}
.contact-section {
    padding: 100px 0;
    overflow: hidden;
}

.contact-info ul li{
    margin-bottom: 20px;
    display: flex;
    column-gap: 20px;
}
.contact-info ul li i{
    color: var(--event-primary);
    font-size: 26px;
    padding-top: 3px;
}
.contact-info ul li h4, .contact-info ul li p{
    margin-bottom: 0;
}
.contact-info ul li a{
    color: var(--event-black);
    font-weight: 500;
}
.contact-info ul li a:hover{
    color: var(--event-primary);
}
.contact-form {
    background-color: var(--event-bg-color);
    border-radius: 20px;
    padding: 50px 30px;
}
.contact-form .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #C4C6C5;
    border-radius: 0;
    padding: 0;
    padding-bottom: 11px;
}
.contact-form  textarea.form-control {
    margin-bottom: 15px;
}
.form-group {
    display: flex;
    column-gap: 50px;
    margin-bottom: 37px;
}
.contact-form-one .form-control{
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #56736C;
    padding: 11px 0;
}
.contact-num{
    display: flex;
    flex-direction: column;
}
.contact-num span{
    margin-top: 10px;
}
.about-media-wrap .video-btn {
    background: rgba(80, 71, 235, 0.8);
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
}
.about-media-wrap .video-btn:hover {
    background: #0B0F2C;
}
.counter-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: var(--event-primary);
}

.counter-sign {
    font-size: 36px;
    font-weight: 700;
    margin-left: 5px;
    color: var(--event-primary);
}
.counter-number{
    margin-bottom: 30px;
}
.top-image img{
    width: 100%;
    height: 450px;
}  

/* mega menu  */
/* Main Mega Menu Container */
.main-menu {
    position: relative;
  }
  
  .main-menu-list > li {
    position: relative;
  }
  
  .mega-menu {
    position: absolute;
    left: -445px;
    top: 100%;
    width: 70vw;
    background: #fff;
    padding: 10px;
    display: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }
  
  .menu-item-children:hover .mega-menu {
    display: block;
  }
  
  /* Layout of Mega Menu Columns */
  .mega-menu > ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
  }
  
  /* Column Inside Mega Menu */
  .mega-menu > ul > li {
    flex: 1;
  }
  
  /* Title Inside Mega Menu Column */
  .mega-menu h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--event-primary);
    font-weight: 500;
    font-family: var(--event-body-font);;
  }
  .inner-ul li a{
    color: #000 !important;

  }
  /* Inner List Items */
  .mega-menu ul ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mega-menu ul ul li {
    margin-bottom: 10px;
  }
  
  .mega-menu a {
    text-decoration: none;
    color: #444;
    display: flex;
    align-items: center;
  }
  
  .mega-menu .icon {
    margin-right: 10px;
    font-size: 18px;
    color: #007BFF;
  }
  
  .mega-menu .title p {
    margin: 0;
    margin-bottom: 20px;
}
  
  .mega-menu .title span {
    display: block;
    font-size: 12px;
    color: #777;
  }
     
.contact-ft a{
    color:var(--event-primary);
}
.details-service {
  background-color: var(--event-bg-color);
  text-align: left;
  padding: 35px;

}
.details-service li{
  list-style: disc;
  margin-bottom: 15px;
  margin-left: 15px;
}   

.service-section h2{
    color: var(--event-primary) ;
    text-align: center;
}
.blog-serch-widget{
  border-bottom: 1px solid black;
}
.gallery-tabs .nav-link{
    font-size: 18px;
    padding: 5px !important;
}
.gallery-tabs .nav-tabs{
    justify-content: flex-start;
}
.gallary-tab-flex{
  display: flex;
  gap: 45px;
}
.event-gallary {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.outer-gallary{
    border-bottom: 1px solid #fff;
}
.gallary-outer{
    border-bottom: 1px solid var(--event-primary) !important;
}
.event-gallary button.active{
    background-color: (--event-bg-two);
}
.form-group p{
  width: 100%;
}