@font-face {
    font-family: "RTB";
    src: url(../fonts/RTRondelle-Bold-0eb6cd8020792814a331996f8662c338.ttf);
}

@font-face {
    font-family: "RT";
    src: url(../fonts/RTRondelle-Book-51632d5abada48dc68c4173b5bba776e.ttf);
}

@font-face {
    font-family: "WLK";
    src: url(../fonts/Wulkan-Display-Regular-da41df98395033f47e075c44090ba3ab.ttf);
}

:root {
    --red: #F43234;
    --black: #161616;
    --grey: #828282;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "RT", sans-serif;
}

body,
html {
    margin: 0;
    padding: 0;
    position: relative;
}

.tc_bg {
    position: relative;
}

.tc_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 350px;
}

.tc_head {
    font-family: "WLK";
    font-size: 100px;
    text-align: center;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.tc_main_head {
    font-size: 100px;
    font-family: "WLK";
    line-height: 1.2;
}

.tc_main_content p {
    font-size: 24px;
    font-family: "RT";
    /* line-height: 1.2; */
}

@media screen and (max-width:1366px) {
    .tc_main_content p {
        font-size: 22px;
        font-family: "RT";
        /* line-height: 1.2; */
    }
}

@media screen and (min-width:1080px) and (max-width:1440px) {
    .tc_head {
        font-size: 90px;
    }

    .tc_main_head {
        font-size: 72px;
    }
}

@media screen and (min-width:768px) and (max-width:1024px) {
    .tc_head {
        font-size: 70px;
    }

    .tc_main_head {
        font-size: 55px;
    }

    .tc_main_content p {
        font-size: 20px;
    }

}

@media screen and (max-width:575px) {
    .tc_bg img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        max-height: 400px;
    }

    .tc_head {
        line-height: initial;
        font-size: 60px;
    }

    .tc_main_head {
        font-size: 45px;
    }

    .tc_main_content p {
        font-size: 16px;
    }
}