*{box-sizing:border-box;}

h2 {
    font-size:30px;
    font-weight:800;
    margin-bottom:10px;
}

h3 {
    font-weight:300;
    font-size:25px;
    margin:5px;
    margin-top:20px;
}

p {
    font-size:18px;
    font-weight:250;
    margin-top:5px;
    margin-bottom:30px;
}

video {
    width:100%;
    height:auto;
    border-radius:10px;
}

.container {
    display: flex;
    width: 100%;  
    overflow: hidden; 
}

.column{
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.column2{ 
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border:solid 1px black;
    border-radius: 20px;
    margin:30px;
    padding:10px;
    height:500px;
}

.columnrj{
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: justify;
    text-align-last: right;
    max-width:600px;
    margin:30px;
}

.columnlj{
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: justify;
    text-align-last: left;
    margin:30px;
}

.columnlj h2 {
    text-align:left;
}

.leftcol {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left:60px;
    
}

.rightcol {
    flex: 2; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    text-align: center;
    position: relative;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, white, transparent);
    pointer-events: none; 
}

.prodimg {
   border-radius:5px;
   height:100%;
   object-fit:cover;
   max-width:100%;
   margin-top:60px;
   margin-bottom:60px;
}

.material-symbols-outlined{
    font-size:150px; 
    color:rgb(60, 140, 175);
}

.listlj{
    list-style:none;
    padding:0;
}

.listlj li{
    position:relative;
    padding-left:30px;
    font-size:20px;
    font-weight:400;
    margin-bottom:10px;

}

.listlj li::after {
    content:url("../../public/icons/check_icon.svg");
    position:absolute;
    left:0px;
    top:50%;
    transform: translateY(-40%); 
    margin-bottom:10px;

}

#infosec{
    margin:30px;
}

#info-subsec{
    margin: 30px;
}

#getstarted{
    margin-left:30px;
    margin-bottom:0px;
    padding-bottom:0px;
}

#logo {
    max-width: 80%; 
    max-height: 80%; 
    width: auto;
    height: auto;
}

#splash{
   height:auto;
   max-height:100%;
   width:100%;
   object-fit: cover;
}

#slogan {
    font-size:25px;
    padding-left:50px;
    width:100%;
    margin:20px;
}

#sloganselect{
    margin-left:70px;
}

#getstarted{
    background-image:url("../public/bg-image.jpg") no-repeat;
    background-size: 100px;

}

.slideshow-container {
    width: 100%;
    position: relative;
    margin: auto;
    overflow: hidden;
    height: 0; 
    padding-bottom: 56.25%; 
}

.slides {
    display: flex;
    transition: transform 2s ease-in-out;
    width: calc(100% * 4); 
    top: 0;
    left: 0;
    position:absolute;
}

.slide {
    flex: 1 0 25%; /* Scale this percentage with # of slides */
    display: flex;
    align-items: center;
    justify-content: center;
    height:100%;
}

.slide img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.pad{
    margin-left:40px;
}

#headsec{
    margin-top:55px;
}

@media only screen and (max-width: 1024px) {
    .container{
        flex-direction:column;
    }
    
    .leftcol{
      padding:20px;
      margin:10px;  
    }

    .columnlj{
        align-items:flex-start;
    }

    #logo {
        max-width:300px;
    }

    .gradient-overlay{
        background: linear-gradient(to bottom, white, transparent);
        width:100%;
        height:50%;
    }

    #infosec{
        margin:0px;
    }

    #info-subsec{
        margin:0px;
    }

    .prodimg{
        margin:0px;
        width:100%;
        height:auto;
        object-fit:contain;

    }

    .column2{
        padding:20px;
        padding-bottom:40px;
    }
    
    #slogan{
        padding:0px;
    }

    .pad {
        margin:10px;
    }
}