*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-image: url(./img/6.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
@font-face {
    font-family: Koulen-Regular;
    src: url(./fonts/koulen/Koulen-Regular.ttf);
}
@font-face {
    font-family: Inter-Regular;
    src: url(./fonts/inter/Inter-Regular.ttf);
}
h2{
    font-family: Inter-Regular;
    font-size: 20px;
    color: #fff;
    font-weight: 100;
    max-width: 500px;
    margin: 0 auto;
    margin-top: -20px;
}
/* h1{
    font-family: Koulen-Regular;
    font-size: 80px;
    color: #fff;
    font-weight: 100;
    letter-spacing: 2px;
} */
.conts{
    text-align: center;
    position: relative;
    z-index: 1;
}
.conts img{
    width: 300px;
}
.main::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #00000046;
    position: absolute;
    top: 0;
    left: 0;
}
.ct-num {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-num a{
    color: #ffffff;
}
a{
    text-decoration: none;
    font-family: Inter-Regular;
}
.ct-num i{
    color: #ffffff;
}
.contact{ 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 30px;
    border-radius: 10px;
    background-color: #000000c2;
    width: fit-content;
    margin: 0 auto;
    margin-top: 30px;
}

h1 {
    color: #dbd56e;
    background: -webkit-linear-gradient(25deg, #ffffff,#ffffff, #494949);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Koulen-Regular;
    font-size: 80px;
    color: #fff;
    font-weight: 100;
    line-height: normal;
    letter-spacing: 2px;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid;
    animation: type 3s steps(90) 1.5s 1 normal both, cursor 1s step-end infinite;
    position: relative;
  }
  
  @keyframes type {
    from {
      width: 0;
    }
  
    to {
      width: 100%;
    }
  }
  
  @keyframes cursor {
    50% {
      border-color: transparent;
    }
  }




@media screen and (max-width: 1390px) {
    h1 {
        font-size: 67px;
    }
    .conts img {
        width: 270px;
    }
    h2 {
        font-size: 17px;
    }
}
@media screen and (max-width: 1200px) {
    h1 {
        font-size: 57px;
    }
}
@media screen and (max-width: 992px) {
    h1 {
        font-size: 52px;
        margin-bottom: 10px;
    }
    .contact {
        padding: 15px 28px;
        margin-top: 22px;
    }
    p{
        font-size: 15px;
    }
}
@media screen and (max-width: 767px) {
    h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }
    p {
        font-size: 13px;
    }
    h2 {
        font-size: 16px;
        max-width: 401px;
    }
    .conts img {
        width: 237px;
    }
}
@media screen and (max-width: 620px) {
    h1 {
        font-size: 35px;
        margin-bottom: 16px;
    }
    .contact {
        display: block;
        text-align: center;
    }
    .ct-num i {
        font-size: 13px;
    }
    .ct-num{
        margin: 10px 0;
        text-align: center;
    }
    .conts img {
        width: 200px;
    }
}
@media screen and (max-width: 500px) {
    h1 {
        font-size: 27px;
        margin-bottom: 18px;
    }
    h2 {
        font-size: 12px;
        max-width: 331px;
    }
}
@media screen and (max-width: 375px) {
    h1 {
        font-size: 22px;
        margin-bottom: 18px;
    }
    h2 {
        font-size: 12px;
        max-width: 300px;
    }
    .conts img {
        width: 180px;
    }
    p {
        font-size: 11px;
    }
    .contact {
        padding: 8px 22px;
        margin-top: 22px;
    }
}