/**************************************
                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: #093048;
}

html::-webkit-scrollbar-thumb {
    background-color: #f9c903;
    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;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-size: 16px;
    font-family: 'OpenSans Regular';
    font-weight: 400;
    line-height: 22px;
    color: #1d1d1d;
    cursor: none;
}
 .arrow-cursor {
      position: fixed;
      top: 0;
      left: 0;
      width: 40px;
      height: 40px;
      background-size: contain;
      background-repeat: no-repeat;
      pointer-events: none;
      transform: translate(-50%, -50%) rotate(0deg);
      transition: transform 0.05s linear;
      z-index: 9999;
}
a,
a:hover,
a:focus {
    color: #f9c903;
    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;
}

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;
}

/* 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: 50%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}

.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    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: #15222B;
    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 {
    background: #302e38 url(../img/about-vision-vector.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right {
    padding: 30px;
    text-align: left;
}
@media(prefers-reduced-motion: no-preference){
    @view-transition{
        navigation: auto;
    }
}
::view-transition-group(*){
    animation-duration: 2s;
}
/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 70px 0;
}

.pb-80 {
    padding-bottom: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}

p {
    font-weight: 600;
    line-height: 24px;
    color: #1d1d1d;
}

.title {
    font-family: 'Inter SemiBold';
    color: #1D1D1D;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 65%;
    position: relative;
    margin-bottom: 30px;
}

.sub-title {
    color: #7148B5;
    font-family: 'Inter Medium';
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 12px;
}

.section-title {
    color: #093048;
    font-family: 'Inter SemiBold';
    font-size: 55px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.small-line {
    width: 68px;
    height: 2px;
    background-color: #f9c903;
    display: inline-block;
    margin-left: 6px;
    margin-top: 20px;
    margin-bottom: 24px;
}


.primary-btn {
    font-size: 23px;
    line-height: 25px;
    color: #000000;
    font-weight: 600;
    font-family: 'OpenSans Regular';
    padding: 18px 39px;
    padding-right: 63px;
    border-radius: 50rem;
    background-color: #f9c903;
    border: 1px solid #f9c903;
    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;
    box-shadow: 0px 20px 39px -8px #00000059;
    span{
        width: 43px;
        height: 43px;
        border-radius: 21px;
        background-color: #000000;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 8px;
        transition: all .5s;
        transition-delay: .2s;
    }
}

.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    inset: 0;
    scale: 0 1;
    background: #000000;
    z-index: -1;
    transition: all .35s;
    transform-origin: right;
}

.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: #000000;
    span{
        background-color: #ffffff;
        transform: rotate(180deg);
    }
}

.primary-btn:focus {
    color: #fff;
}


.secondary-btn {
    background: #7148B5;
    border-color: #7148B5;
    padding: 16px 45px;
}

.secondary-btn:hover {
    background: #ffffff2c;
    border-color: #fff;

    &::after,
    &::before {
        background-color: transparent;
    }
}

.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: #f9c903;
}

form .btn-group {
    justify-content: center;
}

form .primary-btn {
    padding: 16px 50px;
    cursor: pointer;
    display: inline-block;
}

form .primary-btn:hover {
    background: #000000;
    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);
}
.popup{
    h3{
        font-size: 32px;
        margin-bottom: 20px;
    }
}
label{
    display: block;
    margin-bottom: 5px;
}
.form-group {
    position: relative;
}

.italic {
    font-style: italic;
}
.mobile{
    display: none;
}
/**************************************
         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: #ffffff;
    padding: 5px 0;
    color: rgb(255, 255, 255);
}

.social {
    display: flex;
    gap: 6px;
}
.topbar{
    span{
        color: #000;
    }
}
.topbar a {
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.6px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: end;
}
.down-arrow{
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 1px solid;
  border-left: 1px solid;
  color: #000;
  margin-left: 5px;
}
.down-arrow{
 transform: rotate(220deg);
}
.call-email {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-area {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 999;
    right: 0;
    left: 0;
}

.call-btn {
    border-radius: 100px;
    border: 1px solid #1E75BC;
    padding: 6px;
    color: #343434;
    font-family: 'Inter Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    padding-left: 53px;
    padding-right: 10px;

    .call-icon {
        width: 44px;
        height: 44px;
        background-color: #004C8F;
        border-radius: 50%;
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        left: 6px;
        transition: all .5s;
    }

    span {
        color: #1467B3;
        font-family: 'Inter Bold';
        font-weight: 700;

    }

    &:hover {
        background-color: #1466b32d;
        color: #343434;

        .call-icon {
            transform: rotate(30deg);
        }

        span {
            color: #7148B5;
        }
    }
}

.flex-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-area.sticky {
    background: rgb(255, 255, 255);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.serch-box {
    position: relative;
    margin-left: 40px;
}

.serch-box span {
    position: absolute;
    left: 0;
    top: 0;
    height: 62px;
    width: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serch-box input {
    width: 287px;
    height: 62px;
    padding: 14px;
    border-radius: 60px;
    border: 1px solid #393939;
    background: rgba(217, 217, 217, 0.10);
    backdrop-filter: blur(20px);
    color: #A8A8A8;
    font-family: 'Work Sans';
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 52px;
}

.serch-box input::placeholder {
    color: #C0C0C0;
}

.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;

}

.main-menu {
    margin-left: auto;
}

.cart {
    display: inline-block;
    position: relative;
    margin-right: 20px;
    margin-left: 30px;

    span {
        width: 18px;
        height: 18px;
        background: #7148B5;
        font-size: 10px;
        color: #fff;
        position: absolute;
        bottom: -5px;
        left: -1px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

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;

}

#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: 16px 0px;
    display: inline-block;
    font-size: 16px;
line-height: 30px;
color: #000000;
font-weight: 500;
font-family: 'Poppins Medium';
}
.logo {
    position: absolute;
    bottom: 6px;
    filter: drop-shadow(0 0 4.5px rgba(13, 13, 13, 0.75));
}

#menu>.main-menu>ul>li>a:hover::after,
#menu .main-menu ul li.current-menu-item a::after {
    width: 80%;
}

#menu .main-menu ul li.current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 3px;
    background: #f9c903;
}

#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
    color: #f9c903;
}

#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::before {
    top: 34px;
    right: -8px;
    transition: all .4s;
    content: "";
    position: absolute;
    z-index: 11;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-left: 1px solid;
    transform: rotate(225deg);
    color: #000;
}

#menu>.main-menu>ul>li.has-sub:hover>a::before,
#menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
    color: #f9c903;
}

/* #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
}

#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: 19px;
    line-height: 19px;
    text-decoration: none;
    color: #000000;
    font-weight: normal;
    white-space: nowrap;
}

#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: rgb(237, 143, 0);
}

#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%);

    }

    #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
    }
}

.fixed-btn {
    position: fixed;
    top: unset;
    right: 10px;
    bottom: 4%;
    z-index: 8;
    width: 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fc:hover,
.fw:hover {
    transform: scale(1.2);
}
h1,h2,h3,h4{
    font-family: 'Brookline';
    font-weight: normal;
}
/************************************* Home Page **************************************/

.banner {
    overflow: hidden;
    position: relative;
    background-color: #f3f3f3;


    h1 {
        font-size: 111px;
        color: #000000;
        font-family: 'Brookline';
        line-height: normal;
        span{
            color: #f9c733;
        }
    }

    p {
        font-size: 26px;
line-height: 44px;
color: #000000;
font-weight: 400;
font-family: 'OpenSans Regular';
margin-bottom: 50px;
    }


    .container {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        z-index: 1;
    }
}

.banner-content {
    width: 50%;
}

.btn-group {
    display: flex;
    gap: 10px;
}

.banner-img {
    position: relative;
    width: 700px;
    height: 700px;
    margin-left: auto;
    margin-bottom: -4px;
    text-align: right;
    .banner-shape1{
        width: 100%;
    }
    .banner-img-box1,
    .banner-img-box2,
    .banner-img-box3 {
        position: absolute;
        z-index: 1;
    }
    .banner-img-box2 {
    right: 178px;
        z-index: 1;
        bottom: 183px;
        width: 336px;
        height: 341px;
    }
    .banner-img-box1 {
        top: 0;
        width: 168px;
        height: 188px;
        overflow: hidden;
        left: 355px;
    img{
        width: 100%;
        height: 100% !important;
        object-fit: cover;
    }
    }
    .banner-img-box3 {
    bottom: 0;
    right: 0;
    width: 179px;
    height: 181px;
    border-radius: 0 0 0 100%;
    overflow: hidden;
    div{
        height: 100%;
    }
    img{
        width: 100%;
        height: 100% !important;
        object-fit: cover;
        object-position: right;
    }
}
}
.follow-cursor {
  position: relative;
  z-index: 1;
}

.follow-cursor::before {
  content: "";
  position: absolute;
  top: var(--y, 0);
  left: var(--x, 0);
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgb(255, 205, 0);
  filter: blur(100px);
  pointer-events: none;
  opacity: var(--before-opacity, .71);
  z-index: -1;
}
.our-work.follow-cursor::before{
    background: #f9efc4;
    opacity: 1;
}
.float-up-down {
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.rotate360 {
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ***** About ***** */
.about {
    padding-top: 80px;
    padding-bottom: 160px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
    h2{
        font-size: 139px;
        color: #1d1d1d;
        text-align: center;
        line-height: normal;
    }
    p{
        margin-bottom: 30px;
    }
    &:after{
        content: '';
        position: absolute;
        left: 0;
        width: 43px;
        height: 288px;
        background-color: #f9c903;
        z-index: -1;
        top: 10%;
    }
    .col-lg-4{
        padding-inline: 6%;
        text-align: left;
    }
    .row{
        margin-top: 40px;
        .col-lg-4:nth-child(2){
            border-left: 1px solid #000;
            border-right: 1px solid #000;
        }
    }
    h5{
        font-size: 24px;
        line-height: 25px;
        color: #000000;
        font-weight: 400;
    }
    .about-harn {
        position: absolute;
        z-index: 2;
        bottom: -43.3%;
    }  
}
.vision{
    position: relative;
    background-color: #000;
    padding-top: 250px;
    padding-bottom: 180px;
    .vision-shape{
        position: absolute;
        left: 0;
        top: 0;
    }
     &:after{
        content: '';
        position: absolute;
        left: 0;
        width: 40px;
        height: 182px;
        background-color: #f9c903;
        z-index: 0;
        top: 47%;
    }
   /* &::before{
        content: '';
        position: absolute;
        bottom: -1px;
        width: 153px;
        height: 55px;
        background-color: #f9c903;
        z-index: 0;
        left: 10%;
    } */
    h2{
        font-size: 148px;
        color: #ffffff;
        line-height: normal;
    }
    p{
        font-size: 22px;
        line-height: 30px;
        color: #ffffff;
    }
    .vision-content{
        p:last-child{
            font-size: 17px;
            line-height: 25px;
            font-family: 'MYRIADPRO REGULAR';
        }
    }
     .vision-img{
        position: absolute;
        right: 0;
        top: -19.4%;
        z-index: 1;
     } 
     .shape-white {
        position: absolute;
        top: 40px;
        left: 5%;
    }
    .shape-yellow {
        position: absolute;
        top: 141px;
    }
}
.our-work{
    padding-top: 110px;
    padding-bottom: 240px;
    background-color: rgb(255, 205, 0);
    position: relative;
    z-index: 1;
    .col-lg-4 {
            transition: transform 0.3s ease;
            transform-style: preserve-3d;
        }
    h2{
        font-size: 184px;
        color: #1e1e1e;
        line-height: normal;
        span{
            color: #f8b52f;
        }
    }
    h3{
        font-size: 55px;
        color: #000000;
        line-height: normal;
    }
    .work-shape{
        position: absolute;
        right: 0;
        top: -2px;
    }
    &:after{
        content: '';
        position: absolute;
        left: 0;
        width: 80px;
        height: 181px;
        background-color: rgb(0, 0, 0);
        z-index: -1;
        top: 23%;
    }
      
}
.work-item {
    border-radius: 10px;
    filter: drop-shadow(0px 15px 20px rgba(209, 168, 1, 0.66));
    background-color: #ffcd00;
    text-align: center;
    padding: 40px;
    transition: all .5s;
    height: 100%;
    &:hover{
        filter: drop-shadow(0px 5px 31px #f9efc4);
        img{
            transform: rotateY(180deg);
        }
    }
    img{
        margin-bottom: 15px;
    }
    h4{
        font-size: 24px;
        line-height: normal;
        color: #000000;
        margin-bottom: 15px;
    }
    p{
        font-size: 14px;
        color: #1b1b1b;
        font-family: 'MYRIADPRO REGULAR';
        text-align: center;
    }
}
.link-btn{
    font-size: 15px;
    line-height: 30px;
    color: #071b31;
    font-weight: 500;
    font-family: 'Poppins Medium';
} 
.mb-80{
    margin-bottom: 80px;
}
.the-legacy{
    background: #000000;
    padding-top: 200px;
    padding-bottom: 145px;
    position: relative;
    h2{
    font-size: 104px;
    color: rgb(255, 205, 0);
    line-height: normal;
    text-align: center;  
    }
    p{
    font-size: 20px;
    color: rgb(255, 255, 255);
    line-height: 1.4;
    text-align: center;
          
    }
    &:after{
        content: '';
        position: absolute;
        left: 0;
        width: 43px;
        height: 288px;
        background-color: rgb(255, 205, 0);
        top: 23%;
    }
    .camera {
        position: absolute;
        top: -260px;
        left: 0;
        z-index: 1;
    }
    .shape1 {
        position: absolute;
        right: -20px;
        top: -220px;
        z-index: 2;
    }
    .shape2 {
        position: absolute;
        right: 0;
        top: -333px;
        z-index: 1;
    }  
    .shape-up {
        position: absolute;
        right: -70px;
        margin-top: 40px;
    }
}
.legacy-item{
    border-radius: 50px;
    background:linear-gradient(to top,rgb(255, 205, 0),#000 100%);
    text-align: center;
    padding-inline: 18px;
    padding-bottom: 45px;
    padding-top: 110px;
    height: 100%;
    h3{
        font-size: 63px;
        font-family: 'OpenSans Regular';
        color: rgb(255, 255, 255);
        font-weight: bold;
        line-height: 0.493;
        text-align: center;  
        margin-bottom: 40px; 
    }
    h5{
        font-size: 26px;
        font-family: 'OpenSans Regular';
        color: rgb(0, 0, 0);
        line-height: 1.423;
        text-align: center;  
        font-weight: 400;
    }
}
.customer{
    padding-top: 70px;
    padding-bottom: 30px;
    h2{
        font-size: 69px;
        line-height: 86px;
        color: #000000;
        line-height: normal;
    }
    .slick-list{
        margin:0 -18px;
    }
    .slick-slide{
        margin:0 18px;
    }
}
.logo-box{
width: auto;
height: 81px;
border-radius: 40px;
filter: drop-shadow(0px 8px 4.5px rgba(0,0,0,0.29));
background-color: #ffffff;
border: 7px solid rgba(255,255,255,0.31);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}
.mb-50{
    margin-bottom: 50px;
}
.instagrame{
    background-color: #f4f8fd;
    position: relative;
    padding-top: 160px;
    padding-bottom: 120px;
    .shape2 {
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .shape1 {
        position: absolute;
        left: 0;
        top: 0;
    }
    .insta-img {
        position: absolute;
        bottom: 20px;
        left: 2%;
        transform: scale(1.05);
    }
    .insta-support {
        padding-left: 50px;
    }
}
.support-item{
    width: 100%;
    background-color: black;
    clip-path: polygon(0.158% 100%, 0.158% 50.254%, 0.158% 18.962%, 0.158% 18.962%, 0.189% 18.467%, 0.295% 17.126%, 0.497% 15.149%, 0.813% 12.748%, 1.265% 10.136%, 1.871% 7.523%, 2.652% 5.123%, 3.628% 3.146%, 4.818% 1.804%, 6.243% 1.31%, 93.915% 0.508%, 93.915% 0.508%, 94.078% 0.541%, 94.522% 0.707%, 95.177% 1.107%, 95.978% 1.843%, 96.854% 3.015%, 97.739% 4.725%, 98.564% 7.074%, 99.261% 10.162%, 99.762% 14.091%, 100% 18.962%, 100% 62.29%, 100% 62.29%, 99.959% 62.761%, 99.827% 64.035%, 99.592% 65.907%, 99.239% 68.169%, 98.755% 70.614%, 98.128% 73.034%, 97.344% 75.224%, 96.389% 76.976%, 95.251% 78.082%, 93.915% 78.336%, 8.179% 79.139%, 8.179% 79.139%, 7.997% 79.152%, 7.495% 79.28%, 6.743% 79.651%, 5.807% 80.397%, 4.756% 81.646%, 3.659% 83.529%, 2.582% 86.176%, 1.594% 89.717%, 0.764% 94.282%, 0.158% 100%);
    padding-inline: 40px;
    padding-block: 20px;
    transition: all .5s;
    &:hover{
        filter: drop-shadow(0px 5px 31px #000000);
        transform: translateY(-5px);
    }
h3{
    font-size: 30px;
line-height: 31px;
color: #ffcd00;
margin-bottom: 20px;
}  
p{
    font-size: 14px;
line-height: 25px;
color: #fbfdff;
font-weight: 400;
padding-bottom: 20px;
}
}
.exclusive{
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 170px;
    position: relative;
    h2{
        font-size: 89px;
        color: #000000;
        line-height: normal;
        margin-bottom: 67px;
        span{
            color: #f9c733;
        }
    }
    p{
        font-size: 20px;
line-height: 28px;
color: #000000;
font-weight: 400;
text-align: center;
margin-bottom: 50px;
    }
    h6{
        font-size: 24px;
        line-height: 35px;
        color: #000000;
        font-family: 'MYRIADPRO REGULAR';
        text-align: center;
    }
    .exclusive-bg{
        width: 100%;
        margin-top: -15%;
    }
    .shape3{
        position: absolute;
        right: 0;
        top: 0;
    }
    .shape4{
        width: 184px;
height: 181px;
background-color: #f9c903;
position: absolute;
left: 0;
top: -70px;
    }
}

/******************************/
.solutions {
    border-radius: 30px;
    background-color: #000000;
    padding: 40px;
    text-align: left;
    margin-top: -106px;
    z-index: 1;
    position: relative;
    margin-bottom: 90px;
    h2{
        font-size: 42px;
        line-height: 90px;
        color: #f9c903;
        line-height: normal;
    }
    p{
        font-size: 22px;
line-height: 30px;
color: #ffffff;
font-weight: 400;
font-family: 'Poppins Medium';
    }
    .primary-btn{
        background-color: rgba(22,55,92,0);
        border: 2px solid #ffffff;
        border-radius: 0 20px;
        color: #fff;
        font-weight: 400;
        &::after{
            background: #ffffff;
        }
        &:hover{
            color: #f9c903;
        }
        
    }
    .btn-group{
        margin: 0;
        position: relative;
        display: block;
        padding-left: 10%;
        img{
            position: absolute;
            right: -24px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
        }
    }
}
footer {
    background-image: url(../img/footer-bg.webp);
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
h4{
    font-size: 30px;
    font-family: 'Brookline';
    color: rgb(0, 0, 0);
    line-height: 1;
    text-align: left;  
    display: flex;
    align-items: center;
    gap: 10px;   
    margin-bottom: 50px;
    span{
        border-style: solid;
        border-width: 1px;
        border-color: rgb(255, 255, 255);
        background-color: rgb(249, 201, 3);
        width: 30px;
        height: 5px;
        display: inline-block;
          
    } 
}
a{
font-size: 19px;
font-family: 'OpenSans Regular';
color: rgb(0, 0, 0);
line-height: 2.684;
text-align: left;
font-weight: normal;
&:hover{
    color: #f9c903;
}
}  
ul{
    text-align: left;
    li{
        position: relative;
        padding-left: 25px;
        transition: all .4s;
        &::before{
            content: '';
            position: absolute;
            left: 0;
            width: 8px;
            height: 8px;
            border-top: 2px solid;
            border-left: 2px solid;
            display: inline-block;
            color: #000000;
            top: 36%;
            transform: rotate(135deg) translateY(-50%);
            transition: all .4s;
        }
        &:hover{
            transform: translateX(10px);
            a{
                color: #f9c903;
            }
            &:before{
                color: #f9c903;
            }
        }
    }
}
.info{
    text-align: left;
    p{
        position: relative;
        display: block;
        padding-left: 40px;
        img{
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }
    }
}
.submit-btn{
    border-radius: 50rem;
    background-color: rgb(0, 0, 0);
    width: 190px;
    height: 41px; 
    font-size: 15px;
    font-family: 'Poppins Medium';
    color: rgb(249, 201, 3);
    line-height: 2.867;   
    margin-left: auto;  
    transition: all .4s;
    border: 0;
    &:hover{
        background-color: #f9c903;
        color: #000000;
        border-color: #f9c903;

    }
}
}


.copyright-section{
    margin-top: 50px;
}
.copyright {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    p,span{
        color: rgb(69, 69, 69);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        font-family: 'OpenSans Regular';
    }

    .social {
        display: flex;
        gap: 15px;
        align-items: center;
        a{
            line-height: normal;
            &:hover{
                transform: scale(1.1);
                filter: brightness(0) saturate(100%) invert(80%) sepia(60%) saturate(2807%) hue-rotate(3deg) brightness(107%) contrast(98%);
            }
        }
    }   
}

textarea,.form-control{
    font-size: 14px;
    font-family: 'OpenSans Regular';
    color: rgb(69, 69, 69);   
}
/* Service */
.service-banner{
    h1{
        font-size: 162px;
        line-height: 1.2;
    }
    .banner-img {
        .banner-img-box2 {
            right: 196px;
            z-index: 1;
            bottom: 3px;
            width: 403px;
            height: 392px;
        }
    }
    .banner-img {
        position: relative;
        width: 594px;
        height: 528px;
        margin-left: auto;
        margin-bottom: -4px;
        text-align: right;
    }
}
.video-graphy{
    position: relative;
    h2{
        font-size: 100.568px;
        color: rgb(27, 27, 27);
        line-height: 1.193;  
        margin-bottom: 60px;
    }
    p{
        font-size: 24.33px;
        font-family: 'MYRIADPRO REGULAR';
        color: rgb(27, 27, 27);
        line-height: 1.356;   
    }
    .main-img{
        width: 100%;
        height: 100%;
        margin-bottom: -5px;
    }
    .vector {
        position: absolute;
        right: 0;
        bottom: 0;
    }
}
.photography-accessories{
    background: #f9f6e7;
    padding-bottom: 140px;
    h2{
        font-size: 104.568px;
        color: rgb(1, 13, 1);
        line-height: 1.193;
          
    }
    &:after{
        opacity: 0;
    }
    .work-item{
        border-radius: 10px;
        filter: drop-shadow(0px 15px 20px rgba(162,151,95,0.2));
        background-color: #f9f6e7;
        &:hover{
            filter: drop-shadow(0px 5px 31px #f9efc4);
            background-color: #ffcd00;
        }
    }
}
.testimonials{
    background-color: #fff;
    position: relative;
    padding-top: 65px;
    padding-bottom: 95px;
    .shape1 {
        position: absolute;
        right: 0;
        top: -300px;
        z-index: 2;
    }
    .camera {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    h2{
        font-size: 72px;
        color: rgb(0, 0, 0);
        line-height: 1.014; 
    }
}
.testi-content{
    clip-path: polygon( 0.186% 100%,10.346% 90.168%,99.593% 90.782%,100% 1.059%,0.174% 0.444%,0.186% 100% );
    background-color: #f2f2f2;
    padding: 30px 22px;
    padding-bottom: 44px;
}
.outline {
    clip-path: polygon(1.648% 100%, 11.758% 90.349%, 99.596% 90.953%, 100% 2.892%, 1.636% 2.289%, 1.648% 100%);
    background-color: #000000;
    position: absolute;
    inset: 0;
    left: 10px;
    right: -8px;
    bottom: -8px;
    top: 8px;
    &:after{
        content: '';
        position: absolute;
        inset: 2px;
        background: #fff;
        clip-path: polygon(1.648% 100%, 11.758% 90.349%, 99.596% 90.953%, 100% 2.892%, 1.636% 2.289%, 1.648% 100%);
    }
}
.testi-item{
    position: relative;
    z-index: 1;
    margin-top: 20px;
    margin-bottom: 15px;
    .icon{
        border-style: solid;
        border-width: 1px;
        border-color: rgb(0, 0, 0);
        background-color: rgb(0, 0, 0);
        width: 49px;
        height: 49px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        &::after{
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid #000000;
            margin-top: 7px;
            margin-right: -6px;
            z-index: -1;
            margin-left: 7px;
            margin-bottom: -7px;
        }
    }
    .user {
        display: flex;
        align-items: center;
        gap: 20px;
        h4{
            font-size: 16px;
            font-family: 'Poppins Medium';
            color: rgb(0, 0, 0);
            font-weight: bold;   
        }
        p{
            margin: 0;
        }
    }
    .qut{
        width: 86px;
        height: 85px;
        background-color: rgba(12, 28, 44, 0.078);
        position: absolute;
        text-align: center;
        right: 0;
        top: 0;
        z-index: 1;
        img{
            margin-top: -16px;
        }
    }
}
.testi-slider{
    .slick-list{
        margin: 0 -20px;
    }
    .slick-slide{
        margin: 0 20px;
    }
    .slick-arrow{
        border-radius: 50%;
        background-color: rgb(0, 0, 0);
        width: 51px;
        height: 51px;
        z-index: 10;
        box-shadow: 0 0 0 3px rgb(0 0 0 / 30%);
        outline: 3px solid rgb(0 0 0 / 10%);
        outline-offset: 3px;
        top: 115%;
        left: 50%;
        transition: all .5s;
        &::before{
            content: '';
            background-image: url(../img/slider-arrow.webp);
            width: 20px;
            height: 17px;
            display: inline-block;
            background-repeat: no-repeat;
        }
        &:hover{
            background-color: #f9c903;
            box-shadow: 0 0 0 3px rgba(249, 200, 3, 0.301);
            outline: 3px solid rgba(249, 200, 3, 0.101);
            
        }
    }
    .slick-prev{
        left: 44%;
        &::before{
            transform: rotate(180deg);
        }
    }
}
.service-exclusive{
    padding-top: 56px;
    .shape4 {
        width: 125px;
        height: 180px;
        background-color: #000000;
        position: absolute;
        left: 0;
        top: 55px;
    }
   .shape3 {
    position: absolute;
    right: 0;
    top: 26%;
    width: 70px;
    height: 180px;
    background-color: #000000;
    }
}
.bg-yellow-20{
    background: #fefdf7;
}
.portfolio {
    padding-top: 100px;
    padding-bottom: 80px;
}
.portfolio-filters {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 3px solid #000;
    margin-bottom: 20px;
}
.filter-btn {
    padding: 5px 20px;
    border: none;
    border-radius: 6px 6px 0 0;
    background: #f9c903;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    height: 47px;
    font-size: 15px;
    color: rgb(1, 13, 1);
  }

  
  .filter-btn.active {
    background: #222;
    color: #fff;
  }

  .portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .portfolio-item {
    width: calc(33.333%);
    height: 310px;
    padding: 10px;
    background: #fff;
    overflow: hidden;
    &:hover{
        img{
            transform: scale(1.1);
        }
    }
  }

  .portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 768px) {
    .portfolio-item {
      width: calc(50%);
    }
  }

  @media (max-width: 575px) {
    .portfolio-item {
      width: 100%;
    }
    .portfolio-filters {
        gap: 9px;
        margin-bottom: 20px;
        overflow-x: auto;
        flex-wrap: wrap;
    }
    .filter-btn {
        padding: 5px 12px;
        width: 100%;
        height: 47px;
        width: 31.3%;
        font-size: 13px;
    }
    .portfolio {
        padding-top: 30px;
        padding-bottom: 30px;
    }
  }

  /* Contact Page */
  .contact {
    padding-block: 80px;
  }

  .form-container {
    background: #f7fafe;
    padding: 2rem;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
  }

  .form-container h2 {
    font-size: 30px;
    font-family: 'OpenSans Regular';
    color: rgb(27, 27, 27);
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    span{
        color:red
    }
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    border: 1px solid rgb(0 0 0 / 30%);
    border-radius: 10px;
    background-color: rgba(175, 203, 246, 0);
    padding: 18px 15px;
    font-size: 16px;
  }
  .checkbox-group{
    margin-block: 30px;
  }
  .checkbox-group label {
    display: flex;
    margin-bottom: 0.4rem;
    font-size: 18px;
    font-family: 'OpenSans Regular';
    color: rgb(4, 25, 56);
    align-items: center;
    justify-content: flex-start;
    input{
        display: inline-block;
        width: auto;
        margin-right: 12px;
        border-radius: 5px;
        background-color: rgba(175, 203, 246, 0);
        border: 1px solid rgb(0 0 0 / 30%);
        width: 19px;
        height: 19px;
        z-index: 69;
        accent-color: #f9c903;
    }
  }
.radio-group{
    display: flex;
    margin-top: 25px;
    label{
    	display: flex;
        margin-right: 15px;
        align-items: center;
        gap: 7px;
    }
    input{
        border: 1px solid rgb(0 0 0 / 30%);
        width: 19px;
        height: 19px;
        border-radius: 5px;
        accent-color: #f9c903;
    }
}
  .newsletter {
    margin-top: 1rem;
  }

  .newsletter label {
    font-weight: 600;
  }

  .submit-btn {
    display: inline-block;
    background-color: rgb(27, 27, 27);
    border: none;
    width: 155px;
    height: 41px;
    border-radius: 50rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.5s ease;
    font-size: 20px;
    font-family: 'OpenSans Regular';
    color: rgb(255, 255, 255);
    font-weight: normal;
    background-image: url(../img/btn-arrow.png);
    background-repeat: no-repeat;
    background-position: 94%;
    text-align: left;
    padding-left: 25px;
    line-height: normal;
    padding-bottom: 3px;
  }
 
  .submit-btn:hover {
    transform: scale(1.05);
    background-color: #f9c903;
    color: #000;
  }

  .right-side {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .card {
    border-radius: 10px;
    background-color: rgb(249, 201, 3);
    transition: transform 0.5s ease;
    text-align: center;
    padding-top: 88px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
    .primary-btn{
        background: #000;
        color: #fff;
        span{
            background: #fff;
            img{
                filter: brightness(0) saturate(100%)
            }
        }
    }
    &::after{
        display: none;
    }
  }

  .card:hover {
    transform: translateY(-5px);
  }

  .card h3 {
    font-size: 31px;
    font-family: 'OpenSans Regular';
    color: rgb(27, 27, 27);
    font-weight: bold;
    line-height: 2.323;
    margin-bottom: 20px;
  }

  .card p {
    font-size: 19px;
    font-family: 'OpenSans Regular';
    color: rgb(27, 27, 27);
    line-height: normal;
    margin-bottom: 30px;
  }

  .map {
    height: 380px;
    border: 0;
    border-radius: 10px;
    width: 100%;
  }

  @media(max-width: 768px) {
    .container {
      flex-direction: column;
    }
  }
  .about-banner{
        & .banner-img {
        .banner-img-box2 {
            right: 196px;
            z-index: 1;
            bottom: 60px;
            width: 330px;
            height: 334px;
        }
    }
  }
  .cp-img{
    position: relative;
        .main-img {
        width: auto;
        height: auto;
        margin-bottom: -5px;
    }
    .banner-img-box2{
        position: absolute;
        bottom: -28px;
        right: 0;
        z-index: 6;
        width: 446px;
        height: 394px;
    }
  }
  .company-profile{
    h2 span{
        color: rgb(253, 185, 0);
    }
    p{
        font-size: 21px;
    }
  }
  .video-graphy {
    .vision-title{
  font-size: 156.339px;
  margin-bottom: 0;
  }
}
.img-vector{
    margin-top: -215px;
    margin-bottom: -80px;
}
.vision-item{
    display: flex;
    padding-right: 15px;
    h3{
  font-size: 90px;
    font-family: 'broone';
    color: rgb(35, 35, 35);
    line-height: 70%;
    margin-right: 12px;
    }
    p{
  font-size: 22px;
  font-family: 'OpenSans Regular';
  color: rgb(35, 35, 35);
  line-height: 1.2;
  text-align: left;

    }
}
.mision-title{
 color: rgb(253, 185, 0) !important;
}
/*******************************
  Responsive
********************************/
/*************************************
    Home Page
*************************************/
@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
    .video-graphy {
        h2 {
            font-size: 92.568px;
        }
    }
    .testimonials {
        .shape1 {
            position: absolute;
            right: 0;
            top: -236px;
            z-index: 2;
            width: 19%;
        }
    }
    .company-profile {
    p {
        font-size: 18px;
    }
}
.img-vector {
    margin-top: -160px;
    margin-bottom: -80px;
}
}

@media (max-width: 1536px) {}

@media (max-width: 1440px) {}

@media (max-width: 1440px),
(max-width: 1366px) {

   
    #menu>.main-menu>ul>li {
        padding-inline: 12px;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 17px;
    }

    .popup .popup__content {
        width: 60%;
    }

    .form-head {
        height: 84px;
    }
   
    p {
        font-size: 16px;
        line-height: 1.667;
    }
   
    
    .sec-gap {
        padding: 40px 0;
    }
    .banner {
        h1 {
            font-size: 80px;
        }
        p {
            font-size: 22px;
            line-height: 32px;
        }
    }
    .about {
        h5 {
            font-size: 22px;
        }
    }
    .vision {
        .vision-img {
            top: -14.4%;
            z-index: 1;
            width: 50%;
        }
    }
    .work-item {
        padding: 40px 20px;
        h4 {
            font-size: 22px;
        }
    }
    .instagrame {
        .insta-img {
            position: absolute;
            bottom: 20px;
            left: 2%;
            transform: scale(1.05);
            width: 50%;
        }
    }
    .exclusive {
        h2 {
            font-size: 84px;
        }
    }
    .solutions {
        h2 {
            font-size: 36px;
        }
        .primary-btn {
            font-size: 18px;
        }
    }
    .video-graphy {
        h2 {
            font-size: 75.568px;
            margin-bottom: 30px;
        }
        p {
            font-size: 20.33px;
            line-height: 1.356;
        }
    }
    .photography-accessories {
        h2 {
            font-size: 75.568px;
        }
    }
    .video-graphy {
        p {
            font-size: 15.33px;
            line-height: 1.356;
        }
    }
    .video-graphy {
    .vision-title {
        font-size: 116.339px;
        margin-bottom: 0;
    }
}
    .img-vector {
        margin-top: -110px;
        margin-bottom: -50px;
    }
    .vision-item {
    h3 {
        font-size: 70px;
    }
}
}

@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: start;
    }
    header {
        height: auto;
    }
    .logo {
        width: auto;
        padding-block: 0px;
        position: relative;
    }

    .hamburger {
        background: #ffffff;
        border-radius: 4px;
        top: 18px;
        right: 0;
    }
    .hamburger:before,.hamburger.menu-opened:before{
        background: #f9c903;
    }
    .hamburger:after {
        border-top: 2px solid #f9c903;
        border-bottom: 2px solid #f9c903;
    }
    .hamburger.menu-opened:after{
        background: #f9c903;
    }

    #menu .main-menu {
        background-color: rgb(19 19 19);
        top: 60px;
        flex-direction: column;
        padding-right: 0;
    }

    #menu .main-menu {
        top: 115px;
        background-color: #000000;
    }

    #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;
    }

    header .flex-box {
        margin-top: 0px;
        position: absolute;
        right: 0;
    }
   

    #menu .submenu-button {
        height: 77px;
        width: 70px;
    }

    #menu .submenu-button:after {
        top: 28px;
        right: 30px;
    }

    #menu>.main-menu>ul>li.has-sub>a::before {
        display: none;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 34px;
    }

    #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: #ffffff !important;
    }
    #menu .main-menu ul li.current-menu-item a::after {
        bottom: 16px;
    }

    .mobile{
        display: block;
    }
    .desktop{
        display: none;
    }
    
    .section-title {
        font-size: 35px;
        margin-bottom: 10px;
    }
    
    footer {
        padding-top: 40px;
        .btn-group {
            margin-bottom: 30px;
        }
    }
    
}

@media (max-width: 575.98px) {
   

    .form-group {
        margin-bottom: 5px;
    }

    .offcanvas-body .contact-form label {
        font-size: 16px;
        margin-bottom: 5px;
        display: block;
    }

    form .btn-group {
        justify-content: center;
        margin-top: 15px;
    }


    #menu {
        justify-content: start;
    }

    .logo {
        width: auto;
        padding-block: 0px;
        img{
            height: 60px;
            width: auto;
        }
    }

    header {
        height: 60px;
    }

    .hamburger {
        top: 12px;
        width: 43px;
        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: 51px;
        width: 70px;
        background: rgb(255 255 255 / 3%);
    }


    .section-title {
        font-size: 22px;
        line-height: inherit;
    }

    p {
        font-size: 14px;
    }

    .sec-gap,
    .sec-pad {
        padding: 30px 0;
    }

    .mb-20 {
        margin-bottom: 10px;
    }

    footer {
        padding-top: 30px;
        text-align: center;
    }


    .copyright {
        padding: 0px 0;
        padding-bottom: 10px;
        justify-content: center;
        gap: 12px 0px;
    }
    
    .copyright p {
        margin-bottom: 5px;
    }

    .flex-box {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 30px;
        background: #ffffff05;
        padding-block: 10px;
    }


    #menu .main-menu {
        top: 96px;
        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: 16px 6px;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 16px;
    }

    #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;
    }

    .header-area.sticky {
        position: relative;
    }
    .header-area.sticky {
        position: relative;
    }
   
    .copyright {
        p, a {
            font-size: 14px;
            margin: 0;
        }
    }
    .popup .popup__content {
        width: 95%;
    }
    .left{
        img{
            height: 100px;
            width: auto;
        }
    }
    .title {
        font-size: 22px;
        margin-bottom: 18px;
    }
    .banner {
        padding-block: 30px;

        .container {
            position: relative;
        }
        .banner-content {
            width: 100%;
        }
        h1 {
            font-size: 44px;
        }
        p {
            font-size: 14px;
            line-height: 24px;
            margin-bottom: 15px;
        }
        .banner-img {
           position: absolute;
            width: 128px;
            height: 128px;
            right: 0;
            top: 0;
        }
    }
    .about {
        h2 {
            font-size: 44px;
        }
    }
    .about {
        padding-top: 30px;
        padding-bottom: 130px;
        h5 {
            font-size: 18px;
        }
        & .row {
            .col-lg-4:nth-child(2) {
                border-left: 1px solid #000;
                border-right: 0;
            }
        }
        .about-harn {
            position: absolute;
            z-index: 2;
            bottom: -17.4%;
            width: 40%;
        }
    }
    .vision {
        padding-top: 106px;
        padding-bottom: 30px;
        &:after {
            width: 8px;
        }
        .vision-img {
            top: -7%;
            z-index: 1;
            width: 40%;
        }
        
        .shape-white {
            position: absolute;
            top: 40px;
            left: 5%;
            width: 100px;
        }
        .shape-yellow {
            position: absolute;
            top: 100px;
            width: 100px;
        }
        &::before {
            height: 20px;
        }
        h2 {
            font-size: 44px;
            text-align: center;
        }
        p {
            font-size: 16px;
            line-height: 24px;
            text-align: center;
            position: relative;
            z-index: 1;
        }
    }
    .about {
    &:after {
        width: 6px;
    }
}
    .our-work {
        padding-top: 30px;
    padding-bottom: 130px;
        h2 {
            font-size: 44px;
        }
        h3 {
            font-size: 30px;
        }
        .mb-80 {
            margin-bottom: 30px;
        }
        .work-shape {
            width: 25%;
        }
    }
    .the-legacy {
        padding-top: 70px;
        padding-bottom: 50px;
        z-index: 1;
        .camera {
            top: -80px;
            width: 50%;
        }
        .shape1 {
            right: -10px;
            top: -74px;
            width: 50%;
        }
        .shape2 {
            top: -130px;
            width: 28%;
        }
        h2 {
            font-size: 40px;
        }
        .shape-up {
            right: -27px;
            margin-top: 13px;
            width: 22%;
        }
        p {
            font-size: 16px;
        }
        &:after {
            width: 10px;
            height: 288px;
            top: 23%;
            z-index: -1;
        }
    }
    .legacy-item {
        border-radius: 30px;
        padding-inline: 18px;
        padding-bottom: 30px;
        padding-top: 60px;
        height: 100%;
        h3 {
            font-size: 36px;
            margin-bottom: 18px;
        }
        h5 {
            font-size: 18px;
            font-weight: 400;
        }
    }
    .customer {
        padding-top: 30px;
        h2 {
            font-size: 34px;
            line-height: 44px;
        }
        .slick-list{
            margin:0 -6px;
        }
        .slick-slide{
            margin:0 6px;
        }
    }
    .logo-box {
        width: auto;
        height: 66px;
        border-radius: 40px;
        margin-bottom: 20px;
        padding: 20px;
    }
    .instagrame {
        padding-top: 353px;
        padding-bottom: 80px;
        .insta-img {
            bottom: unset;
            left: 3%;
            transform: scale(1.05);
            width: 80%;
            top: 101px;
        }
        .shape1 {
            width: 26%;
        }
        .shape2 {
            width: 15%;
        }
        .insta-support {
            padding-left: 0px;
        }
    }
    .support-item {
        h3 {
            font-size: 22px;
            line-height: 22px;
            margin-bottom: 10px;
        }
        p {
            font-size: 14px;
            line-height: 22px;
            padding-bottom: 24px;
        }
    }
    .exclusive {
        .shape3 {
            width: 38%;
        }
        .shape4 {
            width: 110px;
            height: 110px;
            top: -55px;
        }
        h2 {
            font-size: 34px;
            margin-bottom: 20px;
        }
        p {
            font-size: 16px;
            line-height: 26px;
            margin-bottom: 30px;
        }
        h6 {
            font-size: 18px;
            line-height: 28px;
        }
    }
    .solutions {
        h2 {
            font-size: 22px;
        }
        p {
            font-size: 14px;
            line-height: 20px;
        }
    }
    .solutions {
        border-radius: 30px;
        padding: 20px;
        text-align: center;
        margin-top: -60px;
        margin-bottom: 50px;
        .btn-group {
            padding-left: 5%;
            padding-right: 5%;
            img {
                right: -9px;
            }
        }
    }
    footer {
        h4 {
            font-size: 18px;
            margin-bottom: 16px;
        }
        a {
            font-size: 16px;
            line-height: 2;
        }
    }
    .copyright {
        .social {
            flex-wrap: wrap;
            justify-content: center;
        }
        p, span {
            font-size: 14px;
            display: block;
            width: 100%;
        }
    }
    .copyright-section {
        margin-top: 20px;
    }
    .header-area.sticky {
        position: fixed;
    }
    .banner-img {
    .banner-img-box3 {
        width: 33px;
        height: 33px;
        border-radius: 0 0 0 100%;
    }
        .banner-img-box2 {
        right: 32px;
        z-index: 1;
        bottom: 33px;
        width: 63px;
        height: 63px;
    }
        .banner-img-box1 {
        top: 0;
        width: 31px;
        height: 33px;
        overflow: hidden;
        left: 65px;
    }
}
.service-banner {
    & .banner-img {
        .banner-img-box2 {
            right: 13px;
                z-index: 1;
                bottom: unset;
                width: 116px;
                height: 86px;
                overflow: hidden;
                top: 28px;
        }
    }
    .banner-content {
        width: 65%;
    }
}
.video-graphy{
    padding-bottom: 25px;
    .videography-content{
        padding: 20px;
        text-align: center;
    }
    h2 {
        font-size: 34.568px;
        margin-bottom: 20px;
    }
    p {
        font-size: 16.33px;
        line-height: 1.356;
    }
    .vector {
        width: 8%;
    }
}
.photography-accessories {
    padding-bottom: 60px;
    .shape1 {
        position: absolute;
        right: 0;
        top: -115px;
        z-index: 2;
        width: 28%;
    }
}
.testimonials{
    .camera {
        width: 10%;
    }
    h2 {
        font-size: 34px;
    }
    .mb-80 {
        margin-bottom: 20px;
    }
}
.testi-slider {
    .slick-prev {
        left: 31%;
    }
}
.service-exclusive {
    padding-top: 0px;
    .shape4 {
        width: 10px;
        height: 75px;
        top: 4px;
    }
    .shape3 {
        display: none;
    }
    
}
.testimonials{
    .shape1 {
        top: -86px;
        z-index: 2;
        width: 30%;
    }
}
.about-banner{
    .banner-content {
        width: 64%;
        margin-right: auto;
    }
}
.cp-img {
    .main-img {
        width: 55%;
        height: auto;
        margin-bottom: -5px;
    }
}
.cp-img {
    .banner-img-box2 {
        position: absolute;
        bottom: -10px;
        right: auto;
        left: 58px;
        z-index: 6;
        width: 240px;
        height: 213px;
    }
}
.video-graphy {
        p {
            font-size: 15.33px;
            line-height: 1.356;
        }
    }
    .bar {
    position: absolute;
    width: 3%;
    height: 15%;
}
.mb-50 {
    margin-bottom: 20px;
}
.pb{
    .col-lg-4{
        order: -1;
    }
}
    .video-graphy {
        .vision-title {
            font-size: 90.339px;
            line-height: 80%;
            text-align: center;
        }
    }
    .img-vector {
        margin-top: -18px;
        margin-bottom: 15px;
        .col-lg-6:last-child{
            margin-top: -220px;
        }
    }
    .mision-title {
    margin-bottom: 40px !important;
}
.vision-item {
    padding-right: 0px;
    position: relative;
    padding-left: 52px;
            h3 {
            font-size: 35px;
            width: 69px;
            position: absolute;
            left: 0;
            line-height: 90%;
        }
        p{
            font-size: 14.6px;
        }
}
    .service-banner {
        .banner-content {
            margin-right: auto;
        }
    }
    .contact {
    padding-block: 0px;
}
.form-group input, .form-group textarea {
    padding: 12px 15px;
    font-size: 14px;
}
.form-container{
    padding-inline: 0;
}
.checkbox-group label {
    font-size: 15px;
}
.card h3 {
    font-size: 30px;
   line-height: normal;
}
.contact .card{
    padding-bottom: 40px;
}
}
p{
    font-weight: normal;
}