body,
h1,
h2,
h3,
p {
    font-family: 'Montserrat', sans-serif;
}
p{
    font-size: 16px;
    line-height: 30px;
}
h2 {
    color: #f3a83e;
    font-weight: 800;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 15px;
}
h2 img{
    height: 60px;
}
h4 img{
    height: 45px;
}
h3 img {
    font-size: 20px;
    height: 40px; 
}

h3,
h4,
h5 {
    font-weight: 600;
    color: #0c243c;
    margin-bottom: 25px;
}
.bold{
    font-weight: 700;
}
label{
    font-weight: 600;
    color: #0c243c;
}

.div-above-header{
    padding: 15px;
    background-color: #f3a83e;
    height: 50px;
    font-weight: 600;
}
.div-above-header span{
    color: #ececec;
}
.btn-slider-one, .btn-slider-two{
    border-radius: 0;
    font-weight: 700;
    width: 78%;
    margin-top: 30px;
    padding: 12px;
    text-transform: uppercase;
}
.btn-slider-one:hover, .btn-slider-two:hover{
    background-color: #f3a83e;
    color: #fff;
    border: 1px solid #000;
}
.btn-slider-one{
  background-color: #f3a83e;
  color:#000;
}
.btn-slider-two{
    background-color: #0C8645;
    color: #fff;
}
/* Styles for the page loader container */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* Background color of the loader */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure the loader is above other content */
    transition: opacity 0.5s ease; /* Add a fade-in effect */
    opacity: 1; /* Initially visible */
}

/* Styles for the logo inside the loader */
.loader-logo img {
    max-width: 100%;
    max-height: 100%;
    animation: spin 2s linear infinite; /* Add a rotating animation */
}

/* Styles for the loading text */
.loader-text {
    color: #fff; /* Text color */
    margin-top: 10px;
    font-size: 18px;
    animation: fadeIn 1s ease-out; /* Add a fade-in animation for the text */
}

/* Styles to hide the loader when content is loaded */
.loaded .loader-container {
    opacity: 0;
    pointer-events: none; /* Make the loader not clickable */
}

/* Keyframes for the spinning animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Keyframes for the fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.nav-item{
    color: #0C8645;
    border-bottom: 0;
    transition: 0.6s ease-in; 
}
.nav-item .nav-link{
    color: #0C8645;
    font-weight: 600;
}
.nav-item:hover .nav-link{
    color: #f3a83e;
    font-weight: 600;
}
.nav-item.active{
    border-bottom:2px solid #f3a83e;
}
.nav-item.active .nav-link{
    color: #f3a83e;
    font-weight: 600;
}
.dropdown-item{
    color: #0C8645;
}
.dropdown-item:hover{
    color: #f3a83e;
}
.readmore-btn{
    position: relative;
    margin: 30px 20px;
    text-decoration: none;
    padding: 15px 20px;
    background-color: #f3a83e;
    color: #fff;
    border-radius: 2px;
    border-bottom-right-radius: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.readmore-btn:hover{
    background-color: #0C8645;
    color: #fff;
}
/* Custom CSS for text positioning and styling */
.carousel-caption {
    position: absolute;
    top: 45%;
    right: 0;
    left:40%;
    transform: translate(0, -50%);
    padding: 50px 25px;
    height: fit-content;
    border-radius: 0px;
    font-weight: 800;
    color: #FFF;
    text-align: right;
    background-color: rgba(0, 0, 0, 0.02);
}
.carousel-caption p{
    font-size: 64px !important;
    line-height: normal !important;
}

.carousel-item {
    position: relative;
}
.carousel-caption .upper-text{
    color: #fff;
    font-size: 24px !important;
}
.carousel-caption .lower-text{
    color: #f2f2f2;
    font-size: 32px !important;
}
/* Overlay effect on images */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Adjust opacity as needed */
}
.alternate-row{
   padding: 40px  30px;   
}
.alternate-row:nth-child(odd){
    background-color: #F5F5F5;
    /* Background Color */
    color: #333;
    /* Text color for contrast */
}
.alternate-row:nth-child(even){
    background-color: rgba(188, 35, 43, 0.09);
    /* Primary Color (Amber) */
    color: #333;
    /* Text color for contrast */
}
.alternate-row .title-x h6{
    font-size: 28px;
    font-weight: 600;
    text-align: center
}
.alternate-row .border-left{
    border-left: 2px solid #bc232b;
}
/* Style for alternate sections */
.alternate-section:nth-child(odd) {
    background-color: #F5F5F5;
    /* Background Color */
    color: #333;
    /* Text color for contrast */
}
#welcome-section h5{
 font-weight: 500;
}
#welcome-section img{
    padding: 15px;
    width: 75% !important;
   }
.alternate-section:nth-child(even) {
    background-color: #ececec;
    /* Primary Color (Amber) */
    color: #333;
    /* Text color for contrast */
}

.alternatex h2 {
    color: #fff;
}

/* Style for the container */
.image-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}

.image-container img {
    border-radius: 5px%;
    width: 100%;
}

.accordion-header {
    font-weight: 600;

}

.accordion-header {
    background-color: transparent;
    padding-bottom: 0;
}

.accordion-button {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
    border-radius: 0 !important;
}
.img-client{
    border:1px solid rgba(243,168,62, 0.644);
    padding: 40px 10px;
    border-radius: 5px;
    border-bottom-right-radius: 0;
    background-color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.stylelishline-wrapper{
    color: #fff;
    font-weight: 800;
    padding: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}
.stylelishline-wrapper .theline{
    padding: 80px 0 32px 40px;
    position: absolute;
    display: inline-block;
    left: 10%;
    top: 10%;
    text-align: left;
}
.stylelishline-wrapper .theline-right{
    padding: 60px 0 32px 40px;
    position: absolute;
    display: inline-block;
    right: 10%;
    top: 10%;
    text-align: left;
}
.stylelishline-wrapper .theline-top{
    padding: 60px 0 32px 40px;
    position: absolute;
    display: inline-block;
    top: 0;
    text-align: left;
    width: 80%;
    left: 10%;
}
.stylelishline-wrapper .theline-bottom{
    padding: 60px 0 32px 40px;
    position: absolute;
    display: inline-block;
    bottom: 10%;
    text-align: left;
    width: 80%;
    left: 10%;
}

.stylelishline-wrapper .style-top-x{
    position: absolute;
    width: 100%;
    height:15px;
    background:#ececec;
    transition: transform 0.5s ease;
    top: 0;
    left: 0;
}
.stylelishline-wrapper .style-left-x{
    background:#ececec;
    transition: transform 0.5s ease;
    position: absolute;
    width: 15px;
    height: 30px;
    left: 0;
    top: 0;
}
.stylelishline-wrapper .style-right-x{
    background:#ececec;
    transition: transform 0.5s ease;
    position: absolute;
    width: 15px;
    height: 30px;
    right: 0;
    top: 0;
}
.theline-bottom .style-top-x{
    bottom: 0;
    top: 90%;
}
.theline-bottom .style-left-x,.theline-bottom .style-right-x{
    bottom: 0;
    top: 8cqb;
}
.stylelishline-wrapper .style-top{
    position: absolute;
    transition: transform 0.5s ease;
    width: 100%;
    height: 20px;
    background:#ececec;
    top: 0;
    left: 0;
}
.stylelishline-wrapper .style-left{
    background:#ececec;
    transition: transform 0.5s ease;
    position: absolute;
    width: 15px;
    height: 100%;
    left: 0;
    top: 0;
}
.stylelishline-wrapper .style-right{
    background:#ececec;
    transition: transform 0.5s ease;
    position: absolute;
    width: 15px;
    height: 100%;
    right: 0;
    top: 0;
}
.stylelishline-wrapper .style-bottom{
    transition: transform 0.5s ease;
    background:#ececec;
    position: absolute;
    width: 100%;
    height: 15px;
    left: 0;
    bottom: 0;
}

.service-item:hover .style-bottom,.service-item:hover .style-left,.service-item:hover .style-top,.service-item:hover .style-right{
    background-color: #0C8645;
}
.service-item:hover .style-bottom,.service-item:hover .style-right-x,.service-item:hover .style-left-x,.service-item:hover .style-top-x{
    background-color: #0C8645;
}

.stylelishline-wrapper h3{
   color: #fff !important;
   font-weight: 700;
   text-transform: uppercase;
}

.services {
    padding: 20px;
}

.service-item {
    padding-right: 0px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.service-details{
    overflow: hidden ;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    margin: 0px auto;
    background: rgba(0, 0, 0, 0.4);
}

.service-details p{
    color: #f3a83e;
}
.service-image img {
    width: 100%;
    height: 300PX;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(0%);
}

.service-item:hover .service-image img {
    transform: scale(1.02);
    filter: grayscale(100%);
}


.service-item:hover .service-details {
    opacity: 1;
}


/* Style for the badge */
.image-badge {
    position: absolute;
    bottom: 0px;
    right: 152px;
    width: 219px;
    height: 108px;
    background: linear-gradient(45deg, #bc232b, #0c243c);
    transform: rotate(135deg);
    transform-origin: bottom right;
    z-index: 1;
}

.image-badge-2 {
    position: absolute;
    bottom: 0px;
    right: 100px;
    width: 160px;
    height: 70px;
    background: linear-gradient(45deg, #0c243c, #0c243c);
    transform: rotate(135deg);
    transform-origin: bottom right;
    z-index: 1;
}

.image-badge-3 {
    position: absolute;
    bottom: 0px;
    right: 72px;
    width: 150px;
    height: 50px;
    background: linear-gradient(45deg, #bc232b, #bc232b);
    transform: rotate(135deg);
    transform-origin: bottom right;
    z-index: 1;
}

/* Style for the title div (shown on hover) */
.image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(188, 35, 43, 0.8);
    /* Semi-transparent background */
    color: #fff;
    padding: 5px;
    text-align: center;
    transform: translateY(100%);
    /* Initially hidden below the image */
    transition: transform 0.3s ease-in-out;
}

/* Hover effect */
.image-container:hover .image-badge {
    opacity: 1;
    /* Show the badge on hover */
}

.image-container:hover .image-title {
    transform: translateY(0);
    /* Show the title on hover */
}
#About-section-non h3{
    font-size: 25px;
    color: #f3a83e;    
}
#About-section-non h4, h5{
 margin-bottom: 10px;
}
.whylongwing img{
    width: 130px;
    height: 130px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.whylongwing img:hover{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
#clientCarousel img {
    width: 100%;
}
.solutions-header.header-freight{
    background-image: url('../imgs/WhatsApp\ Image\ 2024-06-12\ at\ 8.17.44\ AM.jpeg'); 
}
.solutions-header.header-charter{
    background-image: url('../imgs/view-3d-airplane.jpg'); 
}
.solutions-header.header-transport{
    background-image: url('../imgs/WhatsApp\ Image\ 2024-06-12\ at\ 8.18.13\ AM.jpeg'); 
}
.solutions-header.header-gsa{
    background-image: url('../imgs/gsa\ header.jpg'); 
}
.solutions-header.header-flight{
    background-image: url('../imgs/WhatsApp\ Image\ 2024-06-12\ at\ 8.18.06\ AM.jpeg'); 
}
.solutions-header.header-leasing{
    background-image: url('../imgs/trasnportconsultuncy\ header.jpg'); 
}
.header-scheduled{
    background-image: url('../imgs/private-jet-charter-cabin.png');    
}
.header-nonscheduled{
    background-image: url('../imgs/Hageisa-dest.jpg');    
}
.contact-header{
    background-image: url('../imgs/Contact\ us\ main\ cover\ page.jpg'); 
}
.aboutus-header{
    background-image: url('../imgs/We\ are\ LWE\ 2.png'); 
}
.ourteam-header{
    background-image: url('../imgs/'); 
}
/* Style the header section with background image and overlay */
.header {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px; /* Adjust the height as needed */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
#solutions-section H3{
    font-weight: 800;
}
.first-l{
    color: #bc232b !important;
}
#professionals-section h6{
    color: #bc232b;
    font-weight: 600;   
}
/* Add a semi-transparent overlay */
.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); 
    z-index: -1; /* Place the overlay behind the content */
}

/* Style the text within the header */
.header-content h1 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 50px;
    color: #FFF;
    border-top: 7px solid #0C8645;
    border-bottom: 7px solid #f3a83e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a text shadow for better visibility */
    background-color: rgba(0, 0, 0, 0.05); /* Adjust the alpha (0.3) to control the opacity of the background */
    padding: 20px; /* Adjust padding as needed */
    border-radius: 2px; 
}
.header-content h5 {
    font-weight: 500;
    color: #f2f2f2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background-color:rgba(188, 35, 43, 0.85);
    padding: 10px;
    border-radius: 5px; 
}
.sidetitle{
    background-color: #00000008;
    color: #0C8645;
    padding: 5px;
    border-left: 4px solid #f3a83e;
}
.contact {
    background-color: #f9f9f9;
    padding: 50px;
    text-align: center;
}

.contact-info {
    margin-bottom: 30px;
}

.contact h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Style the map (adjust as needed depending on how you embed it) */
.map {
    width: 100%;
    height: 400px; /* Adjust the map height as needed */
    border: 1px solid #ddd;
}
.team-card{
    font-weight: 700;
    margin: 10PX;
    padding: 15PX;
    height: 100%;
    background-color: #0C8645;
    color: #fff;
    border-radius:4px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out; 
}
.team-card i{
    font-size: 36px;
    color: #f3a83e;
    margin: 5px;
    cursor: pointer;
}

.card {
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: #f2f2f2;
    padding: 10px;
    text-align: center;
}

.card-logo {
    max-width: 100%;
    height: auto;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.card-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
}
.nav.nav-pills nav-link.active{
    color: #0C8645;
}
.nav.nav-pills .nav-link.active{
 background-color: #f3a83e;
 border-radius: 1px;
 padding: 15px 20px;
 color: white;
}
#address-section{
    background-color: #0C8645;
    background-image: url(../imgs/footer.jpg);
    background-size: cover;
    color: #fff;
}
#address-section h6{
  font-weight: 800;
  font-size: 33px;
}
  #address-section a{
    text-decoration: none;
    color: #fff;
  }
  .btn-subscribe{
    width: 100%;
    background-color: #f3a83e;
    border-radius:2px ;
    color: #000;
  }
  .btn-subscribe:hover{
    background-color: #000;
    border-radius:2px ;
    color: #fff;
  }
.card-button:hover {
    background-color: #0056b3;
}
.social-linkx {
    list-style-type: none;  
    padding: 0;             
    margin: 0;              
    display: inline-flex;          
}

.social-linkx li {
    cursor: pointer;   
    margin-right: 15px;
}

.social-linkx a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease-in-out;
    font-size: 20px;
}

.social-linkx a:hover {
    color: #007bff; /* Change the color on hover */
}
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 11px;
}

@media screen and (max-width: 480px) {
    .carousel-caption{
        font-size: 20px;
    }
  }


