:root {
    --yellow: #ffed0a;
    --black: #0f0f0f;
    --black2: #191919;

    --off-white: #f1f1f1;
    --off-white2: #dedede;
    --off-white3: #cecece;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Black.ttf') format('truetype');
    font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto";
}

body {
    background-color: var(--yellow);
    color: var(--off-white);
}

.container {
    width: 80%;
    padding: 20px;
    margin: auto;
}

.main-section {
    display: flex;
    background-color: var(--off-white);
    color: var(--black);
    border-radius: 10px;

}

.right, .left {
    display: flex;
    padding: 30px;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.right {
    flex-basis: 40%;

}

.left {
    flex-basis: 60%;

}

.right img {
    width: 550px;
    border-radius: 30px;
}

.left p {
    margin-bottom: 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    padding: 20px 10px;
    color: var(--off-white);
}


.nav-links a {
    color: var(--off-white3);
    text-decoration: none;
    margin: 0px 10px;
    font-weight: bold;
    font-size: 14px;
    padding: 20px 0;

}

.nav-links a:hover {
    color: var(--yellow);
}

.call {
    transition: 0.5s;
    border: 2px solid var(--yellow);
    cursor: pointer;
    color: var(--yellow);
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.3);
}

.logo img {
    width: 90px;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    color: var(--off-white);
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
}

.special-container {
    background-color: var(--black);
}

.nav-links-mobile {
    display: none;
    position: relative;
    z-index: 9999;
}

.nav-links-mobile a {

    display: flex;
    flex-direction: column;
    color: var(--off-white) !important;
    text-decoration: none;
    margin: 0px 10px;
    font-weight: bold;
    font-size: 14px;
    padding: 20px 0;
    z-index: 99999;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);

}

.call {
    transition: 0.5s;
    border: 2px solid var(--yellow);
    cursor: pointer;
    color: var(--yellow);
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.3);
}

.burger-container {
    display: inline-block;
    cursor: pointer;
    z-index: 99999;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: var(--off-white);
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}
.main-section{
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}
.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.call:hover {
    background-color: var(--yellow);
    color: var(--black);

}

.nav-container-mobile {
    position: relative;
    display: none;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    padding: 20px 10px;
    color: var(--off-white) !important;
    z-index: 999;

}

.call {
    text-decoration: none !important;
}

@media only screen and (max-width: 1000px) {
    .main-section {
        flex-direction: column-reverse !important;
    }

    .nav-container {
        display: none;
    }

    .nav-container-mobile::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        z-index: 5;
        width: 100%;
        height: 100%;
        z-index: 3;
        background-color: rgba(0, 0, 0, 0.15);
    }

    .nav-container-mobile {
        display: flex;
        padding: 20px;
    }

    .main-section:nth-child(2) {
        flex-direction: column-reverse !important;

    }

    .container {
        width: 95%;
        margin: auto;
        padding: 10px;
    }

    .source-btn {
        padding-left: 0;
        word-break: break-all;
    }

    .source-p {
        padding-left: 0 !important;
    }

}

@media only screen and (max-width: 450px) {
    .main-section img {
        width: 300px !important;
    }
}