* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'main-font';
    src: url('/fonts/Iran-Yekan/woff/IRANYekanWebRegular.woff') format('woff');
}

@font-face {
    font-family: 'quas-font';
    src: url('/fonts/Quas-Stencil/Quas Stencil.woff') format('woff');
}

a{
    text-decoration: none;
}

.navbar-scroll{
    background: #000;
    transition: 0.3s;
}

body {
    font-family: main-font, sans-serif;
}

header {
    height: 100vh;
    background-image: url("/images/png/main-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

header nav .navbar-brand img {
    height: 3rem;
}

header nav .navbar-collapse {
    background-color: transparent;
}

header nav .nav-item .nav-link {
    color: #ffffff;
    position: relative;
}

header nav .nav-item .nav-link::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #DBFA06;
    border-radius: 50%;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transition: 0.3s;
}

header nav .nav-item .nav-link:hover::after {
    transform: translateX(-50%) scale(1);
}

header nav .buttons-box a {
    background: #DBFA06;
}

header nav .buttons-box a:hover,
header nav .buttons-box a:focus {
    background: transparent;
    color: #DBFA06;
    border: 1px solid #DBFA06;
}

header .title-box h1 {
    font-family: quas-font, sans-serif;
    font-size: 10rem;
}

header .title-box h2 {
    color: #DBFA06;
}

#aboutSection {
    background-color: #0d0d0d;
}

#aboutSection .right-box p {
    text-align: justify;
    line-height: 1.8rem;
}

#aboutSection .right-box .counter-box img {
    height: 5rem;
}

#servicesSection{
    background-color: #0d0d0d;
}

#servicesSection .service-box{
    border: 1px solid #e685b5;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    height: 27rem;
}

#servicesSection .service-box img{
    height: 4rem;
}

#servicesSection .service-box p{
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: justify;
    line-height: 1.8rem;
}

footer{
    background-color: #000000;
}

footer .right-box img,
footer .left-box img{
    height: 1.5rem;
}

footer .right-box p{
    font-size: 0.8rem;
}

@media (max-width: 575.98px) {
    header nav .navbar-brand img {
        height: 3rem;
    }

    header nav .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.8);
    }

    header .title-box h1 {
        font-size: 6rem;
    }
}
