 
:root {
    --primary: #E3077C;
    --black:#222222;
    --dark-gray:#565555;
    --light-gray:#F7F7F7;
    --black-dark:#161616;
}
body {
    font-family: "Inter", sans-serif;
    color: var(--black);

    font-size: 16px;
}
a {
    text-decoration: none;
}
.section-space {
    padding: 0 50px;
}
.pt-100 {
    padding-top: 75px;
}
.pb-100 {
    padding-bottom: 75px;
}
.p-100{
    padding: 75px 0;
}
.mt-100 {
    margin-top: 75px;
}
.mb-100{
    margin-bottom: 75px;
}
.pt-60{
    padding-top: 60px;
}
.mt-60{
    margin-top: 60px;
}
.mb-30{
    margin-bottom: 30px;
}
.pt-40{
    padding-top: 40px;
}
.main-heading {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0;
}
.main-heading-i {
    font-size: 1.56vw;
    line-height: 1.4;
    font-weight: 500;
    color: var(--black);
    font-style: italic;
}
.main-heading span, .main-heading-i span{
    color: var(--primary-color);
}
.main-heading.mb-40{
    margin-bottom: 30px;
}
.main-p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--dark-gray);
    font-weight: 400;
}
.sample:after{
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 80%;
}
.sub-heading{
    line-height: 1;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 2.5rem;
    color: var(--primary);
    font-family: "Lavishly Yours", cursive;
}
.sub-heading.mb-60{
    margin-bottom: 55px;
}
.heading-p{
    font-size: 0.9rem;    
    width: 75%;
    margin: auto;
    line-height: 1.5;
    font-weight: 300;
    margin-top: 8px;
    margin-bottom: 0;
    color: var(--dark-gray);
}
.border-r-10{
    border-radius: 10px;
}
.medium-h{
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--black);
}
.small-h{
    font-size: 1.5rem;
    font-weight: 400;
    font-family: "Alice", serif;
    line-height: 1.2;
}
.btn-1 {
    font-size: 1rem;
    border: 1px solid #fff;
    padding: 7px 30px;
    color: #fff;
    display: block;
    width: max-content;
    transition: 0.4s;
}
.btn-1:hover{
    background-color: var(--black);
    color: #fff;
    border-color: var(--black);
}
.btn-2 {
    font-size: 1rem;
    padding: 8px 30px;
    color: #fff;
    background-color: var(--black);
    display: block;
    width: max-content;
    transition: 0.4s;
}
.btn-2:hover{
    background-color: var(--primary-color);
    color: #fff;
}
.btn-3 {
    color: #564147;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.0625rem;
    text-decoration: none !important;
}
.btn-3 img {
    width: 20px;
    margin-left: 5px;
    transition: 0.4s;
}
.btn-3:hover img {
    margin-left: 15px;
}
.btn-4 {
    font-size: 1rem;
    padding: 8px 38px;
    color: #fff;
    background-color: var(--primary);
    display: block;
    width: max-content;
    transition: 0.4s;
    border-radius: 15px;
}
.btn-4:hover{
    background-color: #bd0667;
}
.w-1400{
    max-width: 1400px;
}

/* ---------------------------------------------------menu section------------------------------------------------ */
header {
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 99;
}
header .main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 2.5%;
}
header .nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    width: 70%;
    background-color: #ffffffbf;
    border-radius: 15px;
    padding: 0 20px;
    height: 100%;
}
header .nav-link{
    padding: 0;
    color: #000;
    font-weight: 500;
    font-size: 0.815rem;
    text-transform: uppercase;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
header .nav-link:hover, header .menu-contact a:hover{
    color: var(--primary);
}
header .menu-contact, header .menu-contact a{
    color: #000;
    font-weight: 300;
    font-size: 0.815rem;
    text-transform: uppercase;
}
header .nav-item:not(:last-child){
    padding-right: 40px;
}
header .box {
    width: 13%;
}
header .logo-box {
    width: 13%;
}
header .logo-box img{
    width: 6.93vw;
    height: auto;
    padding: 5px 0;
}

.header.fixed-nav {
    position: sticky !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    animation: slideDown 0.4s ease forwards;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
    background-color: #fff;
}

header .menu-contact img {
    width: 18px;
}
header .menu-contact a{
    display: flex;
    align-items: center;
    gap: 7px;
}

.menu-contact:hover img{
filter: brightness(0) saturate(100%) invert(21%) sepia(92%) saturate(7449%) hue-rotate(320deg) brightness(90%) contrast(98%);

}


@keyframes slideDown {
    from {
        transform: translateY(-20px);
    }
    to {
        transform: translateY(0);
    }
}
/* menu-bar start */
.menu-item-has-children, .menu-item-has-children a {
    position: relative;
}
.menu-item-has-children > a::after {
    position: absolute;
    content: "";
    right: -14px;
    top: 50%;
    background-image: url(https://storeyourcode.com/demo/gproduction/wp-content/uploads/2025/06/down-arrow.png);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    width: 10px;
    height: 5px;
    line-height: 0;
    font-size: 12px;
    color: var(--black);
    background-size: contain;
}
.menu-item-has-children .menu-item-has-children > a::after{
    position: absolute;
    content: "";
    right: 12px;
    top: 50%;
    background-image: url(https://storeyourcode.com/demo/gproduction/wp-content/uploads/2025/06/right-arrow.png);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    width: 5px;
    height: 10px;
    line-height: 0;
    font-size: 12px;
    color: var(--black);
    background-size: contain;
}
.menu-item-has-children .sub-menu {
    list-style: none;
    padding-left: 0;
    position: absolute;
    z-index: 2;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    visibility: hidden;
    margin-bottom: 0;
    min-width: 250px;
    padding-top: 25px;
}
.menu-item-has-children .menu-item a {
    display: block;
    background: #ffffffbf;
    padding: 10px 15px !important;
    transition: 0.4s;
}
.header.fixed-nav .menu-item-has-children .menu-item a {
    background: #fff;
}
.menu-item-has-children:hover > .sub-menu {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}
.menu-item-has-children .sub-menu .nav-item{
    padding-right: 0;
}
.menu-item-has-children .sub-menu .menu-item-has-children {
  position: relative;
}
.menu-item-has-children .sub-menu .sub-menu{
    top: 0;
    left: 100%;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    visibility: hidden;
    transition: all 0.3s ease;
}
.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}
.menu-item-has-children .sub-menu > li:last-child a, .menu-item-has-children .sub-menu .sub-menu li:last-child a{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* menu-bar end */

/* ---------------------------------------------------hero section------------------------------------------------ */
.hero{
    overflow: hidden;
    position: relative;
}
.hero:after{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 45%;
    width: 100%;
    background: linear-gradient(to top, #000000, #0000005b, #ffffff00);
}
 .hero .new-hero-box {
    display: flex;
    align-items: center;
    gap: 5%;
    position: absolute;
    width: 100%;
    padding-left: 50px;
    bottom: 0;
    padding-bottom: 60px;
}
.hero .hero-slider-box .bottom-text {
    width: 25%;
    color: white;
    font-size: 2.6vw;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
}
.hero .hero-slider-box .carousel-container {
    right: 0;
    width: 70%;
}
.hero .banner {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-image 0.5s ease-in-out;
}
.hero .hero-slider-box .item img, .hero .hero-slider-box .item video {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}
.hero .hero-slider-box .item.active img {
    border: 1px solid #fff;
    padding: 4px;
}

/* ---------------------------hero new design css-------------------------- */
.banner-container {
    overflow: hidden;
    aspect-ratio: 16/9;
}
.banner-container img,
.banner-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}
.banner-container .active {
    display: block;
}
.hero-new-slider .item img,
.hero-new-slider .item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -----------------------------------------home about us section------------------------------------- */
.home-about{
    position: relative;
}
.home-about-row .text-content {
    padding-right: 4%;
}
.home-about-row .text-content h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0px;
    color: var(--black);
    line-height: 1.8;
}
.home-about-row .text-content .main-p {
    margin-bottom: 0px;
}
.home-about-row .text-content a {
    color: #564147;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    text-decoration: none !important;
}
.home-about-row .text-content a:hover {
    text-decoration: underline;
}
.home-about-row .text-content a img{
    width: 20px;
    margin-left: 5px;
}
.home-about-row .text-section {
    border-bottom: 1px solid #ddd;
    padding-bottom: 35px;
    margin-bottom: 35px;
}
.home-about-row .text-section:nth-last-child(2) {
    border-bottom: none;
    margin-bottom: 0;
}
.home-about-row .image-content {
    padding-left: 5.4%;
}
.home-about-row .image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.home-about .home-about-shape {
    position: absolute;
    left: 0;
    top: 8%;
    width: 16.4375vw;
}

/* ------------------------------------industries section css--------------------------------- */
.bg-gray{
    background-color: var(--light-gray);
}
.industries{
    overflow: hidden;
}
.industries .sub-heading{
    font-weight: 300;
}
.industries  .other-p{
    font-size: 1rem;
    padding-right: 10%;
    padding-left: 6%;
}
.industries-slider {
    display: flex;
    margin-top: 30px;
    gap: 25px;
}
.industries-slider .left-list {
    width: 32%;
    box-shadow: 10px 6px 8px rgb(0 0 0 / 7%);
}
.industries-slider .list-item {
    padding: 18px 0px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--black);
    font-weight: 500;
    background-color: var(--light-gray);
    transition: 0.4s;
    gap: 14px;
    text-transform: uppercase;
    position: relative;
    padding-left: 20px;
}
.industries-slider .list-item:not(:last-child){
    border-bottom: 1px solid #EBEBEB;
}
.industries-slider .list-item:after{
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    background-image: url("../images/b-arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.industries-slider .list-item img{
    max-width: 34px;
    height: auto;
}
.industries-slider .list-item.list-item-heading {
    background: #fff;
    font-weight: bold;
    color: var(--black);
    font-size: 1rem;
    cursor: auto;
}
.industries-slider .list-item.list-item-heading.active, .industries-slider .list-item.list-item-heading:hover{
    color: var(--black);
}
.industries-slider .list-item.list-item-heading:after{
    display: none;    
}
.industries-slider .list-item.active, .industries-slider .list-item:hover {
    background-color: var(--white);
    color: var(--primary);
}
.industries-slider .list-item i {
    margin-right: 10px;
    font-size: 18px;
}
.industries-slider .carousel-container {
    flex: 1;
    width: calc(100% - 32% - 25px);
}
.industries-slider .carousel-container .small-heading {
    margin-top: 18px;
}
.industries-top .main-p{
    padding-left: 32%;
}
.industries-top{
    position: relative;
}
.industries-top .industries-shape {
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translateY(-50%);
    width: 8.854vw;
    opacity: 0.2;
}

/* ----------service-slider-section------------ */
.service-slider-section .custom-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.service-slider-section .service-slider-track {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.service-slider-section .service-slider-track::-webkit-scrollbar {
    display: none;
}
.service-slider-section .item-small {
    flex: 0 0 calc(40% - 10px);
    scroll-snap-align: start;
    overflow: hidden;
    color: #fff;
    position: relative;
    border-radius: 8px;
}
.service-slider-section .item-small:after{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, #e3077cb0, #e3077c69, #e3077c00);
    z-index: 0;
    pointer-events: none;
}
.service-slider-section .item-small img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.service-slider-section .text-overlay {
    padding: 15px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
}
.service-slider-section .item-small-a {
    background-color: #DEDEDE40;
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 20px;
}
.service-slider-section .item-small-a img{
    width: auto;
    filter: invert(1);
}

/* ----------------------------collarge-gallery section css--------------------------------- */
.collarge-gallery-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0;
}
.collarge-gallery-container .row-col {
    display: flex;
}
.collarge-gallery-container .row-1 {
    max-height: 450px;
}
.collarge-gallery-container .row-2 {
    max-height: 400px;
}
.collarge-gallery-container .row-3 {
    max-height: 350px;
}
.collarge-gallery-container .row-4 {
    max-height: 330px;
}
.collarge-gallery-container .row-col img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.collarge-gallery-container .row-1 .box-1, .collarge-gallery-container .row-2 .box-3{
    width: 62%;
}
.collarge-gallery-container .row-1 .box-2, .collarge-gallery-container .row-2 .box-4{
    width: 38%;
}
.collarge-gallery-container .row-3{
    aspect-ratio: 480 / 97;
}
.collarge-gallery-container .row-3 .box-5{
    width: 24%;
}
.collarge-gallery-container .row-3 .box-6{
    width: 38%;
}
.collarge-gallery-container .row-3 .box-7{
    width: 38%;
}
.collarge-gallery-container .row-4 .box{
    width: 20%;
}
.collarge-gallery-container .row-1 .box-1{
    position: relative;
}
.collarge-gallery-container .row-1 .box-1 .content-box {
    width: 38%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.collarge-gallery-container .row-col .content-box{
    width: 100%;
    height: 100%;
    position: relative;
}
.collarge-gallery-container .row-col .content-box .text-overlay{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
}
.collarge-gallery-container .text-overlay .sub-heading{
    margin-bottom: 10%;
}
.collarge-gallery-container .box{
    background: #ff4d94;
}
.collarge-gallery-top{
    position: relative;
}
.collarge-gallery-top .collarge-gallery-gif {
    position: absolute;
    right: 6%;
    top: -10%;
    width: 4.167vw;
    opacity: 0.5;
}

/* animation added */
.collarge-gallery-container .box img {
  display: inline-block;
  opacity: 1;
  transform: rotateY(0deg);
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  backface-visibility: hidden;
  perspective: 1000px;
}
.collarge-gallery-container .box img.fade-transition {
  opacity: 0;
  transform: rotateY(90deg);
}

/* -------------------------------------------footer css--------------------------------------- */
footer{
    padding-top: 65px;
    position: relative;
    background-color: var(--black-dark);
    overflow: hidden;
}
footer .footer-shape {
    position: absolute;
    right: -2%;
    bottom: 40px;
    width: 14vw;
    background-image: url(../images/footer-shape.png);
    background-repeat: no-repeat;
    background-size: contain;
    mix-blend-mode: multiply;
}
ul.footer-icon{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: inline-flex;
    gap: 20px;
}
footer p{
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
    color: #fff;
    margin-bottom: 0;
}
.footer-h{
    font-size: 1rem;
    line-height: 1.8;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
}
footer a{
    font-size: 0.9rem;
    line-height: normal;
    font-weight: 300;
    color: #fff;
    transition: 0.4s;
}
footer a:hover{
    color: var(--primary);
}
footer .footer-menu ul{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    margin-top: 20px;
}
footer .footer-menu ul li{
    position: relative;
    padding-left: 18px;
}
footer .footer-menu ul li:after{
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50px;
    background-color: #fff;
}
footer .footer-menu ul li:not(:last-child){
    margin-bottom: 15px;
}
footer .footer-menu ul li img{
    max-width: 20px;
    filter: invert(1);
}
.footer-contact li{
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 0 !important;
}
.footer-contact li:after{
    display: none;
}
.footer-logo-box{
    padding-right: 50px;
}
.footer-logo-box .footer-h {
    margin-top: 20%;
}
.footer-icon img {
    position: relative;
}
.footer-icon img:after{
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 50px;
    background-color: var(--black);
}
.footer-flex {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}
.footer-flex img{
    width: 2.5vw;
}

.copyright{
    background-color: #000;
    padding: 10px 0;
    margin-top: 45px;
    position: relative;
}
.footer-flex-2 {
    display: inline-flex;
    gap: 15px;
    margin-left: 15px;
}
.footer-flex-2 img{
    width: 25px;
}
.copyright-text, .copyright-text a{
    color: #fff;
    font-size: 0.8rem;
}
.f-call-div span{
    color: #fff;
    font-weight: 200;
}

/* ----------------------------------------gallery slider-------------------------------------- */
.gallery-section {
    text-align: center;
    position: relative;
}
.prewedding-slider .item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
}
.prewedding-slider .item::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 45%;
    width: 100%;
    background: linear-gradient(to top, #000000, #00000099, #ffffff00);
    pointer-events: none;
}
.prewedding-slider .item img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.prewedding-slider .text-box {
    position: absolute;
    bottom: 0;
    padding: 20px;
    width: 100%;
    color: white;
    font-size: 16px;
    text-align: left;
    z-index: 1;
}
.prewedding-slider .text-box .caption{
    font-size: 1.2rem;
    font-weight: 500;
}
.prewedding-slider .text-box .main-p {
    color: #fff;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 300;
    opacity: 0;
    transition: 0.45;
}
.prewedding-slider .owl-item.center .text-box .main-p {
    opacity: 1;
}

.prewedding-slider .owl-item {
    transition: transform 0.5s ease, opacity 0.5s ease, margin 0.5s ease, padding 0.5s ease;
    transform: scale(0.9);
    z-index: 1;
    height: 600px;
}
.prewedding-slider .owl-item .item, .prewedding-slider .item img{
    height: 100%;
}
.prewedding-slider .owl-item.center {
    transform: scale(1.3);
    z-index: 3;
    height: 417px;
    overflow: hidden;
}
.prewedding-slider .owl-item:not(.center) {
    animation: none;
}
.prewedding-slider .near-left{
    padding-right: 60px;
    margin-left: -40px;
}
.prewedding-slider .near-right{
    padding-left: 60px;
    margin-right: -20px !important;
}
.prewedding-slider .owl-stage{
    left: 35px;
    transition: left 0.5s ease;
    display: flex;
    align-items: center;
    height: 545px;
}

/* ----------------------------------------country slider-------------------------------------- */

.countries-slider .item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
}
.countries-slider .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.countries-slider .text-box {
    position: absolute;
    bottom: 30px;
    width: 100%;
    color: white;
    font-size: 16px;
    text-align: left;
    z-index: 1;
}
.countries-slider .text-box .countries-slider-h{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.88) 51.13%, rgba(255, 255, 255, 0) 100%);
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: underline;
    text-align: center;
    text-decoration-color: var(--black);
    text-underline-offset: 5px;  
    padding: 3px 0;
}
.countries-slider .text-box .countries-slider-h a{
    color: var(--black);
}
.gallery-section .gallery-shape-1 {
    position: absolute;
    top: 3%;
    left: 0;
    width: 20vw;
}
.gallery-section-2{
    position: relative;
}
.gallery-section-2 .gallery-shape-2 {
    position: absolute;
    top: 30%;
    right: 3%;
    width: 10.5vw;
}

.countries-slider .owl-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 25px;
}
.countries-slider .owl-dot {
    width: 12px;
    height: 12px;
    background: var(--dark-gray) !important;
    margin: 0 5px;
    border-radius: 50%;
}
.countries-slider .owl-dot.active {
    background: #fff !important;
    border: 2px solid var(--primary);
    box-shadow: 0px 4px 14px 0px #00000040;
}

/* -----------------------------------why-choose-us css-------------------------------------- */

.why-choose-box{
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
}
.why-choose-box .number {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 300;
}
.why-choose-box .main-p {
    text-transform: uppercase;
    color: var(--black);
    font-weight: 400;
    line-height: 2;
    padding: 4px 0px;
}
.why-choose-box .heading-p {
    line-height: 2;
    margin-top: 0;
    text-align: justify;
}
.why-choose-us .heading-box {
    padding-right: 20%;
}
.why-choose-box-row{
    --bs-gutter-x: 5rem;
    --bs-gutter-y: 4rem;
}
.why-choose-icon {
    text-align: end;
}
.why-choose-icon img {
    width: 11.98vw;
    position: relative;
    z-index: -1;
    bottom: -17px;
    right: 5%;
}

/* ------------------------------------------home-counter section------------------------------------- */
.home-counter .counter {
    font-size: 5.2083vw;
    font-weight: 100;
    color: #939393;
    position: relative;
    line-height: 1;
    margin-bottom: 0;
}
.home-counter .container-fluid {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    padding: 0 120px;
    padding-bottom: 30px;
}
.home-counter {
    position: relative;
    margin-top: -10%;
    z-index: -1;
}
.home-counter::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 55%;
    width: 100%;
    background: linear-gradient(to top, #000000, #000000d1, #ffffff00);
}
.home-counter .main-p{
    margin-bottom: 0;
}
.home-counter .row > div{
    display: grid;
    justify-content: center;
    position: relative;
}
.home-counter .row > div:not(:last-child)::after{
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40%;
    background-color: #636363;
}

/* --------------------------------------------testimonial css--------------------------------- */
.testimonial{
    padding-bottom: 40px;
    overflow: hidden;
    position: relative;
}
.unique-navigation-arrows {
    display: flex;
    gap: 20px;
    position: relative;
    top: 20%;
}
.unique-navigation-arrows button{
    border: none;
    background: transparent;
    padding: 0;
}

.unique-navigation-arrows button img{
    max-width: 40px;
}
.unique-navigation-arrows button:first-child img {
    transform: rotate(180deg);
}

.unique-services-section .unique-tab.active .unique-progress-line {
    transform: scaleX(1);
}

.unique-services-section .slick-prev,
.unique-services-section .slick-next {
    display: none !important;
}
.testimonial-slider .left .heading-p{
    color: #000;
    font-weight: 400;
    line-height: 2.1;
}
.testimonial-slider .left .testimonial-name {
    font-size: 1.2rem;
    color: #000;
    font-style: italic;
    margin-top: 25px;
}
.testimonial-slider .quote-icon{
    max-width: 40px;
    margin-bottom: 40px;
}
.testimonial-slider .star-icon {
    max-width: 135px;
    margin-top: 12px;
}
.testimonial-slider .items {
    display: flex;
    gap: 2%;
    
}
.testimonial-slider .left{
    width: 54%;
}
.testimonial-slider .right{
    width: 44%;
    padding-left: 19%;
    position: relative;    
}
.testimonial-shape {
    position: absolute;
    right: 0;
    top: 22%;
    width: 13.67vw;
}
.testimonial-slider .right:after {
    position: absolute;
    content: "";
    left: 34%;
    top: 50%;
    transform: translateY(-50%);
    height: 140%;
    width: 1px;
    background-color: #95959552;
}
.testimonial-slider .right img{
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 4px;
}
.testimonial-slider{
    width: 83%;
}
.testimonial-slider .right .number{
    font-size: 5vw;
    color: var(--black-dark);
    line-height: 1;
    padding: 15px 0;
}
.testimonial-slider .right .n-name{
    color: var(--black-dark);
}
/* --------------------------------------------cta-1 css--------------------------------- */

.cta-1-top{
    background-color: var(--black-dark);
    padding: 20px 0;
}
.cta-1-top span{
    display: block;
    margin: auto;
    max-width: 40%;
    border: 1px dashed #fff;
}
.cta-1-main{
    background-image: url(../images/cta-1-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0;
}
.cta-1-main .text-box h5 {
    font-size: 3vw;
    line-height: 1.5;
    color: #fff;
}
.cta-1-main .text-box h5 span {
    font-family: "Lavishly Yours", cursive;
    color: var(--primary);
    font-size: 8vw;
    line-height: 0.6;
    padding-right: 15px;
}
.cta-1-box {
    background: #00000075;
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}
.cta-1-box .cta-1-shape {
    position: absolute;
    bottom: 0;
    width: 17vw;
    left: -1%;
}
.cta-1 .cta-1-btn .img-box {
    position: relative;
    background: var(--primary);
    border-radius: 50%;
    padding: 8px;
    width: 8.5vw;
    margin-left: auto;
}
.cta-1 .cta-1-btn .img-box span img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cta-1 .cta-1-btn .img-box > a > img {
  animation: rotate360 10s linear infinite;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* --------------------------------------------inner page css--------------------------------------- */

/* ------------------------------------------portfolio page css-------------------------------------- */
.portfolio-hero {
    padding-top: 95px;
    position: relative;
    overflow: hidden;
}
.portfolio-hero:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 46%;
    /* background: linear-gradient(to bottom, #000000, #0000005b, #ffffff00); */
    background: linear-gradient(0deg, rgba(246, 245, 241, 0) 6.77%, rgba(246, 245, 241, 0.733333) 35.73%, #F6F5F1 65.03%);

}

/* --------------------------------------------portfolio-1 section css-------------------------------------- */
.portfolio-1 .portfolio-item {
    position: relative;
    overflow: hidden;
}
.portfolio-1 .portfolio-item img {
    transition: transform 0.3s ease;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.portfolio-1 .portfolio-item:hover img {
    transform: scale(1.1);
}
.portfolio-1 .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-family: var(--font-primary);
}
.portfolio-1-container > .row {
    aspect-ratio: 2/1.05;
}
.portfolio-1 .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-1 .large-image {
    height: 100%;
    object-fit: cover;
}
.portfolio-1 .vertical-text {
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 20px;
    writing-mode: vertical-lr;
    text-orientation: upright;
    color: #000;
    text-align: center;
    position: absolute;
    top: 20px;
    left: 35px;
    text-transform: uppercase;
}
.portfolio-1 .small-image {
    height: 100%;
    object-fit: cover;
}
.portfolio-1 {
    margin: 0;
}
.portfolio-1 .heading-p{
    font-weight: 400;
}
.portfolio-1-container {
    margin: 0;
    max-width: 100%;
}
.portfolio-1 .header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.portfolio-1 .next-button {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.portfolio-1 .next-button a.heading-p {
    color: var(--black-dark);
    transition: 0.4s;
}
.portfolio-1 .next-button .container{
    padding: 20px 0;
}
.portfolio-1 .next-button a.heading-p:hover {
    color: var(--primary);
}
.portfolio-1 .next-button .bi-arrow-right {
    font-size: 1.5rem;
    margin-top: 5px;
    color: var(--dark-gray);
}
.portfolio-1 .arrow-container {
    display: flex;
    align-items: center;
}
.portfolio-1 .arrow-shaft {
    width: 100px;
    height: 2px;
    background-color: var(--black);
}
.portfolio-1 .arrow-head {
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 8px solid var(--black-dark);
}
.portfolio-1 .arrow-container {
    animation: slide-right 1.5s infinite ease-in-out;
}
@keyframes slide-right {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}

/* ----------------------------------------------------cta-2 css--------------------------------------------------- */

.cta-2 {
    position: relative;
}
.cta-2 .cta-2-shape{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 15.10vw;
}
.cta-2 .text-box{
    position: absolute;
    left: 0;
    width: 100%;
    top: 30px;
}
.cta-2 .cta-2-small{
    color: #fff;
    font-size: 2rem;
    line-height: 1.2;
}
.cta-2 .cta-h{
    font-size: 9.375vw;
    color: #fff;
    line-height: 1;
    font-weight: 900;
    padding-left: 3%;
    margin-top: 1%;
}
.cta-2 .cta-h span{
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
    padding-left: 4%;
}
.cta-2-btn {
    background-color: var(--primary);
    color: #fff;
    font-size: 1rem;
    padding: 18px 150px;
    border-radius: 250px;
    display: block;
    width: max-content;
    margin-top: 25px;
    position: relative;
}
.cta-2-btn::after {
    position: absolute;
    content: "";
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/white-arrow-new.svg);
    width: 90px;
    height: 8px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* -------------------------------------about us page css--------------------------------------- */

.inner-hero{
    position: relative;
    overflow: hidden;
}
.inner-hero .container-fluid{
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.inner-hero-h {
    font-size: 4.33vw;
    color: #EDEDED;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 25px;
    text-transform: uppercase;
}
.inner-hero-p{
    font-size: 2rem;
    color: #EDEDED;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}
.inner-hero .text-box{
    width: 50%;
}
.inner-hero .img-box img {
    width: 100%;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
}

/* about us 1 */
.about-1 .img-box{
    position: relative;
}
.about-1 .about-1-shape {
    position: absolute;
    right: -10%;
    top: 5%;
    width: 6.5vw;
    z-index: -1;
}
.about-1 .main-p{
    color: var(--black-dark);
    margin-top: 8px;
}
.about-1 .img-box img {
    border-radius: 8px;
}
.skills-section {
    width: 80%;
}
.skills-section .main-heading{
    padding: 20px 0;
}
.skills-section .skill {
    margin-bottom: 25px;
}
.skills-section .skill .heading-p {
    display: block;
    color: var(--black-dark);
    margin-bottom: 5px;
    margin-top: 0;
}
.skills-section .skill-bar {
    width: 100%;
    background: var(--dark-gray);
    height: 4px;
    overflow: hidden;
}
.skills-section .skill-progress {
    height: 100%;
    background: var(--black-dark);
    width: 0;
    transition: width 1.5s ease-in-out;
}
.skills-section .skill-percentage.heading-p {
    float: right;
    color: var(--dark-gray);
    margin-top: -32px;
    text-align: end;
}

/* about us 2 */
.about-2{
    padding-bottom: 50px;
    position: relative;
}
.about-2 .about-2-shape {
    position: absolute;
    left: 2%;
    top: 6%;
    width: 10.5vw;
}
.about-2 .content-box .number {
    font-size: 5.21vw;
    font-weight: 900;
    color: transparent;
    line-height: 1.2;
    -webkit-text-stroke: 1px var(--dark-gray);
    text-stroke: 1px var(--dark-gray);
}
.about-2 .content-box .main-heading {
    color: #000;
    margin-bottom: 0;
    padding-bottom: 12px;
}
.about-2 .content-box .main-p {
    color: var(--dark-gray);
}
.about-2 .content-box {
    padding: 0 30px;
}

/* about us 3 */
.about-3{
    position: relative;
}
.about-3 .about-3-shape {
    position: absolute;
    right: 20px;
    top: 0;
    width: 9.79vw;
}
.about-3 .about-3-shape-2 {
    position: absolute;
    left: 20px;
    bottom: 0;
    width: 7.5vw;
}
.about-3 .main-p{
    color: var(--black-dark);
    margin-top: 6px;
}
.about-3 .img-box {
    padding-left: 10%;
}
.about-3 .text-box {
    padding-right: 25%;
}

/* ---------------------------------------------contact-us page css----------------------------------------- */
.contact-hero{
    padding-top: 95px;
    background-color: var(--light-gray);
    overflow: hidden;
}
.contact-hero .contact-title-section .contact-hero-shape {
    width: 8vw;
    position: absolute;
    left: 0;
    bottom: -34%;
    opacity: 0.2;
}
.contact-hero .contact-title-section .contact-hero-shape-2 {
    position: absolute;
    right: 1.5%;
    width: 60px;
    top: 108%;
    width: 50px;
}
.contact-hero .contact-hero-h{
    color: #EDEDED;
    font-weight: 900;
    line-height: 1.2;
    font-size: 8.2vw;
    letter-spacing: 20px;
    text-transform: uppercase;
}
.map-section-div {
    background-color: #fff;
    position: relative;
    margin-top: -24%;
    padding: 4%;
}
.contact-hero .map-section{
    position: relative;
    padding-top: 21%;
}
.contact-hero .map-section::after{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: radial-gradient(circle, rgb(255 255 255 / 28%) 0%, rgb(255 255 255) 50%, rgb(255 255 255) 100%);
    pointer-events: none;
    border: 1px solid var(--dark-gray);
}

.contact-hero .contact-section .row {
    padding: 10px;
    border-radius: 15px;
    box-shadow: 
        0px 4px 4px 0px #1622330A,
        0px 4px 24px 0px #1622330A,
        0px 24px 24px 0px #1622330A,
        0px 32px 32px 0px #1622330A,
        0px 64px 64px 0px #1622331F,
        0px 120px 120px 0px #16223314;
    position: relative;
    z-index: 1;
    background: #fff;
    /* margin-top: -25%; */
}
.contact-hero .form-section {
    padding: 30px 35px;
    padding-right: 50px;
}
.contact-hero .info-section {
    background-image: url(../images/info-section-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}
.contact-hero .info-section-shape {
    position: absolute;
    right: 0px;
    top: 15px;
    width: 10.42vw;
}
.contact-hero .info-section .info-section-h {
    font-size: 1.6vw;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}
.contact-hero .form-control {
    border: none;
    border-bottom: 1px solid var(--dark-gray);
    border-radius: 0;
    padding-left: 0;
    box-shadow: none;
    padding-bottom: 12px;
    margin-top: 35px;
}
.contact-hero .form-control:focus {
    border-bottom: 1px solid var(--primary);
    box-shadow: none;
}
.contact-hero .form-control::placeholder{
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--dark-gray);
    font-weight: 400;
}
.contact-hero .btn-submit {
    background-color: var(--primary);
    border: none;
    padding: 14px 80px;
    border-radius: 15px;
    color: #fff;
    font-weight: 500;
    margin-top: 35px;
    font-size: 0.95rem;
    line-height: 1;
}
.contact-hero .btn-submit:hover {
    background-color: var(--black);
}
.contact-hero .info-section-box p {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.5;
}
.contact-hero .info-section-box i {
    font-size: 18px;
}
.contact-hero .info-section-box .box {
    display: flex;
    gap: 20px;
}
.contact-hero .info-section-box .name{
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1;
}
.contact-hero .info-section-box .main-p{
    color: #fff;
}
.info-section-box {
    margin-top: 8%;
    width: 90%;
}
.contact-hero .info-section-box .box:not(:last-child) {
    display: flex;
    gap: 20px;
    padding-bottom: 27px;
    border-bottom: 1px solid #F36E9B;
    margin-bottom: 32px;
}
.contact-hero .contact-title-section{
    position: relative;
}

.location-inner {
    display: flex;
    justify-content: space-between;
}

.location-inner a {
    font-size: 14px !important;
}

.info-section-box .main-p {
    font-size: 13px !important;
}

.info-section-box .name {
    font-size: 16px !important;
}

.location-inner div {
    width: 48%;
}
.location-inner div > p{
    margin-bottom:5px !important
}
.location-inner div:nth-of-type(1) {
  border-right: 1px solid #F36E9B;
}


/* -----------------------------------portfolio details page css----------------------------------- */
.inner-hero .gallery-container{
    position: unset;
    transform: unset;
}
.inner-hero .gallery-container .large-image{
    height: 100%;
}
.inner-hero .gallery-container .large-image img{
    height: 100%;
    object-fit: cover;
}
.inner-hero .gallery-container .small-image img {
    aspect-ratio: 2;
}

.gallery-search-box .search-box{
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 8%;
}
.gallery-search-box .search-box .heading-p{
    color: var(--black-dark);
}
.gallery-search-box form{
    width: 100%;
}
.gallery-search-box form select{
    width: 100%;
    border: 1px solid var(--dark-gray);
    padding: 12px 14px;
    border-radius: 15px;
}

.portfo-gallery{
    position: relative;
}
.portfo-gallery .portfo-gallery-shape {
    position: absolute;
    left: 18%;
    top: -25px;
    width: 24vw;
    z-index: -1;
}
.portfo-gallery .main-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.portfo-gallery .items{
    margin-bottom: 50px;
}
.portfo-gallery .items.big-box{
    aspect-ratio: 69 / 103;
}
.portfo-gallery .items.small-box{
    aspect-ratio: 92 / 63;
}
.portfo-gallery .items img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 100%;
}
.portfo-gallery .items .heading-1{
    font-size: 8.854vw;
    line-height: 1;
    color: var(--black-dark);
    font-family: "Lavishly Yours", cursive;
}
.portfo-gallery .items .content-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    height: 100%;
}
.portfo-gallery .items .heading-2{
    font-size: 4.167vw;
    line-height: 1;
    color: var(--primary);
    font-family: "Lavishly Yours", cursive;
    text-align: end;
}
.portfo-gallery .items .main-p{
    line-height: 2;
    color: var(--black-dark);
}
.portfo-gallery .items.overlay{
    position: relative;
}
.portfo-gallery .items.overlay::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 80%;
    width: 100%;
    background: linear-gradient(to top, #ffffff, #ffffff99, #ffffff00);
}
.portfo-gallery .items .content-box-2 .gallery-icon {
    width: 20%;
    height: auto;
    margin: auto;
}
.portfo-gallery .items .content-box-2 .content-box-2-p{
    color: var(--black-dark);
    font-size: 3.125vw;
    font-family: "Lavishly Yours", cursive;
    line-height: 1.4;
}
.portfo-gallery .items .content-box-2 .gallery-btn {
    color: var(--black-dark);
    padding: 18px 42px;
    border-radius: 15px;
    border: 1px solid #564147;
    margin: auto;
    display: block;
    width: max-content;
    line-height: 1;
    margin-top: 30px;
}
.portfo-gallery .items.big-box .content-box-2{
    height: 100%;
    align-content: center;
}

/* ----------------------------quote-section css------------------------------- */
.quote-section{
    position: relative;
}
.quote-section .quote-section-shape {
    position: absolute;
    left: 0;
    top: -30px;
    width: 11.41vw;
}
.quote-section .quote-p{
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--black-dark);
    text-align: center;
}
.quote-section .main-p {
    text-transform: uppercase;
    color: var(--black);
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}
.quote-section .main-p span{
    width: 80px;
    height: 1px;
    background-color: var(--dark-gray);
    display: block;
}
.quote-section .quote-2{
    width: 5.208vw;
    margin-bottom: 3%;
}

.cta-3{
    background-color: var(--black-dark);
    position: relative;
}
.cta-3 .cta-3-shape-1{
    position: absolute;
    left: 0;
    top: 0;
    width: 14.063vw;
}
.cta-3 .cta-3-shape-2{
    position: absolute;
    right: 0;
    top: 0;
    width: 14.063vw;
    transform: scaleX(-1);
}
.cta-3 .cta-3-img{
    width: 34.635vw;
    height: auto;
}
.cta-3 .cta-3-h {
    font-size: 6.25vw;
    color: #fff;
    line-height: 1;
    text-align: end;
    width: max-content;
    padding-left: 10%;
}
.cta-3 .cta-3-h.cta-3-h-2{
    padding-left: 20%;
}
.cta-3 .cta-3-h span{
    font-size: 4.167vw;
    font-family: "Lavishly Yours", cursive;
}
.cta-3 .img-box{
    text-align: end;
    padding-right: 10%;
}
.cta-3 .content-box{
    position: relative;
}
.cta-3 .content-box::after{
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background-color: #fff;
}
.cta-3 .content-box a {
    color: var(--primary);
    display: block;
    text-transform: uppercase;
    width: max-content;
    margin-left: auto;
    padding-right: 39%;
    margin-top: 25px;
}

.big-marquee-box{
    overflow: hidden;
    background-color: #564147;
}
.big-marquee-box .home-skills-box .marquee-box{
    overflow: hidden;
    width: calc(100% - 20%);
}
.big-marquee-box .home-skills-slider.marquee-content {
    display: inline-flex;
    white-space: nowrap;
    animation: marqueeMove 40s linear infinite;
}
.big-marquee-box .home-skills-slider.marquee-content .items {
    margin: 0 35px;
}
.big-marquee-box .marquee-content-p {
    font-size: 4.167vw;
    text-transform: uppercase;
    color: var(--black-dark);
    line-height: 1.2;
    margin-bottom: 0;
    font-weight: 900;
}
@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ----------------------------------------service details page css------------------------------------- */
.service-dtl-1{
    position: relative;
}
.service-dtl-1 .service-dtl-1-shape-1 {
    position: absolute;
    left: 3%;
    top: 0;
    width: 7vw;
}
.service-dtl-1 .service-dtl-1-shape-2 {
    position: absolute;
    right: 2%;
    bottom: -75px;
    width: 7vw;
    z-index: -1;
}
.service-dtl-1 .main-p{
    color: var(--black-dark);
    font-weight: 400;
}

.service-dtl-2 .box .heading-p{
    color: #000;
    font-weight: 400;
}
.service-dtl-2 .box.btm-line{
    position: relative;
    padding-bottom: 12%;
    margin-bottom: 12%;
}
.service-dtl-2 .box.btm-line::after{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 30%;
    height: 1px;
    background-color: var(--dark-gray);
}
.service-dtl-2 .col-div-1, .service-dtl-2 .col-div-2, .service-dtl-2 .col-div-3 {
    padding-left:3%;
}
.service-dtl-2 .heading-box {
    position: relative;
    padding-bottom: 15%;
}
.service-dtl-2 .heading-box img{
    position: absolute;
    right: 0;
    top: -50%;
    width: 7.5vw;
}

.how-work{
    position: relative;
}
.how-work .main-video iframe{
    aspect-ratio: 264 / 133;
    object-fit: cover;
}
.how-work .how-work-shape-1 {
    position: absolute;
    left: 0;
    top: 7%;
    width: 10.58vw;
}
.how-work .how-work-shape-2 {
    position: absolute;
    right: 0;
    bottom: -4%;
    width: 10.58vw;
    transform: scaleX(-1);
}
.how-work .how-work-img{
    border-radius: 15px;
}
.content-box .box{
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
}
.content-box .box .main-p{
    width: calc(100% - 30% - 25px);
    margin-bottom: 3%;
}
.content-box .box .right {
    height: 100%;
    border-bottom: 1px solid #000;
    width: 30%;
    padding: 20px 0;
}
.content-box .box .right a{
    display: flex;
    align-items: center;
    color: #000;
}
.content-box .box .right a img{
    width: 16px;
    margin-right: 12px;
}

.latest-video{
    overflow: hidden;
}
.latest-video video{
    width: 100%;
    aspect-ratio: 1.778;
}
.latest-video .video-container{
    padding-right: 0;
    padding-left: 0;
}
.latest-video .vide-box {
    margin-bottom: -6px;
    position: relative;
    height: 100%;
    aspect-ratio: 5 / 3;
    width: 100%;
}

.latest-video .vide-box .video-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(255 255 255 / 48%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: pulse 1.5s infinite ease-in-out;
}
.latest-video .vide-box .video-icon::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 16px solid #ffffff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    left: 50%;
    transform: translateX(-30%);
}
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.service-dtl-3{
    position: relative;
}
.service-dtl-3 .service-dtl-3-shape-1 {
    position: absolute;
    left: -5%;
    top: 6%;
    opacity: 0.2;
    width: 10vw;
}
.service-dtl-3 .service-dtl-3-shape-2 {
    position: absolute;
    right: 0%;
    top: 60%;
    transform: translateY(-50%);
    width: 10vw;
    z-index: -1;
}
.service-dtl-3 .content-box{
    background-image: url(../images/info-section-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    padding: 30px;
}
.service-dtl-3 .content-box .sub-heading {
    line-height: 1.4;
}
.service-dtl-3 .content-box .heading-p {
    line-height: 1.8;
    margin-top: 18px;
}
.service-dtl-3 .content-box .img-box{
    text-align: center;
}
.service-dtl-3 .content-box .img-box img{
    width: 18.23vw;
    margin-top: 4%;
}
.service-dtl-3 .row {
    border-radius: 15px;
    overflow: hidden;
}

/* ----------------------------------------country slider-------------------------------------- */

.service-portfolio{
    overflow: hidden;
}
.service-portfolio-slider .item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    z-index: 1;
}
.service-portfolio-slider .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    max-height: 600px;
}
.service-portfolio-slider .owl-stage-outer {
    border-radius: 12px;
}
.service-portfolio-slider .text-box {
    position: absolute;
    bottom: 30px;
    width: 100%;
    color: white;
    font-size: 16px;
    text-align: left;
    z-index: 1;
}
.service-portfolio-slider .text-box .countries-slider-h{
    background: linear-gradient(90deg, rgba(227, 7, 124, 0) 0%, rgba(227, 7, 124, 0.88) 51.13%, rgba(227, 7, 124, 0) 100%);
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: underline;
    text-align: center;
    text-decoration-color: #fff;
    text-underline-offset: 5px;  
    padding: 10px 0;
}
.service-portfolio-slider .text-box .countries-slider-h a{
    color: #fff;
}
.countries-section{
    position: relative;
}
.countries-section .countries-shape {
    position: absolute;
    right: 0;
    top: 23%;
    width: 21vw;
}

/* ----------------------------------------------Service page css------------------------------------ */

.service-2 .service-card {
    border: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 0 60px;
    padding-bottom: 15px;
}
.service-2 .service-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(66, 66, 66, 0.45) 0px 25px 20px -20px;
}
.service-2 .card-body {
    padding: 0;
    padding-bottom: 25px;
}
.service-2 .card-body img{
    width: 5.677083vw;
}
.service-2 .card-h{
    color: var(--black);
    font-weight: 400;
}
.service-2 .col-div{
    position: relative;
}
.service-2 .col-div::after{
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--dark-gray);
    width: 1px;
    height: 60%;
    opacity: 0.7;
}
.service-2 .col-div:last-child:after{
    display: none;
}

/* ---------------------------------------destination-section css----------------------------------- */

.destination-section .container-fluid{
    padding-left: 0;
}
.destination-section .main-p{
    color: var(--black-dark);
    font-weight: 400;
}
.destination-section .box.box:not(:last-child){
    margin-bottom: 30px;
}
.destination-section .medium-h{
    color: var(--black-dark);
    font-weight: 700;
}
.destination-section .img-box{
    position: relative;
}
.destination-section .img-box .destination-shape{
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 7.5vw;
}

/* -------------------------------------service-main css------------------------------------- */
.service-main{
    position: relative;
}
.service-main .service-main-shape {
    position: absolute;
    right: 0;
    top: -30px;
    width: 17vw;
}
.service-main .service-top .main-p {
    padding-left: 32%;
}
.service-main .box .main-p{
    padding-left: 6px;
}
.service-main .box .service-h{    
    padding-top: 15px;
    padding-bottom: 10px;
    font-weight: 400;
}
.service-main .box .service-h a{
    color: var(--black);
    transition: 0.4s;
}
.service-main .box:hover .service-h a{
    color: var(--primary);
}
.service-main .services-box{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    column-gap: 4%;
    row-gap: 60px;
}

/* ------------------------------------service-video css---------------------------------------------- */
.service-video{
    position: relative;
}
.service-video .service-video-shape {
    position: absolute;
    right: 50px;
    top: 20px;
    width: 9.30vw;
}
.service-video video {
    width: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
    border-radius: 15px;
}
.service-video .video-box{
    position: relative;
}
.service-video .video-box iframe{
    aspect-ratio: 2 / 0.9;
}
.service-video .video-box .play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5.625vw;
}
.service-video .video-box .video-heading{
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Lavishly Yours", cursive;
    color: #fff;
    font-size: 5.25vw;
}
/* .video-heading.typing::after {
    content: '|';
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
} */
.service-video .video-box .video-p{
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
    text-transform: uppercase;
    background-color: transparent;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}
.service-video .video-box .video-p .span-line{
    background-color: #fff;
    height: 1px;
    width: 60px;
}
body.popup-open {
    overflow: hidden;
}
.video-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    display: none;
    z-index: 9999;
}
.video-popup-inner {
    position: relative;
    max-width: 1000px;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    box-sizing: border-box;
    margin: auto;
    height: 100%;
    align-content: center;
}
.popup-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
}
button.close-video {
    border: none;
}

/* ---------------------cta-4 css------------------- */
.cta-4{
    position: relative;
}
.cta-4 .cta-4-text {
    position: absolute;
    bottom: 12%;
    right: 19%;
    font-weight: 400;
}
.cta-4 .cta-4-text a{
    color: #fff;
    transition: 0.4s;
}
.cta-4 .cta-4-text a:hover{
    color: var(--primary);
}

/* ---------------------------------------------service 1 css----------------------------------------------- */
.service-1{
    position: relative;
}
.service-1 .service-1-shape {
    position: absolute;
    top: 0;
    left: 21%;
    width: 7vw;
}
.service-1 .service-1-box {
    display: flex;
    align-items: center;
    gap: 4%;
}
.service-1 .sidebar {
    width: 31%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-1 .sidebar ul {
    list-style: none;
    padding: 0;
}
.service-1 .sidebar ul li {
    cursor: pointer;
    position: relative;
    color: var(--black-dark);
    font-size: 2.604vw;
    line-height: 1.2;
    font-weight: 600;
    padding-bottom: 40px;
}
.service-1 .sidebar ul li:not(:last-child){
    border-bottom: 1px solid var(--dark-gray);
    margin-bottom: 40px;
}
.service-1 .sidebar ul li::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ccc;
}
.service-1 .sidebar ul li:hover::after,
.service-1 .sidebar ul li.active::after {
    transition: all 3s ease;
    width: 100%;
    background: var(--black-dark);
}
.service-1 .content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65%;
}
.service-1 .content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    display: none;
}
.service-1 .content img.active {
    display: block;
}

/* -------------------------------------------tab content css-------------------------------------------- */
.location-main{
    position: relative;
}
.location-main .location-main-shape-1 {
    position: absolute;
    top: 80px;
    left: 7%;
    width: 70px;
}
.location-main .location-main-shape-2{
    position: absolute;
    top: 40px;
    right: 1%;
    width: 14.06vw;
}
.location-tab .tabs {
    display: flex;
    gap: 10px;
    justify-content: space-around;
    border: 1px solid var(--dark-gray);
    border-radius: 15px;
    padding: 18px;
    text-align: center;
}
.location-tab .tab-button {
    border: none;
    cursor: pointer;
    background: transparent;
    padding: 0;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--black-dark);
    position: relative;
    width: 100%;
}
.location-tab .tab-button.active {
    color: var(--primary);
    position: relative;
}
.location-tab .tab-button.active::after {
    position: absolute;
    content: "";
    width: 25%;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
    background-color: var(--primary);
    border-radius: 30px;
}
.location-tab .tab-button::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 80%;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-color: var(--dark-gray);
}
.location-tab .tab-button:last-child:before{
    display: none;
}
/* .location-tab .tab-content {
    display: none;
} */
.location-tab .tab-content.active {
    display: block;
}

.tab-content .content-box .main-p{
    color: #000;
}
.tab-content .content-box .tab-content-h{
    font-size: 1.8rem;
    color: var(--black-dark);
    line-height: 1.5;
    font-weight: 600;
}
.tab-content .tab-content-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4.5%;
    row-gap: 40px;
    margin-bottom: 25px;
}
.tab-content .tab-content-box .main-p{
    color: var(--black);
    padding-top: 15px;
    margin-bottom: 0;
    text-transform: uppercase;
    text-align: center;
}
.tab-content .tab-content-box img{
    object-fit: cover;
    aspect-ratio: 172 / 165;
    border-radius: 8px;
}
.tab-content .tab-content-box a{
    display: block;
}

/* ---------------------------------location-why-choose css---------------------------------- */

.location-why-choose-top .main-p {
    padding-left: 32%;
}
.location-why-choose-top {
    position: relative;
}
.location-why-choose-top .location-why-shape {
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translateY(-50%);
    width: 8.854vw;
    opacity: 0.8;
}
.location-why-choose .content-box{
    background-color: var(--light-gray);
    border-radius: 15px;
    padding: 25px 18px 16px;
    height: 100%;
}
.location-why-choose .content-box .main-p{
    color: var(--black-dark);
}
.location-why-choose .content-box .icon-image {
    height: 10.42vw;
    width: auto;
}
.location-why-choose .content-box .main-heading{
    margin-top: 0 !important;
}

/* -------------------------------------faq section css---------------------------------- */
.faq{
    position: relative;
    overflow: hidden;
}
.faq .faq-shape {
    position: absolute;
    right: 28px;
    top: 13%;
    width: 5.65vw;
    transform: rotate(90deg);
}
.faq .accordion-item {
    background: #FAF6F6;
    border: none;
    padding: 16px 28px;
    padding-right: 15px;
}
.faq .accordion-item:not(:last-child){
    margin-bottom: 25px;
}
.faq-accordian .accordion-button {
    color: var(--black-dark);
    padding: 0;
    background: transparent;
    box-shadow: none;
    padding-right: 50px;
    font-weight: 400;
}
.faq-accordian .accordion-button:focus {
    box-shadow: none;
}
.faq .accordion-body {
    padding: 0px 0px;
    padding-top: 18px;
    font-size: 0.9rem;
    color: var(--black-dark);
    line-height: 2;
    font-weight: 400;
}
.faq .accordion-body .heading-p{
    color: var(--black-dark);
    width: 100%;
    margin-top: 0;
    font-weight: 400;
}
.faq-accordian .accordion-button.collapsed:after {
    background-image: url('https://storeyourcode.com/demo/gproduction/wp-content/uploads/2025/06/plus.png');
    box-shadow: none;
    background-color: transparent;
}
.faq-accordian .accordion-button:after {
    background-image: url('https://storeyourcode.com/demo/gproduction/wp-content/uploads/2025/06/minus.png');
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    transition: 0.4s;
    height: 35px;
    width: 35px;
    background-position: center;
}
.faq .content-box {
    position: sticky;
    top: 70px;
}

/* -----------------------------our-services section css---------------------------- */
.our-services-slider{
    padding-left: 50px;
    padding-top: 20px;
}
.our-services-slider .item {
    scroll-snap-align: start;
    overflow: hidden;
    color: #fff;
    position: relative;
    border-radius: 8px;
}
.our-services-slider .item:after{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, #e3077cb0, #e3077c69, #e3077c00);
    z-index: 0;
}
.our-services-slider .item > img{
    aspect-ratio: 35 / 44;
    object-fit: cover;
}
.our-services-slider .text-overlay {
    padding: 15px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
}
.our-services-slider .item-small-a {
    background-color: #DEDEDE40;
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 20px;
}
.our-services-slider .item-small-a img{
    width: auto;
    filter: invert(1);
}

/* ------------------------------location details page---------------------------------- */
.location-details .location-tab .tab-content {
    display: block;
}
.location-details .tab-content .tab-content-box{
    gap: 65px;
    margin-bottom: 0;
}

/* -------------------------------------------------venue page css---------------------------------------------- */
.venue-main .img-box{
    padding-right: 30px;
}
.venue-main .img-box img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    aspect-ratio: 1.04 / 1;
}
.venue-main .content-box .venue-h{
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--black-dark);
    margin-bottom: 0;
}
.venue-main .content-box {
    padding: 25px 0;
}
.venue-main .venue-detail{
    display: flex;
    gap: 70px;
    justify-content: space-between;
    border-bottom: 1px solid #CACACA;
    padding: 22px 0;
}
.venue-main .venue-detail-box .venue-detail:last-of-type{
    border-bottom: none;
}
.venue-main .venue-detail-box{
    padding: 20px 0;
}
.venue-main .left, .venue-main .right{
    display: flex;
    gap: 30px;
    justify-content: space-between;
    width: 50%;
    text-align: end;
}
.venue-main .details, .venue-main .name{
    margin-bottom: 0;
    line-height: 1.3;
}
.venue-main .details, .venue-main .details{
    color: #000;
}
.venue-main .price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 15px;
}
.venue-main .price-box .price{
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: end;
}
.venue-main .price-box .price .price-value{
    font-size: 2.6041vw;
    font-weight: 800;
    color: #000;
    line-height: 1;
}
.venue-main .price-box .price .price-start{
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.4;
}
.venue-main .venue-p{
    color: #000;
}

/* ----------------------------------------------------blog listing page css-------------------------------------- */

.blog-main .content-box {
    height: 100%;
    padding-left: 70px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    justify-content: center;
}
.blog-main .content-box .arrow-img {
    position: absolute;
    bottom: 0;
    filter: invert(1);
    right: 0;
    max-width: 25px;
}
.blog-main .content-box .bottom {
    width: 95%;
}
.blog-main .content-box .main-p{
    color: var(--black-dark);
}
.blog-main .content-box .medium-h {
    color: #000;
    font-weight: 400;
}
.blog-main .content-box .main-heading a{
    color: var(--black);
}
.blog-main .img-box img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1.12 / 1;
}
.blog-main .row {
    position: relative;
    padding: 40px 0;
}
.blog-main .row::after {
    content: "";
    position: absolute;
    width: calc(100% - 24px);
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background-color: var(--dark-gray);
}
.blog-main .row:last-child:before {
    content: "";
    position: absolute;
    width: calc(100% - 24px);
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-color: var(--dark-gray);
}

.blog-top-section .medium-h{
    color: var(--dark-gray);
    font-weight: 400;
}
.blog-top-section .custom-dropdown {
    position: relative;
    display: inline-block;
    font-family: sans-serif;
    font-size: 16px;
    color: var(--dark-gray);
}
.blog-top-section .custom-dropdown select {
    background: transparent;
    border: none;
    color: var(--dark-gray);
    padding-right: 20px;
    cursor: pointer;
    font-size: 1.25rem;
}
.blog-top-section .custom-dropdown select:focus-within{
    outline: none;
    border: none;
}
.blog-top-section .content-box{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
}

/* ---------------------------------blog-detail page css------------------------------ */
.blog-heading-ul{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    background-color: #FDFDFD;
    border: 1px solid #F4F4F4;
    border-radius: 4px;
    position: sticky;
    top: 75px;
}
.blog-heading-ul li{
    padding: 20px 20px;
}
.blog-heading-ul li.active{
    background-color:#95959530;
}
.blog-heading-ul li.active a{
    font-weight: 600;
}
.blog-heading-ul a{
    color: var(--black-dark);
}
.blog-detail .content-box{
    padding-left: 40px;
}
.blog-detail .content-box img{
    max-width: 100%;
    margin: 40px 0;
}
.blog-detail .content-box p, .blog-detail .content-box, .blog-detail .content-box ul li, .blog-detail .content-box ol li{
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #000;
    font-weight: 400;
}
.blog-detail .content-box h1, .blog-detail .content-box h2, .blog-detail .content-box h3, .blog-detail .content-box h4,
.blog-detail .content-box h5, .blog-detail .content-box h6{
    color: var(--black-dark);
    font-weight: 600;
    line-height: 1.4;
}

.blog-bottom-sec{
    margin-top: 50px;
    padding: 50px 0;
}
.blog-bottom-sec .main-p{
    color: #82766C;
}
.blog-bottom-sec .heading-p{
    color: #000;
}
.blog-bottom-sec .heading-p.blog-bottom-name{
    color: var(--black);
}
.blog-bottom-sec .blog-bottom-heading {
    font-size: 2.9167vw;
    color: #82766C;
    line-height: 1.2;
    font-style: italic;
    font-weight: 600;
}
.blog-bottom-sec .container{
    position: relative;
}
.blog-bottom-sec .container .blog-bottom-sec-shape{
    position: absolute;
    top: 0;
    left: 0;
    width: 8.3333vw;
}

.blog-detail-hero .inner-hero-h {
    font-size: 2rem;
    letter-spacing: 2px;
    line-height: 1.3;
}
/* ------------------------------venue popup form--------------------- */

.popup-form-1{
    max-width: 700px;
}
.popup-form-1 .form-group{
	margin-bottom: 25px;
}
.popup-form-1 .form-group > label {
    display: block;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 4px;
}
.popup-form-1 .custom-control-label{
	color: var(--black);
	font-size: 16px;
}
.popup-form-1 .form-control{
	height: 50px;
	background: #ecf0f4;
	border-color: transparent;
	padding: 0 15px;
	font-size: 14px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.popup-form-1 .form-control:focus{
	border-color: var(--primary);
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
	box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}
.popup-form-1 textarea.form-control{
	height: 160px;
	padding-top: 15px;
	resize: none;
}
.popup-form-1 .form-control::placeholder{
    font-size: 14px;
    color: #a7a7a7;
}
.popup-form-1 .modal-body {
    padding: 30px;
}
.popup-form-1 .btn-4{
    border: none;
}
.popup-form-1 .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 13px;
}
.popup-form-1 .main-heading {
    font-weight: 600;
    margin-bottom: 20px;
}

/* ------------------------------venue popup form--------------------- */

/* -------------------------------------awards page css------------------------------------- */
.award-section .content-box .img-box {
    position: relative;
    margin-top: -27%;
}
.award-section .content-box {
    text-align: center;
    /* border: 1px solid var(--dark-gray); */
    padding: 30px;
    border-radius: 16px;
    background-color: var(--light-gray);
    transition: 0.4s;
}
.award-section .content-box:hover {
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px,
     rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px,
      rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}
.award-section .content-box .award-1{
    max-width: 160px;
    display: block;
    margin: auto;
}
.award-section .content-box .award-logo-1{
    max-width: 130px;
    margin-top: 30px;
}
.award-section .content-box .award-date{
    margin-top: 15px;
    color: var(--primary);
    font-weight: 400;
}
.award-section .content-box .award-section-h {
    margin-top: 15px;
}
.award-section .content-box .main-p{
    font-weight: 900;
    color: var(--black);
}