/* font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* font - tactic-sans-bold */
@font-face {
   font-family: 'Tactic Sans Bold';
   src: url('../fonts/tactic-sans-bold.eot');
   src: url('../fonts/tactic-sans-bold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/tactic-sans-bold.woff2') format('woff2'),
      url('../fonts/tactic-sans-bold.woff') format('woff'),
      url('../fonts/tactic-sans-bold.ttf') format('truetype'),
      url('../fonts/tactic-sans-bld.svg') format('svg');
   font-weight: normal;
   font-style: normal;
   font-display: swap;
}

/* font - tactic-sans-bold */
@font-face {
   font-family: 'Nougat ExtraBlack';
   src:  url('../fonts/Nougat-ExtraBlack.ttf') format('truetype');
   font-weight:bold;
   font-style: normal;
   font-display: swap;
}

/*  */
:root{
   --primary-color: #011A68;
   --secondary-color: #FF3612;
   --orange-color: #FF8100;
   --primary-light-color: #12339C;
   --font-awesome: "Font Awesome 6 Free";
}

html{
   scroll-behavior: smooth;
}

/* body */
body{
   color: #020202;
   font-family: "Poppins", sans-serif;
   font-size: 16px;
   font-weight: 400;
}


/* -- default css -- */
p{
   line-height: 30px;
}

p:last-child{
   margin-bottom: 0;
}

h1,h2,h3,h4,h5,h6{
   font-family: "Outfit", sans-serif;
}

a{
   text-decoration: none;
}

ul, ol, figure{
   margin-bottom: 0;
}

button:focus,
.navbar-toggler:focus{
   box-shadow: none;
   outline: none;
}

.text-justify{
   text-align: justify;
}

/*  */
.title-design{
   color: var(--primary-light-color);
   display: inline-block;
   position: relative;
   border-radius: 0 20px 20px 0;
   background-color: var(--orange-color);
   padding: 0px 22px 0px 25px;
   line-height: normal;
}
.title-design::before{
   content: "\f111";
   font-family: var(--font-awesome);
   font-size: 4px;
   font-weight: 600;
   position: absolute;
   top: 10px;
   left: 12px;
}
.title-design-1{
   color: #fff;
   font-size: 25px;
   display: inline-block;
   position: relative;
   border-radius: 50px 50px;
   background-color: #2F4CA8;
   padding: 5px 30px 5px 25px;
   line-height: normal;
}
.title-style{
   color: #fff;
   font-size: 25px;
   display: inline-block;
   position: relative;
   border-radius: 0 50px 50px 0;
   background-color: #D93A1D;
   padding: 5px 30px 5px 5px;
   line-height: normal;
}
.title-style::before{
   content: "";
   position: absolute;
   top: 0px;
   left: auto;
   right: 100%;
   width: 1500px;
   height: 100%;
   background-color: inherit;
}
/*  */
.heading{
   font-size: 40px;
   margin-bottom: 0;
}
.heading-normal{
   font-size: 30px;
}
.heading-normal.orange-color{
   color: #FF4800;
}
/*  */
.heading-style .title{
   text-align: center;
   position: relative;
   font-size: 30px;
   font-weight: 700;
   text-transform: uppercase;
   padding: 10px 0;
   margin-bottom: 0;
   z-index: 1;
}
.heading-style .title::before{
   content: attr(data-text);
   width: 100%;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   color: rgba(18, 51, 156, 0.1);
   font-size: 75px;
   transition: all 0.3s ease-in-out;
   z-index: -1;
}
.heading-style:hover .title::before{
   color: rgba(18, 51, 156, 0.05);
}

.heading-style.orange-color .title::before{
   color: rgba(242, 101, 34, 0.1);
}
.heading-style.orange-color:hover .title::before{
   color: rgba(242, 101, 34, 0.05);
}

.heading-design{
   width: 400px;
   font-family: "Poppins", sans-serif;
   color: var(--primary-light-color);
   font-size: 4rem;
   font-weight: 600;
   text-shadow: 0 5px 0 rgba(18, 51, 156, 0.1);
   position: relative;
   padding-right: 100px;
}
.heading-design span{
   font-size: 15rem;
   font-weight: 500;
   position: absolute;
   right: 0px;
   top: 50%;
   transform: translateY(-50%);
   text-shadow: 0 5px 0 rgba(18, 51, 156, 0);
}

/*  */
.btn{
   position: relative;
   color: #fff;
   font-size: 18px;
   font-weight: 300;
   background-color: var(--primary-color);
   line-height: normal;
   padding: 5px 55px 6px 16px;
   border-radius: 0;
   clip-path: polygon(0% 0%, 0% 100%, 96% 100%, 100% 0%);
   border: 0;
}
.btn img{
   position: absolute;
   width: 26px;
   top: 50%;
   right: 18px;
   transform: translateY(-50%);
   transition: all 0.3s ease-in-out;
}
.btn:hover{
   color: #fff;
   background-color: var(--secondary-color);
}
.btn:hover img{
   right: 16px;
}
/*  */
.btn-light{
   color: #020202;
   background-color: #fff;
}
.btn-light img{
   filter: brightness(0);
}
.btn-light:hover{
   color: #fff;
   background-color: var(--primary-color);
}
.btn-light:hover img{
   filter: brightness(1);
}

/*  */
.bg-light{
   background-color: #E3EAFF!important;
}
.bg-grey{
   background-color: #F6F6F6!important;
}

/*  */
.section-space{
   padding-top: 100px;
   padding-bottom: 100px;
}

/*  */
.swiper .swiper-button-prev{
   left: calc(100% - 18%);
}
.swiper .swiper-button-next{
   right: auto;
   left: calc(100% - 13%);
}
.swiper div[class*="swiper-button"]{
   top: auto;
   bottom: 10px;
}
.swiper div[class*="swiper-button"]::after{
   display: none;
}


/* -- Header -- */
header{
   background-color: #fff;
   box-shadow: 0 0 20px -10px rgba(1, 26, 104, 0);
}
header *{
   transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
header .navbar{}
header .navbar .navbar-brand{
   width: 350px;
}
header .navbar .navbar-nav .nav-item{
   margin: 0 15px;
}
header .navbar .navbar-nav .nav-link{
   color: #020202;
   padding: 2px 10px;
   border-radius: 5px;
}
header .navbar .navbar-nav .nav-link.active{
   text-decoration: underline;
   text-underline-offset: 2px;
}
header .navbar .navbar-nav .nav-link.highlight{
   border: 1px solid #020202;
}
header .navbar .navbar-nav .nav-link:hover{
   color: var(--primary-light-color);
}
header .navbar .navbar-nav .nav-link.highlight:hover{
   border-color: var(--primary-light-color);
}
header .navbar .navbar-toggler{
   border: 0;
}

/*  */
header .navbar .links-wrap{
   display: flex;
   align-items: center;
   gap: 8px;
}
header .navbar .links-wrap li a{
   padding: 0 6px;
}
header .navbar .links-wrap li a i{
   color: #FF4800;
   font-size: 22px;
   line-height: normal;
}
header .navbar .links-wrap li a i.fa-whatsapp{
   color: #29a71a;
}
header .navbar .links-wrap li img{
   width: 18px;
}
header .navbar .links-wrap li i{
   color: var(--primary-light-color);
}
header .navbar .links-wrap li:first-child {
    padding-top: 4px;
}

/* header sticky */
header.sticky{
   position: -webkit-sticky;
   position: sticky;
   top: 0;
   box-shadow: 0 0 20px -10px rgba(1, 26, 104, 0.5);
   z-index: 10;
}
header.sticky .navbar .navbar-brand {
width: 250px;
padding: 0;
}


/* -- Banner -- */
.banner-slider .swiper-slide{
   position: relative;
   /* height: 88vh; */
}
.parallax-bg {
   position: absolute;
   top: 0; left: 0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-position: center;
}
.banner-slider .swiper-slide > img{
   width: 100%;
   -o-object-fit: cover;
   object-fit: cover;
   -o-object-position: top;
   object-position: top;
   height: 100%;
}
.banner-slider figcaption{
   position: absolute;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: end;
   align-items: center;
}
.banner-slider figcaption .title{
   font-family: "Poppins", sans-serif;
   font-size: 3.5rem;
   font-weight: 300;
}
.banner-slider figcaption .title span{
   color: var(--secondary-color);
   font-weight: 800;
}


/* about-section */
/* .about-section{} */
.bg-txt-wrap{
   position: relative;
}
.bg-txt-wrap .bg-txt{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   color: rgba(1, 26, 104, 0.05);
   font-size: 18rem;
   font-weight: 700;
   user-select: none;
   z-index: -1;
}
.about-section article p{
   font-weight: 300;
   line-height: 32px;
}


/* value-section */
.value-section{
   position: relative;
}
.value-section::after{
   content: "";
   width: 100%;
   height: 100%;
   clip-path: polygon(0 0, 100% 0%, 100% 82%, 25% 100%, 0 86%);
   background-color: #E3EAFF;
   position: absolute;
   top: 0;
   left: 0;
   z-index: -1;
}
.value-section .column p{
   font-size: 20px;
   font-weight: 500;
}
.value-section .column figure{
   transform: scale(1) translateY(0);
   margin-bottom: 15px;
   transition: all 0.3s ease-in-out;
}
.value-section .column:hover figure{
   transform: scale(1.04) translateY(-8px);
}


/* products-section */
.products-section .products-wrapper{
   display: flex;
   flex-wrap: wrap;
}
.products-section .products-wrapper .product-wrap{
   position: relative;
   height: 500px;
}
.products-section .products-wrapper .product-wrap *,
.products-section .products-wrapper .product-wrap .caption::after{
   transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.products-section .products-wrapper .product-wrap img{
   -o-object-fit: cover;
   object-fit: cover;
   -o-object-position: top;
   object-position: top;
   width: 100%;
   height: 100%;
}
.products-section .products-wrapper .product-wrap .caption{
   /* background-color: rgba(1, 26, 104, 0); */
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   padding: 25px 30px;
   transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
   z-index: 1;
}
.products-section .products-wrapper .product-wrap .caption::after{
   content: "";
   width: 100%;
   height: 0%;
   position: absolute;
   top: 0;
   left: 0;
   background: linear-gradient(180deg, rgba(1, 26, 104, 0.5) 0%, rgba(1, 26, 104, 0) 0%);
   z-index: -1;
}
.products-section .products-wrapper .product-wrap .caption .title{
   color: #020202;
   font-size: 26px;
   font-weight: 500;
   line-height: 36px;
   margin-bottom: 0;
   max-width: 60%;
}
.products-section .products-wrapper .product-wrap:hover .caption .title{
   color: #fff;
}
.products-section .products-wrapper .product-wrap:hover .caption{
   padding-top: 30px;
   padding-left: 35px;
}
.products-section .products-wrapper .product-wrap:hover .caption::after{
   /* background-color: rgba(1, 26, 104, 0.5); */
   height: 80%;
   background: linear-gradient(180deg, rgba(1, 26, 104, 0.7) 0%, rgba(1, 26, 104, 0) 100%);
}


/* clients-section */
.clients-section{}
.client-logos-wrapper{
   justify-content: flex-start;
   width: 100%;
   margin-left: auto;
   margin-right: auto;
   display: flex;
   overflow: hidden;
}
.wrapper-grid{
   justify-content: flex-start;
   width: 100%;
   margin-left: auto;
   margin-right: auto;
   padding-top: 1rem;
   padding-bottom: 0;
   display: flex;
   overflow: hidden;
}
.wrapper-grid .logo-grid{
   -webkit-animation: loopstuff 140s linear infinite;
   -moz-animation: loopstuff 140s linear infinite;
   -o-animation: loopstuff 140s linear infinite;
   animation: loopstuff 140s linear infinite;
   flex: none;
   justify-content: space-between;
   align-items: center;
   display: flex;
   gap: 50px;
}
.wrapper-overlay{
   background-image: linear-gradient(90deg, var(--black) 2%, #08080800 20%, #08080800 80%, var(--black) 98%);
   pointer-events: none;
   width: 100%;
   height: 100%;
   position: absolute;
   inset: 0%;
}

@-webkit-keyframes loopstuff {
   0% {
      transform: translateX(0%);
   }
   100% {
      transform: translateX(-100%);
   }
}
@-moz-keyframes loopstuff {
   0% {
      transform: translateX(0%);
   }
   100% {
      transform: translateX(-100%);
   }
}
@-o-keyframes loopstuff {
   0% {
      transform: translateX(0%);
   }
   100% {
      transform: translateX(-100%);
   }
}
@keyframes loopstuff {
   0% {
      transform: translateX(0%);
   }
   100% {
      transform: translateX(-100%);
   }
}


.clients-wrapper{
   display: block;
   display: block;
   width: 100%;
   margin: 0 auto;
   overflow: hidden;
}
.clients-wrapper .scrollSlider{
   display: flex;
   list-style: none;
   position: relative;
   margin-left: auto;
   margin-right: auto;
}
.clients-wrapper .scrollSlider .item{
   display: flex;
   flex-direction: column;
   float: left;
   position: relative;
   width: 200px;
   /* height: 250px; */
   /* line-height: 200px; */
   /* border: 1px solid #cacaca; */
   text-align: center;
   gap: 20px;
}

.clients-wrapper .scrollSlider .item img{
   vertical-align: middle;
   max-width: 100%;
   max-height: 100%;
   -webkit-transition: 0 linear left;
   -moz-transition: 0 linear left;
   transition: 0 linear left;
   opacity: 1;
   margin: 0 15px;
}
/* .clients-wrapper .scrollSlider .item:nth-child(2n + 2){
   margin-top: 20px;
} */
.clients-wrapper .scrollSlider .item:nth-child(even){}
/* .clients-wrapper .scrollSlider .item:nth-child(even) img:first-child{
   padding-top: 20px;
}
.clients-wrapper .scrollSlider .item:nth-child(odd) img:last-child{
   padding-bottom: 20px;
} */


/* -- footer -- */

/* number-block */
.number-block{
   position: relative;
   padding-left: 52px;
}
.number-block .icon{
   color: #fff;
   text-align: center;
   display: block;
   width: 48px;
   height: 48px;
   line-height: 46px;
   border-radius: 100%;
   background-color: var(--primary-light-color);
   position: absolute;
   top: 0;
   left: 0;
}
.number-block .icon img{
   width: 47%;
}
.number-block p{
   margin-bottom: 0;
}
.number-block p.txt{
   color: initial;
   font-size: 13px;
   line-height: 22px;
}
.number-block .number{
   color: var(--primary-light-color);
   font-size: 28px;
   font-weight: 700;
}


/* -- footer -- */
/* footer .footer-top{
   background-color: #fdfdfd;
} */
footer .widget .widget-block{
   font-size: 15px;
}
footer .widget .widget-block .line{
   border-top: 2px solid #FF3612;
   opacity: 1;
}
footer .widget .widget-block{
   height: 100%;
   position: relative;
   padding: 10px 35px;
}
footer .widget .widget-block::after{
   content: "";
   width: 1px;
   height: 100%;
   background-color: #c4c4c4;
   position: absolute;
   top: 0;
   right: 0;
}
footer .widget:last-child .widget-block::after{
   display: none;
}
footer .widget-block .heading{
   color: var(--primary-light-color);
   font-size: 30px;
}
footer .widget .title{
   font-size: 20px;
   font-weight: 600;
}
/*  */
footer .links-style li{
   position: relative;
   padding-left: 25px;
   margin-bottom: 6px;
   transition: all 0.3s ease-in-out;
}
footer .links-style li::before{
   content: "";
   position: absolute;
   top: 10px;
   left: 0;
   width: 15px;
   height: 15px;
   background: url(../images/icons/check-icon.svg) no-repeat center / contain;
   transition: all 0.3s ease-in-out;
}
footer .links-style li a{
   display: block;
   color: inherit;
   line-height: 26px;
   padding: 4px 0;
}
footer .links-style li:hover{
   padding-left: 22px;
}
footer .links-style li:hover a{
   color: var(--secondary-color);
}
/*  */
footer .list-style-icon li p{
   line-height: 26px;
}
footer .list-style-icon li{
   font-size: 14px;
   line-height: 22px;
   position: relative;
   padding-left: 25px;
   margin-bottom: 15px;
}
footer .list-style-icon li img{
   content: "";
   position: absolute;
   top: 6px;
   left: 0;
   width: 15px;
}
footer .list-style-icon li a{
   color: inherit;
   line-height: normal;
}
footer .list-style-icon li .text-primary{
   color: #2241A1!important;
}
/* footer-bottom */
footer .footer-bottom{
   font-size: 15px;
   position: relative;
   background: url(../images/bg/footer-bg.jpg) no-repeat center center / cover scroll;
   z-index: 1;
   overflow: hidden;
}
footer .footer-bottom .logo{
   width: 280px;
}
/* footer .footer-bottom::before{
   content: "";
   position: absolute;
   background-color: rgba(18, 51, 156, 0.9);
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   z-index: -1;
} */
footer .footer-bottom p img{
   width: 18px;
}
footer .footer-bottom .socialMedia-link{
   display: inline-flex;
}
footer .footer-bottom .socialMedia-link li a{
   color: #F26522;
   font-size: 18px;
   padding: 2px 6px;
   margin: 0 4px;
}
footer .footer-bottom .socialMedia-link li:hover a{
   color: #fff;
}


/* -- page-banner -- */
.page-banner{
   background-color: #EFEFEF;
   height: 208px;
}
.page-banner .title{
   color: #07186A;
   font-size: 3rem;
}
.page-banner .breadcrumb{
   margin-bottom: 10px;
}
.page-banner .breadcrumb .breadcrumb-item a{
   color: #020202;
}
.page-banner .breadcrumb .breadcrumb-item + .breadcrumb-item::before{
   content: "\f105";
   font-size: 12px;
   font-family: var(--font-awesome);
   font-weight: 600;
   color: initial;
   float: none;
   display: inline-block;
}
.page-banner .breadcrumb .breadcrumb-item{
   color: #FF4800;
   font-weight: 300;
}

.page-banner.large-banner{
   height: 290px;
   padding-bottom: 60px;
}


/* -- chairman-section -- */
.chairman-section{
   position: relative;
   z-index: 1;
}
.chairman-section::after{
   content: "";
   width: 100%;
   height: 100%;
   clip-path: polygon(0 0, 100% 0%, 100% 82%, 25% 100%, 0 88%);
   background: #2F4CA8;
   position: absolute;
   top: 0;
   left: 0;
   z-index: -1;
}

.side-img-1{
   width: 500px;
   height: 500px;
   border-radius: 100%;
   overflow: hidden;
}
.side-img-1 img{
   width: 100%;
   height: 100%;
   -webkit-object-fit: cover;
   object-fit: cover;
   -o-object-position: center;
   object-position: center;
}


/* -- partner-section -- */
.partner-section{
   position: relative;
   background-color: #F6F6F6;
}
.partner-section::before{
   content: "";
   width: 100%;
   height: 400px;
   background-color: #F6F6F6;
   position: absolute;
   top: -220px;
   left: 0;
   z-index: -1;
}

/* block-design-1 */
.block-design-1{
   color: #fff;
   position: relative;
   height: 500px;
   /* background-color: #F6F6F6; */
   overflow: hidden;
   transition: all 0.3s ease-in-out;
}
.block-design-1 *{
   transition: all 0.3s ease-in-out;    
}
.block-design-1 .image-block{
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}
.block-design-1 .image-block img{
   width: 100%;
   height: 100%;
   -webkit-object-fit: cover;
   object-fit: cover;
   -webkit-object-position: center;
   object-position: center;
   transform: scale(1);
}
.block-design-1 .title{
   font-size: 20px;
   background: linear-gradient(90deg, rgba(255, 72, 0, 1) 82.69%, rgba(217, 217, 217, 0) 100%);
   padding: 8px 40px 8px 10px;
   position: absolute;
   left: 0;
   bottom: 32px;
   z-index: 1;
}
.block-design-1 .image-block img{
   width: 100%;
   height: 100%;
   -webkit-object-fit: cover;
   object-fit: cover;
   -webkit-object-position: center;
   object-position: center;
   transform: scale(1);
}
.block-design-1 .content{
   background: rgba(47, 76, 168, 0.5);
   display: flex;
   justify-content: center;
   align-items: center;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   transform: translateX(-50px);
   opacity: 0;
   transition: all 0.3s ease-in-out;
   z-index: 1;
}
.block-design-1:hover .image-block img{
   transform: scale(1.04);
}
.block-design-1:hover .title{
   bottom: 22px;
}
.block-design-1:hover .content{
   background: rgba(47, 76, 168, 0.9);
   transform: translateX(0);
   width: 100%;
   opacity: 1;
}


/* -- counter-section -- */
.counter-section{
   background-color: #D93A1D;
}
.counter-section .heading{
   font-size: 42px;
}
.counter-section .counter-block{
   padding: 0 35px;
}
.counter-section .counter-block .icon{
   display: inline-block;
   text-align: center;
   width: 75px;
   height: 75px;
   line-height: 75px;
   border-radius: 100%;
   background-color: #B4270D;
}
.counter-section .counter-block .number{
   font-size: 40px;
   font-weight: 700;
   line-height: normal;
   margin-bottom: 0;
}
.counter-section .counter-block p{
   font-size: 20px;
   line-height: normal;
}


/* tabs-design */
.tabs-design{
   display: flex;
   flex-wrap: nowrap;
   padding: 0px 0 30px;
   overflow-x: auto;
}
.tabs-design .nav-item{
   font-family: 'Tactic Sans Bold';
   flex: 1 1 100%;
   margin: 5px 20px 0;
}
.tabs-design .nav-link{
   color: #D93A1D;
   font-size: 1rem;
   text-transform: uppercase;
   width: 100%;
   height: 100%;
   /* padding: 15px 30px; */
   background: #fff;
   border-radius: 10px 10px 0 0;
   border-bottom: 5px solid transparent;
   box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.tabs-design .nav-link figure{
   /* height: 50px; */
   margin-bottom: 15px;
}
.tabs-design .nav-link figure img {
    width: 125px;vertical-align: top;
}

.tabs-design .nav-link:hover{
   border-bottom-color: #E3EAFF;
}
.tabs-design .nav-link.active{
   border-bottom-color: #D93A1D;
}
/* tabs-design-1 */
.tabs-design-1{
   gap: 15px;
}
.tabs-design-1 .nav-item{
   flex: 0 0 auto;
}
.tabs-design-1 .nav-item .nav-link{
   background: #F3F3F3;
   font-size: 16px;
   font-weight: 500;
   padding: 4px 20px 5px;
   border: 1px solid #cecece;
   border-radius: 100px;
   box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0);
}
.tabs-design-1 .logo-item  .nav-link img{
   width: 100%;
   height:35px;
}
.h45 {height:45px !important;}
.tabs-design-1 .nav-item .nav-link.active{
   border-color: var(--primary-light-color);
   background-color: #eef3ff;
   box-shadow: 0px 3px 8px -2px rgba(0, 0, 0, 0.2);
}
.logo-item .nav-link{padding: 0;}

/* -- our fleets page -- */
.products-wrapper{
   position: relative;
}
.products-wrapper .tabs-design{
   margin-top: -80px;
   margin-bottom:10px;
}
.products-wrapper .tab-title{
   font-family: 'Tactic Sans Bold';
   color: var(--primary-light-color);
   font-size: 32px;
}
.products-wrapper .product-column{
   position: relative;
   color: var(--primary-light-color);
   text-align: center;
   background-color: #fff;
   border: 1px solid #969696;
   border-radius: 20px 0 0;
   margin-bottom: 30px;
   z-index: 1;
}
.products-wrapper .product-column *{
   transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.products-wrapper .product-column::before{
   content: "";
   width: 60%;
   height: 70%;
   background-color: #EFEFEF;
   border-radius: 20px 0 155px 0;
   opacity: 1;
   position: absolute;
   top: -1px;
   left: -1px;
   transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
   z-index: -1;
}
.products-wrapper .product-column figure{
   padding: 10px 20px;
}
.products-wrapper .product-column figure img{
   width: 100%;
}
.products-wrapper .product-column figcaption{
   padding: 10px 25px;
}
.products-wrapper .product-column figcaption .title{
   font-family: 'Tactic Sans Bold';
   font-size: 20px;
   margin-bottom: 10px;
}
.products-wrapper .product-column figcaption p{
   line-height: 22px;
   margin-bottom: 0;
}
.products-wrapper .product-column:hover figure img{
   transform: scale(0.95);
}
.products-wrapper .product-column:hover figcaption{
   padding: 0px 25px 20px;
}
.products-wrapper .product-column:hover::before{
   background-color: #E3EAFF;
}


/* -- Contact us page -- */
.contact-info .title-box{
   display: inline-block;
   position: relative;
   background-color: #F6F6F6;
   padding: 6px 25px 6px 50px;
   border-radius: 50px;
   margin-bottom: 10px;
}
.contact-info .icon{
   text-align: center;
   position: absolute;
   top: 5px;
   left: 14px;
   color: #fff;
   background-color: #FF4800;
   width: 28px;
   height: 28px;
   line-height: 26px;
   border-radius: 100%;
}
.contact-info .icon img{
   width: 13px;
}
.contact-info .title{
   color: var(--primary-light-color);
   font-size: 22px;
   font-weight: 500;
}
.contact-info a,
.contact-info .title a{
   color: inherit;
}
.contact-info .sub-title{
   font-size: 18px;
   font-weight: 500;
}

.form-wrapper{
   background-color: #F4F7FF;
   padding: 20px 30px 30px;
   border: 1px solid #969696;
   border-radius: 20px;
}
.form-floating .form-control{
   border-radius: 0;
}
.form-floating > .form-control{
   height: calc(3rem);
   min-height: auto;
   padding: 0.7rem .75rem;
}
.form-floating > label{
   padding: 0.7rem .75rem;
}
.form-floating .form-control:focus{
   box-shadow: none;
   border-color: var(--primary-light-color);
}
.form-floating textarea.form-control{
   height: 160px;
   resize: none;
   border-radius: 0 0 20px 0;
}
.form-floating > .form-control + label{
   color: #181818;
   font-size: 15px;
}
.form-floating > .form-control:required + label::after{
   content: "*";
   color: #FF0000;
   position: absolute;
   top: 8px;
   right: 4px;
}

/* map-wrapper */
.map-wrapper{
   height: 600px;
}


/*----- Gallery -----*/

.gallery_item {
  margin-bottom:10px;
  overflow: hidden;
}

.popup-gallery a {
  display: block;
  width: 100%;
  border: 1px solid #fff;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.popup-gallery a:hover {
  transform: scale(1.05);
  border-color: #fff;
}

.popup-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
  min-height: 300px;
  max-height: 300px;
}

@media only screen and (max-width: 1000px) {
  .popup-gallery img {
    min-height: 150px;
    max-height: 150px;
  }
}

@media (min-width: 1300px) and (max-width: 2560px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (min-width:901px) and (max-width: 1299px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (min-width:570px) and (max-width:900px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (min-width: 300px) and (max-width:567px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap:8px;
  }
   .popup-gallery img {
    min-height: 100%;
    max-height: 100%
  }
}


.singicon_btn_nlf {
  position: absolute;
  top: 44%;
  bottom: 56%;
  left: 44%;
  right: 56%;
  opacity: 0;
}

.singicon_btn_nlf svg {
  color: #fff;
}

.popup-gallery a:hover .singicon_btn_nlf {
  opacity: 1;
}

.hover_affect_nlf:hover img {
  opacity: 0.5;
}



/* -- Responsive -- */

@media only screen and (min-width: 991px){
   .partner-section{
      padding-top: 60px;
   }
}

@media only screen and (max-width: 1199px){
   header .navbar .navbar-brand {
      width: 280px;
   }
   header .navbar .navbar-nav .nav-item {
      margin: 0 8px;
   }

   footer .widget .widget-block{
      padding: 10px 15px;
   }
   .number-block .number{
      font-size: 24px;
   }
   .number-block .icon{
      width: 45px;
      height: 45px;
      line-height: 42px;
      top: 4px;
   }

   .side-img-1{
      width: 360px;
      height: 360px;
   }
.heading-design {
    width: 390px;
}
}

@media only screen and (max-width: 991px){
   .section-space {
      padding-top: 70px;
      padding-bottom: 70px;
   }
   .heading {
      font-size: 35px;
   }
   .heading-style .title::before{
      font-size: 64px;
   }

   header .navbar-collapse{
      width: 100%;
      background-color: #f8f8f8;
      position: absolute;
      top: 50px;
      left: 0;
      box-shadow: 0 5px 25px -10px rgba(1, 26, 104, 0.3);
      z-index: 10;
   }
   header.sticky .navbar-collapse{
      transform: translateY(-11px);
   }
   header .navbar-collapse .navbar-nav .nav-item{
      margin: 10px 10px;
   }
   header .navbar .navbar-nav .nav-link.highlight{
      display: inline-block;
   }

   .swiper .swiper-button-prev {
      left: calc(100% - 20%);
   }

   .products-section .products-wrapper .product-wrap{
      height: 350px;
   }
   .products-section .products-wrapper .product-wrap .caption .title{
      max-width: 80%;
      font-size: 22px;
      line-height: 30px;
   }
   .tabs-design .nav-link {
    padding: 15px;
   }
 .tabs-design .nav-item{
       margin: 5px 10px 0;
 }
}

@media only screen and (max-width: 767px){
   .section-space {
      padding-top: 60px;
      padding-bottom: 60px;
   }
   .title-design{
      padding: 0px 16px 0px 22px;
   }
   .title-design::before{
      left: 10px;
   }
   .title-style {
      font-size: 18px;
   }
   .block-design-1 {
      margin-bottom: 20px;
   }
   .heading-design {
      font-size:55px;
   }
   .heading-design span {
    font-size:9rem;
   }
   .swiper div[class*="swiper-button"]{
      width: auto;
   }
   .swiper .swiper-button-prev {
      left: 6%;
   }
   .swiper .swiper-button-next{
      left: 16%;
   }

   .bg-txt-wrap .bg-txt{
      font-size: 13rem;
   }

   .value-section .column figure{
      width: 80%;
      margin: 0 auto 10px;
   }
   .value-section .column p{
      font-size: 16px;
   }

   .products-section .products-wrapper .product-wrap {
      height: 280px;
   }
   .products-section .products-wrapper .product-wrap .caption{
      padding: 15px 20px;
   }
   .products-section .products-wrapper .product-wrap .caption .title{
      max-width: 100%;
      font-size: 18px;
      line-height: 27px;
   }
   .products-section .products-wrapper .product-wrap:hover .caption {
      padding-top: 20px;
      padding-left: 25px;
   }
   .products-wrapper .tab-title {
      margin-bottom: 20px !important;
   }
   .tab-content {
      padding:15px 0px !important;
   }
   .tabs-design {
    display: block;
   }
}

@media only screen and (max-width: 575px){
   .swiper div[class*="swiper-button"]{
      bottom: 0px;
   }
   .heading {
      font-size: 30px;
   }
   .heading-style .title{
      font-size: 27px;
      overflow-x: clip;
   }
   .heading-style .title::before{
      font-size: 48px;
      text-wrap: nowrap;
   }
   
   .bg-txt-wrap .bg-txt{
      font-size: 8rem;
   }

   .value-section .column figure {
      width: 70%;
   }
   .value-section .column p {
      font-size: 15px;
      line-height: normal;
   }
   .heading-design {
      font-size: 48px;
   }
   .heading-design span {
    font-size: 8rem;
   }
   .products-section .products-wrapper .product-wrap .caption .title{
      max-width: 90%;
   }
}

@media only screen and (max-width: 480px){
   header .navbar .navbar-brand {
      width: 230px;
   }
   header.sticky .navbar .navbar-brand {
      width: 190px;
   }
   header .navbar .links-wrap{
      display: none;
   }
   
}


