@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://cdn-uicons.flaticon.com/2.2.0/uicons-regular-straight/css/uicons-regular-straight.css');
@import url('https://cdn-uicons.flaticon.com/2.3.0/uicons-thin-rounded/css/uicons-thin-rounded.css');
@import url('https://cdn-uicons.flaticon.com/2.2.0/uicons-regular-rounded/css/uicons-regular-rounded.css');
@import url('https://cdn-uicons.flaticon.com/2.3.0/uicons-regular-straight/css/uicons-regular-straight.css');
@import url('https://cdn-uicons.flaticon.com/2.3.0/uicons-thin-straight/css/uicons-thin-straight.css');
@import url('https://cdn-uicons.flaticon.com/2.3.0/uicons-bold-rounded/css/uicons-bold-rounded.css');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=League+Spartan:wght@100..900&display=swap');













@font-face {
	font-family: 'WowFont';
	src: url(../fonts/wow_font/Wow_Regular.woff) format("woff2");
	font-display: swap;
	font-weight: 200;
	font-style: normal;
}

@font-face {
	font-family: 'WowFont';
	src: url(../fonts/wow_font/Wow_Regular1.woff) format("woff2");
	font-display: swap;
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'WowFont';
	src: url(../fonts/wow_font/Wow_Regular2.woff) format("woff2");
	font-display: swap;
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'WowFont';
	src: url(../fonts/wow_font/Wow_Regular3.woff) format("woff2");
	font-display: swap;
	font-weight: 500;
	font-style: normal;
}


body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'WowFont', sans-serif;

}
p {
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 25px;
    color: #353535;
    font-weight: 300;
}
html {
    scroll-behavior: smooth;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}




.arrow-button {
    display: flex;
    color: #000000;
    background-color: #ffffff;
    padding: 10px 16px;
    transition: all .3s ease;
    font-weight: 300;
    cursor: pointer;
    align-items: center;
    font-size: 14px;
}

.arrow-button > .arrow {
    width: 6px;
    height: 6px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #C2FFE9;
    position: relative;
    transform: rotate(-45deg);
    margin: 0 6px;
    transition: all .3s ease;
}

.arrow-button > .arrow::before {
    display: block;
    background-color: currentColor;
    width: 3px;
    transform-origin: bottom right;
    height: 2px;
    position: absolute;
    opacity: 0;
    bottom: calc(-2px / 2);
    transform: rotate(45deg);
    transition: all .3s ease;
    content: "";
    right: 0;
}

.arrow-button:hover > .arrow {
    transform: rotate(-45deg) translate(4px, 4px);
    border-color: text-hover-color;
}

.arrow-button:hover > .arrow::before {
    opacity: 1;
    width: 8px;
}

.arrow-button:hover {
    background-color: #000000;
    color: #fff;
}

/* .sticky-header {
    opacity: 0;
    background: rgba(15,15,15,.98);
    left: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,.2);
    width: 100%;
    z-index: 0;
    transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
} */

.main-btn {
    --color: #00000;
    border:solid 1px ;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    padding: 14px 49px 14px 39px;
    transition: background 0.3s;
    color: var(--color);
    background: var(--bg, var(--background));
  }
  
  .main-btn:before, .main-btn:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    border-radius: 1px;
    background: #000000;
    transform-origin: 9px 1px;
    transform: translateX(var(--cx, 0)) scale(0.5) rotate(var(--r, -45deg));
    top: 22px;
    right: 34px;
    transition: transform 0.3s;
  }
  
  .main-btn:after {
    --r: 45deg;
  }
  
  .main-btn:hover {
    --cx: 2px;
    --bg: #00000;
    --fx: -40px;
    --fr: -60deg;
    --fd: .15s;
    --fds: 0s;
    --pbx: 3px;
    --pby: -3px;
    --pbd: .15s;
    --pex: -24px;
  }


.nav-main-btn {
    color: #fff;
    background-color: #4A002A;
    border:none;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    padding: 14px 49px 14px 39px;
    transition: background 0.3s;
  }
  
  .nav-main-btn:before, .nav-main-btn:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    border-radius: 1px;
    background: #ffffff;
    transform-origin: 9px 1px;
    transform: translateX(var(--cx, 0)) scale(0.5) rotate(var(--r, -45deg));
    top: 22px;
    right: 34px;
    transition: transform 0.3s;
  }
  
  .nav-main-btn:after {
    --r: 45deg;
  }
  
  .nav-main-btn:hover {
    --cx: 2px;
    --bg: #00000;
    --fx: -40px;
    --fr: -60deg;
    --fd: .15s;
    --fds: 0s;
    --pbx: 3px;
    --pby: -3px;
    --pbd: .15s;
    --pex: -24px;
  }
  


  .main-offer-btn {
    --color: #fff;
    background-color:#fff;
    border:solid 1px ;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    padding: 14px 49px 14px 39px;
    transition: background 0.3s;
  }
  
  .main-offer-btn:before, .main-offer-btn:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    border-radius: 1px;
    background: #000000;
    transform-origin: 9px 1px;
    transform: translateX(var(--cx, 0)) scale(0.5) rotate(var(--r, -45deg));
    top: 22px;
    right: 34px;
    transition: transform 0.3s;
  }
  
  .main-offer-btn:after {
    --r: 45deg;
  }
  
  .main-offer-btn:hover {
    --cx: 2px;
    --bg: #00000;
    --fx: -40px;
    --fr: -60deg;
    --fd: .15s;
    --fds: 0s;
    --pbx: 3px;
    --pby: -3px;
    --pbd: .15s;
    --pex: -24px;
  }



.owl-theme .owl-dots {
    display: none;
}
.owl-theme .owl-nav {
    display: block !important;
}
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #666;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ccc;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.btn:focus {
    box-shadow: none !important;
    border: none !important;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.btn-close:focus {
    box-shadow: none;
}
.btn:hover {
    color: #fff !important;
}
.accordion-button:focus {
    box-shadow: none;
}
a {
    color: #000;
    text-decoration: none;
    
}

.offcanvas-body a {
    color: #353535 !important;
    text-decoration: none !important;
    font-weight: 300 !important;
    font-size:15px;
    line-height: 25px;
    font-family: 'WowFont', sans-serif;
}


ul,
ol {
    padding-left: 0px;
    list-style-type: none;
}
a:hover {
    color: initial;
}
input:focus,
select:focus,
textarea:focus {
    box-shadow: none !important;
}
.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
/*.full-width {
  width: 100% !important;
}*/
.web-view {
    display: block;
}
.mobile-view {
    display: none;
}
.vertical-space-2 {
    height: 10px;
}
.vertical-space-5 {
    display: inline-block;
    width: 100%;
    height: 5px;
}

.vertical-space-8 {
    display: inline-block;
    width: 100%;
    height: 8px;
}

.vertical-space-10 {
    display: inline-block;
    width: 100%;
    height: 10px;
}

.vertical-space-12 {
    display: inline-block;
    width: 100%;
    height: 12px;
}

.vertical-space-15 {
    display: inline-block;
    width: 100%;
    height: 15px;
}

.vertical-space-20 {
    display: inline-block;
    width: 100%;
    height: 20px;
}

.vertical-space-30 {
    display: inline-block;
    width: 100%;
    height: 30px;
}

.vertical-space-40 {
    display: inline-block;
    width: 100%;
    height: 40px;
}

.vertical-space-50 {
    display: inline-block;
    width: 100%;
    height: 50px;
}

.vertical-space-60 {
    display: inline-block;
    width: 100%;
    height: 60px;
}
.vertical-space-65 {
    display: inline-block;
    width: 100%;
    height: 65px;
}
.vertical-space-70 {
    display: inline-block;
    width: 100%;
    height: 70px;
}

.vertical-space-80 {
    display: inline-block;
    width: 100%;
    height: 80px;
}

.vertical-space-90 {
    display: inline-block;
    width: 100%;
    height: 90px;
}

.vertical-space-100 {
    display: inline-block;
    width: 100%;
    height: 100px;
}
.vertical-space-120 {
    display: inline-block;
    width: 100%;
    height: 120px;
}
.vertical-space-150 {
    display: inline-block;
    width: 100%;
    height: 150px;
}
.modal{
    z-index: 1300;
}
.common{
    color: #4A002A !important;
}
.swipe {
    position: relative;
  background: #4A002A;
    width: 200px;
    height: 60px;
    color: #fff;
    border: none;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    letter-spacing: 1px;
    padding-left: 40px;
    cursor: pointer;
    transition: 0.35s ease;
       font-size: 16px;
    font-weight: 400;
  }
  
  .swipe:hover {
    padding-left: 0;
    padding-right: 40px;
    color: #fff;
  }
  
  .container-btn {
    position: absolute;
    left: 5px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    transition: 0.35s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
  }
  
  .swipe:hover .container-btn {
    left: calc(100% - 55px);
    color: #000;
  }
.button-common {
  all: unset;
  width: 100px;
  height: 30px;
  font-size: 16px;
    font-weight: 400;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-common::after,
.button-common::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.button-common::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #4A002A;
  border-radius: 10px;
}

.button-common::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.button-common:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.button-common:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button-common:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

.fixed{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1200 !important;
    transition: 0.5s all;
    background: rgba(255, 255, 255, 0.696) !important; /* semi-transparent black */
    color: #fff !important;
    animation: swip_down 0.5s linear 1;

    backdrop-filter: blur(10px); /* glass effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */

    -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}
.container{
    max-width: 92%;
}



.top-header {
    background: #000000;
    padding: 7px 0px;
}
.top-header .top-header-left .top-header-list{
    display: flex;
    margin-bottom: 0px;
    justify-content: center;
}
.top-header .top-header-left .top-header-list .list-item{
    font-size: 16px;
    color: #fff;
    font-family: 'WowFont', sans-serif;
    font-weight:300;
}
.top-header .top-header-left .top-header-list .list-item i{
    margin-right: 8px;
    font-size: 16px;
}
.top-header .top-header-right .top-header-list{
    display: flex;
    margin-bottom: 0px;
    justify-content: end;
}
.top-header .top-header-right .top-header-list li{
    margin-left: 25px;
}
.top-header .top-header-right .top-header-list .list-item{
    font-size: 16px;
    color: #fff;
    font-family: 'WowFont', sans-serif;
    font-weight:300;
}
.top-header .top-header-right .top-header-list .list-item i{
    margin-right: 8px;
    font-size: 16px;
}
.top-header .social-icon ul{
    display:flex ;
    justify-content: end;
    margin-bottom: 0px;
}
.top-header .social-icon ul li {
   margin-left: 15px !important;
}
.top-header .social-icon ul li a{
    font-size: 14px;
    color: #fff;
}







.header .navbar{ 
    position: relative;
    z-index: 1020;
    padding:10px 0px;
      background: #f7d5f4;
}

 .header .navbar .navbar-brand img{
    width: 235px;
}

.zynk-logo {
    font-size: 32px;
    font-weight: 800;
    color: #4A002A;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-family: 'League Spartan', sans-serif;
    display: inline-block;
    line-height: 1;
}

.zynk-logo span {
    color: #4A002A;
    font-weight: 300;
    margin-left: 2px;
}

.footer .zynk-logo {
    color: #fff;
}

.footer .zynk-logo span {
    color: #fff;
    opacity: 0.8;
}
.header  .navbar .nav-item{
    padding-left: 40px;
}
.header  .navbar .nav-link{
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    padding:10px 0px !important;
    padding-right: 0px !important;
    -webkit-transition: all .4s;
    transition: all .4s;
    position: relative;
}
 .header .navbar .nav-link::before{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    width: 0px;
    height: 14px;
    transition: 0.6s all;
    border-radius: 0px;
    /*background: url(../images/fav.webp);*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header  .navbar .nav-item.dropdown .dropdown-toggle::after {
    border: none;
    content: "\2b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: baseline;
    font-size: 11px;
    margin-left: 5px;
    color: #000000;
}
.header  .navbar .nav-item  .dropdown-menu{
   border: none;
    border-top-width: 2px;
    border-radius: 0px;
    background: #fff;
    padding: 0px;
    box-shadow: 0 10px 37px rgba(0, 0, 0, 0.07);
    outline: none;
}
.dropdown-menu[data-bs-popper]{
    margin-top: 0px !important;
}
.header  .navbar .dropdown .dropdown-menu .dropdown-item{
    color: #000000;
    font-weight: 300;
    font-size: 14px;
    padding: 10px 65px 10px 20px;
    border-bottom: solid 1px #0000003b;
}
.header .navbar .dropdown-submenu  a.dropdown-toggle:hover:after{
    color: #fff;
 }
.header  .navbar .dropdown .dropdown-menu .dropdown-item:hover , .header  .navbar .dropdown .dropdown-submenu li:hover{
   background: #4A002A;
    color: #fff;
}
 .header .navbar li:hover > ul.dropdown-menu{
    display: block;
}
 .header .navbar .dropdown-submenu {
    position:relative;
    
}
 .header .navbar .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    animation: swip_up .5s linear 1;
}

/* rotate caret on hover */
 .header .navbar .dropdown-submenu  a.dropdown-toggle:after{
    border: none;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 14px;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #4D4D4D;
}
 .header .navbar .dropdown-submenu > li:hover > .dropdown-menu{
    display: block;
    animation: swip_left .5s linear 1;
} 

 .header .navbar .dropdown .dropdown-menu li:last-child{
    border-bottom: none;
}
@keyframes swip_up {
    from {
        transform: translate(0px, 100px);
        opacity: 0
    }

    to {
        transform: translate(0,0);
        opacity: 1
    }
}


.header .navbar .nav-link.active::before{
    width:20px;
}
 .header .navbar .nav-link.active , .header  .navbar .nav-link:hover , .header  .navbar .nav-link:focus{
  color: #4A002A;
}
.hero-banner {
    background: linear-gradient(135deg, #4A002A 0%, #1a0010 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0 100px;
}

/* Background Elements */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

/* Dot Pattern */
.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(247, 213, 244, 0.04) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.8;
    z-index: 1;
}

/* Side Grid Decoration */
.hero-right-grid {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(2, 8px);
    gap: 15px;
    z-index: 2;
    opacity: 0.2;
}

.hero-right-grid span {
    width: 6px;
    height: 6px;
    border: 1px solid #f7d5f4;
    display: block;
}

.hero-right-grid span.active {
    background: #ff0000;
    border-color: #ff0000;
}

/* Floating Blue Arc (matched to reference) */
.blue-arc-decoration {
    position: absolute;
    right: -100px;
    bottom: 20%;
    width: 350px;
    height: 350px;
    border: 50px solid rgba(0, 132, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    font-family: 'League Spartan', sans-serif;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
}

.hero-desc {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 580px;
    line-height: 1.6;
    font-weight: 300;
    color: #eee;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.badge-item {
    text-align: center;
    transition: all 0.4s ease;
}

.badge-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

.badge-text {
    font-size: 0.65rem;
    font-weight: 700;
    display: block;
    line-height: 1.3;
    letter-spacing: 0.5px;
    color: #f7d5f4;
    text-transform: uppercase;
}

.custom-cta-btn {
    background: #fff;
    color: #4A002A;
    border: none !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    font-family: 'WowFont', sans-serif;
}

.custom-cta-btn:hover {
    background: #f7d5f4;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* CUSTOM BROWSER MOCKUP scaled for fit */
.mockup-browser {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 5;
    width: 600px;
    margin-left: -20px;
}

.browser-header {
    background: #f1f1f1;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.browser-nav {
    display: flex;
    gap: 12px;
    font-size: 9px;
    font-weight: 700;
    color: #aaa;
}

.browser-content {
    background: #fff;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.service-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 25px;
    opacity: 0;
    visibility: hidden;
    animation: slide-loop 16s infinite;
    pointer-events: none;
}

/* Precise Slide Timings for 4 services over 16 seconds */
.service-slide:nth-child(1) { animation-delay: 0s; }
.service-slide:nth-child(2) { animation-delay: 4s; }
.service-slide:nth-child(3) { animation-delay: 8s; }
.service-slide:nth-child(4) { animation-delay: 12s; }

@keyframes slide-loop {
    0% { opacity: 0; transform: translateX(30px); visibility: hidden; }
    3% { opacity: 1; transform: translateX(0); visibility: visible; }
    22% { opacity: 1; transform: translateX(0); visibility: visible; }
    25% { opacity: 0; transform: translateX(-30px); visibility: hidden; }
    100% { opacity: 0; visibility: hidden; }
}

.content-left {
    flex: 1.2;
}

.moving-illustration {
    width: 100%;
    animation: float_and_scale 4s ease-in-out infinite;
}

.content-right {
    flex: 0.8;
    padding-left: 20px;
    text-align: left;
}

.content-right h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #4A002A;
    margin: 0;
    letter-spacing: -1px;
}

.content-right h4 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0;
}

/* Service Colors matched to branding */
.color-blue { color: #0084ff; }
.color-purple { color: #a300ff; }
.color-orange { color: #ff8c00; }
.color-green { color: #27c93f; }

.browser-blue-arc {
    position: absolute;
    right: -15px;
    top: 15px;
    width: 120px;
    height: 120px;
    border: 25px solid #0084ff;
    border-radius: 50%;
    opacity: 0.3; /* Subtle to not block text */
    z-index: 1;
}

@keyframes float_and_scale {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Wave Divider tuned for smaller height */
.hero-wave-wrapper {
    position: relative;
    width: 100%;
    margin-top: -140px;
    z-index: 10;
}

.hero-wave {
    display: block;
    width: 100%;
}

@media (max-width: 991px) {
    .mockup-browser {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-banner {
        min-height: auto;
        padding: 40px 0 80px;
    }
}
  
.service-container-box{
    padding-bottom:50px;
    position: relative;
    background: #fff;
    z-index: 10 ;
}


.section-subtitle {
    font-size: 12px;
    line-height: 25px;
    color: #4A002A;
    font-family: 'WowFont', sans-serif;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title{
    font-size: 30px;
    font-weight: 300;
    color: #1a1a1a;
    font-family: 'WowFont', sans-serif;
     margin-bottom: 20px;
}


.service-container-box .service-subtitle {
    font-size: 12px;
    line-height: 25px;
    color: #4A002A;
    font-family: 'WowFont', sans-serif;
    margin-bottom: 10px;
}
.service-subtitle {
    font-size: 12px;
    line-height: 25px;
    color: #4A002A;
    font-family: 'WowFont', sans-serif;
    margin-bottom: 10px;
}
.service-container-box .service-title{
    font-size: 30px;
    font-weight: 300;
    color: #1a1a1a;
    font-family: 'WowFont', sans-serif;
     margin-bottom: 20px;
}

.service-container-box .service-text{
    font-size: 16px;
    line-height: 25px;
    color: #353535;
    font-weight: 300;
}
.service-cards .service-card .card-img{
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
}
.service-cards .service-card .card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-cards .service-card .card-title{
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    color: #1a1a1a;
     margin-bottom: 10px;
}

.service-cards .service-card .card-text{
    font-size: 16px;
         display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 25px;
    color: #353535;
    font-weight: 300;
}

    hr {
    border-color:  #EAEAEA;
    opacity: 1;
}

.what-we-do .we-do-title{
    font-size: 30px;
    font-weight: 300;
    color: #1a1a1a;
    font-family: 'WowFont', sans-serif;
     margin-bottom: 20px;
}


.what-we-do .block {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 180px;
	border-radius: 50%;
}

.what-we-do .box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: calc(100% - 50px);
	height: calc(100% - 50px);
	border-radius: 50%;
}

.what-we-do .box::before {
	position: absolute;
	content: '';
	width: calc(100% + 33px);
	height: calc(100% + 33px);
	border-radius: 50%;
	border: 4px solid #f2f2f2;
}

.what-we-do .box .number span {
	color: #000;
}

.what-we-do .box .number .num {
	font-size: 35px;
	font-weight: bold;
}

.what-we-do .box .number .sub {
	font-size: 20px;
}

.what-we-do .box .title {
	font-size: 15px;
	color: #676767;
}

.what-we-do .dots {
	display: block;
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transition: 2s transform, 2s opacity ease;
}

.what-we-do .dots::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	top: 5px;
	left: 50%;
	border-radius: 50%;
	  background: #4A002A;
	transform: translateX(-50%);
}

.what-we-do .svg {
	position: absolute;
	width: 100%;
	height: 100%;
	fill: none;
	transform: rotate(-90deg);
}

.what-we-do .circle {
	stroke: #4A002A;
	stroke-width: 4px;
	stroke-dasharray: 503;
	stroke-dashoffset: 503;
	animation-duration: 2s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
	transition: 2s stroke-dashoffset;
}









.about-detail {
    padding: 30px 0px;
    position: relative;
    background:#fafafa;
}
.about-detail .img-box {
    position: relative;
}
.about-detail .vertical-text {
    font-size: 100px;
    letter-spacing: 4px;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1px #ddd;
    transform: rotate(-90deg) translate(-100%,-50%);
    display: inline-block;
    transform-origin: left top;
    opacity: 0.75;
    position: absolute;
    top: 30%;
    left: 80px;
    z-index: 2;
}
.about-detail .content-post {
    position: relative;
    z-index: 2;
}
.about-detail .content-box .exp-year h4 {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 50px;
    z-index: 1;
}
.about-detail .content-box .text {
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    font-weight: 400;
    z-index: 1;
}
.about-detail .about-content {
    position: relative;
}

.about-detail .about-text {
font-size: 16px;
    line-height: 25px;
    color: #353535;
    font-weight: 300;
}
.about-detail .about-list {
    margin-top: 35px;
}
.about-detail .about-list li {
    font-size: 16px;
    color: #666;
    line-height: 28px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}
.about-detail .about-list li::after {
    content: "\f101";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    color: var(--main-color);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.about-detail .about-divider {
    margin-top: 25px;
}
.about-detail .about-divider .divide-box .icon img {
    width: 60px;
}
.about-detail .about-divider .divide-box .title {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 0px;
    font-weight: 800;
    text-transform: capitalize;
}

.our-team {
    padding: 60px 0px;
}
.our-team .team-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #fd6601;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.our-team .team-title {
    position: relative;
    margin-bottom: 35px;
    font-size: 50px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 15px;
}
.our-team .team-text {
    font-size: 16px;
    line-height: 28px;
    color: #666d81;
    font-weight: 400;
    margin-bottom: 20px;
}
.our-team .team-card .team-img {
    width: 100%;
    height: 350px;
    position: relative;
    border-radius: 0px;
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}
.our-team .team-card .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    border: 10px solid #fff;
}
.our-team .team-card .team-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    border-radius: 10px;
    background: #fff;
    padding: 15px 10px 10px;
    width: 90%;
}
.our-team .team-card .team-content .title {
    position: relative;
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
    position: relative;
    font-family: var(--oswald--family);
    text-align: center;
}
.our-team .team-card .team-content .text {
    font-size: 14px;
    line-height: 28px;
    color: #666d81;
    text-align: center;
    font-weight: 400;
    margin-bottom: 0px;
}
.our-team .team-title {
    color: #000 !important;
    margin-bottom: 28px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    font-family: var(--oswald--family);
}
.our-team .img-box {
    background: #fff;
    padding: 10px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0px 1px 2px 0px #0000000d;
    margin-bottom: 20px;
}
.our-team .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    object-position: top;
}
.our-team .img-box-1 {
    background: #fff;
    padding: 10px;
    width: 100%;
    height: 280px;
    box-shadow: 0px 1px 2px 0px #0000000d;
}
.our-team .img-box-1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.our-team .detail-box {
    padding: 5px;
    background: #fff;
}
.our-team .detail-box h5 {
    color: #000 !important;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}
.our-team .detail-box h6 {
    color: #666d81 !important;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}







/*.our-clients{*/
/*    padding: 20px 0px;*/
/*}*/
.our-clients .client-icon{
    background: #fff;
    padding: 10px;
    float: left;
    width: 100%;
    height: 90px;
    position: relative;
}
.our-clients .client-icon img{
 width: 100%;
 height: 100%;
 object-fit: contain;
 filter: grayscale(1);
}
.our-clients .client-icon:hover img{
    filter: grayscale(0);
}

.about-section{
    padding: 50px 0px;
}

.about-section .about-img{
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
}
.about-section .about-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-section .about-subtitle{
    font-size: 12px;
    text-transform: uppercase;
    line-height: 25px;
    color: #4A002A;
    font-family: 'WowFont', sans-serif;
    margin-bottom: 10px;
}
.about-section .about-title{
    font-size: 30px;
    font-weight: 300;
    color: #1a1a1a;
    font-family: 'WowFont', sans-serif;
     margin-bottom: 20px;
}

.about-section .about-text{
    font-size: 16px;
    line-height: 25px;
    color: #353535;
    font-weight: 300;
}
.about-section .about-img-1{
    width: 100%;
    height: 550px;
    margin-bottom: 20px;
    position: relative;
}
.about-section .about-img-1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}
.about-section .about-img-1 .content-box{
 background: linear-gradient(90deg,#6A0095,#F20198);
    border: 5px solid #fff;
    padding: 25px ;
    position: absolute;
    bottom: 50px;
    left: -30px;
}
.about-section .about-img-1 .content-box .content-title{
    position: relative;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 400;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    letter-spacing: 3px;
}
.about-section .about-img-1 .content-box .content-title span{
    font-size: 70px;
    font-weight: 400;
    letter-spacing: 0px;
}
.about-section .content-detail{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #EAEAEA;
}
.about-section .content-detail .title{
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    color: #1a1a1a;
     margin-bottom: 10px;
}
.about-section .content-detail .title img{
    width: 32px;
    margin-right: 10px;
}
.about-section .content-detail .text{
    font-size: 16px;
    line-height: 25px;
    color: #353535;
    font-weight: 300;
}
.progress-section{
    padding: 60px 0px 40px 0px;
    position: relative;
    background:#4A002A;
}
.progress-section .progress-box{
    position: relative;
    z-index: 1;
}
.progress-section .progress-box .progress-subtitle{
     color: #ffffff30;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 10px;
    font-style: italic;
    position: relative;
    z-index: 1;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}
.progress-section .progress-box .plus{
    background:#fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px !important;
  margin-left: 10px;
}
.progress-section .progress-box .progress-title{
    display: flex;
    align-items: center;
    justify-content: center;
      position: relative;
    z-index: 1;
}
.progress-section .progress-box .progress-title span{
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}
.progress-section .progress-box .progress-text{
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    text-align: center;
}
.progress-section .progress-border::after{
     background: none;
}

/*.why-us{*/
/*    padding: 50px 0px;*/
/*}*/
.why-us .why-us-subtitle{
    font-size: 12px;
    text-transform: uppercase;
    line-height: 25px;
    color: #4A002A;
    font-family: 'WowFont', sans-serif;
    margin-bottom: 10px;
}
.why-us .why-us-title{
    font-size: 30px;
    font-weight: 300;
    color: #1a1a1a;
    font-family: 'WowFont', sans-serif;
     margin-bottom: 20px;
}

.why-us .why-us-text{
    font-size: 16px;
    line-height: 25px;
    color: #353535;
    font-weight: 300;
}
.why-us .choose-box{
    padding: 80px 40px 40px;
    border: 1px solid #EAEAEA;
    transition: 0.8s all;
}
.why-us .choose-box:hover{
    background: #4A002A;
}
/*.why-us .choose-box1{*/
/*    margin-top: 30px;*/
/*}*/
/*.why-us .choose-box2{*/
/*    margin-top: 30px;*/
/*}*/
/*.why-us .choose-box3{*/
/*    margin-top: 30px;*/
/*}*/
.why-us .choose-box .content{
        transform: translateY(0px);
    transition: 0.7s all;
}
.why-us .choose-box .icon {
       position: relative;
}
.why-us .choose-box .icon img{
    margin-bottom: 20px;
    width: 60px;
}
.why-us .choose-box .choose-title{
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    color: #1a1a1a;
     margin-bottom: 10px;
}

.why-us .choose-box .choose-text{
    font-size: 16px;
         display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
       position: relative;
       line-height: 25px;
       color: #353535;
       font-weight: 300;
}
.why-us .choose-box:hover .content{
    transform: translateY(-20px);

}
.why-us .choose-box:hover .choose-title , .why-us .choose-box:hover .choose-text{
    color: #fff;
}
.why-us .choose-box:hover .icon img{
    filter:brightness(0) invert(1);
}







.working-process .process-text{
    font-size: 16px;
    color: #666;
    line-height: 28px;
    margin-bottom: 15px;
    text-align: center;
}
.working-process .process-box{
    position: relative;
}
.working-process .process-box .icon{
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    text-align: center;
    line-height: 100px;
    background: #fff;
    border-radius: 50%; 
    outline-offset: 4px;
    outline: 1px dashed #4A002A;
}
.working-process .process-box .icon img{
    width: 50px;
}
.working-process .process-box .card-title{
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}
.working-process .process-box .card-text{
    font-size: 16px;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    line-height: 25px;
    color: #353535;
    font-weight: 300;
    text-align:center;
}
.arrow-shape{
position: absolute;
top: 30%;
transform: translateY(-50%);
right: -15%;
}





.gallery{
    background: aliceblue;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    padding: 60px 0px;
}
.gallery .texture-img{
    bottom: 0;
    left: 0;
    position: absolute;
}
.gallery .gallery-subtitle{
     font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    color: var(--main-color);
}
.gallery .gallery-title{
     font-size: 40px;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 25px;
    position: relative;
}

.image--container{
    display: grid;
    grid-auto-rows: 200px;
    grid-gap: 10px;
    grid-template-columns: repeat(4 , minmax(200px , 1fr));
    grid-auto-flow: dense;
    position: relative;
    z-index: 1;
}
.box{
    display: flex;
    justify-content: center;
    align-items: center;
}
.box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.box.tall{
    grid-row: span 2;
}
.box.wide{
    grid-column: span 2; 
}


.get-title{
    color: #ffffff;
    font-family: 'WowFont', sans-serif;
    margin-bottom: 20px;
    text-align: center;
    font-size: 30px;
    font-weight: 300;
}

    .card-form{
      width: 500px;
      background: white;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
  .form-title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    font-size: 20px;
    background: #4A002A;
    color: #ffffff;
    font-family: 'WowFont', sans-serif;
    font-weight: 300;
  }
  
  .form-body{
    padding: 10px;
    
    .row{
      display: flex;
      justify-content:center;
      
      input[type="text"]{
        appearance: none;
        width: 100%;
        margin: 5px 15px;
        height: 35px;
        padding: 23px 17px;
        outline: none;
        border: none;
        background: #e8ebed;
        color: #576366;
        font-size: 14px;
        font-weight:300;
      }
    }
  }
  
  .rule{
    height: 2px;
    background: #e8ebed;
    margin: 0px 35px;
  }
  
  .form-footer{
    margin: 0 25px 15px 25px;
    padding-bottom:10px;
    
    a{
      display: inline-block;
      height: 40px;
      line-height: 40px;
      border: none;
      padding: 5px 15px;
      background: #4A002A;
      margin-right: 10px;
      font-size: 14px;
    color: #fff;
    font-family: 'WowFont', sans-serif;
    font-weight: 300;
    }
    
    span{
      margin-left: 8px;
    }
  }







.testimonials{
    background: #fafafa;
    width: 100%;
    position: relative;
    padding: 60px 0px 30px;
 }
 .testimonials .testimonial-card{
     position: relative;
     z-index: 1;
 }
 .testimonials  .testimonial-subtitle{
    font-size: 12px;
    text-transform: uppercase;
    line-height: 25px;
    color: #4A002A;
    font-family: 'WowFont', sans-serif;
    margin-bottom: 10px;
 }
 .testimonials .testimonial-title{
    font-size: 30px;
    font-weight: 300;
    color: #1a1a1a;
    font-family: 'WowFont', sans-serif;
     margin-bottom: 20px;
 }

 .testimonials .testimonial-card .testimonial-text{
    font-size: 16px;
    line-height: 25px;
    color: #353535;
    font-weight: 300;
 }
 .testimonials .testimonial-card .user-detail{
     margin-top: 20px;
 }
 .testimonials .testimonial-card .user-detail .icon{
     width: 100%;
     border-radius: 50%;
     overflow: hidden;
 }
 .testimonials .testimonial-card .user-detail .icon img{
     width: 100%;
     height: 100%;
     object-fit: cover;
 }
 .testimonials .testimonial-card .star-rating{
     display: flex;
     justify-content: flex-start;
 }
 .testimonials .testimonial-card .star-rating i{
     font-size: 14px;
     color: #ffad39;
     margin:0px 5px 10px 5px;
 }
 .testimonials .testimonial-card .user-detail .user-title{
     font-size: 15px;
     margin-bottom: 10px;
     padding-top: 0px;
     font-weight: 400;
     color: #000;
     line-height: 1em;
     text-transform: uppercase;
     letter-spacing: 3px;
     margin-left: 10px;
 }
 .testimonials .testimonial-card .user-detail .user-text{
     font-size: 12px;
     color: #6e6e6e;
     line-height: 1em;
     margin-left: 10px;
 }
 .testimonials .testimonial-card .quote img{
    width: 80px;
    opacity: 0.1;
 }
 .testimonials .testimonial-carousel .owl-dots {
     display: none;
 }

.offer-box{
    width: 100%;
    height: 350px;
    position: relative;
}

.offer-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.offer-box::after{
    background: #000;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.8;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.offer-box .offer-detail{
    width: 100%; 
    position: absolute;
    top: 50%;
    left: 50%;
           padding: 40px;
    transform: translate(-50% , -50%);
    z-index: 2;
    width: 100%;
 
}
.offer-box .offer-detail .offer-subtitle{
    font-size: 12px;
    text-transform: uppercase;
    line-height: 25px;
    color: #4A002A;
    font-family: 'WowFont', sans-serif;
    margin-bottom: 10px;
    text-align: center;
}
.offer-box .offer-detail .offer-title{
    color: #ffffff;
    font-family: 'WowFont', sans-serif;
     margin-bottom: 20px;
     text-align: center;
     font-size: 30px;
     font-weight: 300;
}

.offer-box .offer-detail .offer-text{
     font-family: 'WowFont', sans-serif;
     color: #ffffff;
     margin-bottom: 20px;
     text-align: center;
     font-size: 16px;
     line-height: 25px;
     font-weight: 300;
}

.offer-box .offer-detail .offer-btn:hover , .offer-box .offer-detail .offer-btn:focus{
    background: #fff !important;
    color: #000 !important;
}



.port-slider {
  overflow: hidden;
  width: 100%;
}

.scroll-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 300px;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Animation Keyframe */
@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}




.footer{
    padding: 60px 0px 15px;
    position: relative;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.footer .footer-logo img{
    width: 235px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}
.footer .footer-title{
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.25em;
}
.footer .footer-text{
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75em;
    color: #adadad;
    margin-bottom: 20px;
}
.footer .footer-list{
    margin-bottom: 0px;
}
.footer .footer-list li{
    padding-bottom: 10px;
}
.footer .footer-list .footer-link{
    position: relative;
    display: block;
    font-size: 15px;
    font-weight: 300;
    color: #adadad;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.footer .footer-list .footer-link:hover{
    color: #4A002A;
    margin-left: 5px;
}   
.footer  .social-icon ul{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
    padding-top: 0px;
}
.footer  .social-icon li{
    margin-right: 10px;
}
.footer  .social-icon li a i{
    color: #adadad;
    font-size: 16px;
    margin-right: 10px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border: 1px solid #adadad;
    border-radius: 50%;
    text-align: center;
}
.footer  .social-icon li a i:hover{
    color: #fff;
    border-color: #fff;
}
.footer .footer-address{
    margin-bottom: 0px;
}
.footer .footer-address li{
    padding-bottom: 10px;
}
.footer .footer-address .footer-address-title{
    padding-bottom: 10px;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.footer-subtitle{
    padding-top: 15px;
    padding-bottom: 5px;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.footer .footer-flex{
    display: flex;
    flex-wrap: wrap;
}
.footer .footer-flex a{
    margin-right: 10px;
}
.footer .footer-address li a i{
    margin-right: 10px;
}
.footer .footer-address li a{
    padding-bottom: 7px;
    font-size: 15px;
    color: #adadad;
    font-weight: 300;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.footer .footer-address li a:hover{
    color: #4A002A;
}
.copright-text{
    font-size: 14px;
    color: #adadad;
    font-weight: 300;
    text-align: center;
    padding-top: 15px;
    border-top: solid 1px #ffffff27;
}
.copright-text a{
    color: #4A002A;
}


.page-banner{
    background: url(../images/page-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 250px;
    position: relative;
}
.page-banner::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000ce;
}
.page-banner .banner-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 100%;
}
.page-banner .banner-subtitle{
    font-size: 18px;
    line-height: 25px;
    color: #4A002A;
     font-family: "League Spartan", sans-serif;
      letter-spacing: 4px;
      margin-bottom: 20px;
}
.page-banner  .banner-title{
    font-size: 50px;
    text-transform: capitalize;
    font-weight: 600;
    color: #fff;
     font-family: "League Spartan", sans-serif; 
}
.page-banner .bread-crumb-box{
    position: absolute;
    bottom: 0;
    left: 70px;
    background: #fff;
    padding:5px 20px;
    z-index: 1;
}
.page-banner .bread-crumb-box ol{
    margin-bottom: 0px;
}
.page-banner .bread-crumb-box .breadcrumb-item a{
    color: #676767;
    font-size: 14px;
    font-weight:300;
}
.page-banner .bread-crumb-box .breadcrumb-item.active {
    color: #0084ff;
    font-size: 14px;
    font-weight:300;
}
.sx-bnr-text-masking .light {
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 1;
}
.sx-bnr-text-masking .light h1 {
    display: inline-table;
    color: rgba(255,255,255,0);
    margin: 0px;
    font-size: 88px;
    line-height: 88px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
}
.service-content-detail{
    padding: 60px 0px;
}
.service-content-detail .service-subtitle{
     font-size: 12px;
    line-height: 25px;
    color: #4A002A;
    font-family: 'WowFont', sans-serif;
    margin-bottom: 10px;
}
.service-content-detail .service-title{
    font-size: 40px;
    text-transform: capitalize;
    font-weight: 600;
    color: #1a1a1a;
     font-family: "League Spartan", sans-serif; 
     margin-bottom: 10px;
}
.service-content-detail .detail-title{
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}
.service-content-detail .detail-subtitle{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.service-content-detail .category-detail{
    padding: 0px 30px;
}
.service-content-detail .detail-text{
    font-size: 16px;
    line-height: 25px;
    color: #353535;
    font-weight: 300;
}
.service-content-detail .detail-text b{
          background: #4A002A;
    -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    margin-right: 5px;
}
/* Sidebar */
.sidebar{
    position: sticky;
    top: 85px;
}
.sidebar-page-container .sidebar-side{
	position: relative;
	margin-bottom: 30px;
}

.services-page .sidebar-side{
	order: 0;
}

.sidebar-page-container .sidebar{
	position: relative;
}

.sidebar-page-container .blog-sidebar{
	margin-left: -30px;
}

.sidebar-page-container .services-sidebar{
	padding-right: 20px;
}

.sidebar .sidebar-widget{
	position: relative;
	display: block;
	margin-bottom: 50px;
}

.sidebar .sidebar-widget:last-child{
	margin-bottom: 10px;
}

.sidebar .sidebar-widget .widget-inner{
	position: relative;
	display: block;
}

.sidebar .info-widget{
	text-align: center;
}

.sidebar .info-widget .widget-inner{
	background: linear-gradient(90deg,#6A0095,#F20198);
	color: #ffffff;
}

.sidebar .info-widget .lower{
	display: block;
	padding: 30px 20px;
}

.sidebar .info-widget .image{
	position: relative;
	display: block;
	margin: 0;
}

.sidebar .info-widget .image img{
	position: relative;
	display: block;
	width: 100%;
}

.sidebar .info-widget .subtitle{
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 1.5em;
	margin-bottom: 30px;
}

.sidebar .info-widget .icon-box{
	position: relative;
	display: block;
	font-size: 52px;
	line-height: 1em;
	margin-bottom: 30px;
}

.sidebar .info-widget .phone{
	position: relative;
	display: block;
	font-size: 24px;
	line-height: 1.2em;
	font-weight: 700;
	margin-bottom: 5px;
}

.sidebar .info-widget .phone a{
	display: inline-block;
	color: #ffffff;
	border-bottom: 1px solid rgba(255,255,255,0.50);
}

.sidebar .info-widget .email{
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 1.5em;
}

.sidebar .info-widget .email a{
	color: #ffffff;
}

.sidebar .downloads-widget{
	position: relative;
}

.sidebar .downloads-widget .widget-inner{
	background: rgba(0,0,0,0.03);
	padding: 25px 30px;
}

.sidebar .downloads-widget li{
	position: relative;
	display: block;
	border-bottom: 1px solid rgba(0,0,0,0.10);
}

.sidebar .downloads-widget li:last-child{
	border-bottom: none;
}

.sidebar .downloads-widget li a{
	position: relative;
	display: block;
	padding: 12px 0px;
	line-height: 30px;
	font-weight: 500;
	color: #222222;
	text-transform: capitalize;
}

.sidebar .downloads-widget li .fa,
.sidebar .downloads-widget li .far{
	position: relative;
	padding-right: 10px;
	font-size: 20px;
	top: 2px;
}

.sidebar .downloads-widget li a:hover{
	color: #00BDC8;
}

.sidebar-title{
	position:relative;
	margin-bottom:30px;
}

.sidebar-title h3{
	position: relative;
	display: inline-block;
	font-size:22px;
	line-height: 1.25em;
	color: #222222;
	font-weight: 700;
	text-transform:capitalize;
	margin-bottom: 0px;
}

.sidebar-title h3:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 3px;
	width: 100%;
	border-bottom: 2px solid #00BDC8;
}

.sidebar .search-box .form-group{
	position:relative;
	margin:0px;	
}

.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"]{
	position:relative;
	line-height:30px;
	padding:14px 50px 14px 30px;
	border:1px solid #f0f0f0;
	background:#ffffff;
	color:#222222;
	display:block;
	font-size:16px;
	width:100%;
	height:60px;
	border-radius:3px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.sidebar .search-box .form-group input:focus{
	border-color:#00BDC8;	
}

.sidebar .search-box .form-group button{
	position:absolute;
	right:0px;
	top:0px;
	height:60px;
	width:50px;
	line-height:60px;
	display:block;
	font-size:16px;
	color:#222222;
	background:none;
	font-weight:normal;
}

.sidebar .search-box .form-group input:focus + button,
.sidebar .search-box .form-group button:hover{
	color: #00BDC8;
}

.sidebar .recent-posts .post{
	position:relative;
	font-size:14px;
	color:#777777;
	padding:0px 0px 25px 100px;
	min-height:105px;
	border-bottom:1px solid #e0e0e0;
	margin-bottom:25px;
}

.sidebar .recent-posts .post:last-child{
	margin-bottom:0px;
}

.sidebar .recent-posts .post-thumb{
	position:absolute;
	left:0px;
	top:0px;
	width:80px;
	height:80px;
	border-radius:0;	
}

.sidebar .recent-posts .post-thumb img{
	position:relative;
	display:block;
	width: 100%;	
}

.sidebar .recent-posts .text{
	font-size:16px;
	line-height:1.5em;
	color:#222222;
	font-weight:700;
	text-transform: capitalize;
	margin-bottom:7px;
}

.sidebar .recent-posts .text a{
	color:#333333;
}

.sidebar .recent-posts .text a:hover{
	color:#00BDC8;	
}

.sidebar .recent-posts .meta-info{
	position: relative;
	color: #999999;
}

.sidebar .recent-posts .meta-info li{
	position: relative;
	float: left;
	margin-right: 31px;
	line-height: 24px;
}

.sidebar .recent-posts .meta-info li:last-child{
	margin-right: 0;
}

.sidebar .recent-posts .meta-info li:after{
	content: '';
	position: absolute;
	height: 14px;
	right: -16px;
	border-right: 1px solid #999999;
	top: 50%;
	margin-top: -7px;
}

.sidebar .recent-posts .meta-info li:last-child:after{
	display: none;
}

.sidebar .recent-posts .meta-info li a{
	position: relative;
	color: #999999;
}

.sidebar .recent-posts .meta-info li a:hover{
	color: #00BDC8;
}

.sidebar .popular-tags .tags-list li{
	position:relative;
	display:inline-block;
	margin:0px 6px 10px 0px;
}

.sidebar .popular-tags .tags-list li a{
	position:relative;
	display:block;
	line-height:24px;
	padding:8px 20px;
	background:#edf5f8;
	text-align:center;
	font-size:13px;
	font-weight: 700;
	color:#222222;
	text-transform:capitalize;
	border-radius:0px;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
}

.sidebar .popular-tags .tags-list li a:hover{
	background-color:#00BDC8;
	border-color:#00BDC8;
	color:#ffffff;	
}

.sidebar .archives ul{
	position:relative;
}

.sidebar .archives ul li{
	position:relative;
	line-height:24px;
	font-size: 15px;
	margin-bottom: 10px;
}

.sidebar .archives ul li:last-child{
	padding-bottom: 0;
	border:none;	
}

.sidebar .archives ul li a{
	position:relative;
	color: #222222;
	display: block;
	padding-left: 22px;
	line-height:24px;
	font-weight: 400;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
}

.sidebar .archives ul li a:before{
	font-family: 'Font Awesome 5 Free';
	content: "\f061";
	position:absolute;
	left:0px;
	top:0px;
	display:block;
	font-size:12px;
	font-weight:700;
	color: #666666;
	z-index:5;
}

.sidebar .archives ul li a:hover:before,
.sidebar .archives ul li.active a:before{
	color: #00BDC8;
}

.sidebar .archives ul li a:hover,
.sidebar .archives ul li.active a{
	color: #00BDC8;
}

.sidebar .services-widget ul{
	position: relative;
	display: block;
}

.sidebar .services-widget ul li{
	position: relative;
	display: block;
	margin-bottom: 10px;
}

.sidebar .services-widget ul li:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0%;
	height: 100%;
	background: #0084ff;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.sidebar .services-widget ul li:hover:before,
.sidebar .services-widget ul li.active:before{
	width: 100%;
}

.sidebar .services-widget ul li a{
	position: relative;
	display: block;
	background: rgba(0,0,0,0.03);
	padding: 12px 20px;
	padding-right: 50px;
	line-height: 30px;
	color: #222222;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	z-index: 1;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.sidebar .services-widget ul li a:before{
	content: "\f061";
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	right: 0px;
	top: 0px;
	line-height: 30px;
	padding: 12px 5px;
	width: 50px;
	text-align: center;
	border-left: 1px solid rgba(0,0,0,0.07);
	font-size: 12px;
	font-weight: 700;
}

.sidebar .services-widget ul li:hover a,
.sidebar .services-widget ul li.active a,
.sidebar .services-widget ul li:hover .icon,
.sidebar .services-widget ul li.active .icon{
	color: #ffffff;
}

.sidebar .services-widget ul li:hover a:before,
.sidebar .services-widget ul li.active a:before{
	color: #ffffff;
	border-color: rgba(255,255,255,0.20);
	-webkit-transition: all 300ms ease 200ms;
	-moz-transition: all 300ms ease 200ms;
	-ms-transition: all 300ms ease 200ms;
	-o-transition: all 300ms ease 200ms;
	transition: all 300ms ease 200ms;
}


#circle{
  width: 40px;
  height: 40px;
  border: 1px solid #6A0095;
  position:fixed;
  border-radius:50%;
  z-index: 99999;
}


.contact-detail{
    padding:  30px;
    background: #272937;
    position: relative;
    border: 1px solid #e0e0e0;
    z-index: 1;
}
.contact-detail .contact-title{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}
.contact-detail .form-control{
    border-radius: 0px;
    font-size: 14px;
    padding:  10px;
    border: 1px solid #ededed;
    outline: none;
    border: none;
    background: #ffffff;
    color: #576366;
    font-size: 14px;
    font-weight: 300;
}
.border-tp{
    border-top: 1px solid #ededed;
    margin: 20px 0px;
}
.contact-detail .address-detail{
    padding-top: 10px;
}
.contact-detail .address-detail .address-title{
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.25em;
}
.contact-detail .address-detail .address-text{
    position: relative;
    display: block;
    font-size: 15px;
    font-weight: 300;
    color: #adadad;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-detail .address-detail ul li .icon{
    font-size: 16px;
    color: #0084ff;
    margin-right: 10px;
}
.contact-detail .address-detail ul li .strong-text{
    font-size: 16px;
    color: #000;
    margin-right: 10px;
}
.contact-detail .address-detail ul li a{
    padding-bottom: 7px;
    font-size: 15px;
    color: #adadad;
    font-weight: 300;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.contact-detail .social ul li {
    list-style-type: none;
    padding-left: 0px;
}
.contact-detail .social ul {
    display: flex;
    padding-left: 0px;
    justify-content: flex-start;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}
.contact-detail .social i {
    color: #000080;
    text-align: center;
    font-size: 14px;
    width: 40px;
    height: 40px;
    border: 1px solid #000080;
    border-radius: 50%;
    line-height: 40px;
    margin:0px 15px 0px 0px;
}
.contact-detail .social a {
    cursor: pointer;
}
.contact-detail .social i:hover{
    color: #000080;
}
  




@media (min-width:1500px) {
    .container{
        max-width: 1320px !important;
    }

    
}



@media (min-width: 992px) and (max-width: 1199.98px) {
     .web-view {
        display: none;
    }
    .mobile-view {
        display: block;
    }
    .mobile-header {
        width: 100%;
        z-index: 1200;
       padding: 20px 0px;
    }
    .mobile-header.white-background{
        background: #fff !important;
    }
     .mobile-header.white-background .toggler{
        color: #000 !important;
     }
    .mobile-header .logo img {
        width: 120px;
    }
    .mobile-header .mobile-header-list {
        list-style-type: none;
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 0px;
    }
    .mobile-header .mobile-header-list .nav-item {
        border-bottom: 1px solid #8A879F1c;
        opacity: 0.7;
    }
    .mobile-header .mobile-header-list .nav-item .nav-link {
        padding: 10px 0px;
        font-size: 15px;
    color: #000;
    font-weight: 500;
        position: relative;
        line-height: 25px;
    }
  .mobile-header .mobile-header-list .nav-item .nav-link i{
        float: right;
    }
    .mobile-header .mobile-header-list  .sub-link{
        padding: 10px;
        font-size: 15px;
    color: #8A879F;
        position: relative;
        line-height: 25px;
    }
    .main-section .vertical-space-50{
        height: 0px !important;
    }
    .mobile-header .mobile-header-list .nav-item:last-child {
        border-bottom: none;
    }
    .menu-offcanvas {
        width: 360px;
    }
    .mobile-header .offcanvas .logo img{
        width: 180px;
    }
    .toggler {
    color: #000 !important;
        font-size: 32px;
        border: none;
        text-align: center;
        padding: 0px;
    }
    .toggler:focus , .toggler:hover {
        color: #fff;
        background: transparent;
    }
    .mobile-header .social ul {
        justify-content: flex-start;
    }
    .mobile-header .offcanvas-body {
        line-height: initial;
    }
     .banner{
        height: 70vh;
    }
   .banner .banner-content .banner-title{
    font-size: 30px;
   }
   .banner::before{
    width: 500px;
    height: 500px;
    top: 60%;
   }
     .about-section .about-title , .page-banner .banner-content .banner-title, .gallery-section .gallery-title, .contact .contact-title, .service-section .service-title , .catelogue-section .catelogue-title, .client-section .client-title, .about-detail .about-title , .product-collection .product-title , .service-collection .service-title , .our-projects .project-title{
    font-size: 26px;
   }

   .footer-bottom .coypright-text{
    text-align: start !important;
   }
   .page-banner{
    height: 350px;
   }
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .web-view {
        display: none;
    }
    .mobile-view {
        display: block;
    }
    .container, .container-md, .container-sm {
    max-width: 720px;
}
    .mobile-header {
        width: 100%;
        z-index: 1200;
       padding: 20px 0px;
             position: relative;
    }
    .mobile-header.white-background{
        background: #fff !important;
    }
     .mobile-header.white-background .toggler{
        color: #000 !important;
     }
    .mobile-header .logo img {
        width: 120px;
    }
    .mobile-header .mobile-header-list {
        list-style-type: none;
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 0px;
    }
    .mobile-header .mobile-header-list .nav-item {
        border-bottom: 1px solid #8A879F1c;
        opacity: 0.7;
    }
    .mobile-header .mobile-header-list .nav-item .nav-link {
        padding: 10px 0px;
        font-size: 15px;
    color: #000;
    font-weight: 500;
        position: relative;
        line-height: 25px;
    }
  .mobile-header .mobile-header-list .nav-item .nav-link i{
        float: right;
    }
    .mobile-header .mobile-header-list  .sub-link{
        padding: 10px;
        font-size: 15px;
    color: #8A879F;
        position: relative;
        line-height: 25px;
    }
    .main-section .vertical-space-50{
        height: 0px !important;
    }
    .mobile-header .mobile-header-list .nav-item:last-child {
        border-bottom: none;
    }
    .menu-offcanvas {
        width: 360px;
    }
    .mobile-header .offcanvas .logo img{
        width: 180px;
    }
    .toggler {
    color: #fff !important;
        font-size: 32px;
        border: none;
        text-align: center;
        padding: 0px;
    }
    .toggler:focus , .toggler:hover {
        color: #fff;
        background: transparent;
    }
    .mobile-header .social ul {
        justify-content: flex-start;
    }
    .mobile-header .offcanvas-body {
        line-height: initial;
    }
.banner{
        height: 60vh;
    }
   .banner .banner-content .banner-title{
    font-size: 30px;
   }
   .banner::before{
    width: 600px;
    height: 600px;

   }
     .about-section .about-title , .page-banner .banner-content .banner-title, .gallery-section .gallery-title, .contact .contact-title, .service-section .service-title , .catelogue-section .catelogue-title, .client-section .client-title, .about-detail .about-title , .product-collection .product-title , .service-collection .service-title , .our-projects .project-title{
    font-size: 26px;
   }
   .page-banner{
    height: 350px;
   }
.service-section .service-list .service-card .img-box{
    height: 200px;
}
 .contact .contact-left{
    padding: 0px;
 }
    }   

@media only screen and (max-width: 575.98px) {
    .web-view {
        display: none;
    }
    .mobile-view {
        display: block;
    }
    .container {
    max-width: 95%;
}
    .mobile-header {
        width: 100%;
        z-index: 1200;
       padding: 10px 0px;
       position: relative;
    }
    .mobile-header.white-background{
        background: #fff !important;
    }
     .mobile-header.white-background .toggler{
        color: #000 !important;
     }
    .mobile-header .logo img {
        width: 175px;
    }
    .mobile-header .mobile-header-list {
        list-style-type: none;
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 0px;
    }
    .mobile-header .mobile-header-list .nav-item {
        border-bottom: 1px solid #8A879F1c;
        opacity: 0.7;
    }
    .mobile-header .mobile-header-list .nav-item .nav-link {
        padding: 10px 0px;
        font-size: 15px;
    color: #000;
    font-weight: 500;
        position: relative;
        line-height: 25px;
    }
  .mobile-header .mobile-header-list .nav-item .nav-link i{
        float: right;
    }
    .mobile-header .mobile-header-list  .sub-link{
        padding: 10px;
        font-size: 15px;
    color: #8A879F;
        position: relative;
        line-height: 25px;
    }
    .main-section .vertical-space-50{
        height: 0px !important;
    }
    .mobile-header .mobile-header-list .nav-item:last-child {
        border-bottom: none;
    }
    .menu-offcanvas {
        width: 360px;
    }
    .mobile-header .offcanvas .logo img{
        width: 175px;
    }
    .toggler {
    color: #fff !important;
        font-size: 32px;
        border: none;
        text-align: center;
        padding: 0px;
    }
    .toggler:focus , .toggler:hover {
        color: #fff;
        background: transparent;
    }
    .mobile-header .social ul {
        justify-content: flex-start;
    }
    .mobile-header .offcanvas-body {
        line-height: initial;
    }
    .banner{
        height: 65vh;
    }
   .banner .banner-content .banner-title{
    font-size: 30px;
   }
   .banner::before{
    width: 560px;
    height: 560px;
    top: 68%;
   }
   .about-section .about-title , .page-banner .banner-content .banner-title, .gallery-section .gallery-title, .contact .contact-title, .service-section .service-title , .catelogue-section .catelogue-title, .client-section .client-title, .about-detail .about-title , .product-collection .product-title , .service-collection .service-title , .our-projects .project-title{
    font-size: 26px;
   }

   .footer-bottom .coypright-text{
    text-align: start !important;
   }
   .page-banner{
    height: 350px;
   }
 .contact .contact-left{
    padding: 0px;
 }
}   




/* Gallery Mobile view */
@media (max-width: 768px) {
    .image--container {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .image--container {
        grid-template-columns: 1fr;
        grid-auto-rows: 150px;
    }
}

