*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

#schedule-top-main-container{
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 50px;
    background-color: #121216;
    align-items: center;
    flex-direction: column;
    padding: 50px;
    width: 100%;
}
#schedule-top-container{
    height: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#schedule-top-container h1{
    color: white;
}
#schedule-top-container h2{
    color: #4b9533;
    font-weight: 900;
}
#schedule-top-container p{
    color: white;
}
#schedule-top-container span{
    font-size: x-small;
    color: white;
}
#schedule-calendly-container {
    position: relative; /* Required for the pseudo-element to be positioned correctly */
    height: 800px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    background-image: url(/Images/backgroundSchedule.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#schedule-calendly-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    z-index: 1;
}

#schedule-calendly-container > * {
    position: relative;
    z-index: 2;
}

#schedule-calendly-container h2 {
    color: #000000;
    font-weight: 700;
}

.calendly-inline-widget {
    border-radius: 10px;
}

@media (max-width: 600px) {
    #schedule-top-container h1{
        font-size: 15px;
    }
    #schedule-top-container h2{
        font-size: 20px;
    }
    #schedule-top-container p{
        font-size: x-small;
    }
    #schedule-top-container span{
        font-size: 9px;
    }
    #schedule-calendly-container {
        height: 800px;
        padding: 0px;
    }
    #schedule-calendly-container h2 {
        font-size: 15px;
    }
    #schedule-top-main-container{
        padding: 20px;
    }
}

#schedule-main-container{
    height: 1000px;
    display: flex;
    display: none;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 50px;
    background-color: #121216;
    align-items: center;
    width: 100%;
}
#schedule-container-left{
    height: 90%;
    width: 50%;
    display: flex;
    align-items: self-start;
    justify-content: space-between;
}
#schedule-container-left-main{
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
}
#schedule-container-left-h1{
    font-size: 50px;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}
#schedule-container-left-p{
    color: white;
    font-weight: 100;
}


/* IMAGE SLIDER */
.marquee-container {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    position: relative;
}
.slider {
    overflow: hidden;
    width: 100%; 
    position: relative;
}

.slider-wrapper {
    display: flex;
    animation: slide 12s linear infinite; 
}
.slider-wrapper img {
    width: 100px;
    height: 100px;
    margin: 50px;
}
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* Adjust according to the number of images */
    }
}
/* IMAGE SLIDER END */

#schedule-container-right{
    height: 90%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#schedule-container-right-main{
    height: 100%;
    width: 80%;
    border-radius: 20px;
    background-color: rgb(226, 226, 226);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#schedule-container-right-main h4{
    color: #64ab2f;
    position: relative;
    height: 100px;
    width: 100%;
    padding-left: 50px;
    padding-top: 50px;
}
#Schedule-form-container{
    height: 90%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    padding-bottom: 0;
    padding-top: 0;
}
#Schedule-form-container p{
    color: black;
    font-size: small;
}
label{
    font-size: medium;
    padding-bottom: 5px;
    text-align: left;
}
input{
    height: 40px;
    width: 100%;
    border-radius: 20px;
    text-align: center;
    font-size: large;
    font-weight: 600;
    border: none;
}
input:focus{
    background-color: #64ab2f;
}
select{
    height: 40px;
    width: 100%;
    border-radius: 20px;
    text-align: center;
    font-size: large;
    background-color: white;
    color: black;
}
select:focus{
    background-color: #64ab2f;
    color: white;
}
#schedule-container-button{
    background-image: linear-gradient(to right,#1c732c,#64ab2f,#4b9533);  
    color: white;
}
@media (max-width: 991px){
    #schedule-main-container{
        height: 1400px;
        flex-direction:column-reverse;
    }
    #schedule-container-left{
        height: 30%;
        width: 90%;
    }
    #schedule-container-left-main{
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 100%;
    }
    #schedule-container-right{
        height: 60%;
        width: 100%;
    }
}
@media (max-width: 600px){
    #schedule-container-left-h1{
        font-size: 30px;
    }
    #schedule-container-left-p{
        font-size: 15px;
    }
    #schedule-container-right-main{
        height: 100%;
        width: 90%;
    }
    #schedule-container-right-main h4{
        position: relative;
        height: 100px;
        width: 100%;
        padding-left: 10px;
        padding-top: 50px;
        font-size: 23px;
    }
    input{
        height: 30px;
        font-size: large;
    }
    select{
        height: 30px;
        font-size: large;
    }
}



#Schedule-Demo-Get-in-Touch-Container{
    height: 450px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#Schedule-Demo-Get-in-Touch-left{
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    justify-content: center;
}
#Schedule-Demo-Get-in-Touch-left span{
    font-size: large;
    font-weight: 600;
    color: #121216;
}
#Schedule-Demo-Get-in-Touch-left h2{
    font-size: 55px;
    font-weight: 600;
    color: #1c732c;
}
#Schedule-Demo-Get-in-Touch-left p{
    font-size: medium;
    color: #121216;
}
#schedule-info{
    height: fit-content;
    width: fit-content;
    margin-top: 10px;
    margin-bottom: 10px;
}
#schedule-info h6{
    color: #000;
    font-size: large;
    font-weight: 900;
}
#schedule-info span{
    color: #121216;
    font-size: medium;
    font-weight: 100;
}
#Schedule-Demo-Get-in-Touch-right{
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#Schedule-Demo-Get-in-Touch-right img{
    height: 400px;
    border-radius: 20px;
    border: 2px solid #1c732c;
    width: auto;
}
@media (min-width: 2000px){
    #Schedule-Demo-Get-in-Touch-right{
        height: 100%;
        width: 30%;
    }
    #Schedule-Demo-Get-in-Touch-left{
        height: 100%;
        width: 30%;
    }
}
@media (max-width: 991px){
    #Schedule-Demo-Get-in-Touch-left span{
        font-size: medium;
    }
    #Schedule-Demo-Get-in-Touch-left h2{
        font-size: 45px;
    }
    #Schedule-Demo-Get-in-Touch-left p{
        font-size: small;
    }
    #schedule-info h6{
        font-size:medium;
    }
    #schedule-info span{
        font-size: small;
    }
    #Schedule-Demo-Get-in-Touch-right img{
        height: 350px;
    }
}
@media (max-width: 768px){
    #Schedule-Demo-Get-in-Touch-Container{
        height: 750px;
        flex-direction: column;
    }
    #Schedule-Demo-Get-in-Touch-left{
        height: 50%;
        width: 100%;
        padding-left: 150px;
    }
    #Schedule-Demo-Get-in-Touch-right{
        height: 50%;
        width: 100%;
        padding-left: 50px;
    }
    
}
@media (max-width: 600px){
    #Schedule-Demo-Get-in-Touch-Container{
        height: 750px;
        flex-direction: column;
    }
    #Schedule-Demo-Get-in-Touch-left{
        height: 50%;
        width: 100%;
        padding-left: 50px;
    }
    #Schedule-Demo-Get-in-Touch-right{
        height: 50%;
        width: 100%;
        padding-left: 0px;
    }
    #Schedule-Demo-Get-in-Touch-right img{
        height: 300px;
    }    
}


#footer-mid1-mid input {
    border-radius: 0;
}