/* Fonts */
@font-face {
    font-family: Taviraj;
    src: url(../fonts/Taviraj-ExtraLight.ttf);
    font-weight: 200;
}

@font-face {
    font-family: Taviraj;
    src: url(../fonts/Taviraj-ExtraLightItalic.ttf);
    font-style: italic;
    font-weight: 200;
}

@font-face {
    font-family: Taviraj;
    src: url(../fonts/Taviraj-Regular.ttf);
    font-weight: normal;
}

@font-face {
    font-family: Taviraj;
    src: url(../fonts/Taviraj-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: Taviraj;
    src: url(../fonts/Taviraj-MediumItalic.ttf);
    font-style: italic;
    font-weight: 500;
}

@font-face {
    font-family: Taviraj;
    src: url(../fonts/Taviraj-Bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: Taviraj;
    src: url(../fonts/Taviraj-BoldItalic.ttf);
    font-style: italic;
    font-weight: bold;
}

/* Typography */
:root {
    font-size: 16px;
}
body {
    color: black;
}

* {
    font-family: 'Taviraj', serif;
}

h1 {
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
}

.heading-second {
    margin: 10px 0;
    font-size: 12px;
    font-weight: 600;
}

p {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: justify;
}

@media (min-width: 1200px) {
    h1 {
        font-size: 27px;
        line-height: 35px;
        font-weight: bold;
    }

    .heading-second {
        font-size: 18px;
    }

    p {
        font-size: 1rem;
    }
}

section {
    padding:60px 0;
}

@media (min-width: 1200px) {
    section {
        padding: 150px 0;
    }
}

footer {
    background-color: black;
    color: white;
}
footer a {
    color: white;
    text-decoration: none;
}
footer a:hover {
    color: white;
}

.bg-second {
    background-color: #151515;
    color: white;
}

@media (max-width: 1200px) {
    footer {
        font-size: 0.85rem;
    }

    .footer-mail {
        font-size: 0.95rem !important;
    }
}

/* Buttons */
.btn-primary {
    padding: 10px 30px;
    border: 2px solid black !important;
    border-radius: 0;
    background-color: black;
    font-weight: 500;
    font-size: 0.8rem;
}
.btn-primary:hover {
    color: black;
    background-color: white;
}

.btn-secondary {
    color: black;
    background-color: white;
    font-weight: 600;
    border-radius: 0;
    border: 3px solid white;
    transition: 0.3s;
}
.btn-secondary:hover {
    color: white;
    background-color: black;
    border: 3px solid white;
}

@media (min-width: 1200px) {
    .btn-primary {
        font-size: 1rem;
    }
}

.loading {
    width: 100px;
    height: 100px;
    margin: 10px auto;
}

.loading::before, .loading::after {
    content: ' ';
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: white;
    animation: spin 1s infinite;
    display: block;
    position: absolute;
}

.loading::after {
    border-width: 1px;
    animation-delay: 0.1s;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}