*{
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
  }

body{
    font-family: DM Sans;
    background-color: white;
    z-index: 1;
}

body::-webkit-scrollbar{
    display: none;
}

:root{
    --primary : #ffe600;
    --secondary : #F48233;
    --third : #7C7C7C;
    --fourth : #ffff;
}

.main-outer{
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;  
    background-color: white; 
    overflow: hidden;
    
}

.main-outer::-webkit-scrollbar{
    display: none;
}


.main-outer .main-inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    scroll-behavior: smooth;
    background-color: white;
}


.main-inner::-webkit-scrollbar{
    display: none;
}

.row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.align-start{
    align-items: flex-start !important;
}

.align-end{
    align-items: flex-end !important;
}

.justify-start{
    justify-content: flex-start !important;
}

.justify-end{
    justify-content: flex-end !important;
}

.justify-space-around{
    justify-content: space-around !important;
}

.justify-space-between{
    justify-content: space-between !important;
}

.justify-space-evenly{
    justify-content: space-evenly !important;
}

.kts-grid{
    width: 100%;
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: auto;
}

.grid-4{
    grid-template-columns: auto auto auto auto;
}

.grid-3{
    grid-template-columns: auto auto auto;
}

.grid-2{
    grid-template-columns: auto auto;
}

.widget{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.widget .icon{
    width: 50px;
    height: 50px;
    padding:10px;
    object-fit: contain;
    border-radius:10px;
    margin-bottom: 10px;
    background-color: var(--primary);
}

.widget .icon-medium{
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius:10px;
    margin-bottom: 10px;
    transition: .5s;
}

.widget .icon-medium:hover{
    transform: scale(1.1);
}

.widget .widget-image{
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius:10px;
    margin-bottom: 10px;
    background-color: var(--primary);
    transition: .5s;
}

.widget .widget-image:hover{
    transform: scale(1.1);
}


.widget h3{
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.widget p{
    font-size: 16px;
    color: #797979;
    line-height: 20px;
    width: 80%;
    text-align: justify;
}

.btn{
    border: none;
    background-color: none;
    padding: 10px 20px;
    margin: 10px;
    margin-left: 0;
    color: var(--fourth);
    cursor: pointer;
    transition: .5s;
    text-decoration: none;
    white-space: nowrap;
    font-size: 16px;

}


.primary{
    background-color: var(--primary);
    color: var(--fourth);
}

.secondary{
    background-color: var(--secondary);
    color: black;
}

.primary:hover{
    background-color: var(--fourth);
    color: var(--primary);
}

.secondary:hover{
    background-color: var(--primary);
    color: var(--fourth);
}

.careers{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    overflow-x: scroll;
}

.careers::-webkit-scrollbar{
    display: none;
}

table{
    width: 100%;
    max-width: 1200px;
    border-collapse: collapse;
}

table thead tr{
    border-bottom: 2px solid var(--primary);
}

table thead th{
    padding: 10px;
    text-align: left;
}

table tbody td{
    padding: 20px;
}


.coming-soon{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: black;
}

.coming-soon .coming-soon-inner{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.coming-soon .coming-soon-inner img{
    max-width: 500px;
    object-fit: contain;
}

.coming-soon .coming-soon-inner h3{
    font-size: 5rem;
    color: gold;
    margin-bottom: 20px;
}

.coming-soon .coming-soon-inner p{
    font-size: 16px;
    color: #c4c4c4;
    line-height: 20px;
    max-width: 60vw;
    text-align: center;
}

.coming-soon .coming-soon-inner .social-icons{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.coming-soon .coming-soon-inner .social-icons img{
    width: 30px;
    height: 30px;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    object-fit: contain;
    background-color: var(--primary);
    cursor: pointer;
    transition: .5s;
}

.coming-soon .coming-soon-inner .social-icons img:hover{
    transform: scale(1.02);
}

.copyright{
    position: fixed;
    bottom: 0;
    background-color: black;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.copyright span{
    color: var(--primary);
    font-weight: 200;
    font-size: 14px;
}

.copyright a{
    text-decoration: none;
    color: var(--primary);
    font-weight: bold;
}



@keyframes fade-in {
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

@media only screen and (max-width: 1366px) {
    .coming-soon .coming-soon-inner h3{
        font-size: 8rem;
    }
    
  }

  @media only screen and (max-width: 1024px) {
    .coming-soon .coming-soon-inner h3{
        font-size: 5rem;
    }
    
  }

  @media only screen and (max-width: 768px) {

    .careers{
        align-items: flex-start;
    }
    
    .coming-soon .coming-soon-inner h3{
        font-size: 4rem;
        line-height: 3rem;
        text-align: center;
    }
    .coming-soon .coming-soon-inner img{
        max-width: 200px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .coming-soon .coming-soon-inner p{
        font-size: 12px;

    }

    

.grid-4{
    grid-template-columns: auto;
}

.grid-3{
    grid-template-columns: auto;
}

.grid-2{
    grid-template-columns: auto;
}

.widget{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

.widget .icon{
    width: 50px;
    height: 50px;
    padding:10px;
    object-fit: contain;
    border-radius:10px;
    margin-bottom: 10px;
    background-color: var(--primary);
}

.widget .widget-image{
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius:10px;
    margin-bottom: 10px;
    background-color: var(--primary);
}


.widget h3{
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.widget p{
    font-size: 16px;
    color: #797979;
    line-height: 20px;
    width: 80%;
}
    
  }


