@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

@font-face {
    font-family: 'CeraPro';
    src: url('../assets/fonts/CeraPro/Cera\ Pro\ Medium.otf') format('otf'); /* Add additional formats if needed */
    font-weight: lighter;
    font-style:normal;
}

*{
    /* outline: red dashed 1px; */
    box-sizing: border-box;
    text-decoration: none; 
    padding: 0;
    margin: 0;
}

html{
    font-family: 'CeraPro', 'Poppins', sans-serif;
    scroll-behavior: smooth;
    width: 100%;
}

body{
    font-family: 'CeraPro', 'Poppins', sans-serif;
    transition: all 0.5s ease;
    overflow-x: hidden;
    width: 100vw;
}

a{
    text-decoration: none;
    color: #000000;
    padding: 0;
    margin: 0;
}

a:hover{
    text-decoration: none;
}

p{
    padding: 0;
    margin: 0;
}

h1,h2,h3{
    font-weight: normal;
    padding: 0;
    margin: 0;
}

img{
    padding: 0;
    margin: 0;
}

ul, li{
    text-decoration: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.flex{
    justify-content: center;
    align-items: center;
    display: flex;
}

.title{
    flex-direction: column;
    margin-bottom: 5rem;
    width: 100%;
}

.t1, .t2{
    letter-spacing: 8px;
    height:fit-content;
    font-size: 3.5rem;
    line-height: 1;
    width: 50%;
    margin: 0;
}

.t1{
    align-self: flex-start;
    text-align: right;
}

.t3{
    letter-spacing: 8px;
    height:fit-content;
    font-size: 3.5rem;
    line-height: 1;
}

.t2{
    align-self: flex-end;
    text-align: left;
    color: #CCCCCC;
}

@media only screen and (max-width: 1500px){
    .t1, .t2, .t3{
        letter-spacing: 6px;
        font-size: 2.25rem;
    }
}


@media only screen and (max-width : 1024px){
    .title{
        margin-bottom: 3rem;
    }

    .t1, .t2, .t3{
        letter-spacing: 3px;
        font-size: 1.75rem;
    }
}

.dummy{
    height: 4rem;
    width: 100%;
}

.loader{
    background: #000 url("../assets/images/loader.gif") no-repeat center center;
    background-size: 50%;
    overflow: hidden;
    position: fixed;
    z-index: 1000;
    height: 100vh;
    width: 100%;
}

.access{
    flex-direction: column;
    margin-right: 1.5rem;
    margin-bottom: 4rem;
    position: fixed;
    z-index: 99;
    bottom: 0;
    right: 0;
}

.access img{
    width: 60px;
}

.mail{
    margin-bottom: 1rem;
}

.back{
    flex-direction: column;
    margin-bottom: 4rem;
    margin-left: 1.5rem;
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
}

.back img{
    width: 60px;
}