* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;

}

#main {
    min-height: 100%;
    position: relative;
    background-color: #fff;
}

#nav {
    width: 100%;
    /* background-color: red; */
    height: 10vh;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#nav img {
    width: 40px;
}

#nav i {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

#mainheading {
    width: 100%;
    position: relative;
    font-family: "Vanguard CF";
    /* background-color: red; */
    padding: 0 50px;
    margin-top: 40px;
    height: 500px;
}

#mainheading h1 {
    font-size: 180px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 150px;
    display: inline;
}

#mainheading h1 sup {
    font-size: 140px;
}

#main #awwwardstag {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

#mainheading p {
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 0.1px;
    word-spacing: 0.2px;
    position: absolute;
    right: 19%;
    bottom: 0%;
    font-weight: 50;
    opacity: 0.5;
}

#sections {
    margin-top: 30px;
    width: 100%;
    padding: 0 70px;
    /* background-color: aqua; */
    /* height: 400px; */
}

#sections .section {
    display: flex;
    justify-content: right;
    width: 100%;
    padding: 50px 50px;
    margin-top: 60px;
}

#sections .section:nth-child(2n) {
    justify-content: flex-start;
}

.insider {
    width: 600px;
    height: 500px;
    /* background-color: yellow; */
}

.insider .img {
    width: 100%;
    height: 85%;
    background-color: red;
}

.insider .text {
    width: 100%;
    height: 10%;
    margin-top: 6px;
}

.insider .text h2 {
    font-family: "Gilroy";

}

.insider .text h5 {
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    opacity: .5;
}

.insider .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: inline-block;
    vertical-align: middle;
}

#footer {
    padding: 100px 50px;
    /* background-color: red; */
}

#footer h1 {
    font-family: "Gilroy";
    text-transform: uppercase;
    /* letter-spacing: 0.5px; */
    font-size: 45px;
    background-color: white;
}

#circle {
    width: 140px;
    height: 140px;
    background-color: #000;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Gilroy";
    text-transform: uppercase;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    margin-top: 20px;
    cursor: pointer;
}

#contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 100px;
}

#smcircle {
    width: 15px;
    height: 15px;
    /*background-color: transparent;*/
    border-radius: 50%;
    border: 2px solid rgb(9, 96, 9);
    position: fixed;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all ease-out .2s;
    pointer-events: none;
    /* to make effect on image and to make sure we does not consider that semicirle consider circle itself  */
}

.ttxt {
    position: relative;
    overflow: hidden;
    background-color: white;
}

/* .ttxt h1{
    transform: translateY(90%);
} */

#nav .rot{
    overflow: hidden;
    transition-duration: 0.8s;
    transition-property: transform;
    height: 40px;
}
#nav .rot:hover {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);  
}
#cursor{
    position: fixed;
    z-index: 99999;
    display: none;
    transform: translate(-50%,-50%);
    transition: all ease-out .2s;
    pointer-events: none;
    width: 100px;
    height: 100px; 
  
}

.ro{
    animation: r 8s linear infinite both;       
    /* animation: r 10s steps(10) infinite alternate;    */
}

/* #cursor .svg:nth-child(2){
    width: 35px;
} */
/* #cursor .svg:nth-child(1){
    animation: r 10s steps(10) infinite alternate;
} */


/* queries== owners target ho rha size km nhi ho rha arrow ka , arrow absolute ghumme wala div no absolute and parent div absolute*/
@keyframes r{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
#tra{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

#tra .arrow{
    color: #000;
    width: 25px;
    fill: #000;
}
