input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


* {
    margin: 0;
    padding: 0;
}


button {
    outline: transparent;
    border: none;
}

.row {
    --bs-gutter-x: 0 !important;
}


:root {
    --orangeOFSColour: #F8932D;
    --lightorangeOFSColour: #FFB76D;
    --darkblueOFSColour: #112B3C;
    --lighterblueOFSColour: #205375;
    --offwhiteOFSColour: #EFEFEF;
    --greyOFSColour: #7D7D7D;
}

.interBlack {
    font-family: 'Inter', sans-serif;
    font-weight:900;
}

.interExtraBold {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.interBold {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.interSemiBold {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}


.sourceProBlack {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 900;
}

.sourceProExtraBold {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 800;
}

.sourceProBold {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
}

.sourceProSemiBold {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
}

.sourceProRegular {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}


.darkBlueBGColorOFS {
    background-color: var(--darkblueOFSColour) !important;
}

.lightBlueBGColorOFS {
    background-color: var(--lighterblueOFSColour) !important;
}

.orangeBGColorOFS {
    background-color: var(--orangeOFSColour) !important;
}


.offWhiteBGColorOFS {
    background-color: var(--offwhiteOFSColour) !important;
}

.darkBlueColorOFS {
    color: var(--darkblueOFSColour) !important;
}

.orangeColorOFS {
    color: var(--orangeOFSColour) !important;
}
.offWhiteColorOFS {
    color: var(--offwhiteOFSColour) !important;
}

.blackColorOFS {
    color: #3E3E3E !important;
}

.greyColorOFS {
    color: var(--greyOFSColour) !important;
}
.cursorPoitner {
    cursor: pointer;
}

.cursorDefault {
    cursor: default;
}

.overflowYHidden {
    overflow-y:hidden;
}

.vhHeight100 {
    height: 92vh;
}
.inheritHeight {
    height:inherit;
}
.fontSize08em {
    font-size: 0.8em;
}

.fontSize09em {
    font-size: 0.9em;
}

.fontSize1em {
    font-size: 1em;
}

.fontSize12em {
    font-size: 1.2em !important;
}

.fontSize15em {
    font-size: 1.5em !important;
}

.fontSize22em {
    font-size: 2.2em !important;
}

.alignContentCenterStart{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    text-align: start;
    padding: 5%;
}

.alignContentCenterCenter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 5%;
}


/*Navigation Bar*/

header {
    overflow-x: hidden;
}

nav {
    height: 6rem;
    width: 100vw;
    background-color: var(--darkblueOFSColour);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    z-index: 10;
}


/*Styling Links*/
.nav-links {
    display: flex;
    list-style: none;
    width: 88vw;
    padding: 0;
    margin:0;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
}


.navContainer {
    max-width:1350px;
    margin-left:auto;
    margin-right:auto;
    display:flex;
}
.nav-links li a {
    text-decoration: none;
    margin: 0 0.7vw;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.nav-links li a:hover {
    color: #61DAFB;
}

.nav-links li {
position: relative;
}

.nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background-color: var(--offwhiteOFSColour);
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
}

.nav-links li a:hover::before {
    width: 80%;
}

/*Styling Buttons*/
.login-button {
    background-color: transparent;
    border: 1.5px solid #f2f5f7;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    margin-left: 2vw;
    font-size: 1rem;
    cursor: pointer;
}

.login-button:hover {
    color: #131418;
    background-color: #f2f5f7;
    border: 1.5px solid #f2f5f7;
    transition: all ease-in-out 350ms;
}

.join-button {
    color: #131418;
    background-color: #61DAFB;
    border: 1.5px solid #61DAFB;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
    cursor: pointer;
}

.join-button:hover {
    color: #f2f5f7;
    background-color: transparent;
    border: 1.5px solid #f2f5f7;
    transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
.hamburger div {
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 950px) {

    nav {
        position:relative;
        z-index: 3;
    }
    .navContainer {
        margin-left:2%;
        margin-right:0;
    }
    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }

    .nav-links {
        position: fixed;
        background: var(--orangeOFSColour);
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
    }

    .nav-links.open {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(2000px at 90% -10%);
        pointer-events: all;
    }

    .nav-links li {
        opacity: 0;
    }

    .nav-links li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
    }

    .nav-links li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
    }

    .nav-links li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
    }

    .nav-links li:nth-child(4) {
        transition: all 0.5s ease 0.7s;
    }

    .nav-links li:nth-child(5) {
        transition: all 0.5s ease 0.8s;
    }

    .nav-links li:nth-child(6) {
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }

    .nav-links li:nth-child(7) {
        transition: all 0.5s ease 1s;
        margin: 0;
    }

    li.fade {
         opacity: 1 !important;
    }
    .navContainer img {
        width:30% !important;
    }
}
/*Animating Hamburger Icon on Click*/
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px,6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px,-6px);
}

.navNoPaddingMargin{
    padding:0!important;
    margin:0!important;
}