/* CSS Rules for AIMMEK Tours & Travels website */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
/* font-family: "Lora", serif; */

@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');
/* font-family: "Shadows Into Light", cursive; */

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    font-family: "Lora", serif;
    font-optical-sizing: auto;
}
body
{
    background: white;
}

.header.header-scrolled
{
    background-color: rgba(190, 197, 173, 0.9);
}

/* CSS Rules for Widgets-effect */
.float-icons.widgets-show
{
    opacity: 1;
}

/* Header Rules */
.header
{
    border: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 5% 15px 10%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    z-index: 2;
    transition: all .5s ease-in-out;
}
.header .logo
{
    border: transparent;
    width: 12%;
}
.header .logo img
{
    border: transparent;
    width: 100%;
    display: grid;
    margin: auto;
}
.header .navlinks
{
    border: transparent;
    width: 40%;
    margin: 0 10%;
    padding: 0 1%;
    height: auto;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.header .navlinks a
{
    border: transparent;
    margin: 0 1%;
    color: #3B5249;
    font-size: 18px;
    font-weight: 700;
    transition: all .5s ease-in-out;
}
.header .navlinks a:hover
{
    text-decoration: double underline;
}
.header .navlinks .vertical-lines
{
    width: 3px;
    height: max-content;
    background-color: #519872;
    color: transparent;
}
.header .navlinks a.color-active
{
    text-decoration: double underline;
    transition: all .5s ease-in-out;
}
.header .nav-contact-btn
{
    border: inset 3px #519872;
    border-radius: 5px;
    color: #3B5249;
    font-weight: 900;
    display: grid;
    width: fit-content;
    padding: 1%;
    transition: all .5s ease-in-out;
}
.header .nav-contact-btn:hover
{
    background-color: #519872;
    color: white;
}

@media screen and (max-width: 600px)
{
    .header
    {
        min-width: 0;
        flex-direction: column;
        padding: 10px 0;
    }
    .header .logo
    {
        width: 35%;
        margin: 5% auto 3%;
    }
    .header .logo img
    {
        display: grid;
        width: 100%;
    }
    .header .navlinks
    {
        margin: 0 auto 2%;
        width: 85%;
    }
    .header .navlinks a
    {
        font-size: 16px;
        margin: 5px 0;
    }
    .header .nav-contact-btn
    {
        display: none;
    }
}

/* Hero Image Rules */
.cover
{
    border: transparent;
    width: 100%;
    margin: auto;
    padding: 5% 10%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.6)), url(/images/AIMMEK_Landing_Page.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .5s ease-in-out;
}
.cover .cover-txt
{
    border: transparent;
    width: fit-content;
    margin: 25% auto 0;
    padding: 5% 0;
    text-align: center;
}
.cover .cover-txt h1
{
    border: transparent;
    width: fit-content;
    margin: auto;
    display: grid;
    font-size: 40px;
    letter-spacing: 10px;
    background-image: linear-gradient(to right, #BEC5AD 0%, #BEC5AD 50%, #F2FBFD 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
.cover .cover-txt p
{
    border: transparent;
    width: 75%;
    display: grid;
    font-size: 25px;
    text-align: center;
    margin: 2% auto 0;
    color: #F2FBFD;
    font-family: "Shadows Into Light", cursive;
}
.cover .cover-txt .cover-btn
{
    color: #F2FBFD;
    text-align: center;
    font-weight: 800;
    border: inset 3px #519872;
    background-color: #519872;
    border-radius: 10px;
    width: fit-content;
    display: grid;
    position: relative;
    margin: 4% auto 0;
    padding: 2% 1.5%;
    transition: all .5s ease-in-out;
}
.cover .cover-txt .cover-btn:hover
{
    transform: scale(1.05);
    box-shadow: 0px 0px 10px #519872;
}
@media screen and (max-width: 600px)
{
    .cover
    {
        min-width: 0;
        padding: 5% 2%;
        overflow: hidden;
    }
    .cover .cover-txt
    {
        margin: 80% auto 5%;
        text-align: center;
    }
    .cover .cover-txt .cover-btn
    {
        margin: 5% auto 0;
        padding: 3% 2%
    }
}

/* About Us Section Rules */
.about-us
{
    border: transparent;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: top center;
    transition: all .5s ease-in-out;
}
.about-us .about-1, .about-us .about-2 
{
    border: transparent;
    width: 50%;
    padding: 9% 10%;
    text-align: justify;
    font-size: 18px;
}
.about-us .about-2
{
    background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.6)), url(/images/AIMMEK-About.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #F2F2F2;
    text-shadow: 1px 1px 20px #000000;
    font-style: italic;
    font-weight: 700;
}
@media screen and (max-width: 600px)
{
    .about-us
    {
        min-width: 0;
        flex-direction: column;
    }
    .about-us .about-1, .about-us .about-2 
    {
        width: 100%;
        margin: auto;
        padding: 25% 10%;
        font-size: 15px;
    }
}

.title
{
    border: transparent;
    width: fit-content;
    margin: 3% auto 1%;
    font-size: 50px;
    text-align: center;
    color: #3B5249;
    font-family: "Shadows Into Light", cursive;
}
@media screen and (max-width: 600px)
{
    .title
    {
        min-width: 0;
        font-size: 30px;
        margin: 10% auto 7%;
    }
}

/* Why Choose Us Section Rules */
.WTU
{
    border: transparent;
    width: 100%;
    margin: 3% auto 7%;
    display: grid;
    transition: all .5s ease-in-out;
}
.WTU ul
{
    border: transparent;
    width: 50%;
    margin: auto;
    padding-left: 8%;
    font-size: 18px;
    list-style-image: url(/images/list-tick.png);
}
.WTU ul li
{
    border: transparent;
    margin: 1% 0;
    padding-bottom: 1%;
}
@media screen and (max-width: 600px)
{
    .WTU
    {
        min-width: 0;
    }
    .WTU ul
    {
        width: 70%;
        padding-left: 10%;
        font-size: 15px;
    }
    .WTU ul li
    {
        margin: 2% 0;
        padding-bottom: 0.5%;
    }
}

/* Services Section Rules */
.services
{
    border: transparent;
    width: 100%;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.services .services-main
{
    border: transparent;
    width: 70%;
    margin: auto;
    transition: all .5s ease-in-out;
}
.services .services-main .service-pan-left, .services .services-main .service-pan-right
{
    border: transparent;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    transition: all .5s ease-in-out;
}
.services .services-main .service-pan-left:hover, .services .services-main .service-pan-right:hover
{
    transform: scale(1.01);
    margin: 1% 0;
    box-shadow: 5px 5px 15px #3B5249;
}
.services .services-main .service-pan-left img, .services .services-main .service-pan-right img
{
    width: 50%;
}
.services .services-main .service-pan-left .service-txt, .services .services-main .service-pan-right .service-txt
{
    border: transparent;
    width: 50%;
    padding: 5% 7%;
}
.services .services-main .service-pan-left .service-txt h5, .services .services-main .service-pan-right .service-txt h5
{
    border: transparent;
    width: 100%;
    font-size: 18px;
    color: #3B5249;
    margin: 0 auto 3%;
}
.services .services-main .service-pan-left .service-txt p, .services .services-main .service-pan-right .service-txt p
{
    border: transparent;
    width: 100%;
    font-size: 18px;
}
@media screen and (max-width: 600px)
{
    .services
    {
        min-width: 0;
    }
    .services .services-main
    {
        width: 90%
    }
    .services .services-main .service-pan-left
    {
        border: inset 5px #BEC5AD;
        border-radius: 10px;
        overflow: hidden;
        flex-direction: column;
        margin-bottom: 10%;
    }
    .services .services-main .service-pan-right
    {
        border: inset 5px #BEC5AD;
        border-radius: 10px;
        overflow: hidden;
        flex-direction: column-reverse;
        margin-bottom: 10%;
    }
    .services .services-main .service-pan-left img, .services .services-main .service-pan-right img
    {
        width: 100%;
    }
    .services .services-main .service-pan-left .service-txt, .services .services-main .service-pan-right .service-txt
    {
        width: 100%;
    }
    .services .services-main .service-pan-left .service-txt h5, .services .services-main .service-pan-right .service-txt h5
    {
        margin: 2% auto 10%;
    }
    .services .services-main .service-pan-left .service-txt p, .services .services-main .service-pan-right .service-txt p
    {
        font-size: 15px;
    }
}

/* Why Choose AIMMEK Tours & Travel Rules */
.WCU
{
    border: transparent;
    width: 100%;
    margin: 7% auto 0;
    transition: all .5s ease-in-out;
}
.WCU p
{
    border: transparent;
    width: 70%;
    margin: auto;
    text-align: center;
    font-size: 18px;
}
.WCU ul
{
    border: transparent;
    width: 50%;
    margin: 2% auto;
    padding-left: 16%;
    font-size: 18px;
    list-style-image: url(/images/list-tick.png);
}
.WCU ul li
{
    border: transparent;
    margin: 1% 0;
    padding-bottom: 1%;
}
@media screen and (max-width: 600px)
{
    .WCU
    {
        min-width: 0;
    }
    .WCU p
    {
        width: 85%;
        font-size: 15px;
    }
    .WCU ul
    {
        margin: 2% auto 10%;
        width: 70%;
        padding-left: 12%;
        font-size: 15px;
    }
    .WCU ul li
    {
        margin: 2% 0;
        padding-bottom: 0.5%;
    }
}

/* Mission & Vision Section Rules */
.mission_vision
{
    border: transparent;
    width: 70%;
    margin: 10% auto 0;
    display: flex;
    justify-content: space-evenly;
    align-items: top center;
    transition: all .5s ease-in-out;
}
.mission_vision .mission, .mission_vision .vision
{
    border: transparent;
    width: 49.5%;
    padding: 2% 4%;
    transition: all .5s ease-in-out;
}
.mission_vision .mission:hover, .mission_vision .vision:hover
{
    transform: scale(1.01);
}
.mission_vision .mission h5, .mission_vision .vision h5
{
    margin: 0 auto 3%;
    text-decoration: underline #BEC5AD;
    font-size: 40px;
    color: #3B5249;
    font-family: "Shadows Into Light", cursive;
}
.mission_vision .mission p, .mission_vision .vision p
{
    font-size: 18px;
    text-align: justify;
}
.mission_vision .div-splitter
{
    border-radius: 15px;
    width: 1%;
    background: #519872;
    color: #519872;
}
@media screen and (max-width: 600px)
{
    .mission_vision
    {
        border: transparent;
        min-width: 0;
        margin: 15% auto 0;
        width: 80%;
        flex-direction: column;
    }
    .mission_vision .mission, .mission_vision .vision
    {
        padding: 10% 4%;
        width: 100%;
    }
    .mission_vision .mission h5, .mission_vision .vision h5
    {
        font-size: 35px;
    }
    .mission_vision .mission p, .mission_vision .vision p
    {
        font-size: 15px;
    }
    .mission_vision .div-splitter
    {
        height: 5px;
        width: 50%;
        margin-left: 4%;
    }
}

/* Testimonials Rules */
.testimonials
{
    border: transparent;
    margin: 8% auto 0;
    width: 100%;
    transition: all .5s ease-in-out;
}
.testimonials .test-main
{
    border: transparent;
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: top center;
}
.testimonials .test-main .test-div
{
    border: inset 3px #519872;
    border-radius: 10px;
    width: 30%;
    padding: 5%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.6)), url(/images/AIMMEK_Testimonials.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #F2F2F2;
    text-shadow: 1px 1px 20px #000000;
    transition: all .5s ease-in-out;
}
.testimonials .test-main .div-2
{
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.6)), url(/images/AIMMEK_Testimonials_2.jpg);
}
.testimonials .test-main .div-3
{
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.6)), url(/images/AIMMEK_Testimonials_3.jpg);
}
.testimonials .test-main .test-div:hover
{
    transform: scale(1.01);
}
.testimonials .test-main .test-div img
{
    display: block;
    width: 50%;
    margin: 0 auto 15%;
}
.testimonials .test-main .test-div p
{
    text-align: center;
    font-style: italic;
    font-size: 18px;
    font-weight: 500;
}
@media screen and (max-width: 600px)
{
    .testimonials
    {
        min-width: 0;
    }
    .testimonials .test-main
    {
        width: 80%;
        flex-wrap: wrap;
    }
    .testimonials .test-main .test-div
    {
        width: 90%;
        padding: 7%;
        margin: 0 auto 5%;
    }
    .testimonials .test-main .test-div p
    {
        font-size: 15px;
    }
}

/* Footer Section Rules */
.footer
{
    border: transparent;
    border-radius: 15px 15px 0 0;
    background: #BEC5AD;
    width: 100%;
    padding: 5% 7% 1%;
    margin: 5% auto 0;
    display: flex;
    justify-content: space-evenly;
    align-items: top center;
}
.footer .footer-main
{
    border: transparent;
    width: 40%;
}
.footer .footer-main .RFYNA
{
    margin: 0 auto 8%;
}
.footer .footer-main .RFYNA h5
{
    font-size: 30px;
    font-family: "Shadows Into Light", cursive;
    color: #3B5249;
}
.footer .footer-main .RFYNA p
{
    font-size: 18px;
    font-style: italic;
}
.footer .footer-main .contacts
{
    border: transparent;
    width: 70%;
}
.footer .footer-main .contacts .contacts-div
{
    border: transparent;
    width: 100%;
    margin: 0 0 2%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.footer .footer-main .contacts .contacts-div img
{
    width: 10%;
    margin-left: 2%;
}
.footer .footer-main .contacts .contacts-div p
{
    width: 85%;
    font-size: 16px;
    font-weight: 700;
    color: #3B5249;
}
.footer .trademark
{
    border: transparent;
    padding: 0.5%;
    width: 20%;
    align-self: flex-end;
}
.footer .trademark .enclosure
{
    border: transparent;
    width: 60%;
    padding: 5% 0;
    margin: auto;
    display: grid;
    overflow: hidden;
    transition: all .5s ease-in-out;
}
.footer .trademark .enclosure:hover
{
    cursor: pointer;
    img
    {
        width: 30%;
        animation: scale 3s infinite;
    }
    h4,h3
    {
        bottom: 0;
    }
}
@keyframes scale
{
    0%
    {
        transform: scale(1.0);
    }
    50%
    {
        transform: scale(1.1);
    }
    100%
    {
        transform: scale(1.0);
    }
}
.footer .trademark .enclosure img
{
    width: 50%;
    margin: auto;
    transition: all .5s ease-in-out;
}
.footer .trademark .enclosure h4
{
    color: #3B5249;
    text-align: center;
    position: relative;
    bottom: -100px;
    font-size: small;
    transition: all .5s ease-in-out;
}
.footer .trademark .enclosure h3
{
    text-align: center;
    background-image: linear-gradient(to right, #3B5249 0%, #519872 70%,#ffffff 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    position: relative;
    bottom: -100px;
    font-size: medium;
    transition: all .5s ease-in-out;
}
@media screen and (max-width: 600px)
{
    .footer
    {
        min-width: 0;
        flex-direction: column;
    }
    .footer .footer-main
    {
        width: 90%;
        margin: 2% auto 0;
    }
    .footer .footer-main .RFYNA h5
    {
        margin-bottom: 10%;
        text-align: center;
    }
    .footer .footer-main .RFYNA p
    {
        text-align: center;
        margin-bottom: 10%;
    }
    .footer .footer-main .contacts
    {
        width: 100%;
    }
    .footer .footer-main .contacts .contacts-div
    {
        width: 100%;
        margin: 0 0 5%;
    }
    .footer .footer-main .contacts .contacts-div img
    {
        margin-left: 10%;
    }
    .footer .footer-main .contacts .contacts-div p
    {
        font-size: 15px;
    }
    .footer .trademark
    {
        width: 50%;
        margin: 3% auto 0;
    }
}

/* Copyright Section Rules */
.copyright
{
    border: transparent;
    background: #BEC5AD;
    width: 100%;
    padding: 0.5% 0;
    transition: all .5s ease-in-out;
}
.copyright h4
{
    border: transparent;
    width: fit-content;
    margin: auto;
    background-image: linear-gradient(to right, #3B5249 0%, #3B5249 50%, #519872 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}
@media screen and (max-width: 600px)
{
    .copyright
    {
        min-width: 0;
        padding: 2% 10% 5%;
    }
    .copyright h4
    {
        font-size: 12px;
        text-align: center;
    }
}

/* CSS Rules fpr Float Icons */
.float-icons
{
    border: transparent;
    width: 7%;
    position: sticky;
    bottom: 5px;
    left: 95%;
    transition: all .5s ease-in-out;
    opacity: 0;
}
.float-whatsapp
{
    border: transparent;
    width: 50%;
    margin-left: 30%;
    transition: all .5s ease-in-out;
}
.float-whatsapp:hover
{
    transform: scale(1.05);
}
@media screen and (max-width: 600px)
{
    .float-icons
    {
        width: 20%;
    }
}

/* CSS Rules for Contacts info section */
.contact-info
{
    border: transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.5)), url(/images/AIMMEK_Contact_us.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    width: 38%;
    padding: 2% 4% 1%;
    margin: auto;
    display: grid;
    transition: all .5s ease-in-out;
}
.contact-info h4
{
    font-size: 35px;
    text-align: center;
    font-family: "Shadows Into Light", cursive;
    color: #3B5249;
}
.contact-info input[type=text]
{
    border: 1.5px inset #3B5249;
    border-radius: 5px;
    width: 100%;
    padding: 1%;
    margin: 1% 0;
}
.contact-info textarea
{
    border: 1.5px inset #3B5249;
    border-radius: 5px;
    width: 100%;
    padding: 1%;
    margin: 1% 0;
}
.contact-info input[type=submit]
{
    border: 3px outset #f2f2f2;
    background: none;
    border-radius: 5px;
    margin: auto;
    padding: 2% 5%;
    font-size: 15px;
    color: #f2f2f2;
    font-weight: 600;
    transition: all .5s ease-in-out;
}
.contact-info input[type=submit]:hover
{
    border: 3px outset #3B5249;
    transform: scale(1.01);
    background: #3B5249;
    color: white;
    cursor: pointer;
}
@media screen and (max-width: 600px)
{
    .contact-info
    {
        min-width: 0;
        width: 90%;
        padding: 7% 5% 5%;
        margin: 10% auto;
    }
    .contact-info h4
    {
        font-size: 30px;
    }
    .contact-info input[type=text]
    {
        padding: 1% 2%;
    }
    .contact-info textarea
    {
        padding: 1% 2%;
    }
}