﻿
/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: unset;
}

html::-webkit-scrollbar {
    width: 6px;
    background-color: #192B53;
}

html::-webkit-scrollbar-thumb {
    background-color: #F68726;
    border-radius: 50rem;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

body {
    font-size: 16px;
    font-family: 'Proxima Nova Regular';
    font-weight: 400;
    color: #000;
}

a,
a:hover,
a:focus {
    color: #F68726;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}
h1,h2{
    font-family: 'SuisseIntl Bold';
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}

main {
    overflow: clip;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.container-fluid {
    padding: 0 70px;
}


/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
  }
  
  .popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .popup .popup__content {
    width: 70%;
    padding: 0px;
    border-radius: 23px;
    background: #2A2635;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 99999;
    .primary-btn{
      width: 100%;
      &:hover{
        background: #52425B;
        border: 1px solid #F29537;
      }
    }
    .form-control{
      border-radius: 6px;
  border: 1px solid #4E4760;
  &:focus{
    border: 1px solid #F29537;
  }
    }
  }
  .small-line{
    width: 81px;
    height: 3px;
    background: #F29537;
    display: inline-block;
    margin-bottom: 16px;
    margin-top: 10px;
  }
  .popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 45px;
    height: 45px;
    opacity: 1;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #52425B;
    transition: all .5s;
    z-index: 9;
  }
  
  .popup .popup__content .close:hover {
    background-color: #ffffff;
  }
  
  .popup .popup__content .close:hover span {
    background-color: #15222B;
  }
  
  .popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #ffffff;
  }
  
  .popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
  }
  
  .popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
  }
  
  .left {
    padding: 16px;
    .img-box {
      border-radius: 23px;
      background: #322D3F;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }
  }
  
  .popup {
    .title {
      color: #FFF;
      font-size: 52px;
      font-style: normal;
      font-weight: 700;
      line-height: 48px;
      margin-bottom: 0;
    }
    .form-group{
        margin: 0;
    }
    .primary-btn{
        margin-top: 10px;
    }
  }
  label {
    color: #fff;
    font-size: 18px;
}
  .right {
    padding: 30px;
    padding-left: 10px;
    text-align: left;
  }
  
  .call {
    width: 50px;
    height: 50px;
    background-color: #F29537;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 16px;
  }
  
  .fixed-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0px;
    z-index: 9;
  }

  
  .enq-btn {
    width: 49px;
    height: 166px;
    font-weight: 400;
    text-align: center;
    overflow: clip;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px 0px 0px 10px;
    background: linear-gradient(180deg, #502F63 0%, #996CB4 100%);
    position: relative;
    color: #fff;
    padding-left: 0;
    margin-bottom: 20px;
    overflow: hidden;
    z-index: 1;
  
    &:after,
    &:before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, #181526 0%, #502F65 100%);
      scale: 0 1;
      transition: all .5s;
      -webkit-transition: all .5s;
      -moz-transition: all .5s;
      -ms-transition: all .5s;
      -o-transition: all .5s;
    }
  
    &:hover,
    &:focus {
      color: #fff;
      box-shadow: -9px 0px 17px 0 #ffffff12;
  
      &:after,
      &:before {
        scale: 1 1;
      }
  
    }
  }
  
  .vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  
  .call:hover,
  .fw:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }

/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 60px 0;
}

.pb-60 {
    padding-bottom: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

p {
color: #000;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 161.111% ;
}
.dec{
    color: #000;
text-align: center;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 135%;
}
.sub-dec {
color: #000;
font-family: 'Proxima Nova Semibold';
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 31px;
margin-bottom: 10px;
}

.section-title {
color: #333;
font-size: 62px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-bottom: 7px;
}

.card-title {
color: #FFF;
font-family: 'SuisseIntl Bold';
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 22px;
}
.title{
color: #FFF;
font-family: 'SuisseIntl Bold';
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: 35px;
}
.primary-btn {
    color: #FFF;
    font-family: 'Proxima Nova Bold';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 19px 34px;
    height: 62px;
    border-radius: 60px;
    background: #F68726;
    box-shadow: 0px 7px 22px 0px rgba(0, 0, 0, 0.10);
    border: 1px solid #F68726;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    inset: 0;
    scale: 1 0;
    background: linear-gradient(180deg, #502F63 0%, #996CB4 100%);
    z-index: -1;
    transition: all .35s;
}

.primary-btn:before {
    opacity: .5;
}

.primary-btn:after {
    transition-delay: .2s;
}

.primary-btn:hover:before,
.primary-btn:hover:after {
    scale: 1 1;
}

.primary-btn:hover {
    color: #ffffff;
    border-color: #996CB4;
}

.primary-btn:focus {
    color: #ffffff;
}


.secondary-btn {
    background: #ffffff00;
    border-color: #fff;
    color: #fff;
}

.secondary-btn:hover {
    background: #192B53;
    border-color: #192B53;

    &::after,
    &::before {
        background-color: transparent;
    }
}

.container {
    max-width: 1530px;
}

.form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 12px 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    border-radius: 4px;
    outline: none;
}

.form-control:focus {
    border-color: #F68726;
}

form .btn-group {
    justify-content: center;
}

form .primary-btn {
    padding: 16px 50px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
}

form .primary-btn:hover {
    background: #4A1C64;
    color: #ffffff;
}

.form-group {
    margin-bottom: 10px;
}

input,
input:focus {
    outline: none;
    box-shadow: none !important;

}

.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}

.form-group {
    position: relative;
}

.italic {
    font-style: italic;
}

.mobile {
    display: none;
}
@media(prefers-reduced-motion: no-preference){
    @view-transition{
        navigation: auto;
    }
}
::view-transition-group(*){
    animation-duration: 2s;
}
/*
body {
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}
*/
@keyframes fadeIn {
  from {
    opacity: 0;
    background: linear-gradient(257deg, #262647 5.43%, #412054 94.57%);
  }
  to {
    opacity: 1;
  }
}

.location-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;

     @media (hover) and (prefers-reduced-motion: no-preference) {
    & > a {
      transform-origin: left center;
      transition: transform 1s, opacity 0.3s, background 0.3s, box-shadow 0.3s;
    }

    &:hover > a:not(:hover) {
      opacity: 0.5;
      transform: scale(0.95);
    }
  }
  }
 .location-list a {
    display: inline-block;
    padding: 8px 10px;
    background: #00000070;
    color: #ffffff;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin: 2px;
}

.location-list a:hover {
    background: #F68726;
    box-shadow: 0 0 10px rgba(246, 135, 38, 0.8); /* Orange glow effect */
}

/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}

/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}

/*******************************
	Menu
*******************************/
.topbar {
    background: #4A1C64;
    padding-block: 6px;
    text-align: center;
    p{
        color: #FFF;
        font-family: 'Proxima Nova Semibold';
        font-size: 15px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.3px;
        margin: 0;
    }
}

.header-area {
    background-color: #19112a;
    position: fixed;
    z-index: 999;
    right: 0;
    left: 0;

}
.header-area.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
}
.flex-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 68px;
}
.call-btn {
    width: 57px;
    height: 57px;
    background: rgba(254, 218, 186, 0.12);
    border: 1px solid #F68726;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out .6s;
    &:hover{
        background: #F68726;
    }
}
/*.header-area {
    display: none;
    transition: all 0.3s ease;
  }

.header-area.show {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown .5s ease;
    
    #menu>.main-menu>ul>li>a{
        padding: 30px 6px;
    }
}*/
.logo img{
        height: auto;
        width: auto;
        transition: height 0.8s ease-in-out;
    }
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.main-menu {
    display: flex;
    align-items: center;
}

header {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    transition: ease-in-out .4s;
    padding-inline: 20px;
}

.main-menu {
    margin-left: auto;
}

nav {
    position: relative;
    margin: 0 auto
}

#menu,
#menu .main-menu ul,
#menu .main-menu ul li,
#menu .main-menu ul li a,
#menu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

#menu>.main-menu>ul>li {
    float: left;
    padding-inline: 12px;
}

#menu>.main-menu>ul>li>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    padding: 30px 6px;
    display: inline-block;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0.4px;
}


#menu>.main-menu>ul>li>a:hover::before,
#menu .main-menu ul li.current-menu-item a::before{
    width: 80%;
}

#menu .main-menu ul li.current-menu-item a::before {
    content: '';
    position: absolute;
    bottom: 28px;
    left: 7px;
    width: 25px;
    height: 1px;
    background: #F68726;
}

#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a{
    color: #F68726;
}

#menu>.main-menu>ul>li.has-sub>a::before {}

#menu>.main-menu>ul>li:hover,
#menu .main-menu ul li.current-menu-item:hover,
#menu .main-menu ul li.current-menu-item,
#menu .main-menu ul li.has-sub.current-menu-item:hover {
    background: #e9cba400 !important;
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease
}

#menu>.main-menu>ul>li.has-sub>a {}

#menu>.main-menu>ul>li.has-sub>a::after {
    top: -3px;
    margin-left: 6px;
    transition: all .4s;
    content: "";
    position: relative;
    z-index: 11;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    transform: rotate(225deg);
}

#menu>.main-menu>ul>li.has-sub:hover>a::after,
#menu>.main-menu>ul>li.has-sub.current-menu-item>a::after {
    border-top-color: #F68726;
    border-left-color: #F68726;
}

/* #menu>.main-menu>ul>li.has-sub:hover>a::before {
    transform: rotate(-316deg);
    top: 36px;
} */

#menu .main-menu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0px 12px 10px 0px #0000004f;
    width: auto;
}

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: rgb(255, 255, 255);
    transition: all .25s ease;
    display: block;
}

#menu ul ul li:hover {}

#menu li:hover>ul {
    left: auto
}

#menu li:hover>ul>li {
    height: 40px;
    display: flex;
    align-items: center;
}

#menu ul ul ul {
    margin-left: 100%;
    top: 0
}

#menu ul ul li a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 10px 20px;
    width: auto;
    font-size: 20px;
    line-height: 19px;
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    white-space: nowrap;
    display: block;
}

#menu .main-menu ul ul li:last-child>a,
#menu .main-menu ul ul li.last-item>a {
    border-bottom: 0
}

#menu .main-menu ul ul li:hover a,
#menu .main-menu ul ul li:hover {
    color: #fff;
    background-color: #F68726;
}

#menu .main-menu ul ul li.has-sub>a:after {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 8px;
    height: 8px;
    display: block;
    content: '';
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
    transition: all .4s;
}


#menu .main-menu ul ul li.has-sub:hover,
#menu .main-menu ul li.has-sub ul li.has-sub ul li:hover {
    background: #363636
}

#menu ul ul ul li.active a {
    border-left: 1px solid #333
}

#menu>.main-menu>ul>li.has-sub>ul>li.active>a,
#menu .main-menu>ul ul>li.has-sub>ul>li.active>a {
    border-top: 1px solid #333
}

#menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
}

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}

@media screen and (max-width:992px) {
    header {
        position: relative;
        width: 100%;
        height: 70px;
    }

    .logo {}

    #menu .main-menu ul li.current-menu-item ul li a {
        color: #ffffff;
    }

    nav {
        width: 100%
    }

    #menu {
        width: 100%
    }

    #menu ul {
        width: 100%;
        display: none;
    }

    #menu .main-menu {
        width: 100%;
        position: fixed;
        height: 100% !important;
        background-color: rgb(1, 57, 102);
        transform: translateX(-100%);
        transition: all .4s;
        top: 90px;
        left: 0;
    }

    #menu .main-menu.open {
        transform: translateX(0%);
        display: block !important;

    }

    #menu .main-menu ul li a.current-menu-item::after {
        bottom: 15px;
    }

    #menu .main-menu ul li {
        width: 100%;
        border-top: 1px solid #4444442e;
    }

    #menu .main-menu ul li:hover {
        background: #363636
    }

    #menu .main-menu ul ul li,
    #menu li:hover>ul>li {
        height: auto
    }

    #menu .main-menu ul li a,
    #menu .main-menu ul ul li a {
        width: 100%;
        border-bottom: 0;
        color: #ffffff;
    }

    #menu>.main-menu>ul>li {
        float: none
    }

    #menu ul ul li a {
        padding-left: 25px
    }

    #menu ul ul li {
        background: #1b268600 !important
    }

    #menu ul ul li:hover {
        background: #d84514 !important
    }

    #menu ul ul ul li a {
        padding-left: 35px
    }

    #menu ul ul li a {
        color: #ddd;
        background: none
    }

    #menu ul ul li:hover>a,
    #menu ul ul li.active>a {
        color: #fff
    }

    #menu .main-menu ul ul {
        box-shadow: none;
    }

    #menu .main-menu ul ul,
    #menu .main-menu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
        top: 0;
        transform: unset;
        height: auto;
    }

    #menu .main-menu ul ul.open {
        transform: unset;
    }

    #menu>ul>li.has-sub>a:after,
    #menu>ul>li.has-sub>a:before,
    #menu ul ul>li.has-sub>a:after,
    #menu ul ul>li.has-sub>a:before {
        display: none
    }

    #menu #head-mobile {
        display: block;
        padding: 23px;
        color: #ddd;
        font-size: 12px;
        font-weight: 700
    }

    .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: 0;
        top: 12px;
        cursor: pointer;
        z-index: 12399994;
    }

    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #ffffff;
        border-bottom: 2px solid #ffffff;
        content: '';
    }

    .hamburger:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 12px;
        right: 10px;
        display: block;
        height: 2px;
        width: 35px;
        background: #ffffff;
        content: '';
    }

    .hamburger.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 35px;
        background: #ffffff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .hamburger.menu-opened:before {
        top: 23px;
        background: #ffffff;
        width: 35px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    #menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 0;
        top: 0;
        display: block;
        border-left: 0;
        height: 50px;
        width: 60px;
        cursor: pointer
    }

    /* #menu .submenu-button.submenu-opened {
      background:#1b268600;
  } */

    #menu ul ul .submenu-button {
        height: 34px;
        width: 40px
    }

    #menu .submenu-button:after {
        position: absolute;
        top: 9px;
        right: 22px;
        width: 10px;
        height: 10px;
        display: block;
        content: '';
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        transition: all .4s;
    }

    #menu ul ul .submenu-button:after {
        top: 11px;
        right: 19px;
    }

    #menu ul ul .submenu-button.submenu-opened:after {
        top: 16px;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 15px;
    }


    #menu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #menu .submenu-button.submenu-opened:before {
        display: none
    }

    #menu ul ul ul li.active a {
        border-left: none
    }

    #menu>ul>li.has-sub>ul>li.active>a,
    #menu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }
}


/************************************* Home Page **************************************/
#hero{
.banner-img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}
}
.banner {
    overflow: hidden;
    position: relative;
    h1 {
        color: #FFF;
        text-align: center;
        font-size: 102px;
        font-style: normal;
        font-weight: 700;
        line-height: 114px;
        margin-bottom: 15px;
        span {
            background: linear-gradient(90deg, #F68726 0%, #7E43D1 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }
    h2{
        color: #FFF;
        text-align: center;
        font-size: 38px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        font-family: 'SuisseIntl';
        margin-bottom: 5px;
    }

    p {
        color: #F0F0F0;
text-align: center;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 27px; /* 135% */
    }

    .container {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 2;
        padding-top: 0px;
    }
}

.banner-content {
    width: 88%;
}

.btn-group {
    display: flex;
    gap: 17px;
    align-items: center;
}
.review {
    display: flex;
    align-items: center;
    gap: 8px;
    p{
        color: #FFF;
        font-family: 'Proxima Nova Bold';
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0;
    }
}
.user-img {
    img{
        width: 67px;
        height: 67px;
        border-radius: 50%;
        &:nth-child(2){
            margin-left: -20px;
        }
        &:nth-child(3){
            margin-left: -20px;
        }
        &:hover{
            transform: scale(1.2);
        }
    }
}
.star {
    background-image: url(../img/star.webp);
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    display: inline-block;
    &.star-half{
        background-image: url(../img/star-half.webp);
    }
}
.stars {
    margin-bottom: 0;
    text-align: left !important;
}
.shaps{
    .tringle{
        width: 41.72px;
        height: 41.72px;
        background: linear-gradient(270deg, #F68726 0%, #F8B071 100%);
        clip-path: polygon( 2.126% 0.651%,100% 9.087%,44.553% 100%,2.126% 0.651% );
        display: block;
        position: absolute;
        left: 6%;
        top: 34%;
        animation: bounce 4s infinite ease-in-out, wiggle 4s infinite ease-in-out;
    }
    .tringle-outline {
        position: relative;
        width: 49.72px;
        height: 41.72px;
        border-left: 1px solid transparent;
        border-bottom: 1px solid;
        color: #F68726;
        transform: rotate(180deg);
        position: absolute;
        left: 16%;
        bottom: 11%;
        animation: bounce 6s infinite ease-in-out, wiggle 4s infinite ease-in-out;
    }
    .tringle-outline,
    .tringle-outline::before {
        display: block;
        box-sizing: border-box;
        border-right: 1px solid transparent
    }
    .tringle-outline::before {
        content: "";
        position: absolute;
        width: 40.72px;
        height: 41.72px;
        border-left: 1px solid;
        border-top: 1px solid;
        border-bottom: 1px solid transparent;
        transform: rotate(45deg) skew(10deg, 10deg);
        left: 3px;
        bottom: -20px;
    }
    
    .circle{
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: linear-gradient(180deg, #8E8EEE 0%, #515188 100%);
        display: block;
        position: absolute;
        right: 6%;
        top: 34%;
        animation: pulse 4s infinite ease-in-out;
    }
    .circle-outline{
        width: 46.394px;
        height: 46.394px;
        border-radius: 50%;
        border: 1px solid #8E8EEE;
        display: block;
        position: absolute;
        right: 16%;
        bottom: 11%;
        animation: pulse 5s infinite ease-in-out;
    }
}
@keyframes pulse{
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}
/* Brand */
.brand {
    padding-top: 25px;
}
.brand-img{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 84px;
    transition: all .5s;
    img{
        filter: grayscale(1);
    }
    &:hover{
        transform: scale(1.1);
    }
}
.brand-slider{
    .slick-arrow{
        background-color: transparent;
        filter: none;
    }
    .slick-next {
        right: -55px;
    }
    .slick-prev {
        left: -55px;
    }
}
.slick-arrow {
    width: 49px;
    height: 49px;
    background-color: #FFF;
    filter: drop-shadow(0px 6px 7px rgba(0, 0, 0, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.slick-arrow::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 1px solid #171717;
    border-left: 1px solid #171717;
    display: inline-block;
    transform: rotate(135deg);
    margin-right: 5px;
    opacity: 1;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.slick-arrow.slick-prev::before {
    transform: rotate(316deg);
    margin-left: 8px;
}

.slick-arrow:hover,
.slick-arrow:focus {
    background-color: #F68726;
    filter: drop-shadow(0px 6px 7px #f6872642);
}

.slick-arrow:hover::before,
.slick-arrow:focus::before {
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
/* ****** Portfolio ********** */
.img-box{
    border-radius: 15px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    &:hover{
        img{
            transform: scale(1.2);
        }
    }
}
.portfolio{
    .img-box{
        height: 480px;
	    overflow: hidden;
        position: relative;
        cursor: n-resize;
        border: 7px solid #3E365F;
        border-radius: 5px;
        
        img{
            width: 100%;
    object-fit: cover;
    object-position: top;
    /* height: 270px; */
    transition: 8s all ease;
    &:hover {
        object-position: bottom;
      }
        }
        /* &:hover img{
            transform: translateY(calc(-100% + 200px));
            transition: transform 5s ease-in-out;
    } */
    }
}
.portfolio-slider{
    .slick-list{
        margin: 0 -15px;
    }
    .slick-slide{
        margin: 0 15px;
    }
    .flex{
        justify-content: space-between;
        margin-top: 25px;
    }
    .card-title{
        color: #323232;
        margin-bottom: 8px;
    }
    .slick-arrow{
       top: 50%;
    }
    .slick-prev {
        left: -25px;
    }
    .slick-next {
        right: -25px;
    }
}


.flex {
    display: flex;
    text-align: left;
    justify-content: center;
    gap: 10px;
}
.tags{
    span{
        border-radius: 100px;
        border: 1px solid #D4D4D4;
        padding: 11px 14px;
        color: #7A7A7A;
        font-family: 'Proxima Nova Semibold';
        font-size: 15px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        display: inline-block;
        margin-right: 9px;
        margin-bottom: 6px;
        transition: all .5s;
        &:hover{
            background-color: #4A1C64;
            color: #FFF;
        }
    }
}
.tabs{
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
    margin-bottom: 40px;
}

.tab-link{
	border-radius: 100px;
    border: 1px solid #D4D4D4;
	transition: all ease 0.5s;
    color: #7A7A7A;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 20px 43px;
    cursor: pointer;
    margin: 0 10px;
}

.tab-link:hover{
border: 1px solid #101010;
background: #060606;
color: #fff;
}

.tab-link.active{
border: 1px solid #101010;
background: #060606;
color: #fff;
}

.tab-content{
	display: none;
	text-align: center;
	color: #888;
	font-weight: 300;
	font-size: 15px;
	transform: translateY(15px);
	animation: fadeIn 0.5s ease 1 forwards;
}

.tab-content.active{
	display: inherit;
}
.tab-content.active div {
    display: block !important;
}
@keyframes fadeIn{
	100%{
		opacity: 1;
		transform: none;
}
}
/* ***** Services ***** */
.bg-gray{
    background: #F0F0F0;
}
.services{
    border-radius: 39px 39px 0 0;
    position: relative;
    &:after{
        content: '';
        background-image: url(/web-development-assets/img/circle.webp);
        background-repeat: no-repeat;
        position: absolute;
        left: 0;
        top: 0;
        width: 115px;
        height: 295px;
    }
    .shaps{
        .tringle{
            top: 17%;
            left: 13%;
        }
        .tringle:last-child{
            top: 67%;
            right: 6%;
            left: auto;
        }
    }
}
.service-box{
    border-radius: 35px;
    background-color: #fff;
    padding: 30px;
    position: relative;
    padding-top: 35px;
    transition: all .5s;
    &:hover{
        background-color: #F68726;
        color: #FFF;
        box-shadow: 0px 6px 7px #f6872642;
        .section-title,.sub-dec,h5{
            color: #fff;
        }
        h5 img{
            filter: brightness(0) saturate(100%) invert(95%) sepia(5%) saturate(0%) hue-rotate(327deg) brightness(103%) contrast(107%);
        }
        .icon-box{
            background-color: #F68726;
        }
    }
    .section-title{
        color: #323232;
        font-size: 52px;
        line-height: 95px;
        transition: all .5s;
    }
    h5{
        color: #000;
        font-family: 'Proxima Nova Semibold';
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 73px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
        transition: all .5s;
        img{
            width: 60px;
            height: auto;
            object-fit: contain;
        }
    }
    .icon-box{
        width: 147px;
        height: 147px;
        background-color: #fff;
        border: 10px solid #F0F0F0;
        position: absolute;
        right: -10px;
        top: -12px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all .5s;
    }
}
.sub-dec{
    transition: all .5s;
}
.bg-thm{
    background: linear-gradient(257deg, #262647 5.43%, #412054 94.57%);
}
.process{
    border-radius: 39px;
    position: relative;
    text-align: center;
    padding-bottom: 80px;
    .section-title,.sub-dec,.dec{
        color: #fff;
    }
    .col{
        position: relative;
        &:after{
            content: '';
            background-image: url(../img/right-arrow.webp);
            background-repeat: no-repeat;
            position: absolute;
            right: -14px;
            top: 50%;
            width: 34px;
            height: 34px;
            transform: translateY(-50%);
        }
        &:last-child::after{
            display: none;
        }
    }
    .tringle{
        top: 38px;
        left: 27%;
    }
    .tringle-outline{
        right: 14%;
        left: auto;
        top: 25%;
    }
    .circle{
        left: 5%;
        top: 63%;
    }
    .plane{
        bottom: -45px;
        position: absolute;
        right: 13%;
    }
}
.process-icon{
    width: 169px;
    height: 169px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 1px solid #534C71;
    outline-offset: 26px;
    margin-inline: auto;
    margin-bottom: 50px;
    margin-top: 26px;
    border-radius: 50%;
    transition: all .5s;
    &:hover{
        background-color: #F68726;
        color: #fff;
        box-shadow: 0px 6px 27px #f68726a9;
        outline: 1px solid #F68726;
        outline-offset: 28px;
        img{
            filter: brightness(0) saturate(100%) invert(95%) sepia(5%) saturate(0%) hue-rotate(327deg) brightness(103%) contrast(107%);
            transform: scale(1.2);
        }
    }
}
/* **** About *** */
.about-us {
    position: relative;
    position: relative;
    padding-top: 60px;
    padding-bottom: 140px;
    &:after{
        content: '';
        border-radius: 39px;
        background: linear-gradient(257deg, #262647 5.43%, #412054 94.57%);
        width: 813px;
        height: 672px;
        left: -100px;
        position: absolute;
        bottom: 18px;
        z-index: -1;
    }
    .right-circle{
        position: absolute;
        right: 0;
        top: 0;
    }
}
.certificate {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
}

.about-img {
    position: relative;
    .about-big {
        border-radius: 38px;
    }

    .about-small {
        border-radius: 33px;
        position: absolute;
        right: 0;
        bottom: -50px;
        width: 50%;
    }

    .about-vector {
        position: absolute;
        right: -34px;
        z-index: -1;
        top: 160px;
    }
}

/* Counter */
.counter{
    position: relative;
    padding-bottom: 80px;
    .left-circle{
        position: absolute;
        left: 0;
        bottom: 0;
    }
}
.counter-item {
    border-radius: 422px;
    border: 1px solid #DEDEDE;
    width: 422px;
    height: 422px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .5s;
    &:hover{
        background-color: #F68726;
        color: #fff;
        box-shadow: 0px 6px 27px #f6872642;
        border: 1px solid #F68726;
        transform: scale(1.05);
        h3 {
            color: #101010;
            span:last-child{
                color: #ffffff;
            }
        }
    }
}

.counter-item h3 {
    color: #101010;
    font-family: 'SuisseIntl Bold';
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 95px;
    span:last-child{
        color: #F68726;
    }
}

.counter-item p {
    color: #101010;
    font-family: 'Proxima Nova Semibold';
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
}

.ms-auto {
    margin-left: auto;
}

/* ***** Why Choose ***** */
.why-choose {
    text-align: left;
    position: relative;
    p{
        text-align: left;
        margin-bottom: 35px;
    }
    .choose-img{
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .circle {
        left: 50%;
        top: 10%;
    }
    .tringle-outline {
        right: auto;
        left: 4%;
        top: 62%;
    }
    .plane {
        bottom: auto;
        position: absolute;
        right: 40%;
        top: -41px;
    }
}
@keyframes upDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-30px);
    }
  }
.choose{
    .choose-item:nth-child(2n){
        transform: translateX(129px);
    }
}
.choose-item {
    width: 519px;
    height: 160px;
    display: flex;
    align-items: center;
    padding: 30px 16px;
    gap: 18px;
    transition: all .5s;
    border-radius: 21px;
    background: #3E365F;
    margin-bottom: 21px;
  &:hover{
    background: #4A1C64;
    transform: translateY(-5px);
    &:nth-child(2n){
        transform: translateX(129px) translateY(-5px);
    }
    .icon-box img{
        transform: rotateY(180deg);
    }
  }
    h3 {
        color: #FFF;
        font-family: 'SuisseIntl Bold';
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 35px;
        text-align: left;
        width: 75%;
    }
    .icon-box {
        background: linear-gradient(to bottom, #A289FF, #7C1772);
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        &::after{
            content: '';
            position: absolute;
            inset: 1px;
            background-color: #3E365F;
            z-index: -1;
            border-radius: 50%;
        }
      }
  }
  

/* call-assistance */
.technology{
    position: relative;
    .col{
        height: 190px;
        border-right: 1px solid #CFCFCF;
        border-bottom: 1px solid #CFCFCF;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-inline: 10px;
        transition: all .5s;
        &:hover{
            background-color: #F68726;
            color: #fff;
            border: 1px solid #F68726;
            transform: scale(1.05);
            z-index: 1;
        }
        &:nth-child(5){
            border-right: none;
        }
        &:nth-child(6),
        &:nth-child(7),
        &:nth-child(8),
        &:nth-child(9),
        &:nth-child(10) {
        border-bottom: none;
        }
        &:last-child{
            border-right: 0;
        }
    }
    .tringle {
        left: 5%;
        top: 53%;
    }
    .tringle-outline {
        left: 90%;
        bottom: auto;
        top: 23%;
    }
}


/********** Review ****/
.testimonials{
    .tringle-outline {
        right: 9%;
        left: auto;
        top: 24%;
    }
    .shaps{
        .tringle-outline:first-child{
            left: 3%;
            right: auto;
            top: 66%;
        }
    }
    .slick-list {
        margin: 0 -15px;
      }
    
      .slick-slide {
        margin: 0 15px;
      }
    
      .slick-dots {
        bottom: -70px;
      }
    
      .slick-dots li {
        width: 9.5px;
        height: 9.5px;
        margin: 0 8px;
        background-color: #f2943700;
        border-radius: 50%;
        cursor: pointer;
        outline: 1px solid #fff;
        outline-offset: 3px;
      }
    
      .slick-dots li.slick-active {
        background-color: #F68726;
      }
    
      .slick-dots button {
        opacity: 0;
      }
}
.video-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
  }
  
  .video_img {
    width: 100%;
    height: 100%;
  }
  
  .video-box .content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .video-box .icon {
    transition: all 0.5s;
  }
  
  .video-box:hover .icon {
    transform: scale(1.2);
  }



/* ****** Contact ********** */

.contact {
    text-align: left;
    .dec{
        text-align: left;
        margin-bottom: 22px;
    }
    .form-control {
        border-radius: 8px;
        border: 1px solid #BCB5D1;
        background: #FFF;
        color: #000;
        font-family: 'Proxima Nova Semibold';
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 31px;
        padding: 12px;
        height: 56px;
        &::placeholder {
            color: #494949;
        }
        &:focus {
            border-color: #F68726;
        }
        
    }
    textarea.form-control{
        height: auto;
    }
    iframe {
        border-radius: 32px;
        width: 100%;
        border: 0;
        height: 349px;
        margin: 0;
    }
}


.title {
    color: #1D1D1D;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 65%;
    position: relative;
    margin-bottom: 30px;
}
/******************************/
footer {
    border-radius: 32px 32px 0 0;
    background: #FCFCFC;
    width: 100%;
    padding-top: 50px;
}
.footer-right{
    text-align: right;
    .footer-links{
        display: flex;
        gap: 30px;
        justify-content: end;
        margin-bottom: 70px;
        a:hover{
            color: #F68726;
        }
    }
}
.footer-social{
    display: flex;
    gap: 14px;
    justify-content: end;
    a{
        width: 48.919px;
        height: 48.919px;
        background-color: #383775;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        &:hover{
            background-color: #F68726;
            transform: scale(1.2);
        }
    }
}
.footer-logo {
    margin-bottom: 45px;
}
footer{
    p,.footer-links a{
        color: #2C2C2C;
        font-family: 'Proxima Nova Regular';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.4px;
        margin-bottom: 28px;
    } 
    h6{
        color: #252525;
        font-family: 'Proxima Nova Bold';
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 104.762% */
    } 
} 
.footer-form{
    position: relative;
    .form-control{
        border-radius: 70px;
        border: 1px solid #E2E2E2;
        color: #4E4E4E;
        font-family: 'Proxima Nova Bold';
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        padding: 21px;
    }
    .primary-btn{
        position: absolute;
        right: 5px;
        top: 3px;
    }
}
.footer-bottom{
    border-top: 1px solid #CACACA;
    text-align: center;
    padding-block: 24px;
    margin-top: 48px;
    p{
        color: #2C2C2C;
        font-family: 'Proxima Nova Regular';
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px;
        margin: 0;
    }
}



/*******************************
  Responsive
********************************/
/*************************************
    Home Page
*************************************/
@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
    .container {
        max-width: 1430px;
    }

    #menu>.main-menu>ul>li {
        padding-inline: 6px;
    }

    #menu {
        gap: 30px;
    }
    .about-us {
        &:after {
            width: 628px;
            height: 672px;
        }
    }
    
    .progress {
        width: 540px;
    }
    .process {
        .circle {
            left: 1%;
            top: 63%;
        }
    }
    .services {
        & .shaps {
            .tringle:last-child {
                top: 67%;
                right: 0%;
                left: auto;
            }
        }
    }
    .counter-item {
        width: 380px;
        height: 380px;
    }
    .why-choose {
        .choose-img {
            width: 64%;
        }
    }
    .why-choose {
        .tringle-outline {
            right: auto;
            left: 4%;
            top: 81%;
        }
    }
}

@media (max-width: 1536px) {}

@media (max-width: 1440px) {}

@media (max-width: 1440px),
(max-width: 1366px) {
    .container {
        max-width: 1140px;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 16px;
    }

    .popup .popup__content {
        width: 70%;
    }
    .banner {
          h1 {
            font-size: 72px;
            line-height: 74px;
        }
        h2 {
            font-size: 30px;
        }
        p {
            font-size: 14.7px;
            line-height: 22px;
        }
    }
   .dec{
    margin-bottom: 7px;
   }
    p {
        font-size: 15px;
        line-height: 1.367;
        margin-bottom: 7px;
    }
    .certificate {
        margin-bottom: 22px;
        img{
            width: 23%;
            height: auto;
            object-fit: contain;
        }
    }
    .choose-item {
        width: 519px;
        height: 140px;

    }
    .why-choose {
        p {
            text-align: left;
            margin-bottom: 15px;
        }
    }
    .section-title {
        font-size: 42px;
        line-height: 46px;
    }
    .sub-dec {
        font-size: 17px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    .dec {
        font-size: 15px;
    }
    .primary-btn {
        font-size: 17px;
        padding: 19px 34px;
        height: 52px;
        z-index: 1;
    }
    .call-btn {
        width: 52px;
        height: 52px;
    }
    .sec-gap {
        padding: 40px 0;
    }
    .card-title {
        font-size: 20px;
        line-height: 22px;
    }
    .tags {
        span {
            padding: 10px 14px;
            font-size: 13px;
        }
    }
    .flex-box {
        margin-left: 20px;
    }
    .service-box {
        .section-title {
            font-size: 32px;
            line-height: 95px;
        }
        & h5 {
            line-height: 50px;
            font-size: 20px;
            margin-bottom: 0;
            img {
                width: 40px;
            }
        }
    }
    .about-img {
        .about-big {
            border-radius: 38px;
            width: 90%;
        }
        .about-vector {
            top: 44px;
        }
    }
    .portfolio {
        .section-title,.sub-dec{
            margin-bottom: 0;
        }
        .mb-30 {
            margin-bottom: 16px;
        }
        .dec{
            margin-bottom: 5px;
        }
        .img-box {
            height: 350px;
        }
    }
    .progress {
        width: 460px;
        height: 1px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .services {
        & .shaps {
            .tringle:last-child {
                right: 2%;
            }
        }
        &:after {
            background-size: 80px;
        }
    }
    .process-icon {
        width: 139px;
        height: 139px;
        margin-bottom: 30px;
        margin-top: 18px;
        outline-offset: 15px;
    }
    .about-us {
        &:after {
            width: 590px;
            height: 497px;
            bottom: 12px;
        }
    }
    .counter-item {
        width: 314px;
        height: 314px;
    }
    .process {
        .tringle {
            top: 9px;
            left: 27%;
        }
        .circle {
            left: 2%;
            top: 63%;
        }
    }
    .counter-item h3 {
        font-size: 42px;
        line-height: 70px;
    }
    .counter-item p {
        font-size: 20px;
    }
    .choose-item {
        width: 410px;
        height: 100px;
        margin-bottom: 10px;
        h3 {
            font-size: 22px;
            line-height: 26px;
        }
        .icon-box {
            width: 80px;
            height: 80px;
            padding: 20px;
        }
    }
    .choose {
        .choose-item:nth-child(2n) {
            transform: translateX(100px);
        }
    }
    .choose-item {
        &:hover {
            &:nth-child(2n) {
                transform: translateX(100px) translateY(-5px);
            }
        }
    }
    .why-choose {
        .choose-img {
            width: 50%;
        }
        .circle {
            left: 50%;
            top: 10%;
        }
        .tringle-outline {
            right: auto;
            left: 1%;
            top: 62%;
        }
    }
    .testimonials {
        .slick-dots {
            bottom: -45px;
        }
    }
    .footer-form {
        .form-control {
            font-size: 17px;
            padding: 18px;
        }
        .primary-btn {
            padding-inline: 25px;
        }
    }
    .tabs {
        margin-bottom: 20px;
    }
}

@media (max-width: 1366px) {}

@media (max-width: 1199.98px) {

    #menu>.main-menu>ul>li {
        padding-inline: 10px;
    }
}

@media (max-width: 991.98px) {
    #menu {
        justify-content: center;
    }

    header {
        height: auto;
    }

    .hamburger {
        background: #ffffff00;
        border-radius: 4px;
        top: 18px;
        left: 0;
    }

    .hamburger:before,
    .hamburger.menu-opened:before {
        background: #F68726;
    }

    .hamburger:after {
        border-top: 2px solid #F68726;
        border-bottom: 2px solid #F68726;
    }

    .hamburger.menu-opened:after {
        background: #F68726;
    }

    #menu .main-menu {
        background-color: rgb(19 19 19);
        top: 60px;
        flex-direction: column;
        padding-right: 0;
    }

    #menu .main-menu {
        top: 112px;
        background-color: #3E365F;
        border-top: 1px solid #fff;
    }

    #menu>.main-menu>ul>li {
        border-bottom: 1px solid #dddddd3d;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 16px;
        padding: 20px 6px;
    }

    #menu>.main-menu>ul>li:hover,
    #menu .main-menu ul li.current-menu-item:hover,
    #menu .main-menu ul li.current-menu-item,
    #menu .main-menu ul li.has-sub.current-menu-item:hover {
        background: #ffffff00 !important;
    }
    .header-area.sticky {
        #menu>.main-menu>ul>li>a {
            padding: 10px 6px;
        }
    }
    #menu>.main-menu>ul>li.has-sub>a::after{
        display: none;
    }
    #menu .main-menu ul li.current-menu-item a::after {
        bottom: 16px;
    }
    #menu>.main-menu>ul>li>a, #menu ul ul li a {
        padding: 10px 6px;
    }
    #menu .main-menu ul li.current-menu-item a::before {
        bottom: 8px;
    }
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

   
}

@media (max-width: 575.98px) {
    
    #menu {
        justify-content: space-between;
    }

    .logo {
        width: 100%;
        text-align: center;

        img {
            height: 40px;
            width: auto;
            margin-top: 3px;
        }
    }

    header {
        height: auto;
        .primary-btn{
            display: none;
        }
    }
    .call-btn {
        width: 35px;
        height: 35px;
        position: absolute;
        right: 0;
        padding: 9px;
    }
    .topbar {
        p {
            font-size: 9px;
        }
    }
    .hamburger {
        top: 5px;
        width: 36px;
        height: 36px;
    }

    .hamburger:after {
        top: 17px;
        right: 6px;
        height: 10px;
        width: 30px;
    }

    .hamburger:before {
        top: 8px;
        right: 6px;
        height: 2px;
        width: 30px;
    }

    .hamburger.menu-opened:after {
        top: 18px;
        border: 0;
        height: 2px;
        width: 30px;
    }

    .hamburger.menu-opened:before {
        top: 18px;
        width: 30px;
    }

    #menu .submenu-button {
        height: 43px;
        width: 55px;
        background: rgb(255 255 255 / 2%);
    }
    .tab-link {
        font-size: 12px;
        padding: 11px 15px;
        margin: 0 3px;
    }

    .section-title {
        font-size: 22px;
        line-height: 24px;
        margin-bottom: 0;
    }

    p {
        font-size: 14px;
        line-height: 20px;
    }

    .sec-gap,
    .sec-pad {
        padding: 30px 0;
    }

    .mb-20 {
        margin-bottom: 10px;
    }

    footer {
        padding-top: 30px;
    }

    #menu .main-menu {
        top: 69px;
        flex-direction: column;
        padding-right: 0;
        z-index: 9;
    }

    #menu>.main-menu>ul>li.has-sub>a::before {
        display: none;
    }

    #menu>.main-menu>ul>li>a {
        padding: 10px 6px;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 14px;
    }

    #menu .submenu-button:after {
        top: 22px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ffffff;
        transform: rotate(0deg);
        border-bottom: 0px solid #fff;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(0deg);
        top: 22px;
    }

    #menu ul ul li a {
        padding-left: 15px;
    }

    #menu .main-menu ul ul.open {
        background: #ffffff0d;
    }

    .menu-white .hamburger.menu-opened:after {
        background-color: #000;
    }

    #menu .main-menu ul li.current-menu-item a::after {
        display: none;
    }
    .btn-group {
        display: flex;
        gap: 10px;
    }
    .banner-img {
        height: 467px;
    }
    .banner-content {
        width: 100%;
    }
    .banner {
        .container {
            padding-top: 90px;
        }
        h1 {
            font-size: 28px;
            line-height: 32px;
            margin-bottom: 8px;
        }
        h2 {
            font-size: 14px;
        }
        p {
            font-size: 14px;
            line-height: 18px;
        }
        .btn-group {
            gap: 16px;
            flex-direction: column;
        }
        .shaps {
            .tringle {
                width: 22.72px;
                height: 22.72px;
                left: 1%;
                top: 26%;
            }
            .circle {
                width: 18px;
                height: 18px;
                right: 1%;
                top: 28%;
            }
            .circle-outline {
                width: 20.394px;
                height: 20.394px;
                right: 16%;
                bottom: 3%;
            }
            .tringle-outline {
                width: 29.72px;
                height: 46.72px;
                left: 5%;
                bottom: 5%;
            }
            .tringle-outline::before {
                width: 22.72px;
                height: 22.72px;
                left: 3px;
                bottom: -12px;
            }
        }
    }
    .enq-btn {
        width: 30px;
        height: 112px;
    }
    .vertical {
        font-size: 14px;
    }
    .fixed-btn {
        width: 30px;
    }
    .primary-btn {
        font-size: 14px;
        padding: 12px 25px;
        height: 42px;
        z-index: 1;
    }
    .brand {
        padding-top: 0px;
        .slick-list{
            margin: 0 -10px;
        }
        .slick-slide{
            margin: 0 10px;
        }
    }
    .brand-slider {
        .slick-prev {
            left: -10px;
        }
        .slick-next {
            right: -10px;
        }
    }
    .slick-arrow {
        width: 35px;
        height: 35px;
    }
    .brand-img {
        height: 58px;
        padding: 10px;
    }
    .sub-dec {
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 4px;
        margin-top: 6px;
    }
    .dec {
        font-size: 14px;
    }
    .portfolio-slider {
        .slick-slide {
            padding-inline: 15px;
        }
    }
    .img-box {
        border-radius: 15px;
        overflow: hidden;
    }
    .portfolio-slider {
        .flex {
            justify-content: space-between;
            margin-top: 8px;
            flex-direction: column;
            gap: 3px;
        }

        .slick-prev {
            left: 10%;
        }
        .slick-next {
            right: 10%;
        }

    }
    .progress {
        width: 210px;
        &:after {
            width: 40px;
            height: 1px;
        }
    }
    .card-title {
        font-size: 16px;
        line-height: 14px;
    }
    .tags {
        span {
            padding: 7px 10px;
            font-size: 12px;
            margin-right: 3px;
        }
    }
    .services {
        &:after {
            background-size: 30px;
        }
        & .shaps {
            .tringle {
                top: 12%;
                left: 3%;
                width: 20px;
                height: 20px;
            }
        }
    }
    .service-box {
        padding: 16px;
        padding-top: 35px;
        .icon-box {
            width: 120px;
            height: 120px;
            padding: 15px;
            right: -10px;
            top: -12px;
        }
        .section-title {
            font-size: 25px;
            line-height: 68px;
        }
        & h5 {
            line-height: 48px;
            font-size: 18px;
            margin-bottom: 0;
            img {
                width: 35px;
            }
        }
    }
    .process {
        .tringle {
            width: 20px;
            height: 20px;
        }
        .circle {
            left: 2%;
            top: 77%;
            width: 20px;
            height: 20px;
        }
        .plane {
            bottom: -18px;
            position: absolute;
            right: 34%;
            width: 60px;
        }
    }
    .process-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
        margin-top: 18px;
        outline-offset: 8px;
        padding: 15px;
        &:hover {
            outline-offset: 12px;
        }
    }
    .about-us {
        .right-circle {
            width: 26px;
        }
        &:after {
            width: 420px;
            height: 345px;
            bottom: auto;
            top: 126px;
        }
    }
    .about-img {
        position: relative;
        margin-bottom: 65px;
    }
    .certificate {
        gap: 5px;
        margin-bottom: 22px;
        img{
            width: 24%;
            height: auto;
            object-fit: contain;
        }
    }
    .counter-item {
        width: 164px;
        height: 164px;
    }
    .counter-item h3 {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 4px;
    }
    .process {
        .tringle-outline {
            display: none;
        }
    }
    .counter-icon {
        width: 45px;
    }
    .counter-item p {
        font-size: 15px;
        width: 80%;
        margin-inline: auto;
        text-align: center;
        line-height: 15px;
    }
    .counter {
        .left-circle {
            width: 30px;
        }
    }
    .choose-item {
        width: 300px;
        height: 80px;
        margin-bottom: 15px;
        padding: 10px 15px;
        .icon-box {
            width: 70px;
            height: 70px;
            padding: 15px;
        }
        h3 {
            font-size: 18px;
            line-height: 22px;
        }
    }
    .choose {
        .choose-item:nth-child(2n) {
            transform: translateX(40px);
            &:hover {
                &:nth-child(2n) {
                    transform: translateX(40px) translateY(-5px);
                }
            }
        }
        
    }
    .why-choose {
        padding-bottom: 200px;
        .choose-img {
            width: 55%;
        }
    }
    .technology {
        .col {
            height: 80px;
            &:nth-child(5) {
                border-right: 1px solid #CFCFCF;
            }
            &:nth-child(6),&:nth-child(7),&:nth-child(8) {
                border-bottom: 1px solid #CFCFCF;
            }
            div{
                padding-block: 10px;
                img{
                    width: 100%;
                    height: 60px;
                    object-fit: contain;
                }
            }
        }
        .tringle {
            left: 4%;
            top: 86%;
            width: 20px;
            height: 20px;
        }
        .tringle-outline {
            display: none;
        }
    }
    .testimonials {
        .shaps {
            display: none;
        }
        .slick-dots li {
            width: 5.5px;
            height: 5.5px;
        }
    }
    .video-box {
        border-radius: 15px;
    }
    .contact {
        iframe {
            border-radius: 15px;
            height: 240px;
        }
    }
    .process {
        border-radius: 15px;
    }
    .contact {
        .form-control {
            font-size: 14px;
            height: 45px;
        }
    }
    form .primary-btn{
        padding: 8px 50px;
    }
    footer {
        text-align: center;
        p, .footer-links a {
            font-size: 14px;
            margin-bottom: 18px;
        }
        h6 {
            font-size: 18px;
        }
    }
    .footer-logo {
        margin-bottom: 15px;
    }
    .footer-form {
        .form-control {
            font-size: 14px;
            padding: 15px;
        }
    }
    .footer-right {
        text-align: center;
        margin-top: 20px;
    }
    .footer-right {
        .footer-links {
            gap: 12px;
            justify-content: end;
            margin-bottom: 0px;
        }
    }
    .footer-social {
        gap: 10px;
        justify-content: center;
        a {
            width: 35.919px;
            height: 35.919px;
            padding: 9px;
        }
    }
    .footer-bottom {
        text-align: center;
        padding-block: 10px;
        margin-top: 20px;
        p {
            font-size: 13px;
        }
    }
    .popup .popup__content {
        width: 95%;
    }
    .popup {
        .title {
            font-size: 26px;
        }
    }
    .left {
        padding: 0px;
        .img-box {
            display: none;
        }
    }
    .right {
        padding: 15px;
    }
    .process {
        & .col:nth-child(3) {
            &:after {
                display: none;
            }
        }
    }
    .header-area.show {
        #menu>.main-menu>ul>li>a {
            padding: 10px 6px;
        }
    }
.location-list {
    justify-content: center;
}
.location-list a {
    padding: 6px 8px;
    font-size: 14px;
}
}