@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    border-radius: 20px;
}
body
{
    min-height: 1000px;
}
header
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: 1s;
}
header h3
{
    margin-top: 31%;
}
header.sticky
{
    height: 80px;
    z-index: 2;
}
header .banner
{
    position: absolute;
    top: 0;
    width: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
header.sticky .banner
{
    opacity: 0.2;
    transition: 1s;
}
header .logo
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 50%;
    color: #fff;
    font-weight: 700;
    transition: 1s;
    text-decoration: none;
    z-index: 1;
}
header.sticky .logo
{
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
header.sticky .smallLogo
{
    opacity: 1;
    position: absolute;
    font-size: 2em;
    left: 100px;
}
nav
{
    position: relative;
    margin-top: 20px;
    display: flex;
    z-index: 1;
}
nav ul
{
    position: relative;
    display: flex;
    padding: 0 100px;
    transition: 0.25s;
    transform: translateX(100px);
    opacity: 0;
}
nav.active ul
{
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
nav ul li a
{
    font-size: 1.5em;
    padding: 5px 15px;
}
header.sticky nav ul
{
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.75s;
    opacity: 1;
    visibility: visible;
}
nav ul li
{
    list-style: none;
}
nav ul li a
{
    color: #fff;
    display: inline-block;
    padding: 10px 15px;
    font-size: 1.2em;
    text-decoration: none;
}
nav ul li a:hover
{
    color: #ff275f;
}
nav ul li button
{
    background: transparent;
    border-color: #fff;
    border-radius: 32px;
}
nav ul li button:hover
{
    background: #ff275f;
}
nav ul li button a:hover
{
    color: #fff;
}
section
{
    margin-top: 50vh;
    padding: 100px;
}
section h2
{
    font-size: 3em;
}
section p
{
    font-size: 1.2em;
}
marquee
{
    background-color: #000;
    color: #fff;
    position: relative;
}




/*Scrollbar modifications*/
::-webkit-scrollbar
{
    width: 10px;
}
::-webkit-scrollbar-thumb
{
    background: linear-gradient(transparent,#ff3131);
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover
{
    background: linear-gradient(transparent,#00c6ff);
}
::-webkit-scrollbar-track
{
    background: #000;
}

/*Scroll*/
.container
{
    z-index: 0;
}

/*Dark Mode*/
.dark
{
    background: rgb(39, 38, 38);
    background-size: contain;
    color: #fff;
}
.themeSwitch
{
    position: relative;
    margin-left: 10px;
    margin-top: 2px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.themeSwitch.active
{
    background: #fff;
}
.themeSwitch::before
{
    content: '\f186';
    font-family: fontAwesome;
    color: #000;
    font-size: 20px;
}
.themeSwitch.active::before
{
    content: '\f185';
    color: #000;
}

#carouselExampleCaptions
{
    max-width: 690px;
}

footer
{
    background: #ff275f;
    color: #fff;
}
footer p
{
    font-size: 10px;
    color: #000;
    text-align: center;
}
/*Mobile Responsive*/
@media (max-width: 991px)
{
    section,
    nav ul
    {
        padding: 40px;
    }
    section h2
    {
        font-size: 2em;
    }
    header .logo
    {
        height: 50%;
        width: 100%;
    }
    header.sticky .logo
    {
        left: 40px;
    }
    header.sticky .smallLogo
    {
        left: 40px;
    }
    header.sticky .banner
    {
        opacity: 0;
    }
    header h3
    {
        font-size: 95%;
        margin-top: 124%;
    }
    nav ul
    {
        display: none;
        opacity: 0;
        visibility: hidden;
    }
    header.sticky .toggle
    {
        position: fixed;
        top: 15px;
        right: 40px;
        width: 50px;
        height: 50px;
        cursor: pointer;
        background: #fff url(images/menu.png);
        background-repeat: no-repeat;
        background-position: center;
    }
    header.sticky .toggle.active
    {
        background: #fff url(images/close.png);
        background-size: 25px;
        background-repeat: no-repeat;
        background-position: center;
    }
    .themeSwitch
    {
        margin-left: 1px;
        margin-top: 8px;
        background: #fff;
    }
    .contactUs .mb-3
    {
        text-align: center;
        margin-left: 40%;
        width: 100%;
    }
    .socials
    {
        padding: 70% 1%;
        text-align: center;
    }
    .socials button
    {
        font-size: 10px;
    }
}
@media (max-width: 420px)
{
    header .logo img
    {
        margin-top: 69px;
        height: 45%;
    }
    header h3.logo
    {
        left: 75%;
    }
}