body{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.section{
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section.visible{
    opacity: 1;
    transform: translateY(0);
}

header{
    top: 0;
    display: flex;
    justify-content: space-around;
    background-color: beige;
    padding: 20px 10px;
    margin-bottom: 10px;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 50;
    box-shadow: 2px 2px 5px rgba(150, 150, 150, 0.747);
}
.hamburger{
    font-size: 30px;
    background-color: rgb(255, 136, 0);
    padding: 5px;
    border-radius: 10px;
    color: white;
    display: none;
}
nav{
    align-items: center;
}
header a img{
    height: 30px;
}
nav a{
    font-size: 17px;
    text-decoration: none;
    font-weight: bold;
}

.navigations a{
    justify-content: space-between;
    margin-left: 20px;
    color: black;
    transition: .4s;
}
.navigations a:hover{
    color: rgb(255, 136, 0);
}
#contact-nav{
    color: rgb(182, 97, 0);
    padding: 10px;
    border: 3px solid rgb(182, 97, 0);
    border-radius: 10px;
    transition: .3s;
}
#contact-nav:hover{
    background-color: rgb(255, 136, 0);
    color: rgb(0, 83, 0);
}
.hero-section{
    top: 0;
    height: 100vh;
    background: linear-gradient( #7777777e, #1818184d, #33333342, #744322d2), url(images/download\ \(30\).jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 40vh;
}
#animation{
    position: absolute;
    top: 0;
    left: 50%;
    color: rgb(105, 60, 7);
    font-size: 40px;
    
    animation: fall 3s;
}
#animation2{
    text-shadow: 5px 3px 5px black;
    position: absolute;
    top: 30%;
    left: -20%;
    color: rgb(245, 110, 0);
    animation: fly 8s;
}

@keyframes fly {
    0%{
        left: -20%;
    }
    50%{
        left: 50%;
        font-size: 150px;
        color: white;
    }
    100%{
        left: 110%;
    }
}
@keyframes fall {
    0%{
        top: 0;
    }
    25%{
        top: 100px;
    }
    50%{
        left: 30%;
        font-size: 100px;
    }
    75%{
        top: 100px;
        left: 50%;
    }
    100%{
        top: 0;
    }
}
.hero-section h1{
    text-align: center;
    margin-left: 20px;
    padding-top: 100px;
    font-size: 60px;
    color: white;
    font-weight: 600;
}
.hero-section h1 span{
    color: rgb(182, 97, 0);
    text-shadow: 2px 2px 5px rgb(253, 201, 133);
}
.lines{
    text-align: center;
    display: flex;
    justify-content: center;
}
.lines div{
    margin-top: 20px;
    border-radius: 100px;
    margin-left: 5px;
    text-align: center;
    width: 7px;
    height: 1px;
    background-color: white;
    padding-bottom: 5px;
    
}
.lines div:nth-child(4){
    width: 40px;
    animation: forthjump .5s;
}
@keyframes forthjump {
    0%{
        width: 7px;
        margin-right: 50px;
    }
    50%{
        margin-top: 5px;
    }
    100%{
        margin-right: 0px;
    }
}
.lines div:nth-child(3){
    animation: thirdjump 1.0s;
}
@keyframes thirdjump {
    0%{
        width: 7px;
        margin-right: 50px;
    }
    50%{
        margin-top: 5px;
    }
    100%{
        margin-right: 0px;
    }
}
.lines div:nth-child(2){
    animation: secondjump 1.5s;
}
@keyframes secondjump {
    0%{
        width: 7px;
        margin-right: 50px;
    }
    50%{
        margin-top: 5px;
    }
    100%{
        margin-right: 0px;
    }
}
.lines div:nth-child(1){
    animation: jump 1.5s;
}
@keyframes jump {
    0%{
        margin-right: 50px;
        width: 7px;
    }
    50%{
        margin-top: 5px;
    }
    100%{
        margin-right: 0px;
    }
}
.hero-section p{
    text-align: center;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 50px 30% ;
    font-size: 17px;
}
.hero-service{
    text-align: center;
}
.hero-service a{
    text-decoration: none;
    color: white;
    background-color: rgb(255, 136, 0);
    padding: 10px 20px;
    border-radius: 50px;
    transition: .3s;
}

.hero-section a:hover{
    background-color: rgb(211, 95, 0);
    
}
.booking-form{
    height: 35vh;
    padding: 20px;
    background-color: beige;
    position: absolute;
    width: 90%;
    left: 20px;
    margin-top: 80px;
    justify-content: center;
    border-radius: 30px;
    box-shadow: 3px 3px 10px  rgba(0, 0, 0, 0.466);
}
.booking-form h2{
    font-size: 30px;
}
.booking-form form{
    display: flex;
    flex-wrap: wrap;
}
.form{
    margin-right: 10px;
}
.form label{
    cursor: pointer;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.form label span{
    color: red;
}
.form input {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    background-color: rgb(219, 219, 219);
    border-radius: 10px;
}
.booking-form form button{
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background-color: rgb(211, 95, 0);
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    cursor: pointer;
    transition: .3s ease;
}
.booking-form form button:hover{
    font-size: 15px;
}
#logos{
    margin: 0px 30px;
}
#logos img{
    height: 200px;
    margin-left: 20px;
}
.about-section{
    display: flex;
    flex-wrap: wrap;
    margin: 30px;
}
.about-img{
    width: 40%;
}
.about-img img{
    height: 100px;
}
.about-img img:nth-child(1){
    height: 300px;
    border-radius: 20px;

}
.about-img img:nth-child(3){
    height: 150px;
    border-radius: 20px;
}
.about-img img:nth-child(4){
    width: 45%;
    border-radius: 20px;
}


.about-text{
    width: 50%;
}
.about-text h3{
    color: rgb(255, 136, 0);
    margin-top: 0;
}
.about-text h2{
    font-size: 45px;
    margin-top: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.about-text p{
    margin-top: 0;
    font-size: 14px;
    color: rgb(94, 94, 94);
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.about-lists{
    display: flex;
    margin-top: 20px;
}
.about-lists ul{
    list-style: none;
    margin-right: 20px;
    margin-left: 0;
    text-align: left;
}
.about-lists ul li{
    padding-bottom: 10px;
    font-weight: 300;
    font-size: 15px;
}
.about-lists ul li .fa-solid{
    padding-right: 10px ;
    color: rgb(255, 136, 0);
}
.about-text a{
    text-decoration: none;
    padding: 10px 20px;
    background-color: rgb(255, 136, 0);
    border-radius: 50px;
    color: white;
}
.overview{
    display: flex;
    flex-wrap: wrap;
    padding: 80px;
    background-color: beige;
    text-align: center;
    align-items: center;
    justify-content: space-around;
}
.overview i{
    font-size: 40px;
    color: rgb(255, 136, 0);
}
.overview img{
    height: 40px;
    color: rgb(255, 136, 0);
}
.overview h2{
    font-size: 30px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.overview h2 span{
    font-size: 20px;
    color: rgb(255, 136, 0);
}
.overview p{
    margin-top: 0;
    font-size: 14px;
    color: rgb(94, 94, 94);
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.our-services{
    text-align: center;
    margin-bottom: 50px;
}
.our-services h4{
    color: rgb(255, 136, 0);
}
.our-services h2{
    font-size: 35px;
    font-weight: 700;
}
.our-services p{
    margin: 0 30%;
    font-size: 14px;
    color: rgb(94, 94, 94);
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 30px;
}
.services-div{
    display: grid;
    grid: auto auto/ auto auto auto;
    
    
}
.img-text-container{
    position: relative;
}
.service-img{
    
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    background-color: blue;
    text-align: left;
    margin: 10px ;
    padding: 50px 30px;
    color: white;
    border-radius: 20px;
    width: 80%;
    transition: scale .25s ease-in, filter .25s ease-in;
}

.services-container{
    position: absolute;
    bottom: 10px;
    text-align: left;
    background-color: rgba(165, 42, 42, 0.603);
    margin: 10px 20%;
    backdrop-filter: blur(10px);
    height: 240px;
    padding: 50px 30px;
    color: white;
    border-radius: 20px;
}
.img-text-container:has(.services-container:hover) .service-img:not(:hover){
    
    scale: 0.8;
    filter: blur(4px);
}
.services-container p{
    margin: 0;
    color: white;
    margin-bottom: 20px;
}
.services-container a{
    text-decoration: none;
    padding: 10px 15px;
    background-color: rgb(255, 136, 0);
    border-radius: 20px;
    color: white;
    transition: .3s ease;
}
.services-container a:hover{
    background-color: rgb(182, 97, 0);
}
#more-services{
    text-decoration: none;
    font-weight: bold;
    color: rgb(255, 136, 0);
}
#more-services:hover{
    text-decoration: underline;
}
.testimonial{
    margin: 10px 20px 50px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.testimonial-img{
    width: 30%;
    background: linear-gradient( #7777777e, #18181873, #33333342, #744322d2), url(images/tourist4.jpg);
    height: 350px;
    margin-bottom: 20px;
    border-radius: 15px;
    padding: 20px;
}
.testimonial-img h4{
    margin-top: 50px;
    color: rgb(255, 136, 0);
    font-size: 19px;
}
.testimonial-img h2{
    font-size: 40px;
    font-weight: 800;
    color: white;

}
.testimonial-img p{
    font-size: 16px;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}
.testimonial-container{
    width: 60%;
    display: flex;
    gap: 20px;
    overflow-x: scroll;
}
.testimonial-card{
    animation: autoslide 5s infinite alternate;
    position: relative;
    text-align: center;
    background-color: rgb(241, 109, 0);
    margin-left: 10px;
    padding: 30px 50px;
    border-radius: 15px;
    
}
@keyframes autoslide {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
.rating-star{
    color: yellow;
}
.rating-star .fa-star{
    margin-right: 5px;
}

.testimonial-card h3{
    width: 200px;
    font-size: 30px;
    color: white;
}

.testimonial-card p{
    text-align: left;
    font-size: 14px;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
}
.why-choose-us{
    margin: 20px;
    text-align: center;
}
.choose-us-texts h4{
    font-size: 20px;
    color: rgb(245, 110, 0);

}
.choose-us-texts h2{
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 30px;
}
.choose-us-img{
   text-align: center;
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) ;
   gap: 10px;
}
.choose-us-img .div{
    position: relative;
    margin-bottom: 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: auto;
    padding: 60px;
    height: 300px;
}
.choose-us-img h3{
    position: absolute;
    top: 15%;
    margin-left: 20px;
    font-size: 25px;
    color: white;
}
.choose-us-img p{
    position: absolute;
    top: 30%;
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
    font-size: 16px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    transform: translateY(80px);
    transition: opacity .5s ease, transform .5s ease ;
    opacity: 0;
}
.choose-us-img:hover p{
    transform: translateY(0);
    opacity: 1;
}
.overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.466);
    transition: background 0.3s ease;
}
.choose-us-img:hover .overlay{
    background: rgba(0,0,0,0.7);
}
.contact{
    height: 50vh;
    background-image: linear-gradient( #4141417e, #52525273, #33333342, #744322d2), url(images/flight-booking2.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    margin: 50px;
    padding: 20px;
    text-align: center;
    align-content: center;
    border-radius: 10px;
}
.contact h2{
    font-size: 35px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 1000;
    color: white;
}
.contact p{
    font-size: 15px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Gill Sans,' 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 10px 15%;
    color: white;
}
.contact a{
    padding: 10px 15px;
    color:  white;
    text-decoration: none;
    background-color: rgb(245, 110, 0);
    border-radius: 10px;
    box-shadow: 3px 3px 10px black;
    transition: .3s;
}
.contact a:hover{
    padding: 12px 17px;
    
}
.footer{
    background-color: rgb(0, 29, 0);
    padding: 30px;
    color: white;
}
footer{
    display: flex;
    height: 50vh;
    justify-content:space-between ;
}
.logo-div{
    font-size: 15px;
    max-width: 25%;
}
.logo-div img{
    height: 80px;
    margin-bottom: 30px;
}
.logo-div p{
    font-size: 15px;
    margin-bottom: 15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.logo-div a{
    text-decoration: none;
}
.logo-div .fa-brands{
    font-size: 20px;
    padding-right: 10px;
    color: rgb(245, 110, 0);
}
footer h4{
    font-size: 20px;
}
footer a{
    text-decoration: none;
    transition: .3s;
}
footer a:hover{
    color: rgb(170, 77, 0);
}
.quick-links p{
    margin-bottom: 10px;
    font-size: 16px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.quick-links a{
    color: rgb(245, 110, 0);
}
.services-section a{
    color: rgb(245, 110, 0);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.address-section p{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
#copyright{
    text-align: center;
    font-size: 13px;
}












@media screen and (max-width: 800px){
    .hamburger{
        height: 40px;
        font-size: 30px;
        background-color: rgb(255, 136, 0);
        padding: 5px 10px;
        border-radius: 5px;
        color: white;
        display: block;
        top: 20px;
        right: 20px;
        cursor: pointer;
        transition: .4s ease;
    }
    .hamburger:hover{
        color: rgb(248, 186, 116);
    }
    .nav.visible{
        height: 250px;
    }
    .nav{
        height: 0;
        overflow: hidden;
        /* display: none; */
        text-align: center;
        justify-content: center;
        background-color: transparent;
        margin: 20px;
        align-items: center;
        transition: height .5s ease-in-out;
    }
    header a img{
        height: 30px;
       
    }
    nav a{
        display: block;
        font-size: 17px;
        text-decoration: none;
        font-weight: bold;
    }
    .navigations{
        text-align: center;
        
    }
    .navigations a{
        justify-content: space-between;
        margin-left: 20px;
        color: black;
        margin-bottom: 30px;
        transition: .4s;
    }
    .navigations a:hover{
        color: rgb(255, 136, 0);
    }
    #contact-nav{
        color: rgb(255, 136, 0);
        padding: 10px;
        border: 3px solid rgb(255, 136, 0);;
        border-radius: 10px;
        transition: .3s;
    }
    #contact-nav:hover{
        background-color: rgb(255, 136, 0);
        color: rgb(0, 83, 0);
    }

    .hero-section{
        top: 0;
        height: 100vh;
        background: linear-gradient( #7777777e, #1818184d, #33333342, #744322d2), url(images/download\ \(30\).jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        margin-bottom: 90vh;
    }
    .hero-section h1{
        text-align: center;
        margin-left: 20px;
        padding-top: 100px;
        font-size: 40px;
        color: white;
        font-weight: 600;
    }
    .hero-section h1 span{
        color: rgb(182, 97, 0);
        text-shadow: 2px 2px 5px rgb(253, 201, 133);
    }
    .lines{
        text-align: center;
        display: flex;
        justify-content: center;
    }
    .lines div{
        border-radius: 100px;
        margin-left: 5px;
        text-align: center;
        width: 7px;
        height: 1px;
        background-color: white;
        padding-bottom: 5px;
        
    }
    .lines div:nth-child(4){
        width: 40px;
    }
    .hero-section p{
        text-align: center;
        color: white;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        margin: 50px 10% ;
        font-size: 17px;
    }

    .booking-form{
        height: 100vh;
        padding: 20px;
        background-color: beige;
        position: absolute;
        width: 80%;
        left: 20px;
        margin-top: 80px;
        justify-content: center;
        border-radius: 30px;
        box-shadow: 3px 3px 10px  rgba(0, 0, 0, 0.466);
    }
    .booking-form h2{
        font-size: 30px;
    }
    .booking-form form{
        display: block;
    }
    .form{
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .form label{
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }
    .form input {
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 10px;
        border: none;
        background-color: rgb(219, 219, 219);
        border-radius: 10px;
    }
    .booking-form form button{
        padding: 10px 20px;
        border: none;
        border-radius: 20px;
        background-color: rgb(211, 95, 0);
        color: white;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

    .about-section{
        display: block;
        flex-wrap: wrap;
        margin: 30px;
    }
    .about-img{
        width: 100%;
    }
    .about-img img{
        height: 100px;
    }
    .about-text{
        width: 100%;
    }

    .about-text h3{
        color: rgb(255, 136, 0);
        margin-top: 20px;
    }
    .about-text h2{
        font-size: 35px;
        margin-top: 20px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }
    .about-text p{
        margin-top: 0;
        font-size: 14px;
        color: rgb(94, 94, 94);
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.overview{
    display: block;
    flex-wrap: wrap;
    padding: 80px;
    background-color: beige;
    text-align: center;
    align-items: center;
    justify-content: space-between;
}
.overview div{
    margin-bottom: 50px;
}

.our-services p{
    margin: 0 10%;
    font-size: 14px;
    color: rgb(94, 94, 94);
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 30px;
}
.services-div{
    display: block;
    justify-content: center;
    text-align: center;
}
.service-img{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
    background-color: blue;
    text-align: left;
    margin: 10px ;
    padding: 80px 30px;
    color: white;
    border-radius: 20px;
    width: 80%;
    transition: scale .25s ease-in, filter .25s ease-in;
}
.services-container{
    text-align: left;
    
    
    
    height: 240px;
    padding: 50px 30px;
    color: white;
    border-radius: 20px;
}
.services-container p{
    margin: 0;
    margin-bottom: 20px;
    color: white;
}

.testimonial{
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.testimonial-img{
    width: 100%;
}
.testimonial-container{
    width: 100%;
    display: flex;
    gap: 40px;
    overflow-x: scroll;
}
.choose-us-texts h4{
    font-size: 18px;
    color: rgb(245, 110, 0);

}
.choose-us-texts h2{
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
}
.choose-us-img{
   text-align: center;
    display: block;
    flex-wrap: wrap;
    gap: 0px;
    
}
.choose-us-img p{
    position: absolute;
    top: 30%;
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
    font-size: 16px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    transform: translateY(40px);
    transition: opacity .5s ease, transform .5s ease ;
    opacity: 1;
}
.choose-us-img p:hover{
    transform: translateY(40px);
    opacity: 1;
}
.choose-us-img div{
    margin-bottom: 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: auto;
    padding: 60px;
    height: 300px;
}
.contact h2{
    font-size: 20px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 1000;
    color: white;
}
.contact p{
    font-size: 15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 10px 10px;
    color: white;
}
.footer{
    text-align: center;
    background-color: rgb(0, 29, 0);
    padding: 80px 30px 30px 30px;
    color: white;
}
footer{
    display: block;
    height: auto;
    justify-content: center ;
}
.logo-div{
    font-size: 15px;
    max-width: 100%;
}
.logo-div img{
    height: 80px;
    margin-bottom: 30px;
}

.logo-div p{
    font-size: 14px;
    margin-bottom: 15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-bottom: 20px;
}
}






@media screen and (max-width: 430px) {
    .about-section{
        display: block;
        flex-wrap: wrap;
        margin: 30px;
    }
    .about-img{
        width: 100%;
        text-align: center;
    }
    .about-img img{
        height: 100px;
    }
    .about-img img:nth-child(1){
        height: 200px;
        border-radius: 20px;
    
    }
    .about-img img:nth-child(3){
        height: 110px;
        border-radius: 20px;
    }
    .about-img img:nth-child(4){
        width: 40%;
        height: 80px;
        border-radius: 20px;
    }
    .about-text{
        width: 100%;
    }

    .about-text h3{
        color: rgb(255, 136, 0);
        margin-top: 20px;
    }
    .about-text h2{
        font-size: 30px;
        margin-top: 20px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }
    .about-text p{
        margin-top: 0;
        font-size: 14px;
        color: rgb(94, 94, 94);
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.about-lists{
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}
.about-lists ul{
    list-style: none;
    margin-right: 10px;
    margin-left: 0;
    text-align: left;
}
.about-lists ul li{
    padding-bottom: 10px;
    font-weight: 300;
    font-size: 14px;
    margin-left: 0;
}
.about-lists ul li .fa-solid{
    padding-right: 10px ;
    color: rgb(255, 136, 0);
}

.services-container{
    text-align: left;
    height: 240px;
    padding: 20px 30px 60px 30px;
    padding-bottom: 80px;
    color: white;
    border-radius: 20px;
}
#copyright{
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: grey;
}
    
}