:root {
  --Text-400: #2b3036;
  --Text-500: #060E18;
  --Common-Button-Color: #0E2239;
  --Orange-Color: #FF9240;
  --Text-300: #656769;
  --Blue-900: #060E18;
  --Blue-500:  #0E2239;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;
}
.page-loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #FFF;
  z-index: 1000;
}
.spinner {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 100%;
  background-image: url(../image/loader.gif);
  background-repeat: no-repeat;
  background-size: 100px;
}
.page-loader .loader {
    position: relative;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    border: 6px solid #FF924020;
    border-top: 6px solid #FF9240;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spinloader 1.5s linear infinite;
}

.page-loader  img {
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    height: 60px;
    width: 60px;
}

@keyframes spinloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.top-20{
    top: 20px;
}
h1{
    color: var(--Text-500);
    font-weight: 700;
    font-size: 50px;
    line-height: 55px;
}
h2{
    color: #000;
    font-weight: 600;
    font-size: 40px;
}
h3{
    color: var(--Orange-Color);
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase !important;
}
p{
    color: var(--Text-400);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}
.common-button:hover{
    background-color: #1d4068;
}
.navbar .header-button:focus{
    box-shadow: none;
    outline: none;
    border-color: var(--Orange-Color) ;
}
.common-button{
    background-color: var(--Common-Button-Color);
    color: #FFF;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 20px;
    text-align: center;
    border: 0;
    text-decoration: none;
    display: inline-block;
}
.orange-button:hover,
.navbar .header-button:hover{
    background-color: #db7d36;
}
.orange-button{
    background-color: var(--Orange-Color);
}
.navbar .navbar-nav li.dropdown .dropdown-menu li a.active {
    color: #000 !important;
}
.navbar .navbar-nav li a.active {
    color: #ff9240 !important;
}
.navbar{
    padding: 0 !important;
}
.navbar-brand{
    padding: 12px 0;
}
.dropdown-menu a.dropdown-item {
    border-bottom: solid 1px  #ddd !important;
    padding-top: 7px;
    padding-bottom: 7px;
}
.nav-item.dropdown:hover .dropdown-menu{
    padding: 0 !important;
}
.dropdown-menu {
    border-top: solid 2px #ff9240;
    border-radius: 0.25rem;
}
.dropdown-menu li:last-child a.dropdown-item{
    border-bottom: none !important;
}
.dropdown-item.active,
.dropdown-item:focus {
    background-color: #ff9240 !important;
}
.dropdown-item:hover{
    background-color: #ff9240 !important;
}
.navbar .header-button {
  background-color: var(--Orange-Color);
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  color: #2d1808;
  padding: 10px 16px;
}
.navbar .dropdown-toggle::after {
  background-image: url("../image/down-arrow.svg");
  position: relative;
  bottom: 0px;
  left: 0px;
  background-repeat: no-repeat;
  border: 0;
  background-size: 14px;
  width: 14px;
  height: 14px;
  top: 9px;
}
.navbar-brand img{
    max-width: 180px;
}
.navbar .navbar-nav li a {
  color: var(--Text-400) !important;
  font-weight: 400;
  font-size: 16px;
}
/* Banner section start */
.mobile-banner-img{
    display: none;
}
.banner-sec h1,
.banner-sec p{
    color: var(--Blue-900);
}
.banner-sec{
    background-image: url('../image/banner-img.png');
    min-height: 550px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 950px;
}
.banner-sec-content{
    max-width: 550px;
}
/* Banner section end */
/* shipping service start */
.shipping-service-box{
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-radius: 16px;
    width: 245px;
}
.shipping-service-box p{
    position: absolute;
    bottom: 15px;
    margin: 0;
    right: 0;
    left: 0;
    text-align: center;
    color: #FFF;
    font-weight: 500;
    font-size: 20px;
}
.shipping-service-box img{
    width: 100%;
}
.shipping-service-box::before{
    content: '';
    background: linear-gradient(180deg, rgba(20, 41, 65, 0) 60%, #142941 100%);
    background-blend-mode: multiply;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.shipping-service-img a:hover .shipping-service-box::before{
    background: linear-gradient(180deg, rgba(20, 41, 65, 0) 0%, #142941 100%);
}
/* shipping service end */
/* About Section start */
.about-section  .about-box-main .about-box{
    padding: 10px 15px;
    border: 1px solid #FFDDC4;
    background: linear-gradient(180deg, #FFF4EC 0%, #FFFFFF 100%);
    border-radius: 16px;
    height: 100%;
}
.about-section  .about-box-main .about-box p{
    margin: 0;
    color: var(--Orange-Color);
}
.about-section img{
    max-height: 575px;
}
/* About Section end */
/* Delivering section start */
.delivering-section{
    background-image: url('../image/Delivering-img.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.delivering-section .delivering-form-card{
    border: 1px solid #BDBDBD;
    background-color: #FFF;
    border-radius: 20px;
}
.delivering-section .delivering-form-card-heading{
    background-color: var(--Orange-Color);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 15px;
}
.delivering-section .delivering-form-card-heading h4{
    font-weight: 600;
    font-size: 24px;
    margin: 0;
}
.delivering-section .delivering-form-card-body{
    padding: 20px;
}
.delivering-section .delivering-form-card-body h5{
    color: var(--Orange-Color);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
.delivering-section .delivering-form-card-body label {
    color: var(--Text-300);
    font-weight: 500;
    font-size: 16px;
}
.delivering-section .delivering-form-card-body input.form-control,
.delivering-section .delivering-form-card-body  select.form-select{
    background-color: #F2F6FA;
    border: 0;
    padding: 10px;
    margin-bottom: 10px;
    color: #000;
}
.delivering-section .delivering-form-card-body input::placeholder{
    color: #B4BAC2;
}
.delivering-section .delivering-form-card-body  select.form-select{
    color: #333;
}
.delivering-section .delivering-form-card-body .form-check-custom .form-check-input{
    border-color: #B4BAC2;
    width: 18px;
    height: 18px;
}
.delivering-section .delivering-form-card-body .form-check-custom .form-check-input:checked{
    background-color: var(--Orange-Color);
    border-color: var(--Orange-Color);
}
.delivering-section .delivering-form-card-body .form-check-custom{
    display: flex;
    gap: 20px;
}
.delivering-section .custom-form{
    position: relative;
    bottom: 0px;
}
/* Delivering section end */
/* Industries start */
.industries-section{
    padding-top: 230px;
}
.custom-slider-new h5{
    color: var(--Text-500);
    font-weight: 600;
    font-size: 24px;
    line-height: normal;
}
.custom-slider-new img{
    border-radius: 20px;
}
.industries-section .custom-slider-new  .slider-content p {
    min-height: 96px;
}
.custom-slider-new .swiper-slide {
    border-top: solid 1px #B4BAC2;
}
.custom-slider-new .swiper-slide.swiper-slide-active{
    border-top: solid 1px #0E2239;
}
.custom-slider-new .slider-content {
    padding-top: 20px;
}
/* Industries end*/
/*  Testimonial start */
.testimonial-section{
    background-color: #F6F7F9;
}
.custom-slider-client .slider-content{
    background-color: #FFF;
    border-radius: 30px;
    padding: 25px;
    min-height: 364px;
}
.custom-slider-client .slider-content .slider-box-text p {
    min-height: 72px;
}
.custom-slider-client .slider-content-flex{
    display: flex;
    justify-content: space-between;
}
.custom-slider-client .slider-content-heading{
    display: flex;
    gap: 15px;
    align-items: center;
}
.custom-slider-client .slider-content-heading h5{
    font-weight: 700;
    font-size: 20px;
    margin: 0;
}
.custom-slider-client .slider-box-text h6{
    margin: 0;
    color: var(--Text-500);
    font-size: 18px;
    font-weight: 600;
}
.custom-slider-client .slider-box-text span{
    color: var(--Text-300);
    font-size: 18px;
    font-weight: 500;
}
/*  Testimonial end */
/* service section start */
.connect-service-section {
    background-image: url('../image/service.png');
    background-repeat: no-repeat;
    min-height: 450px;
    background-size: cover;
    border-radius: 30px;
    padding: 30px;
    background-position: center;
}
.connect-service-box{
    background-color: #0000008A;
    border-radius: 25px;
    padding: 30px;
    max-width: 450px;
}
.connect-service-box p{
    font-size: 16px;
    line-height: normal;
}
/* service section end */
/* Faq section start */
.faq-section .collapsed.accordion-button::after {
    background-image: url(../image/plus-icon-acc.svg);
    top: 36%;
    transform: translateY(0%);
}
.faq-section .accordion-button::after {
    right: 23px;
    position: absolute;
    background-image: url(../image/minus-icon-acc.svg);
}
.faq-section .accordion .accordion-item{
    border: solid 1px #9099A4 !important;
}
.faq-section .accordion .accordion-item:has(>.accordion-collapse.show){
    border: solid 1px #FF9240 !important;
}
.faq-section .accordion-button{
    color: var(--Text-500);
    font-weight: 500;
    font-size: 18px;
    padding-right: 45px;
}
/* Faq section end */
/* footer section start */
.footer-section-main{
    background-color: #0E2239;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
}
.footer-section-main .footer-logo{
    border-top: solid 1px #3E4E61;
    border-bottom: solid 1px #3E4E61;
}
.footer-section-main .copyright-text{
    color: #B4BAC2;
}
.footer-section-main .footer-middle-section{
    border-top: solid 1px #3E4E61;
}
.footer-section-main .footer-middle-section h5{
    font-weight: 500;
    font-size: 18px;
}
.footer-section-main .footer-middle-section ul li{
    list-style-type: none;
    margin-bottom: 10px;
}
.footer-section-main .footer-middle-section ul li a{
    font-size: 16px;
    font-weight: 400;
    color: #B4BAC2;
    text-decoration: none;
}
.footer-section-main .footer-middle-section ul li a:hover,
.footer-section-main .footer-middle-section ul li a.active {
    color: #FFF;
}
/* footer section end */
.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
    background: #eb7d2d !important;
    width: 15px !important;
    height: 15px !important;
}

/* ===================================== */
/*  About us page start */
.about-banner{
    background-image: url(../image/Hero-Background-about.png) !important;
    background-size: cover;
    background-position: center;
}
/* our fundamental start */
.our-fundamental{
    background-image: url(../image/our-fundamental-banner.png) !important;
    background-size: cover;
    background-position: center;
}
.our-fundamental .our-fundamental-service h3{
    font-family: "DM Sans", sans-serif;
}
.our-fundamental .our-fundamental-box {
    max-width: 220px;
}
.our-fundamental .our-fundamental-box img {
    min-height: 58px;
}
/* our fundamental end */
/* our team section start */
.our-team-section{
    background-color: #FFFAF6;
}
.our-team-section .our-team h3{
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
}
.our-team-section .our-team h5{
    color: var(--Text-500);
    font-weight: 600;
    font-size: 22px;
    line-height: normal;
    margin: 0;
}
/* our team section end */
/* Awards & Certifications start */
.awards-section .awards-certifications-box {
    max-width: 220px;
}
/* Awards & Certifications end */
/*  About us page end */



/* ======================================= */
/* Air Freight service page start */
.air-freight-banner{
    background-image: url(../image/air-freight-banner.png) !important;
    background-size: cover;
    background-position: center;
}
.our-air-freight-services h4 {
    font-weight: 600;
    font-size: 28px;
    color: var(--Text-500);
}
.our-air-freight-services p{
    color: var(--Text-500);
    font-weight: 500;
}
.our-air-freight-services ul li{
    font-weight: 500;
    font-size: 16px;
    padding-bottom: 5px;
}
/* Why Fornis Air Freight start  */
.why-our-air-freight-services{
    background-color: #0E2239;
}
.why-our-air-freight-services p{
    color: #9099A4;
}
/* Why Fornis Air Freight end  */
/* what we ship by air section start */
.what-we-ship-by-air-section h5{
    color: var(--Text-500);
    font-size: 24px;
}
/* what we ship by air section end */
/* How Our Air Freight Service Works section start  */
.how-our-air-section .how-our-air-right-box{
    border: dashed 2px #D7D7D7;
    padding: 20px;
    border-radius: 30px;
    margin-bottom: 30px;
}
.how-our-air-section .how-our-air-right-box:last-child{
    margin: 0;
}
.how-our-air-section .how-our-air-right-box h5{
    font-size: 30px;
    font-weight: 400;
    color: #CCCCCC;
}
.how-our-air-section .how-our-air-right-box h2{
    font-size: 24px;
}
.how-our-air-section .how-our-air-right-box p{
    color: #656769;
}
/* How Our Air Freight Service Works section end  */
/* Air Freight service page end */

/* ==================================== */
/* Contact us page start */
.contact-us-sec{
    background-image: url(../image/contact-us-banner.png) !important;
    background-size: cover;
    background-position: center;
}
/* Delivering Trust start  */
.delivering-trust-section .delivering-form-card{
    border: 1px solid #BDBDBD;
    background-color: #FFF;
    border-radius: 20px;
}
.delivering-trust-section .delivering-form-card-heading{
    background-color: var(--Orange-Color);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 15px;
}
.delivering-trust-section .delivering-form-card-body{
    padding: 20px;
}
.delivering-trust-section .delivering-form-card-body label {
    color: var(--Text-300);
    font-weight: 500;
    font-size: 16px;
}
.delivering-trust-section .delivering-form-card-body input.form-control,
.delivering-trust-section .delivering-form-card-body textarea{
    background-color: #F2F6FA;
    border: 0;
    padding: 10px;
    margin-bottom: 10px;
    color: #000;
}
.delivering-trust-section .delivering-form-card-body input::placeholder,
.delivering-trust-section .delivering-form-card-body textarea::placeholder{
    color: #B4BAC2;
}
.delivering-trust-section .nav-tabs {
    border-bottom: 1px solid #dee2e6;
    align-items: center;
    justify-content: space-between;
    flex-wrap: inherit !important;
    height: 47px;
}
.delivering-trust-section .nav-tabs .nav-item {
    width: 100%;
}
.delivering-trust-section .nav-tabs .nav-item.show .nav-link, .delivering-trust-section .nav-tabs .nav-link.active {
    color: var(--Text-500) !important;
    background-color: transparent !important;
    border-color: transparent transparent #366b66 !important;
    border-bottom: solid 1px #3E4E61 !important;
}
.delivering-trust-section .nav-tabs .nav-link:focus, .delivering-trust-section .nav-tabs .nav-link:hover {
    border-top: transparent !important;
    border-left: transparent !important;
    border-right: transparent !important;
    color: var(--Text-500);
}
.delivering-trust-section .nav-tabs .nav-link {
    width: 100%;
    color: #656769;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: capitalize;
    margin-top: 5px;
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    min-height: 41px;
    border-bottom: solid 1px transparent !important;
}
.delivering-trust-section .tab-content h4{
    font-weight: 600;
    font-size: 18px;
    color: var(--Blue-500);
}
.delivering-trust-section .tab-content p{
    color: #5E6B7A;
}
.delivering-trust-section .tab-content h5{
    color: var(--Blue-500);
    font-size: 16px;
    font-weight: 500;
}
.delivering-trust-section .nav li button br{
    display: none;
}
/* Delivering Trust end  */
/* Contact us page end  */
/* ocean freight page start */
.ocean-freight{
    background-image: url('../image/Ocean-Freight-banner.png') !important; 
    background-size: cover;
    background-position: center;   
}
/* ocean freight page end*/
/* ocean freight page start*/
.rail-freight{
    background-image: url('../image/Rail-Freight-banner.png') !important; 
    background-size: cover;
    background-position: center;   
}
/* ocean freight page end*/
/* surface page start */
.surface-freight{
    background-image: url('../image/Surface-Freight-banner.png') !important; 
    background-size: cover;
    background-position: center;  
}
/* surface page end */
/* custom clearance page start */
.custom-clearance{
    background-image: url('../image/Custom-Clearance-banner.png') !important; 
    background-size: cover;
    background-position: right;  
}
/* custom clearance page end */
/* consulting service page start */
.consulting-service{
    background-image: url('../image/Consulting-Service-banner.png') !important; 
    background-size: cover;
    background-position: right;  
}
/* consulting service page end */
/* fumigation service page start */
.fumigation-service{
    background-image: url('../image/Fumigation.png') !important; 
    background-size: cover;
    background-position: right;  
}
/* fumigation service page end */
/* insurance page start */
.insurance{
    background-image: url('../image/Insurance.png') !important; 
    background-size: cover;
    background-position: right;  
}
/* insurance page end */
/* warehouse service page start */
.warehouse-service{
    background-image: url('../image/WareHouse.png') !important; 
    background-size: cover;
    background-position: right; 
}
/* warehouse service page end */
/* project logistic page start */
.project-logistic{
    background-image: url('../image/Project-Logistic.png') !important; 
    background-size: cover;
    background-position: right; 
}
/* project logistic page end */
/* terms conditions page start */
.terms-conditions-section{
    background-color: #142948;
}
/* terms conditions page end */
/* Privacy Policy page start */
.privacy-policy{
    background-color: #142948;
}
.privacy-policy-inner h2,
.terms-conditions-inner h2{
    font-size: 28px;
    font-weight: 700;
}
.privacy-policy-inner a,
.terms-conditions-inner a{
    color: #ff6d00;
    text-decoration: none;
}
/* Privacy Policy page end */
.delivering-form-card-body .error{
    color: red !important;
}


footer .whatsapp-icon {
    position: fixed;
    background: #22ce5a;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 20px;
    right: 20px;
    z-index: 99!important;
}
.faq-quote-btn {
    background-color: var(--Orange-Color) !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #2d1808;
    padding: 5px 10px;
    margin-left: 5px;
}
.custom-slider-client .slider-content-heading > img{
    max-width: 150px;
    max-height: 70px;
    object-fit: contain;
    object-position: right;
}
.custom-slider-client .slider-content-flex > img{
    width: 70px;
    height: 70px;
}
.custom-slider-client .slider-box-text{
    min-height: 425px;
}