@import url(../fonts/font.css);
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width:100%;
	height: 100%;
}
body{
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #7a7a7a;
    line-height: 1.1;
    text-size-adjust: none ;
	-webkit-text-size-adjust:none;
    overflow-x: hidden;
}
p{
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 16px;
}
p:last-child{
    margin-bottom: 0;
}
h1{
    font-family: 'Grifito Test L';
    font-size: 80px;
    line-height: 70px;
}
h2{
    font-family: 'Grifito Test L';
    font-size: 80px;
    line-height: 70px;
    color: #232323;
    margin-bottom: 16px;
}
h3{
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #232323;
}
h4{
    font-size: 20px;
    font-weight: 500;
    color: #232323;
    margin-bottom: 16px;
}
a{
    text-decoration: none;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
.container{
    max-width: 1240px;
    width: 100%;
    padding: 0 20px;
    position: relative;
}
.row{
    margin: 0 -12px;
}
.title span{
    color: #ED1C24;
}
.cta-btn{
    display: inline-flex;
    align-items: center;
    background: #ED1C24;
    color: #fff;
    height: 48px;
    border-radius: 4px;
    padding: 14px 50px 14px 24px;
    font-weight: 500;
    position: relative;
}
.cta-btn > svg{
    position: absolute;
    right: 22px;
}
.cta-btn:hover{
    background: #232323;
}
.cta-btn:hover svg{
    animation: linear infinite alternate;
    animation-name: run;
    animation-duration: .3s;
}
@keyframes run {
    0% {right: 22px;}
    100% {right: 16px;}
}
@-webkit-keyframes run {
    0% { right: 22px; }
    100% { right: 16px; }
}
.s-py{
    padding-top: 100px;
    padding-bottom: 100px;
}
.s-pt{
    padding-top: 100px;
}
.s-pb{
    padding-bottom: 100px;
}
.mb-48{
    margin-bottom: 48px;
}

/*** Header Start ***/
header{
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
header.scrolled{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.header-wrapper{
    /* padding: 16px 24px; */
    padding: 8px 24px;
    display: flex;
    align-items: center;
}
.header-wrapper .logo{
    width: 160px;
    display: inline-flex;
}
.header-wrapper .logo ~ span{
    display: inline-flex;
    /* height: 55.61px; */
    height: 70px;
    margin-left: 12px;
}
.navbar{
    margin: 0;
    padding: 0;
}
.navbar ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.navbar ul li:not(:first-child){
    margin-left: 40px;
}
.navbar ul li a{
    color: #7a7a7a;
    font-size: 500;
    position: relative;
}
.navbar ul li a:after{
    content: '';
    position: absolute;
    bottom: -2px;
    left: auto;
    right: 0;
    width: 0%;
    background: #ED1C24;
    height: 1px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.navbar ul li a:hover:after,
.navbar ul li a.active:after{
    width: 100%;
    left: 0;
    right: auto;
}
.navbar ul li a:hover,
.navbar ul li a.active{
    color: #ED1C24;
}
.navbar ul li a.active{
    color: #ED1C24;
}
.navbar .cta-btn{
    color: #fff;
    padding: 10px 24px;
    height: 40px;
    border-radius: 4px;
}
.navbar .cta-btn:after{
    display: none;
}
.navbar .cta-btn:hover{
    color: #fff;
}
/*** Header End ***/

/*** Footer Start ***/
.footer-top{
    padding: 64px 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 10%, rgba(243, 243, 243, 1) 50%, rgba(255, 255, 255, 1) 90%);
}
.footer-logo{
    width: 184px;
    display: inline-flex;
    margin-bottom: 40px;
}
.footer-top .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-top .navbar{
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}
.footer-top .social{
    font-size: 0;
}
.footer-top .social a{
    margin: 0 4px;
    color: #7A7A7A;
    display: inline-flex;
}
.footer-top .social a:hover{
    color: #232323;
}
.copyright {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    border-top: #d9d9d9 solid 1px;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
}
.copyright .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.copyright a{
    color: #ED1C24;
    text-decoration: underline;
    font-weight: 500;
    font-size: 16px;
}
/*** Footer End ***/


/*** Homepage Start ***/
.hero-section{
    margin-top: 80px;
}
.hero-section video{
    height: calc(100vh - 80px);
    display: block;
}
.customization-section{
    background: #FEF4F4;
}
.customization-section .box{
    display: inline-flex;
    align-items: flex-start;
    background: #fff;
    padding: 48px;
    border-radius: 24px;
}
.customization-section .box:not(:first-child){
    margin-top: 24px;
}
.customization-section .box > img{
    width: 64px;
}
.customization-section .box .content{
    padding-left: 32px;
}
.customization-section .box .content h3{
    color: #ED1C24;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 12px;
}
.customization-section .box .content h4{
    margin-bottom: 12px;
}
.social-block{
    background: #ED1C24;
    padding: 64px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.social-block .s-box{
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.social-block .s-box h4{
    color: #fff;
    width: 100%;
}
.social-block .box{
    background: #fff;
    min-height: 85px;
    border-radius: 12px;
    max-width: calc(45% - 24px);
    width: 100%;
    padding: 22px 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 8px;
}
.latest-trophies .gallery-box{
    display: block;
}
.latest-trophies .gallery-box img{
    height: 340px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.latest-trophies .row:last-child,
.work-section .row,
.we-serve .boxes-wrapper{
    margin-top: -24px;
}
.latest-trophies .row:last-child [class*="col-"],
.work-section .row [class*="col-"],
.we-serve .boxes-wrapper [class*="col-"]{
    margin-top: 24px;
}
.latest-trophies .row:last-child [class*="col-"]:nth-child(2),
.latest-trophies .row:last-child [class*="col-"]:nth-child(4){
    margin-top: 100px;
}
.latest-trophies .row:last-child [class*="col-"]:nth-child(5),
.latest-trophies .row:last-child [class*="col-"]:nth-child(7){
    margin-top: -52px;
}
.album-box{
    position: relative;
}
.album-box span{
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ED1C24;
    color: #fff;
    width: 100%;
    padding: 16px;
    border-radius: 0 0 8px 8px;
}
.work-section{
    background: #F3F3F3;
    position: relative;
}
.work-section .pattern{
    position: absolute;
    top: -50px;
    left: 50%;
    margin-left: -46px;
    -webkit-animation: rotate 4s linear infinite;
    animation: rotate 4s linear infinite;
}
@keyframes rotate {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}
@-webkit-keyframes rotate {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}
.work-section .top-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.work-section .gallery-box{
    display: block;
}
.work-section .gallery-box img{
    height: 320px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.we-serve{
    position: relative;
}
.we-serve .box{
    border: #ED1C24 solid 1px;
    background: #fff;
    padding: 32px;
    position: relative;
    border-radius: 12px;
}
.we-serve .box .number{
    position: absolute;
    top: 20px;
    right: 20px;
    color: #d3d3d3;
    font-weight: 500;
}
.we-serve .box h4{
    font-size: 18px;
    margin-bottom: 8px;
}
.we-serve .bg{
    position: absolute;
    top: -100px;
    right: 0;
    z-index: -1;
    max-width: 550px;
    width: 100%;
}
.contact-section .container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-section .row{
    position: absolute;
    width: 100%;
}
.contact-section .content{
    text-align: center;
}
.contact-section .content h2{
    font-size: 64px;
    line-height: 60px;
}
.contact-section .content p{
    max-width: 588px;
    width: 100%;
    margin: 0 auto 32px auto;
}
.contact-section .content .cta-btn{
    font-size: 20px;
    height: 56px;
    padding-left: 32px;
}
.contact-section .round{
    position: relative;
    z-index: -1;
    -webkit-animation: rotate 4s linear infinite;
    animation: rotate 4s linear infinite;
}
.contact-section .pattern{
    position: absolute;
    top: 0;
    left: 30px;
    -webkit-animation: rotate 4s linear infinite;
    animation: rotate 4s linear infinite;
}
.contact-section .round-pattern{
    width: 220px;
    position: absolute;
    bottom: 0;
    right: 50px;
    -webkit-animation: rotate-rewind 4s linear infinite;
    animation: rotate-rewind 4s linear infinite;
}
@keyframes rotate-rewind {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(-360deg);}
}
@-webkit-keyframes rotate-rewind {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(-360deg);}
}

/*** Homepage End ***/

/*** About Page Start ***/
.top-banner{
    margin-top: 87px;
    background-position: center !important;
    background-size: cover !important;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-banner h1{
    color: #fff;
    margin-bottom: 0;
}
.about-intro .img-block{
    position: relative;
}
.about-intro .img-block:before{
    content: '';
    position: absolute;
    top: -32px;
    left: -32px;
    width: 400px;
    height: 400px;
    border-radius: 24px;
    background: #F3F3F3;
    z-index: -1;
}
.vision-section{
    background: #FEF4F4;
}
.vision-section .box{
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
}
.vision-section .box > img{
    width: 64px;
    margin-bottom: 32px;
}
.vision-section .box h3{
    font-size: 32px;
    font-weight: 500;
}
.vision-section .box h4{
    font-size: 18px;
}

.why-choose .title-area .pattern{
    display: inline-flex;
    margin: 100px 100px 0 100px;
    -webkit-animation: rotate 4s linear infinite;
    animation: rotate 4s linear infinite;
}
.accordion-box{
    background: #fff;
    border: #d9d9d9 solid 1px;
    border-radius: 8px;
}
.accordion-box:not(:first-child){
    margin-top: 24px;
}
.accordion-box h3{
    font-size: 20px;
    font-weight: 500;
    padding: 16px 48px 16px 24px;
    margin: 0;
    cursor: pointer;
    position: relative;
}
.accordion-box h3::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url(../images/plus-icon.svg) no-repeat;
    background-size: cover;
}
.accordion-box.active h3:before{
    content: '';
    background: url(../images/minus-icon.svg) no-repeat;
}
.accordion-box.active h3{
    background: #F3F3F3;
    border-radius: 8px 8px 0 0;
}
.accordion-box .answer{
    padding: 24px;
}
/*** About Page End ***/

/*** Contact Page Start ***/
.contact-wrapper .top-title{
    max-width: 385px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.contact-wrapper .line{
    display: block;
    width: 100%;
    height: 1px;
    background: #d9d9d9;
    margin: 48px 0;
}
.contact-info{
    display: flex;
    justify-content: center;
}
.contact-info .box{
    text-align: center;
    max-width: 270px;
    width: 100%;
    margin: 0 12px;
}
.contact-info .box .icon{
    color: #ED1C24;
    display: inline-flex;
    margin-bottom: 16px;
}
.contact-info .box h4{
    font-size: 18px;
}
.contact-info .box address{
    line-height: 22px;
    margin-bottom: 0;
}
.contact-info .box a{
    color: #7A7A7A;
    display: inline-flex;
}
.contact-info .box a:hover{
    color: #ED1C24;
}
.contact-info .box a:not(:last-child){
    margin-bottom: 16px;
}
.contact-info .box .social{
    font-size: 0;
}
.contact-info .box .social a{
    margin: 0 4px;
}
.contact-info .box .social a:hover{
    color: #232323;
}
.contact-info .map-block p a{
    color: #7A7A7A;
}
.contact-info .map-block{
    margin-top: 24px;
}
.map-block iframe{
    display: block;
    border-radius: 16px;
    height: 290px;
    width: 100%;
    margin-bottom: 16px;
}
.map-block span{
    display: block;
    font-weight: 500;
    color: #232323;
    margin-bottom: 12px;
}
.contact-wrapper .link,
.map-block .link{
    color: #ED1C24;
    text-decoration: underline;
    font-weight: 500;
}
.contact-form{
    background: #F3F3F3;
    border-radius: 24px;
    padding: 32px;
}
.form-group label{
    color: #232323;
    display: block;
    margin-bottom: 8px;
}
.form-group input:focus,
.form-group textarea:focus{
    outline: none;
}
.form-group input,
.form-group textarea{
    width: 100%;
    border: #d9d9d9 solid 1px;
    border-radius: 8px;
    height: 48px;
    padding: 12px 16px;
}
.form-group textarea{
    height: 96px;
    resize: none;
}
.form-group button.cta-btn,
.form-group input[type="submit"]{
    width: auto;
    border: 0;
    border-radius: 8px;
    padding-left: 24px;
    padding-right: 24px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}
/*** Contact Page End ***/


/*** Customised Trophies Start ***/
.custom-trophies .gallery-box{
    display: block;
    width: 100%;
}
.custom-trophies .gallery-box img{
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.trophies-img{
    margin-top: -24px;
}
.trophies-img [class*="col-"]{
    margin-top: 24px;
}
.catalogue-section{
    background: #FEF4F4;
}
.catalogue-wrapper{
    margin-top: -24px;
}
.catalogue-wrapper .box img{
    border-radius: 16px;
    margin-bottom: 16px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.catalogue-wrapper .box h4{
    margin-bottom: 8px;
}
.catalogue-wrapper .box .link{
    color: #ED1C24;
    text-decoration: underline;
}
.modal-header{
    background: #ED1C24;
    color: #fff;
}
.modal h3{
    font-weight: 500;
}
.modal button.cta-btn{
    border: 0;
    padding: 14px 24px;
}
#catalogForm .form-group input{
    height: 40px;
    border-radius: 4px;
}
.btn-close{
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
    opacity: 1;

}
/*** Customised Trophies End ***/


/*** Custom CSS Start ***/

/* Trophy Modal Code */
@keyframes zoomIn {
    0% {
      transform: scale(0.7);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  #catalogModal.modal.fade .modal-dialog {
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  
  #catalogModal.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
  }

  #catalogModal.modal-backdrop.show {
    backdrop-filter: blur(3px);
  }

  label.error {
    color: #ED1C24; /* or any visible color */
    font-size: 14px;
    margin-top: 5px;
    display: block;
}
.phone-filed .edit-icon{
    position: absolute;
    top: 36px;
    right: 16px;
    cursor: pointer;
}
.phone-filed .edit-icon svg{
    width: 18px;
    height: 18px;
}
#loadMoreBtn.link{
    color: #ED1C24;
    text-decoration: underline;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 40px;
    margin: 30px auto;
    aspect-ratio: 1;
    color: #ED1C24;
    position: relative;
    background:
      conic-gradient(from 134deg at top   ,currentColor 92deg,#0000 0) top,
      conic-gradient(from -46deg at bottom,currentColor 92deg,#0000 0) bottom;
    background-size: 100% 50%;
    background-repeat: no-repeat;
  }
  .loader:before {
    content:'';
    position: absolute;
    inset: 0;
    --g:currentColor 14.5px,#0000 0 calc(100% - 14.5px),currentColor 0;
    background:
      linear-gradient( 45deg,var(--g)),
      linear-gradient(-45deg,var(--g));
     animation: l7 1.5s infinite cubic-bezier(0.3,1,0,1);
  }
  @keyframes l7 {
     33%  {inset:-10px;transform: rotate(0deg)}
     66%  {inset:-10px;transform: rotate(90deg)}
     100% {inset:0    ;transform: rotate(90deg)}
  }

  .whatsapp-container {
    position: fixed;
    right: 20px;
    bottom: 60px;
    z-index: 1;
  }
  
  .whatsapp-icon {
    width: 80px;
    cursor: pointer;
  }
  
  .dropdown {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 66px;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .dropdown a {
    display: block;
    padding: 10px 15px;
    color: #232323;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .dropdown a:hover {
    background-color: #f1f1f1;
  }
  
  .whatsapp-container:hover .dropdown {
    display: block;
  }

  .navbar ul li .highlight{
    font-weight: 500;
    color: #ED1C24;
  }
  .navbar ul li .highlight:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 6px;
    background: url(../images/zig-zag-line.svg) center bottom repeat-x;
    background-size: contain;
  }
  .navbar ul li .highlight:after{
    display: none;
  }
 .music-icon{
    position: fixed;
    z-index: 1;
    left: 20px;
    bottom: 50px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #232323;
 }
 .music-icon a{
    width: 48px;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
 }
 .music-icon a img{
    width: 40px;
 } 

/*** Custom CSS End ***/


@media (max-width: 1199px){
    .contact-section .round-pattern{
        width: 160px;
    }
    .why-choose .title-area .pattern{
        margin: 80px 50px 0 50px;
    }
    .navbar ul li:not(:first-child){
        margin-left: 30px;
    }
}
@media (max-width: 991px){

    h2{
        font-size: 72px;
        line-height: 62px;
    }
    h3{
        font-size: 22px;
    }
    .s-py{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .s-pt{
        padding-top: 80px;
    }
    .s-pb{
        padding-bottom: 80px;
    }

    .header-wrapper{
        padding: 16px 20px;
        justify-content: space-between;
    }
    .mobile-menu{
		width: 30px;
		height: 30px;	
	}
	.mobile-menu span,
	.mobile-menu span:before,
	.mobile-menu span:after{
		background: #ED1C24;
		width: 30px;
		height: 2px;
		border-radius: 2px;
		display: inline-block;
		transition: all 0.15s linear
	}
	.mobile-menu span:before,
	.mobile-menu span:after{
		content: '';
		position: absolute;
	}
	.mobile-menu span:before{
		transform: translateY(-7px);
	}
	.mobile-menu span:after{
		transform: translateY(7px);
	}
	.mobile-menu.open span{
		background: transparent;
	}
	.mobile-menu.open span:before{
		transform: rotate(45deg);
	}
	.mobile-menu.open span:after{
		transform: rotate(-45deg);
	}
    header .navbar{
        display: none;
		border-top: #d9d9d9 solid 1px;
		position: absolute;
		background: #fff;
		left: 0;
		top: 100%;
		width: 100%;
		padding: 20px;
		-webkit-box-shadow: rgba(0,0,0,.06) 0 10px 30px;
		box-shadow: rgba(0,0,0,.06) 0 10px 30px;
        z-index: 1;
    }
    header .navbar ul li{
        width: 100%;
        margin: 0 0 20px 0 !important;
    }
    header .navbar ul li:last-child{
        margin-bottom: 0 !important;
    }
    header .navbar ul li a{
        width: 100%;
        font-size: 18px;
        display: inline-flex;
    }
    header .navbar ul li.button a{
        justify-content: center;
    }
    header .navbar .cta-btn{
        height: 48px;
        justify-content: center;
    }
    header .navbar ul li:nth-child(5n){
            width: auto;
            margin-right: auto !important;
    }

    .hero-section video{
        height: auto;
    }
    .customization-section .box{
        padding: 30px;
    }
    .latest-trophies .row:last-child [class*="col-"]:nth-child(2){
        margin-top: 100px;
    }
    .latest-trophies .row:last-child [class*="col-"]:nth-child(4),
    .latest-trophies .row:last-child [class*="col-"]:nth-child(6){
        margin-top: -52px;
    }
    .latest-trophies .row:last-child [class*="col-"]:nth-child(5){
        margin-top: 24px;
    }
    .work-section .top-title .content p{
        max-width: 400px;
        width: 100%;
    }
    .contact-section .round{
        animation: none;
    }
    .we-serve .bg{
        max-width: 400px;
    }
    header .navbar ul li:not(:first-child){
        margin-left: 24px;
    }
    .top-banner{
        height: 340px;
    }
    .vision-section .box h3{
        font-size: 26px;
    }
    .about-intro .img-block:before{
        width: 250px;
        height: 250px;
    }
    .social-block .box{
        min-height: 70px;
        max-width: calc(48% - 24px);
        padding: 20px;
    }

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

    h1,h2{
        font-size: 64px;
        line-height: 54px;
    }
    .s-py{
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .s-pt{
        padding-top: 64px;
    }
    .s-pb{
        padding-bottom: 64px;
    }

    

    .social-block{
        padding: 48px 0;
    }
    .social-block .box{
        max-width: 100%;
        padding: 20px;
    }
    .latest-trophies .row:last-child [class*="col-"]:nth-child(3),
    .latest-trophies .row:last-child [class*="col-"]:nth-child(5){
        margin-top: -52px;
    }
    .latest-trophies .row:last-child [class*="col-"]:nth-child(4),
    .latest-trophies .row:last-child [class*="col-"]:nth-child(6){
        margin-top: 24px;
    }
    .work-section .pattern{
        width: 60px;
        top: -32px;
        margin-left: -30px;
    }
    .work-section .pattern > svg,
    .contact-section .pattern > svg{
        width: 100%;
        height: auto;
    }
    .contact-section .pattern{
        width: 60px;
    }
    .contact-section .round-pattern{
        width: 120px;
    }
    .contact-info [class*="col-"]:not(:last-child){
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: #d9d9d9 solid 1px;
    }
    .we-serve .bg {
        max-width: 50%;
        top: -64px;
    }
    .footer-top{
        padding: 48px 0;
    }
    .copyright{
        padding: 24px 0;
    }
    .footer-logo,
    .footer-top .navbar{
        margin-bottom: 32px;
    }
    .vision-section .box{
        padding: 24px;
    }
    .about-intro .img-block::before{
        display: none;
    }
    .why-choose .title-area{
        text-align: center;
    }
    .why-choose .title-area .pattern{
        width: 100%;
        margin: 16px 0 32px 0;
        justify-content: center;
        -webkit-animation: none;
        animation: none;
    }
    .why-choose .title-area .pattern svg{
        -webkit-animation: rotate 4s linear infinite;
        animation: rotate 4s linear infinite;
        width: 80px;
        height: 80px;
    }
    .top-banner {
        height: 250px;
    }
    .contact-info{
        flex-wrap: wrap;
    }
    .contact-info .box{
        max-width: 100%;
        position: relative;
        padding-left: 90px;
        text-align: left;
        margin: 0 0 24px 0;
    }
    .contact-info .box .icon{
        position: absolute;
        left: 0;
    }
    .contact-info .box h4,
    .contact-info .box a:not(:last-child){
        margin-bottom: 8px;
    }
    .contact-info .box:last-child{
        margin-bottom: 0;
    }
    .custom-trophies .gallery-box img{
        height: 260px;
    }
    .social-block .box{
        margin: 8px;
    }
    .navbar ul{
        justify-content: center;
    }
    .footer-top .navbar ul li:not(:first-child){
        margin-left: 16px;
    }
    .navbar ul li{
        margin: 8px 16px;
    }
    
}
@media (max-width: 575px){

    h1,
    h2,
    .contact-section .content h2{
        font-size: 48px;
        line-height: 38px;
    }
    h3{
        font-size: 20px;
    }
    .s-py{
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .s-pt{
        padding-top: 48px;
    }
    .s-pb{
        padding-bottom: 48px;
    }
    .mb-48{
        margin-bottom: 32px;
    }
    .customization-section .content p br{
        display: none;
    }
    .header-wrapper{
        /* padding: 12px 20px; */
        padding: 8px 20px;
    }
    .header-wrapper .logo{
        width: 130px;
    }
    .header-wrapper .logo ~ span{
        /* height: 45.19px; */
        height: 60px;
        margin-left: 8px;
    }
    .top-banner{
        margin-top: 73px;
    }
    
    .latest-trophies .gallery-box img,
    .work-section .gallery-box img{
        height: 220px;
    }
    .customization-section .box,
    .work-section .top-title{
        flex-wrap: wrap;
    }
    .customization-section .box > img{
        width: 40px;
    }
    .customization-section .box .content{
        padding: 20px 0 0 0;
    }
    .social-block{
        padding: 24px 0;
    }
    .social-block .box{
        margin: 12px;
        min-height: 70px;
        padding: 20px 40px;
    }
    .work-section .top-title{
        justify-content: center;
    }
    .work-section .top-title .content{
        width: 100%;
        text-align: center;
    }
    .work-section .top-title .content p{
        max-width: 100%;
    }
    .contact-section .container{
        flex-wrap: wrap;
    }
    .contact-section .pattern,
    .contact-section .round-pattern{
        position: static;
    }
    .contact-section .row{
        position: static;
    }
    .contact-section .round{
        position: absolute;
    }
    .contact-section .pattern{
        margin-bottom: 32px;
    }
    .contact-section .round-pattern{
        margin-top: 32px;
    }
    .we-serve .box{
        padding: 20px;
    }
    .we-serve .box .number{
        top: 12px;
        right: 12px;
    }
    .contact-section .content .cta-btn{
        font-size: 18px;
        height: 48px;
    }
    .footer-top .navbar ul li:not(:first-child){
        margin-left: 16px;
    }
    .footer-logo{
        width: 150px;
    }
    .contact-section .content h2{
        font-size: 40px;
        line-height: 40px;
    }
    .vision-section .box{
        padding: 20px;
    }
    .vision-section .box > img{
        width: 40px;
    }
    .why-choose .title-area p br{
        display: none;
    }
    .top-banner {
        height: 200px;
    }
    .contact-info .box{
        padding-left: 0;
        text-align: center;
        margin-bottom: 32px;
    }
    
    .contact-info .box .icon,
    .contact-info .box .icon svg{
        width: 48px;
        height: 48px;
    }
    .contact-info .box .icon{
        position: static;
    }
    .contact-info .box address{
        max-width: 280px;
        margin: 0 auto;
    }
    .contact-form{
        padding: 20px;
    }
    .contact-wrapper .line{
        margin: 24px 0;
    }
    .custom-trophies .gallery-box img{
        height: 220px;
    }
    .catalogue-wrapper .box img{
        height: 200px;
    }
    .whatsapp-icon{
        width: 48px;
    }
    .catalogue-wrapper .box h4{
        font-size: 17px;
    }

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

    .we-serve .bg{
        display: none;
    }
    .footer-top .navbar ul{
        -webkit-columns: 2;
        columns: 2;
    }
    .footer-top .navbar ul li{
        break-inside: avoid;
        width: 100%;
        margin: 0 0 16px 0 !important;
        text-align: center;
    }
    .footer-top .navbar ul li:last-child{
        margin-bottom: 0 !important;
    }
    .catalogue-wrapper .box img{
        height: 170px;
    }
    .copyright .container{
        justify-content: center;
    }
    .copyright .container span{
        margin-top: 8px;
        width: 100%;
    }
}

