:root {
    --swiper-navigation-size: 20px;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    box-sizing: border-box;
}

body {
    background-color: #fdfdfd;
    font-family: "Gilroy", sans-serif;
}

body.active {
    overflow: hidden;
}

ul,li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

section {
    margin-bottom: 80px;
}

.navbar {
    position: fixed;
    z-index: 20;
    width: 100%;
    transition: all 0.6s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

.navbar.active::before {
    opacity: 1;
    backdrop-filter: blur(6px);
}


.navbar-collapse {
    transition: all 0.3s ease;
}

.navbar .navbar-brand {
    z-index: 21;
    transition: all 0.4s ease;
    width: 120px;
    height: 100%;
    padding: 10px 0;
}

.navbar .navbar-brand img {
    width: 100%;
    height: 100%;
}


@keyframes logo {
    0% {
        transform: scale(1);
    }

    5% {
        transform: scale(1.1);
    }

    10% {
        transform: scale(0.9);
    }

    15% {
        transform: scale(1.1);
    }

    20% {
        transform: scale(0.9);
    }

    25% {
        transform: scale(1);
    }

    30% {
        transform: translateY(0);
    }

}

.navbar .nav-item {
    position: relative;
    color: #fff;
    line-height: 1;
    transition: all 0.3s ease;
    font-size: 17px;
    font-weight: bold;
    /* text-transform: uppercase; */
}

.navbar .nav-item::after {
    position: absolute;
    content: '';
    bottom: -10px;
    left: 0%;
    right: 0%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    -webkit-transition: all, 0.2s;
    transition: all, 0.2s;
    margin: 0 9px;
}

.navbar .nav-item:hover::after {
    transform: scaleX(1);
}

.navbar .navbar-nav .nav-link {
    color: rgb(255, 255, 255, 0.85);
}

.navbar.active .nav-item {
    color: #fff;
}

.navbar.active .nav-item::after {
    background-color: #fff;
}

.navbar.active .navbar-nav .nav-link {
    color: rgb(255, 255, 255, 0.85);
}

/* .navbar.active .navbar-brand {
    color: #fff; 
} */

.navbar .navbar-toggler {
    color: rgba(255,255,255,.55);
    border-color: rgba(255,255,255,.1);
    z-index: 21;
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.active .navbar-toggler {
    color: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar.active .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mainslide.swiper {
    width: 100%;
    height: 90vh;
}

.mainslide .swiper-wrapper {
    position: relative;
}

.mainslide .swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.mainslide .swiper-slide img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 9;
    animation: slidescale 6s ease-in-out infinite;
}

@keyframes slidescale {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.mainslide .swiper-slide .slidertext {
    position: absolute;
    left: auto;
    color: #fff;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    text-align: start;
}

.mainslide .swiper-slide .slidertext h1 {
    font-weight: 700;
    font-size: 50px;
}

.mainslide .swiper-pagination {
    width: auto;
    left: auto;
    bottom: 5%;
}

.mainslide .swiper-pagination-bullet {
    width: 20px !important;
    height: 20px !important;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #fff;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.mainslide .swiper-pagination-bullet-active {
    background: #fff;
    color: #000;
}

.mainslide .swiper-slide .slidertext{
    display: none;
}

.mainslide .swiper-slide.swiper-slide-active .slidertext{
    display: block;
}

.mainslide .swiper-button-next,
.mainslide .swiper-button-prev {
    position: absolute;
    top: 80%;
    left: auto;
    right: auto;
    color: #000;
    background-color: #fff;
    padding: 25px;
    border-radius: 50%;
    z-index: 11;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 1); 
}

.mainslide .swiper-button-next:hover,
.mainslide .swiper-button-prev:hover {
    color: #fff;
    background-color: rgb(208, 97, 33);
    border: 1px solid rgba(255, 255, 255, 0.5); 
}

.swiper-button-prev:after,
.swiper-button-next:after {
    content: '';
}

.mainslide .swiper-button-next {
    margin-left: 70px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.callbtn {
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(3rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.callbtn:hover,
.callbtn:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

.callbtn:hover {
  transform: translateY(-1px);
}

.callbtn:active {
  background-color: #F0F0F1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}

.callbtn img {
    margin-right: 10px;
}

.dropdown-menu {
    border-radius: 0px;
    margin-left: 9px;
}


#about .about-bg {
    position: relative;
    background-image: url("/images/gallerybg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    width: 100%;
    height: 600px;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 79%);
}

#about .about-bg::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

#about .about-bg p {
    position: absolute;
    top: 35%;
    color: #fff;
    font-weight: 700;
    font-size: 50px;
    z-index: 9;
}

#about h2 {
    font-weight: 500;
}

#about .about-text p {
    text-align: justify;
}

#about .about-text .abouthead {
    display: flex;
    align-items: center;
}

#about .row {
    gap: 50px;
    align-items: center;
}

#about .about-video {
    position: relative;
}

#about .about-video .image-container {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

#about .about-video .image-container::after {
    position: absolute;
    content: '';
    inset: 0;
    border: 2px solid #fff;
    border-radius: 15px;
    z-index: 9;
    margin: 10px !important;
}

#about .about-video img {
    position: relative;
    display: block;
    width: 600px;
    height: 450px;
    border-radius: 20px;
    z-index: 6;
}

#about .about-video::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

#about .about-video .videoicon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: rgb(208, 97, 33);
    font-size: 50px;
    z-index: 9;
}

#about .about-video .videocircle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100px;
    height: 100px;
    background-color: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    z-index: 9;
    opacity: 0.9;
}

#about .about-video .videocircle::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100px;
    height: 100px;
    background-color: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    animation: videocircle 1.5s ease infinite;
    z-index: 9;
}


@keyframes videocircle {
    from {
        opacity: 1;
        transform: translate(-50%,-50%) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(-50%,-50%) scale(1.8);
    }
}

#about .about-video span {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
    font-weight: bold;
    color: #fff;
    font-size: 18px;
    z-index: 9;
}

#about .about-video .image-container .overlay {
    position: absolute;
    background: rgb(34,193,195);
    background: linear-gradient(0deg, rgba(34,193,195,0.5) 0%, rgba(253,187,45,0.7) 100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    border-radius: 20px;
}

#about .line-container {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

#about .line-text {
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    background: #fdfdfd;
    padding: 0 30px;
    font-size: 28px;
    font-weight: 700;
}



#gallery {
    margin: 80px 0 110px 0;
}

#gallery h1 {
    font-weight: 500;
}

#gallery .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 5%;
}

#gallery img {
    height: 300px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.5s ease;
}

#gallery .image-container .overlay {
    position: absolute;
    background: #332828;
    background: linear-gradient(0deg, rgba(51, 40, 40, 1) 0%, rgba(237, 221, 83, 0) 100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
}

#gallery a:hover img {
    transform: scale(1.1);
}

#gallery .owl-carousel {
    position: relative;
    border-radius: 5%;
}

#gallery .owl-dots {
    position: absolute;
    bottom: -50px;
    left: 0;
}

#gallery .owl-dots .owl-dot span {
    background-color: #6effad;
    width: 20px;
    height: 20px;
}

#gallery .owl-dots .owl-dot.active span{
    background-color: #168847;
}



#services {
    background-color: #000;
    overflow: hidden;
}

#services .service-image1{
    position: relative;
    height: 500px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 71% 100%, 0% 100%);
    flex: 0 0 auto;
    width: 58.33333333%;
}

#services .service-image1::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
}

#services .service-image1 img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 71% 100%, 0% 100%);
}

#services .service-image2{
    position: relative;
    height: 500px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 29% 100%);
    flex: 0 0 auto;
    width: 58.33333333%;
}

#services .service-image2::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
}

#services .service-image2 img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 29% 100%);
}

#services .service-text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 55px;
    width: 100%;
}

#services p {
    color: #fff;
    font-weight: bold;
    font-size: 45px;
}

#services .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 43, 43, 0.2);
    z-index: 10;
}



#whyus {
    background-image: linear-gradient( 180.7deg,  rgb(219, 247, 253) 2.5%, rgba(79,255,255,1) 97.7% );
    /* background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%); */
    height: 100%;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

#whyus h1 {
    font-weight: 700;
    font-size: 50px;
}

#whyus .whyus-list {
    margin-top: 50px;
}

#whyus .whyus-list li {
    position: relative;
    font-size: 30px;
}

#whyus .whyus-list li::before {
    content: '';
    display: inline-block;
    height: 50px;
    width: 50px;
    background-image: url("/images/whyus-icon.png");
    background-size: 100%;
    vertical-align: middle;
    margin: 10px 20px 10px 0;
}

#whyus .whyus-list li p {
    display: inline-block;
}



#blog {
    margin: 80px 0;
}

#blog .image-container {
    position: relative;
    overflow: hidden;
}

#blog img {
    height: 400px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

#blog .image-container .overlay {
    position: absolute;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0.9629318280046394) 0%, rgba(92,85,67,0.42231558150603987) 54%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.9629318280046394) 0%, rgba(92,85,67,0.42231558150603987) 54%);
    background: linear-gradient(0deg, rgba(0,0,0,0.9629318280046394) 0%, rgba(92,85,67,0.42231558150603987) 54%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#5c5543",GradientType=1); 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#blog .owl-carousel {
    position: relative;
}

#blog .image-container .blog-title {
    position: absolute;
    bottom: 10%;
    left: 10%;
    color: #fdfdfd;
    font-size: 30px;
    font-weight: 500;
    z-index: 10;
    transition: all 0.4s ease;
}

#blog .image-container .blog-details {
    position: absolute;
    bottom: 0;
    left: 10%;
    transform: translateY(100%);
    background-color: #F0F0F1;
    color: #000;
    border: 2px solid transparent;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
    z-index: 10;
    transition: all 0.4s ease;
}

#blog .owl-item:hover .image-container .blog-title {
    bottom: 30%;
}

#blog .owl-item:hover .blog-details {
    transform: translateY(0%);
    bottom: 10%;
}

#blog .owl-item:hover .image-container img {
    transform: scale(1.05);
    opacity: 1;
}

#blog .image-container .blog-details:hover {
    background-color: rgba(20, 146, 20, 0.5);
    border: 2px solid #fff;
    color: #fff;
}

#blog-page .blog-bg {
    position: relative;
    background-image: url("/images/cover.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 600px;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 79%);
}

#blog-page .blog-bg::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

#blog-page .blog-bg p {
    position: absolute;
    top: 35%;
    color: #fff;
    font-weight: 700;
    font-size: 50px;
    z-index: 9;
}

#blog-page .blog-content img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 50px;
}

#blog-page .blog-content h2{
    font-weight: 700;
}

#blog-page .blog-content ul,
#blog-page .blog-content ol {
    margin-bottom: 20px;
    padding-left: 0;
}

#blog-page .blog-content .wp {
    color: #fff;
    background-color: #25D366;
    font-weight: 700;
    font-size: 22px;
    border-radius: 10px;
    padding: 20px;
}

#blog-page .blog-content .wp:hover {
    background-color: #1cb153;
}

/* #blog-page .blog-content {
    text-align: justify;
} */


#contact .contact-bg {
    position: relative;
    background-image: url("/images/contactbg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    width: 100%;
    height: 600px;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 79%);
}

#contact .contact-bg::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

#contact .contact-bg p {
    position: absolute;
    top: 35%;
    color: #fff;
    font-weight: 700;
    font-size: 50px;
    z-index: 9;
}

#contact .contact-content .row .col-sm-4 {
    margin-top: 0;
}

#contact .contact-content img {
    width: 200px;
    margin-bottom: 20px;
}

#contact .contact-content h2{
    font-weight: 700;
}

#contact .contact-content ul,
#contact .contact-content ol {
    margin-bottom: 20px;
    padding-left: 0;
}

#contact .contact-content ul li a,
#contact .contact-content ul li p {
    color: #000;
    font-size: 25px;
    margin-bottom: auto;
}

#contact .contact-content .wp {
    display: inline-block;
    color: #fff;
    background-color: #25D366;
    font-weight: 700;
    font-size: 22px;
    border-radius: 10px;
    padding: 20px;
    width: fit-content;
    margin: auto;
}

#contact .contact-content .wp:hover {
    background-color: #1cb153;
}



#gallery-products .gallery-products-bg {
    position: relative;
    background-image: url("/images/gallerybg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    width: 100%;
    height: 600px;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 79%);
}

#gallery-products .gallery-products-bg::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

#gallery-products .gallery-products-bg p {
    position: absolute;
    top: 35%;
    color: #fff;
    font-weight: 700;
    font-size: 50px;
    z-index: 9;
}

#gallery-products .gallery-products-content h2{
    font-weight: 700;
}

#gallery-products .gallery-products-content ul,
#gallery-products .gallery-products-content ol {
    margin-bottom: 20px;
    padding-left: 0;
}

#gallery-products .gallery-products-content ul li a,
#gallery-products .gallery-products-content ul li p {
    color: #000;
    font-size: 25px;
    margin-bottom: auto;
}

#gallery-products .gallery-products-img {
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

#gallery-products .gallery-products-img img {
    width: 100%;
    height: 320px;
    filter: brightness(60%);
    transition: all 0.3s linear;
}

#gallery-products .gallery-products-img:hover img {
    filter: brightness(100%);
}


footer {
    position: relative;
    height: 100%;
    background-color: #fff;
    padding: 50px 0;
    font-size: 16px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgb(38, 155, 3);
}

footer .company h2 {
    font-weight: 700;
    margin-bottom: 14px;
}

footer .ul-list h4 {
    font-weight: 700;
}

footer .ul-list ul li {
    margin: 10px 0;
    word-wrap: break-word;
    transition: all 0.1s linear;
    width: fit-content;
}

footer .ul-list ul li a {
    text-decoration: none;
    font-size: 17px;
    color: #2e3236;
    transition: all 0.3s ease-in-out;
}

footer .main-links li a::before,
footer .blog-links li a::before {
    content: '→';
    color: #8c8c8c;
    position: absolute;
    transform: translateX(-100%);
    margin-left: -20px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

footer .ul-list ul li p {
    font-size: 17px;
    color: #2e3236;
    transition: all 0.3s ease-in-out;
    margin-bottom: auto;
    width: 300px;
}

footer .ul-list ul li a:hover {
    color: rgb(0, 0, 0);
}

footer .main-links ul li:hover a,
footer .blog-links ul li:hover a {
    margin-left: 20px;
}

footer .main-links li:hover a::before,
footer .blog-links li:hover a::before {
    transform: translateX(0);
    opacity: 1;
}

footer .ul-list ul li i {
    margin-right: 10px;
}

footer .siteby {
    width: 75px;
    margin-left: 10px;
}


.modal .modal-header {
    border: none;
    padding: 1rem 1rem 0rem 1rem;
}

.modal-content {
    border-radius: 0;
}



@media screen and (min-width:992px) {
    .navbar .container {
        transition: all 0.6s ease;
    }

    /* .navbar.active .container {
        padding: 20px;
    } */

    .modal .modal-dialog .modal-body iframe {
        height: 500px;
    }

    #blog-page .row,
    #about .about-content,
    #contact .contact-content,
    #gallery-products .gallery-products-content {
        margin-top: -100px;
    }

    footer .links .d-flex {
        gap: 80px;
    }
}


@media screen and (max-width:992px) {
    .navbar .container {
        transition: all 0.6s ease;
    }

    /* .navbar.active .container {
        padding: 20px;
    } */

    #about .row {
        flex-direction: column;
    }

    #about .about-video img {
        width: 100%;
    }

    .modal .modal-dialog .modal-body iframe {
        height: 500px;
    }

    #blog-page .row,
    #about .about-content,
    #contact .contact-content,
    #gallery-products .gallery-products-content {
        margin-top: -100px;
    }

    footer .company {
        width: 100%;
    }

    footer .links .d-flex {
        gap: auto;
        flex-direction: column;
    }

    footer .row {
        flex-direction: column;
    }

    footer .links .ul-list {
        margin: 10px 0;
    }

    #services p {
        color: #fff;
        font-weight: bold;
        font-size: 30px;
    }

    #blog-page .row {
        flex-direction: column;
    }
}

@media screen and (max-width:768px) {
    .navbar {
        height: 100px;
    }
    
    .navbar .navbar-brand {
        width: 50px !important;
    }

    .navbar .container {
        /* padding: 25px; */
        transition: all 0.6s ease;
    }

    /*.navbar.active .container {*/
    /*    padding-top: 20px;*/
    /*    padding-bottom: 20px;*/
    /*}*/

    .navbar-toggler {
        display: block !important;
    }

    .navbar .navbar-nav .nav-link {
        margin: 10px;
    }

    .navbar-collapse {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 1030;
        transform: translateX(-100%);
        opacity: 0;
        text-align: center;
        backdrop-filter: blur(6px);
    }
    
    .navbar-collapse.show {
        transform: translateX(0);
        opacity: 1;
    }
    
    #about .about-text p {
        width: 100%;
        font-size: 14px;
    }
    
    #about .about-video {
        position: static;
    }

    #about .about-text .abouthead {
        justify-content: center;
    }

    #about .about-video img {
        width: 100%;
        height: 300px;
    }

    #about .about-video .videoicon {
        font-size: 20px;
    }
    
    #about .about-video .videocircle {
        width: 50px;
        height: 50px;
    }

    #about .about-video .videocircle::before {
        width: 50px;
        height: 50px;
    }
    
    #about .about-video span {
        width: 80%;
        font-size: 14px;
    }
    

    #about .line-text {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: #fdfdfd;
        padding: 0 15px;
        font-size: 16px;
        font-weight: 700;
    }

    .modal .modal-dialog .modal-body iframe {
        height: 400px;
    }

    .mainslide.swiper {
        width: 100%;
        height: 70vh;
    }

    .mainslide .swiper-slide img {
        height: 70vh;
    }

    .mainslide .swiper-slide .slidertext {
        position: absolute;
        /* left: 15px; */
    }
    
    .mainslide .swiper-slide .slidertext h1 {
        font-weight: 700;
        font-size: 30px;
    }

    .mainslide .swiper-button-next,
    .mainslide .swiper-button-prev {
        position: absolute;
        top: 90%;
        /* left: 27px; */
        right: auto;
        padding: 23px;
        border-radius: 50%;
    }
    
    .mainslide .swiper-button-next {
        margin-left: 50px;
    }

    .mainslide .swiper-pagination {
        display: none;
    }

    #services .service {
        margin-bottom: 150px;
    }

    #services .service .d-flex {
        position: relative;
        flex-direction: column;
    }

    #services .service-image1{
        position: relative;
        height: 300px;
        overflow: hidden;
        clip-path:initial;
        flex: 1;
        width: auto;
    }
    
    #services .service-image1 img{
        width: 100%;
        height: 300px;
        object-fit: cover;
        clip-path:initial;
        z-index: 8;
    }
    
    #services .service-image2{
        position: relative;
        height: 200px;
        overflow: hidden;
        clip-path:initial;
        flex: 1;
        width: auto;
    }
    
    #services .service-image2 img{
        width: 100%;
        height: 300px;
        object-fit: cover;
        clip-path:initial;
        z-index: 8;
    }
    
    #services .service-text {
        position: absolute;
        bottom: -35%;
        padding: 15px;
        z-index: 14;
        background-color: #fff;
        animation: none;
        transform: none;
        opacity: 1;
    }
    
    #services p {
        color: #000;
        font-weight: bold;
        font-size: 25px;
    }

    #whyus .whyus-list {
        margin-top: 50px;
    }
    
    #whyus .whyus-list li {
        font-size: 20px;
        margin: 0;
    }
    
    #whyus .whyus-list li img {
        width: 30px;
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }
    
    #whyus .whyus-list li p {
        display: inline-block;
    }

    #blog-page .row,
    #about .about-content,
    #contact .contact-content,
    #gallery-products .gallery-products-content {
        margin-top: -75px;
        gap: 50px;
    }
    
    #blog-page .blog-bg p,
    #contact .contact-bg p,
    #gallery-products .gallery-products-bg p {
        position: absolute;
        top: 30%;
        /* left: 25px; */
        font-size: 35px;
    }

    #blog-page .blog-content,
    #about .about-content,
    #contact .contact-content,
    #gallery-products .gallery-products-content {
        padding: 0 25px;
        text-align: justify;
    }

    footer .company {
        width: 100%;
    }

    footer .container {
        padding: 0 25px;
    }

    footer .footer {
        flex-direction: column;
    }

    footer .links .d-flex {
        justify-content: flex-start !important;
        flex-direction: column !important;
    }

    footer .links .ul-list {
        margin: 10px 0;
    }

    .container {
        padding: 0 20px;
    }

}