@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: lightgray; 
}



a {
    color: white;
    text-decoration: none;
}

input, textarea {
    width: 100%;
    padding: 12px 4px;
    box-sizing: border-box;
    background-color: #FAFAFA;
    border: 2px solid black;
}

header {
    display: flex;
    position: fixed;
    min-height: 8rem;
    justify-content: space-evenly;
    align-items: center;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

.logo {
    width: 8%;
    cursor: pointer;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    display: inline-block;
    list-style: none;
}

.nav-links li a {
    transition: all 0.3s ease 0s;
    color: black;
}

.nav-links li a:hover {
    color: red;
}

.hero-section {
    position: relative;
    height: 100dvh; 
    text-align: center;
}

.hero-text {
    color: white;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 150%;
}

.background-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.portfolio {
    text-align: center;
}

.image-container {
    display: inline-block;
    margin: 0 1rem;
}

.image-container img {
    max-width: 200px;
    max-height: 200px;
    margin-bottom: 1rem;
    border: 0.3rem solid #3c9edb;
    border-radius: 10px;
}


.image-container p {
    margin-top: 0;
    margin-bottom: 4rem;
}
.left-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 1rem;
    margin-right: auto;
}
.list-container li {
    list-style-image: url("images/CheckCircle.png");
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

.checklist-section {
    flex-direction: row;
    padding-bottom: 1rem;
    padding-top: 1rem;
}

#fully-reg{
    font-size: larger;
}

.left-list, .right-list {
    flex: 1;
}

.about-us, .checklist-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #3c9edb;
}

.about-us {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.checklist li {
    list-style-type: decimal;
}

.contact-form {
    display: flex;
    margin-top: 2rem;
    margin-bottom: 2rem;

}

.top-form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 5px;
}

.left-side {
    padding-left: 6rem;
    width: 50%;
}

.right-side {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    gap: 100px;
}

footer {
    display: flex;
    justify-content: space-evenly;
    background-color: black;
    height: 4rem;
    color: white;
}

footer:hover {
    color: orange;
}

.myButton {
    box-shadow: inset 0px 1px 0px 0px #ffffff;
    background: linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
    background-color: #ffffff;
    border-radius: 15px;
    border: 1px solid #dcdcdc;
    display: inline-block;
    cursor: pointer;
    color: #666666;
    font-family: Arial;
    font-size: 15px;
    padding: 7px 24px;
    text-decoration: none;
    text-shadow: 0px 1px 0px
}
.myButton:hover {
    background: linear-gradient(to bottom, #e9e9e9 2%, #d9d9d9 100%);
    background-color: #d9d9d9;
    color: white;
}


.whatsappbutton {
    display: flex; 
    width: auto; 
    max-width: 300px; 
    margin-top: 2rem; 
    margin-left: 5.5rem
}

.whatsappbutton img {
    width: 100%;
    height: auto; 
}


@media only screen and (max-width: 600px) {


    .contact-form{
        flex-direction: column; 
        height: 90dvh; 


    }
    .left-container, .right-side {
        flex: 1; 
        text-align: center;
    }
    
    footer {
        flex-direction: column;
        height: auto; 
        align-items: center; 
        padding: 10px 0; 
        font-size: 1.2rem;

    }

 

    .logo {
        width: 20%; 
    }

    .nav-links li a {
        font-size: 14px; 

    .left-side, .right-side {
        width: 100%; 
        padding-left: 0; 
    }

    .image-container img {
        max-width: 100%;
        height: auto;
    }


    
    

}
}
img, video, iframe {
    max-width: 100%;
    height: auto;
}
