:root {
    --color-blue: #0500ff;
    --dark-blue: #000060;
    ;
    --bg-black: #030d03;
    --bg-black-light: #181818;
    --red-color: #e3051a;
    --green-color: #009900;
    --dark-green-color: #003333;
}

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

html {
    overflow: scroll;
    overflow-x: hidden;
}

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'Syne', sans-serif;
    font-size: calc(16px + 2*(100vw - 320px)/1600);
    text-rendering: optimizeLegibility;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -webkit-transition: background-color 1s ease;
    -o-transition: background-color 1s ease;
    transition: background-color 1s ease;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background-color: #eceefd;
    color: #000;
    letter-spacing: normal;
}

body {
    min-height: 100vh;
    width: 100%;
}

::-moz-selection {
    background-color: var(--color-blue);
    color: #f4f2f2;
    text-shadow: none;
}

::selection {
    background-color: var(--color-blue);
    color: #f4f2f2;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 5px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--color-blue);
    border-radius: 6px;
    cursor: -webkit-grab;
    cursor: grab;
}

::-webkit-scrollbar-track {
    cursor: -webkit-grab;
    cursor: grab;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Syne', sans-serif;
    color: #000;
    font-weight: 600;
}

h1 {
    font-size: calc((3.15 - 1) * 1.2vw + 1rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.25vw;
    padding: 10px 0;
    margin-bottom: 10px;
}

h2 {
    font-size: calc((2.25 - 1) * 1.2vw + 1rem);
    line-height: 1.2;
    letter-spacing: -0.13vw;
    padding: 10px 0;
    margin-bottom: 10px;
}

h3 {
    font-size: calc(16.28571px + .45613vw);
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 3vh;
}

h4 {
    font-size: calc((1.255 - 1) * 1.2vw + 1rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 35px;
    font-weight: bold;
}

h5 {
    font-size: calc(14px + .23613vw);
    font-weight: 500;
    margin-bottom: calc(30px + 3.5vh);
    font-weight: normal;
    letter-spacing: -0.052vw;
}

h6 {
    position: relative;
    font-size: calc(14px + 2*(100vw - 320px)/1600);
    line-height: 1;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #161617;
    font-weight: 700;
}

h6::before {
    content: "⬤";
    margin-right: 0.625rem;
    vertical-align: top;
}

p,
blockquote {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.55;
}

p+p {
    margin-top: 20px;
}

p:not(:last-child) {
    margin-bottom: 28px;
}

ul {
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

blockquote span {
    display: inline;
    padding-bottom: 1px;
    border-bottom: 2px solid #000 !important;
    color: inherit;
    font-size: 70px;
    line-height: 1.1 !important;
    text-transform: uppercase;
    color: #1b1b1b !important;
}

.text-lead {
    font-size: calc(14px + .38824vw);
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
}

.p-large {
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    letter-spacing: clamp(-.02rem, -.026vw, -.01rem);
    line-height: 1.2;
}

.par__lead {
    font-size: calc((1.55 - 1) * 1.2vw + 1rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: normal;
}

.big-p {
    font-size: calc((2.25 - 1) * 1.2vw + .75rem);
    line-height: 1.25;
    margin-top: 3vh;
    margin-bottom: 3vh;
    font-weight: 500;
}

.in-view {
    text-indent: 17%;
}

.main-title {
    position: relative;
    padding-bottom: 14px;
    border-bottom: 2px solid #d3d3d39f;
}

.main-title::before {
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 10%;
    border-bottom: 2px solid var(--red);
}

/* Links */
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-weight: 500;
    color: inherit;
    outline: none;
    text-decoration: none;
    background: transparent;
    vertical-align: baseline;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

a:hover {
    color: var(--color-blue);
    text-decoration: none;
    outline: none !important;
}

a,
a>* {
    text-decoration: none;
    outline: none !important;
}

a,
button {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

button {
    white-space: normal !important;
    word-wrap: break-word !important;
}

strong,
b {
    color: rgb(32 97 141);
}

/*================================ BACKGROUND AND TEXT ================================== */
.p-light {
    color: #fff;
    opacity: 0.7;
}

.text-blue {
    color: var(--color-blue);
}

.text-green {
    color: var(--color-green);
}

.text-navy {
    color: var(--color-navy);
}

.text-green {
    color: var(--green-color);
}

text-dark-green {
    color: #003333;
}

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

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

.bg-black-light {
    background-color: var(--bg-black-light);
}

.bg-dark-blue {
    background-color: var(--dark-blue);
}

/*================================ BUTTONS ================================== */
.main__btn {
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    column-gap: 1rem;
    align-items: center;
    font-size: 110%;
    border: 0;
    border-radius: 35px;
    box-shadow: none;
    background-image: radial-gradient(circle, rgb(29, 18, 226) 0%, rgb(10, 10, 134) 35%, rgba(0, 61, 255, 1) 100%);
    background-size: 200% auto;
    transition: all 400ms linear;
    padding: 0.95rem 2rem;
    color: #fff;
}

.main__btn-text {
    position: relative;
    z-index: 2;
}

.main__btn img {
    height: calc(25.28571px + 0.33613vw);
    width: calc(25.28571px + 0.33613vw);
    transform: rotate(-135deg);
    filter: invert(1);
    margin-left: .55rem;
    transition: all 400ms;
}

.main__btn:hover {
    background-position: right center;
    color: #fff;
}

.main__btn:hover img {
    transform: rotate(-90deg);
}

.round__blue__btn {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 50px;
    width: 50px;
    background-color: #0500ff;
    border-radius: 100%;
    margin-left: auto;
}

.round__blue__btn-img {
    height: 30px;
    width: 30px;
    transform: rotate(-45deg);
    filter: invert(1);
    transition: all 400ms;
}

.round__blue__btn__wrapper {
    display: inline-flex;
    align-items: center;
    column-gap: 1rem;
}

.round__blue__btn-text {
    font-size: calc(16.28571px + 0.33613vw);
    font-weight: 600;
}

.round__blue__btn__wrapper:hover .round__blue__btn-img {
    transform: rotate(-90deg);
}

/*================================ MARGINS & SPACES ================================== */
.divider {
    border-width: 0;
    border-style: solid;
    border-bottom-width: thin;
    opacity: 0.2;
    border-color: #252324;
}

.m-10 {
    padding-top: calc(35.14286px + 4.05042vw);
    padding-bottom: calc(35.14286px + 4.05042vw);
}

.mt-10 {
    padding-top: calc(35.14286px + 4.05042vw);
}

.mb-10 {
    padding-bottom: calc(35.14286px + 4.05042vw);
}

.space {
    padding-top: 15.5vw;
    padding-bottom: 15.5vw;
}

.space-2 {
    padding-top: 12.5vw;
    padding-bottom: 12.5vw;
}

.space-top-2 {
    padding-top: 12.5vw;
}

.space-bottom-2 {
    padding-bottom: 12.5vw;
}

.container-90 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: calc(15px + 1vw);
    padding-right: calc(15px + 1vw);
}

.max-300 {
    max-width: 300px;
}

.max-450 {
    max-width: 450px;
}

.max-550 {
    max-width: 550px;
}

.max-650 {
    max-width: 650px;
}

/*================================ IMAGES ================================== */
.rounded-2 {
    border-radius: 16px;
}

/*================================ Owl ================================== */
.owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.owl-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/*================================ NAV BAR ================================== */
nav {
    position: absolute;
    top: 0;
    z-index: 3;
    width: 100%;
    animation: 2s fadeInNav ease;
}

.nav__bar {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    margin-left: calc(15px + 1vw);
    margin-right: calc(15px + 1vw);
    border-bottom: 1px solid #c4c2c25d;
}

.nav__home-link {
    color: #fff;
    text-transform: uppercase;
}

.navbar__brand {
    position: relative;
    left: calc(8px + 1vw);
    margin-left: -5%;
}

.navbar__brand-item {
    position: relative;
    background: red;
    display: block;
    padding-left: 5px;
    padding-right: 15px;
}

.navbar__brand-item::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 120%;
    width: 100%;
    background-color: #fff;
    border-radius: 0 0 6px 6px;
}

.navbar__brand img {
    position: relative;
    width: calc(50px + 8.5vh);
    margin-top: 10px;
    margin-left: 10px;
}

@keyframes fadeInNav {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
        top: -25px;
    }

    100% {
        opacity: 1;
        top: 0;
    }
}

#nav-icon {
    width: 100px;
    height: 45px;
    position: fixed;
    top: 0;
    z-index: 2;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg) scale(0.4);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    margin-top: 10px;
    right: 0;
    animation: 2s fadeInNav ease;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 9px;
    width: 100%;
    background: #0500ff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon span:nth-child(2) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon span:nth-child(3) {
    top: 36px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#nav-icon.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
    background: #0500ff;
}

#nav-icon.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
    background: #0500ff;
}

#nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 39px;
    left: 8px;
    background: #0500ff;
}

.overlay {
    width: 100%;
    height: 100%;
    background-color: #eceefd;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    padding: calc(15px + 1vw);
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

.overlay a {
    position: relative;
    color: #000;
    font-size: calc(24.28571px + 1.10084vw);
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    opacity: 0;
    transition: transform 0.2s ease;
    overflow: hidden;
    border-bottom: 1px solid #afacd4;
}

@keyframes fadeInCopyright {
    0% {
        opacity: 0;
    }

    80% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
    }
}

.overlay a:after {
    position: absolute;
    transition: all 0.3s;
    content: '';
    width: 0;
    bottom: 0;
    height: 1px;
    background: #afacd4;
    left: 0;
}

.overlay a:hover:after {
    width: 100%;
    left: 0;
}

.overlay a::before {
    position: absolute;
    transition: all 0.3s;
    content: '';
    width: 15px;
    height: 15px;
    bottom: 15px;
    right: 0;
    background: #000;
    border-radius: 100%;
}

.overlay a.open:hover {
    transform: translateY(2px);
}

.overlay a.open:nth-child(1) {
    opacity: 1;
    animation: 1s fadeInLinks1 ease;
}

@keyframes fadeInLinks1 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
    }
}

.overlay a.open:nth-child(2) {
    opacity: 1;
    animation: 1.25s fadeInLinks2 ease;
}

@keyframes fadeInLinks2 {
    0% {
        opacity: 0;
    }

    60% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
    }
}

.overlay a.open:nth-child(3) {
    opacity: 1;
    animation: 1.5s fadeInLinks3 ease;
}

@keyframes fadeInLinks3 {
    0% {
        opacity: 0;
    }

    70% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
    }
}

.overlay a.open:nth-child(4) {
    opacity: 1;
    animation: 1.75s fadeInLinks3 ease;
}

@keyframes fadeInLinks3 {
    0% {
        opacity: 0;
    }

    70% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
    }
}

/*================================ INDEX PAGE ================================== */
.header__wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.header__wrapper-content {
    position: absolute;
    bottom: 35px;
    z-index: 2;
    left: calc(15px + 1vw);
    right: calc(15px + 1vw);
}

.header__wrapper-content h1 {
    color: #fff;
}

.header__wrapper-content h1 span {
    display: block;
}

.header__wrapper-content p {
    color: #c4c2c2;
}

.header__wrapper-content hr {
    background: hsla(0, 0%, 100%, .25);
}

.scroll__down-icon {
    display: flex;
    justify-content: space-around;
    background-color: #009900;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
}

.header__slider-item {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.first__slide {
    background: linear-gradient(rgba(0, 1, 14, 0.7), rgba(0, 1, 7, 0.7)), url(/images/slide__02.jpg) center center / cover no-repeat;
}

.second__slide {
    background: linear-gradient(rgba(0, 1, 14, 0.7), rgba(0, 1, 7, 0.7)), url(/images/slide__01.jpg) center center / cover no-repeat;
}

.third__slide {
    background: linear-gradient(rgba(0, 1, 14, 0.7), rgba(0, 1, 7, 0.7)), url(/images/slide__03.jpg) center center / cover no-repeat;
}

.hero-line {
    -ms-grid-column: 1;
    -ms-grid-column-span: 24;
    grid-column: 1/25;
    height: 1px;
    background: hsla(0, 0%, 100%, .25);
    margin-bottom: 1rem;
}

.image__card-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-height: 60vh;
}

.image__card-item::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: #00000073;
    transition: all 400ms;
}

.image__card-item:hover::after {
    background-color: rgba(1, 1, 22, 0.7);
}

.road__signs {
    background: url(/images/road-sign-card-bg.jpg) no-repeat center center /cover;
}

.safety__signs {
    background: url(/images/safety-signs-card-bg.jpg) no-repeat center center /cover;
}

.business__signs {
    background: url(/images/business-sign-card-bg.jpg) no-repeat center center /cover;
}

.vehicle__signs {
    background: url(/images/vehicle-signs-card-bg.jpg) no-repeat center center /cover;
}

.image__card-title {
    font-size: calc(18.28571px + 0.45613vw);
    font-weight: 600;
    color: #fff;
    padding-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid #333;
}

.inner__banner__bg {
    background: linear-gradient(rgba(0, 1, 14, 0.2), rgba(0, 1, 7, 0.2)), url(/images/business-signs-center.jpg) no-repeat center center /cover;
    min-height: calc(650px + 4.5vw);
}

.home__steps {
    position: relative;
}

.home__steps::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background-color: var(--bg-black);
}

.home__steps-item {
    background: #fff;
    border-radius: 6px 6px 6px 6px;
    padding: calc(15.42857px + 0.79832vw);
    box-shadow: 0px 3px 15px 0px rgb(0 0 0 / 10%);
    height: 100%;
}

.home__steps-item__number {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-blue);
    border-radius: 5%;
    padding: 20px;
    margin-bottom: calc(57px + 8.5vw);
    color: #fff;
}

.home__steps-item__title {
    position: relative;
    font-weight: 700;
    padding-bottom: 20px;
}

.home__steps-item__title::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 2px;
    width: 10%;
    background-color: var(--color-blue);
}

.home__about__item {
    background-color: #fff;
    border-radius: 6px;
    padding: calc(15.42857px + 0.79832vw);
    transition: all 400ms
}

.home__about__item-title {
    max-width: 450px;
}

.home__about__item:hover {
    background-color: #082e88;
}

.home__about__item:hover p {
    color: #fff;
}

.home__about__item:hover h2 {
    color: #fff;
}

.home__about__item:hover .round__blue__btn-img {
    transform: rotate(-90deg);
}

/*================================ About Us Page ================================== */
.about__header__banner {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    background: linear-gradient(rgba(0, 1, 14, 0.4), rgba(0, 1, 7, 0.4)), url(/images/about-all-nation-signs.jpg) no-repeat center center /cover;
    margin-top: calc(100px + 7.5vh);
    min-height: 70vh;
}

.about__header__banner-title {
    display: flex;
    background-color: #000;
    width: 80%;
    padding: calc(15.42857px + 0.79832vw);
    margin-bottom: 4.86em;
}

.vision__item {
    padding: calc(15.42857px + 0.79832vw);
    box-shadow: 0px 3px 15px 0px rgb(0 0 0 / 10%);
    background-color: #fff;
    height: 100%;
}

.vision__item-title {
    position: relative;
    font-weight: 700;
    padding-bottom: 20px
}

.vision__item-title::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 2px;
    width: 10%;
    background-color: var(--color-blue);
}

.vision__item-icon {
    height: 60px;
    width: 60px;
    padding: 10px;
    background-color: #91D8F7;
    border-radius: 6px;
    margin-bottom: calc(57px + 8.5vw);
}

/*================================ Projects ================================== */
.global__header-content {
    padding-top: 10vh;
}

.negative__header-image {
    margin-bottom: -50px;
}

/*================================ Contact Us Page ================================== */
.contact__details-item {
    display: flex;
    border-bottom: 1px solid #b2bedb;
    gap: calc(3rem + 2.5vw);
    padding-bottom: 15px;
    margin-bottom: calc(15px + .79832vw);
}

.contact__details-item:last-child {
    border-bottom: none;
    padding-top: 20px;
    margin-bottom: 0;
}

.contact__details-container {
    padding: calc(21.42857px + 0.79832vw) calc(15px + .52857vw);
}

.contact__details-container h3 {
    font-size: 140%;
    color: var(--color-blue);
    margin-bottom: 10px;
}

.contact__details-container p {
    margin-top: 0;
}

.form__wrapper {
    background-color: #fff;
    padding: calc(21.42857px + 0.79832vw) calc(15px + .52857vw);
}

.form__wrapper .form-control {
    padding: 20px 0;
    margin-bottom: 20px;
    border-style: none none solid;
    border-bottom: 1px solid #b2bedb;
    border-radius: 0;
    color: #030683;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.4s ease-in-out;
}

/* ========================== FOOTER =============================*/
.footer__links ul {
    display: flex;
    justify-content: space-between;
    color: #c4c2c2;
}

.footer__links ul li {
    display: inline;
    list-style: none;
}

footer .socials li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    margin-left: 20px;
}

footer .copyright hr {
    background-color: #777;
    margin-top: calc(20px + 1.5vw);
}

footer .copyright p {
    font-size: 90%;
    color: rgb(180, 179, 179);
}

.main-footer__divider {
    padding-bottom: 3.2rem;
    padding-top: 3.2rem;
    position: relative;
}

.main-footer__divider:before {
    background-image: radial-gradient(circle at 50% 0, #fff, hsla(0, 0%, 100%, 0));
    border-radius: 1px;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    opacity: .2;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 75%;
}

.main-footer__divider:after {
    background-image: radial-gradient(circle at 50% 0, #fff, hsla(0, 0%, 100%, 0));
    border-radius: 1px;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    opacity: .2;
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    width: 75%;
}

.footer-social-row__social-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

.footer-social-row__social-link {
    color: #fff;
    display: block;
    height: 100%;
    padding: .4rem;
    transition: color .3s cubic-bezier(.19, 1, .22, 1);
    width: 100%;
    margin: 0 1rem;
}

.footer-social-row__social-link:hover svg {
    fill: #FF3000;
}

.footer-social-row__social-link svg {
    height: 1.5rem;
    width: 1.5rem;
    fill: #fff;
}

.footer-social-row__social-link svg {
    fill: "red";
}

.footer-copyright {
    margin-top: calc(20px + 4.5vw);
}

.footer-copyright__list-item {
    font-size: 0.8rem;
    line-height: 1.45;
    color: #c4c2c2;
    margin-top: 0;
    margin-bottom: 10px;
}

.footer-copyright__bar {
    position: relative;
    margin-top: calc(20px + 4.5vw);
    padding: 0 15px;
}

.footer-copyright__bar:before {
    background-image: radial-gradient(circle at 50% 0, #fff, hsla(0, 0%, 100%, 0));
    border-radius: 1px;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    opacity: .2;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 75%;
}

.footer-copyright__bar p {
    font-size: 0.85rem;
    line-height: 1.45;
    color: #cecccc;
    margin-top: 35px;
}

/*================================ Media Queries ================================== */
/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .w-75 {
        width: 100% !important;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    h1 {
        font-size: calc((3.75 - 1) * 1.2vw + 1rem);
        line-height: 1.2;
    }

    h2 {
        font-size: calc((4.55 - 1) * 1.2vw + 1rem);
        letter-spacing: -1.5px;
    }

    .h2 {
        font-weight: 400;
        line-height: 1.1;
    }

    footer {
        margin-bottom: 1.25rem;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .container-90 {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .content-reverse {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .content-reverse-2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .nav__bar {
        display: flex;
        justify-content: space-between;
        margin-top: 0;
        margin-left: 15px;
        padding-right: 0;
        border-bottom: 1px solid #c4c2c25d;
    }

    .navbar__brand {
        position: relative;
        margin-left: -80px;
    }

    #nav-icon {
        top: -7px;
        transition: all 400ms;
        right: -10px;
    }

    .global__header {
        margin-bottom: 100px;
    }

    .global__header-content {
        padding-top: calc(157px + 5vh);
    }
}