@import url('https://fonts.googleapis.com/css2?family=Aldrich&family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Calistoga&family=Edu+AU+VIC+WA+NT+Hand:wght@400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Oswald:wght@200..700&display=swap');

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

:root
{
    --myFonts: "Lato", sans-serif;
}

.main-cont
{
    height: 100vh;
    width: 100vw;
    background-color: black;
    overflow-x: hidden;
}

.cont
{
    width: 100%;
    margin: 0;
    padding: 0;
}

nav
{
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
}

.nav-box
{
    width: 1150px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#hide {
    display: none;
}

.logo {
    width: 170px;
    cursor: pointer;
}

.right-box
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    gap: 20px;
}

.right-box>ul
{
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.right-box>ul li
{
    padding-top: 18px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--myFonts);
    text-transform: capitalize;
    color: white;
}

.right-box>ul li:hover
{
    text-decoration: underline;
}



.buttons
{
    display: flex;
    align-items: center;
    gap: 10px;
}

.buttons button
{
    padding: 15px 20px;
    border-radius: 40px;
}

#button-1
{
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

#button-1:hover
{
    font-weight: bold;
    color: black;
    background-color: white;
}

#button-2
{
    background-color: red;
    border: none;
    color: white;
}

#button-2:hover {
    font-weight: bold;
    color: rgb(255, 255, 255);
    background-color: rgb(255, 113, 113);
}

/* media for navbar */
@media screen and (max-width:1200px) and (min-width:1000px) {

.nav-box
{
    width: 1000px;
}
    
}

@media screen and (max-width:900px) {

    .nav-box
    {
        width: 100%;
        justify-content: space-between;
    }
    .right-box>ul
    {
        display: none;
    }
    #button-1
    {
        display: none;
    }

    #hide
    {
        display: block;
    }
    
    .logo {
    width: 130px;
    }
    
}

@media  screen and (max-width:450px) {

    #button-2
    {
        padding: 10px 10px;
        border:none;
    }
    
}

@media screen and (max-width:300px) {
    .logo
    {
        display: none;
    }
    
}

/* End of navbar mediaquery */


.main-hero
{
    width: 100%;
}

.black-box
{
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.b-box
{
    text-align: center;
    color: white;
}

.b-box h1
{
    font-weight: 400;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.row-box
{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.brand-box
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-box img
{
    width: 300px;
    border-radius: 5px;
}

.brand-box button
{
    margin-top: 20px;
    background-color: transparent;
    border: 1px solid white;
    padding: 10px 25px;
    color: #ffff;
    border-radius: 20px;
}

.brand-box button:hover
{
    color: black;
    background-color: #ffff;
    border: none;
}

/* mediaquery for black-box */

@media screen and (max-width:937px) {
    .row-box
    {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media screen and (max-width:617px) {

    .brand-box img
    {
        width: 100%;
    }
    
}

/* mediaquery for black-box */


.gray-box
{
    background-color: #0F0F0F;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
}

.g-box {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    color: white;
    font-family: Arial, Helvetica, sans-serif
}

.g-box h1 {
    font-weight: bolder;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.g-box h2 {
    font-weight: bolder;
    letter-spacing: 2px;
}

.graybox
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-box
{
    width: 1150px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.inner-text-box
{
    color: white;
}

.inner-text-box h6{
    color: red;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.inner-text-box button
{
    margin-top: 20px;
    padding: 15px 30px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid white;
    color: white;
}

.inner-text-box button:hover
{
    color: black;
    background-color: #ffff;
    border: none;
}

.inner-image-box img
{
    width: 500px;
}

@media screen and (max-width:995px) {
    .inner-box
    {
        flex-direction: column;
        gap: 20px;
    }
    .inner-text-box
    {
        text-align: center;
    }
     
    .inner-image-box img
    {
        width: 100%;
    }


    #inner-box
    {
        flex-direction: column-reverse;
    }
    
}

/* black-box-2 */

.black-box-2 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.inner-black-box-2 {
    width: 1150px;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.heading-of-black-box-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-family: var(--myFonts);
}

.heading-of-black-box-2 h1 {
    font-weight: bolder;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.heading-of-black-box-2 h2 {
    letter-spacing: 2px;
}

.row-of-black-box-2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#row-of-black-box-last
{
    justify-content: center;
    gap: 30px;
}

.box-of-black-box
{
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box-of-black-box img
{
    width: 360px;
    height: 250px;
}

.text-of-black-box
{
    width: 80%;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    font-family: var(--myFonts);
    color: white;
    text-align: center;
}

.text-of-black-box h6
{
    color: red;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.text-of-black-box h1
{
    font-size: 20px;
    font-weight: bold;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.text-of-black-box p
{
    font-family: 'Apercu';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    height: 36px;
}

.text-of-black-box button
{
    color: white;
    background-color: transparent;
    padding: 15px;
    border: 1px solid white;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.text-of-black-box button:hover {
    color: black;
    background-color: #ffff;
    border: none;
}

@media screen and (max-width:1107px) {
    .row-of-black-box-2
    {
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 20px;
    }
    
}

@media screen and (max-width:740px) {

    .box-of-black-box img {
            width: 100%;
        }
    
}

/* gray-box-2 */


.gray-box-2
{
    padding-top: 25px;
    padding-bottom: 25px;
    width: 100%;
    background-color: #0F0F0F;
}

.gray-box-2-heading
{
    width: 100%;
    text-align: center;
}

.gray-box-2-heading h1
{
    font-size: 3em;
    color: white;
    font-weight: bold;
    text-indent: 5px;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.gray-box-2-heading h2
{
    color: white;
    font-style: oblique;
    font-size: 2.5em;
}

.gray-box-2-content
{
    padding-top: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
}

.gray-box-2-content img
{
    width: 50%;
}

.text-of-gray-box-2
{
    color: white;
}

.text-of-gray-box-2 h6
{
    color: red;
    letter-spacing: 5px;
}

.text-of-gray-box-2 button
{
    margin-top: 25px;
    padding: 15px 30px;
    border-radius: 30px;
    background: #28A745;
    color: white;
}

.text-of-gray-box-2 button:hover
{
    color: black;
    background-color: white;
}

@media screen and (max-width:960px) {

    .gray-box-2-content
    {
        flex-direction: column;
        text-align: center;
    }

    .gray-box-2-content img
    {
        width: 95%;
    }
    
}

/* black-box-3 */


.black-box-3
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.inner-black-box-3
{
    width: 1150px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.heading-of-black-box-3
{
    text-align: center;
    width: 100%;
    color: white;
}

.heading-2-of-black-box-3
{
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.heading-of-black-box-3 h1
{
    font-weight: bold;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.heading-2-of-black-box-3 h2
{
    font-weight: 300;
}

.heading-2-of-black-box-3 h5
{
    font-weight: lighter;
}

.row-box-of-black-box-3
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
}

.box-of-black-box-3
{
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    width: 30%;
    background-color: white;
}

.box-of-black-box-3 p
{
    font-size: 3px;
    text-transform: uppercase;
    color: red;
    letter-spacing: 3px;
}

.box-of-black-box-3 h2
{
    font-size: 1.5rem;
    font-weight: normal;
}

.box-of-black-box-3 img
{
    width: 100px;
    padding-bottom: 10px;
}

#row-box-of-black-box-3
{
    display: flex;
    justify-content: center;
}

@media screen and (max-width:924px) {
.box-of-black-box-3
{
    width: 300px;
    background-color: white;
    flex-wrap: wrap;
}

.row-box-of-black-box-3
{
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

    
}

@media screen and (max-width:610px) {

    .box-of-black-box-3
    {
        width: 80%;
    }
}

/* slider-box */

.slider-box
{
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.heading-of-slider-box
{
    width: 100%;
    text-align: center;
    color: white;
    font-family:'Courier New', Courier, monospace;
}

.image-box-of-slider
{
    display: flex;
    flex-direction: row;
    padding-top: 10px;
    padding-bottom: 30px;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.image-box-of-slider img
{
    width: 280px;
}

/* footer */

footer
{
    width: 100%;
    background-color: #0F0F0F;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: capitalize;
}

footer hr
{
    border: 1px solid white;
    width: 100%;
}

.footer-content
{
    width: 1150px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.left-box-of-footer img
{
    width: 170px;
    padding-bottom: 20px;
}

.left-box-of-footer
{ 
    width: 450px;
    text-align: left;
    color: #B7B7A2;
    font-weight: normal;
    display: flex;
    flex-direction: column;
}

.buttons-of-left-box
{
    display: flex;
    gap: 20px;
}

.buttons-of-left-box a
{
    cursor: pointer;
    color: #B7B7A2;
    font-weight: normal;
    text-decoration: none;
    text-transform: capitalize;
}

.left-center-box-of-footer
{
    display: flex;
    flex-direction: column;
    color: #B7B7A2;
    text-align: left;
}

.left-center-box-of-footer h6
{
    font-weight: bolder;
    color: white;
    padding-left:30px;
}

.left-center-box-of-footer ul
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}



.left-center-box-of-footer li
{
    list-style: none;
    color: #B7B7A2;
    font-weight: normal;
    cursor: pointer;
}

.right-center-box-of-footer
{
    display: flex;
    flex-direction: column;
    color:#B7B7A2 ;
    gap: 2px;
}

.right-center-box-of-footer h6
{
    color: white;
    font-weight: bolder;
}

.right-center-box-of-footer a
{
    color: #B7B7A2;
    cursor: pointer;
    text-decoration: none;
    padding-top: 5px;
    padding-bottom: 5px;
    text-transform: capitalize;
}

.right-box-of-footer h6
{
    color: white;
    font-weight: bolder;
}

.right-box-of-footer
{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.icons-of-right-box
{
    display: flex;
    gap: 8px;
}

.right-box-of-footer img
{
    width: 100px;
}

.footer-last-content
{
    width: 1150px;
    display: flex;
    justify-content: space-between;
    color: #B7B7A2;
}

@media screen and (max-width:1146px) {

    .footer-content
    {
        flex-direction: column;
        align-items: center;
    }

    .footer-last-content
    {
        flex-direction: column;
        align-items: center;
    }

    .left-box-of-footer
    {
        width: 30%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .left-center-box-of-footer
    {
        display: none;
    }

    .right-center-box-of-footer
    {
        display: none;
    }


    
}

