/* << Variables */
:root {
    --fw-light: 200;
    --fw-medium: 300;
    --fw-semi-bold: 400;
    --fw-bold: 500;
    --fw-extra-bold: 600;

    --ff-primary: "Poppins", sans-serif;

    --clr-green: #33cc82;
    --clr-dark-green: #2fae70;
    --clr-blue: #5e89d5;
    --clr-dark-blue: #567ab9;
    --clr-purple: #7f4491;
    --clr-dark-purple: #693c76;
    

    --gradient-ad-blue: linear-gradient(to right, #6790e1, #2a67d2);
    --gradient-ad-green: linear-gradient(to right, rgb(53, 172, 65), #26c211);
}
/* Variables >> */


/* << CSS Reset */
html {
    font-size: 16px;
}

body {
    font-family: var(--ff-primary);
}

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    text-decoration: none;
    /* font-weight: 200; */
    opacity: inherit;
}
/* CSS Reset >> */

/* << Custom Buttons */
.ex-btn {
    color: #ffffff;
    width: fit-content;
    font-size: 18px;
    font-weight: var(--fw-semi-bold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    cursor: pointer;
}

.ex-btn.green {
    background-color: var(--clr-green);
}

.ex-btn.blue {
    background-color: var(--clr-blue);
}

.ex-btn.purple {
    background-color: var(--clr-purple);
}

.ex-btn.white {
    background-color: #ffffff;
}

.ex-btn.gray {
    background-color: #a3a1a1;
}

.ex-btn.green:hover {
    background-color: var(--clr-dark-green);
}

.ex-btn.blue:hover {
    background-color: var(--clr-dark-blue);
}

.ex-btn.purple:hover {
    background-color: var(--clr-dark-purple);
}

.ex-btn.white:hover {
    background-color: #292828;
}
/* Custom Buttons >> */


/* << NavBar */
.nav-bar {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.4rem;
    background-color: #ffffff;
    box-shadow: 0px 1px 10px 1px #57585941;
    z-index: 5000;
    position: fixed;
    top: 0;
    left: 0;
}

.nav-logo {
    display: flex;
    flex-direction: row;
    gap: 0.4rem;
    justify-content: center;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
}

.nav-logo img {
    width: 3.4rem;
}

.logo-text {
    font-size: 1.4rem;
    color: var(--clr-green);
    font-weight: var(--fw-extra-bold);
}

.nav-logo .logo-text .contrast{
    color: var(--clr-blue);
}

.top-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.nav-out {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.nav-item {
    margin-left: 10px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    padding: 4px 10px;
    font-family: var(--ff-primary);
    transition: color 0.2s ease;
    color: var(--clr-blue);
}

.nav-item span{
    font-weight: var(--fw-semi-bold);
    font-size: 1.18rem;
}

.nav-item:hover {
    color: var(--clr-green);
}

.nav-in {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: right 0.25s ease-in-out;
    background-color: #ffffff;
    border: 2px solid rgb(148, 213, 229);
    box-shadow: -1px 8px 10px 0px #57585941;
    padding: 1rem 2rem 0 2rem;
    gap: 0.1rem;
    z-index: 1000;
    overflow: scroll;
}

.nav-in .nav-item {
    text-align: left;
    width: 100%;
    padding: 0.5rem;
}
/* NavBar >> */


/* << Menu Icon */
.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    margin-left: 10px;
    width: 2.2rem;
}
.menu:hover .line {
    stroke: var(--clr-green);
}
.line {
    fill: none;
    stroke: var(--clr-blue);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}
.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}
.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}
.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}
/* Menu Icon >> */


/* << Media Queries */
@media only screen and (max-width: 576px) {
    .nav-logo img {
        width: 2.8rem;
    }
}

@media only screen and (max-width: 768px) {
    .nav-out {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .nav-bar {
        padding: 0.3rem 1rem;
    }
    .nav-logo img {
        width: 3rem;
    }
    .nav-item span{
        font-size: 1.2rem;
    }
    .menu {
        width: 2.1rem;
    }
    .logo-text {
        font-size: 1.2rem;
    }
}
/* Media Queries >> */

/* NavBar >> */


/* << Footer */
footer{
    margin: 0;
    padding: 2% 2% 0% 2%;
    background-color: #565759;
    color: white;
    font-family:  Calibri, Poppins;

}

.f-logo{
    margin: 0 3% 1% 0;
    width: 150px;
    height: 150px;
    float:left;
    /* position: absolute; */
}

@media (max-width: 750px){
    .f-logo{
        width: 100px;
        height: 100px;
    }
}

.f-logo svg{
    width: 100%;
    height: 100%;
}

.f-description{
    margin-right: 2%;
    padding-right: 6%;
    text-indent: 1rem;
}

.f-description::first-letter{
    font-size: 1.3rem;
}

.f-social-media{
    text-align: center;
    align-items: center;
}

svg{
    width: 30px;
    margin: 2%;
    fill: white;
    vertical-align: middle; 
}

.f-icons a{
    text-decoration: none;
}

hr{
    background-color: wheat;
    border: solid;
    margin: 1% 5%;
}

.row .f-heading{
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    color: white;
}

p highlight{
    font-size: 1.5rem;
    padding-top: 2rem ;
    font-weight: 500;
    text-decoration: none;

}

p a{
    color: white;
}

.f-heading{
    margin-left: 4%;
}

.f-heading a{
    color: white;
    text-decoration: none;
}
/* Footer >> */