@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins: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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-primary: #ac0000;
    --background-color: #010624;
    --background-color-2: #010945;
    --background-2: linear-gradient(to right bottom, #ac0000, #112298);
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Montserrat", sans-serif;
    --galp: #FA6230;
    --rubis: #088f74;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::selection {
    background: var(--color-primary) !important;
}

html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    height: 100%;
    width: 100%;
    font-family: var(--font-primary);
    background: var(--background-color) !important;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
}

p {
    font-size: 1.1rem;
}

a {
    color: #ffffff;
    text-decoration: none;
}

ul {
    list-style: none;
}

@media screen and (max-width: 992px) {
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 20px;
    }
    p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 810px) {
    h1 {
        font-size: 20px;
    }
    p {
        font-size: 0.8rem;
    }
}

.container {
    width: 1320px;
    height: auto;
}

.section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--background-color) !important;
    z-index: 0;
}

.section::before {
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    background-image: url(../images/bg/noise.gif) !important;
    opacity: 0.05;
    z-index: -1;
}

@media screen and (max-width: 1200px) {
    .container {
        width: 1140px;
    }
}
@media screen and (max-width: 992px) {
    .container {
        width: 960px;
    }
}
@media screen and (max-width: 768px) {
    .container {
        width: 720px;
    }
}
@media screen and (max-width: 576px) {
    .container {
        width: 95%;
    }
}

.typed-cursor{
    font-size: 50px;
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
    color: #ffffff;
}

.card {
    background: var(--background-color-2);
    border: 1px solid #112298;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
}

.button__primary {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0px;
    background: #800000;
    color: #ffffff;
    border: 2px solid #800000;
    border-radius: 0.5rem;
    box-shadow: 0.05rem 0.2rem 0.4rem transparent;
    padding: 10px 18px;
    font-size: 1rem;
    transition-duration: 0.25s;
}

.button__primary:hover {
    background: var(--color-primary) !important;
    border: 2px solid var(--color-primary) !important;
    box-shadow: 0.05rem 0.2rem 0.4rem #ac0000;
    top: -5px;
    transition-duration: 0.25s;
}

.button__secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #112298;
    border-radius: 0.5rem;
    padding: 10px 18px;
    font-size: 1rem;
    transition-duration: 0.25s;
}

.button__secondary:hover {
    background: #112298;
    border: 2px solid transparent;
    top: -5px;
    transition-duration: 0.25s;
}

@media screen and (max-width: 992px) {
    .button__primary,
    .button__secondary {
        padding: 6.66px 12px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 810px) {
    .button__primary,
    .button__secondary {
        padding: 5px 9px;
        font-size: 0.85rem;
    }
}

.glowy__primary__text {
    color: var(--color-primary) !important;
    text-shadow:1px 1px 15px var(--color-primary) !important;
}

.glowy__white__text {
    color: #ffffff;
    text-shadow:1px 1px 15px #fff;
}

/***********/
/* MARGINS */
/***********/

.m__auto {
    margin: auto !important;
}

.m__0 {
    margin: 0rem !important;
}

.m__1 {
    margin: 0.25rem !important;
}

.m__2 {
    margin: 0.5rem !important;
}

.m__3 {
    margin: 1.5rem !important;
}

.m__4 {
    margin: 3rem !important;
}

.mt__auto {
    margin-top: auto !important;
}

.mt__0 {
    margin-top: 0rem !important;
}

.mt__1 {
    margin-top: 0.25rem !important;
}

.mt__2 {
    margin-top: 0.5rem !important;
}

.mt__3 {
    margin-top: 1.5rem !important;
}

.mt__4 {
    margin-top: 3rem !important;
}

.mb__auto {
    margin-bottom: auto !important;
}

.mb__0 {
    margin-bottom: 0rem !important;
}

.mb__1 {
    margin-bottom: 0.25rem !important;
}

.mb__2 {
    margin-bottom: 0.5rem !important;
}

.mb__3 {
    margin-bottom: 1.5rem !important;
}

.mb__4 {
    margin-bottom: 3rem !important;
}

.ml__auto {
    margin-left: auto !important;
}

.ml__0 {
    margin-left: 0rem !important;
}

.ml__1 {
    margin-left: 0.25rem !important;
}

.ml__2 {
    margin-left: 0.5rem !important;
}

.ml__3 {
    margin-left: 1.5rem !important;
}

.ml__4 {
    margin-left: 3rem !important;
}

.mr__auto {
    margin-right: auto !important;
}

.mr__0 {
    margin-right: 0rem !important;
}

.mr__1 {
    margin-right: 0.25rem !important;
}

.mr__2 {
    margin-right: 0.5rem !important;
}

.mr__3 {
    margin-right: 1.5rem !important;
}

.mr__4 {
    margin-right: 3rem !important;
}

/************/
/* PADDINGS */
/************/

.p__auto {
    padding: auto !important;
}

.p__0 {
    padding: 0rem !important;
}

.p__1 {
    padding: 0.25rem !important;
}

.p__2 {
    padding: 0.5rem !important;
}

.p__3 {
    padding: 1.5rem !important;
}

.p__4 {
    padding: 3rem !important;
}

.pt__auto {
    padding-top: auto !important;
}

.pt__0 {
    padding-top: 0rem !important;
}

.pt__1 {
    padding-top: 0.25rem !important;
}

.pt__2 {
    padding-top: 0.5rem !important;
}

.pt__3 {
    padding-top: 1.5rem !important;
}

.pt__4 {
    padding-top: 3rem !important;
}

.pb__auto {
    padding-bottom: auto !important;
}

.pb__0 {
    padding-bottom: 0rem !important;
}

.pb__1 {
    padding-bottom: 0.25rem !important;
}

.pb__2 {
    padding-bottom: 0.5rem !important;
}

.pb__3 {
    padding-bottom: 1.5rem !important;
}

.pb__4 {
    padding-bottom: 3rem !important;
}

.pl__auto {
    padding-left: auto !important;
}

.pl__0 {
    padding-left: 0rem !important;
}

.pl__1 {
    padding-left: 0.25rem !important;
}

.pl__2 {
    padding-left: 0.5rem !important;
}

.pl__3 {
    padding-left: 1.5rem !important;
}

.pl__4 {
    padding-left: 3rem !important;
}

.pr__auto {
    padding-right: auto !important;
}

.pr__0 {
    padding-right: 0rem !important;
}

.pr__1 {
    padding-right: 0.25rem !important;
}

.pr__2 {
    padding-right: 0.5rem !important;
}

.pr__3 {
    padding-right: 1.5rem !important;
}

.pr__4 {
    padding-right: 3rem !important;
}

.d__flex {
    display: flex !important;
}

.justify__content__center {
    justify-content: center !important;
}

.justify__content__start {
    justify-content: flex-start !important;
}

.justify__content__end {
    justify-content: flex-end !important;
}

.justify__content__between {
    justify-content: space-between !important;
}

.justify__content__around {
    justify-content: space-around !important;
}

.justify__content__evenly {
    justify-content: space-evenly !important;
}

.h__100 {
    height: 100% !important;
}

.h__75 {
    height: 75% !important;
}

.h__50 {
    height: 50% !important;
}

.h__25 {
    height: 25% !important;
}

.w__100 {
    width: 100% !important;
}

.w__75 {
    width: 75% !important;
}

.w__50 {
    width: 50% !important;
}

.w__25 {
    width: 25% !important;
}

.row {
    flex-direction: row !important;
}

.col {
    flex-direction: column !important;
}

.slide__up {
    position: relative;
    top: 0px;
    transition-duration: 0.5s;
}

.slide__up:hover {
    top: -15px;
    transition-duration: 0.5s;
}

/************/
/* NEWS BAR */
/************/

.news__bar {
    width: 100%;
    height: 40px;
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    background: var(--background-color-2);
    overflow: hidden;
    z-index: 999 !important;
}

.news__bar__inner {
    width: 200%; /* Twice the width of the image to create continuous movement */
    background-image: url('../images/misc/madmat-20-anos.png') !important;
    background-repeat: repeat-x;
    display: flex;
    align-items: center;
    animation: moveBackground 15s linear infinite;
}

@media screen and (max-width: 768px) {
    .news__bar__inner {
        animation: moveBackground 10s linear infinite;
    }
}

@media screen and (max-width: 550px) {
    .news__bar__inner {
        animation: moveBackground 4s linear infinite;
    }
}

@media screen and (max-width: 400px) {
    .news__bar__inner {
        animation: moveBackground 2s linear infinite;
    }
}

@media screen and (max-width: 330px) {
    .news__bar__inner {
        animation: moveBackground 0s linear infinite;
    }
}

.news__bar__inner img {
    visibility: hidden;
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0; /* Moves the image to the right */
    }
}


/**********/
/* NAVBAR */
/**********/

nav.navbar {
    position: absolute;
    top: 40px;
    left: 0;
    height: 85px;
    width: 100%;
    border-bottom: 2px dashed #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999 !important;
}

.navbar__menu__open {
    background: var(--background-color-2);
    position: fixed;
}

.sticky {
    position: fixed !important;
    backdrop-filter: blur(15px);
    animation: navanim 0.25s linear;
}

@keyframes navanim {
    0% {
       top: -85px;
   }
    100% {
       top: 0;
   }
}

nav.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav.navbar .container img.mobile__nav_brand {
    display: none;
}

nav.navbar .container img.mobile__nav_brand,
nav.navbar .container .menu__items img.brand__center {
    max-width: 10rem;
}

nav.navbar .container .menu__items {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav.navbar .container ul {
    display: flex;
}

nav.navbar .container .nav__item a {
    padding: 0 2rem;
    font-size: 1.1rem;
    transition-duration: 0.25s;
}

nav.navbar .container .nav__item a:hover {
    color: var(--color-primary) !important;
    transition-duration: 0.25s;
}

nav.navbar .container .nav__item.active a {
    color: var(--color-primary) !important;
}

nav.navbar .container i.nav__hamburger {
    display: none;
    opacity: 1;
    transition-duration: 0.25s;
}

nav.navbar .container i.nav__hamburger:hover {
    cursor: pointer;
    opacity: 0.5;
    transition-duration: 0.25s;
}

nav.navbar .container .menu__items.show__menu__items {
    right: 0;
    transform: translateX(0);
}

@media screen and (max-width: 768px) {
    nav.navbar .container {
        justify-content: space-between;
    }
    nav.navbar .container i.nav__hamburger {
        display: flex;
        color: #ffffff;
        font-size: 25px;
    }
    nav.navbar .container img.mobile__nav_brand {
        display: flex;
    }
    nav.navbar .container .menu__items img.brand__center {
        display: none;
    }
    nav.navbar .container .menu__items ul:first-child {
        padding-top: 2rem;
    }
    nav.navbar .container .menu__items ul {
        flex-direction: column;
    }
    nav.navbar .container .menu__items ul li {
        padding: 1rem 0;
    }
    nav.navbar .container .menu__items {
        position: fixed;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        top: 85px;
        right: -100%;
        height: 100dvh;
        width: 100%;
        background: var(--background-color-2);
        transition: transform 0.3s ease-in-out, right 0.3s ease-in-out;
        z-index: 99;
    }
}

@media screen and (max-width: 300px) {
    nav.navbar .container img.mobile__nav_brand {
        max-width: 7.5rem;
    }
}

/****************/
/* HERO SECTION */
/****************/

.hero__section {
    position: relative;
    height: 100dvh;
    width: 100%;
}

.hero__section .container {
    display: flex;
    flex-direction: column;
    padding-top: 85px;
    gap: 2rem;
}

.hero__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero__title {
    font-size: 50px;
}

.hero__typed {
    background: var(--background-2);
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    font-size: 50px;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image img {
    border-radius: 1rem;
    max-width: 35rem;
}

.hero__brands {
    position: relative;
}

.hero__brands .card {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.hero__brands img {
    max-width: 10rem;
    z-index: 99;
}

@media screen and (max-width: 992px) {
    .hero__main {
        flex-direction: column;
    }
    .hero__title,
    .hero__typed {
        font-size: 40px;
    }
    .hero__image img {
        max-width: 25rem;
    }
    .hero__brands img {
        max-width: 8.5rem;
    }
}

@media screen and (max-width: 850px) {
    .hero__image img {
        max-width: 90%;
    }
    .hero__brands {
        display: none;
    }
    .hero__section .container {
        padding-top: 0;
    }
    .hero__brands img {
        max-width: 7rem;
    }
}

@media screen and (max-width: 768px) {
    .hero__title,
    .hero__typed {
        font-size: 30px;
    }
}

@media screen and (max-width: 500px) {
    .hero__section .container {
        margin-top: 5rem;
    }
    .hero__title,
    .hero__typed {
        font-size: 25px;
    }
    .hero__brands img {
        max-width: 6rem;
    }
    .hero__brands .card {
        flex-direction: column;
    }
}

@media screen and (max-width: 330px) {
    .hero__title,
    .hero__typed {
        font-size: 20px;
    }
    .hero__brands img {
        max-width: 5rem;
    }
}

/*****************/
/* TOOLS SECTION */
/*****************/

.tools__section {
    position: relative;
    height: auto;
    width: 100%;
    padding: 10rem 0rem;
}

.tools__section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.tools__image img {
    max-width: 20rem;
}

@media screen and (max-width: 992px) {
    .tools__image img {
        max-width: 15rem;
    }
}

@media screen and (max-width: 768px) {
    .tools__section {
        padding: 2.5rem 0;
    }
    .tools__image img {
        display: none;
    }
}

/********************/
/* DELIVERY SECTION */
/********************/

.delivery__section {
    position: relative;
    height: auto;
    width: 100%;
    padding: 10rem 0rem;
}

.delivery__section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.delivery__image img {
    max-width: 20rem;
}

.delivery__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    justify-content: center;
    gap: 2.5rem;
}

.delivery__content .content__wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery__content .content__wrapper .buttons {
    display: flex;
    gap: 0.5rem;
}

.delivery__location {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

.delivery__location i {
    color: var(--color-primary) !important;
    font-size: 1.25rem;
}

.delivery__location span {
    color: #ffffff;
    font-size: 1.25rem;
}

@media screen and (max-width: 992px) {
    .delivery__image img {
        max-width: 15rem;
    }
}

@media screen and (max-width: 810px) {
    .delivery__location span {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .delivery__section {
        padding-top: 12.5rem;
        padding-bottom: 2.5rem;
    }
    .delivery__image {
        display: none;
    }
}

/***************/
/* GAS PRICING */
/***************/

.gas__pricing__section {
    position: relative;
    height: auto;
    width: 100%;
    padding: 10rem 0rem;
}

.gas__pricing__section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gas__pricing__section .container .tabs {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tabs .tab__btn:first-child {
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.tabs .tab__btn:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.tab__content .tab__btn:first-child {
    border-bottom-left-radius: 0.5rem;
}

.tab__content .tab__btn:last-child {
    border-bottom-right-radius: 0.5rem;
}

.gas__pricing__section .container .tabs img {
    max-width: 10rem;
}

.gas__pricing__section .container .tab__content img {
    max-width: 7.5rem;
}

.gas__pricing__section .container .tabs .tab__btn,
.gas__pricing__section .container .tab__content .tab__btn {
    background: var(--background-color-2);
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1;
    padding: 1rem 2rem;
    font-weight: 800;
}

.gas__pricing__section .container .tabs .tab__btn:hover,
.gas__pricing__section .container .tab__content .tab__btn:hover {
    opacity: 1 !important;
    cursor: pointer;
}

.active__tab {
    opacity: 1 !important;
    color: #ffffff;
}

.tab__content.rounded .tab__btn:first-child {
    border-bottom-left-radius: 0.5rem;
}

.tab__content.rounded .tab__btn:last-child {
    border-bottom-right-radius: 0.5rem;
}

.gas__pricing__section .container .tab__content {
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}

.gas__pricing__section .container #tab__info__container {
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
}

.tab__info__container__active {
    background: var(--background-color-2) !important;
}

.gas__pricing__section .container .tab__info__box {
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem 4rem;
}

.galp__color {
    color: var(--galp) !important;
}

.rubis__color {
    color: var(--rubis) !important;
}

.gas__pricing__section .container .tab__info__box .information,
.gas__pricing__section .container .tab__info__box .specifications {
    flex: 1;
}

.gas__pricing__section .container .tab__info__box .information {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
}

.gas__pricing__section .container .tab__info__box .specifications {
    display: flex;
    align-items: center;
}

.gas__pricing__section .container .tab__info__box .specifications img,
.gas__pricing__section .container .tab__info__box .specifications .specifications__inner {
    flex: 1;
}  

.gas__pricing__section .container .tab__info__box .specifications img {
    max-width: 15rem;
}

.gas__pricing__section .container .tab__info__box .specifications .specifications__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.gas__bottle__name {
    font-size: 2rem;
}

.gas__bottle__description {
    font-size: 1rem;
}

.gas__pricing__section .container .tab__info__box .information .button__primary {
    width: 75%;
}

.gas__info__boxes {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gas__info__box.galp {
    border: 2px solid var(--galp);
}

.gas__info__box.rubis {
    border: 2px solid var(--rubis);
}

.gas__info__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.gas__info__box div {
    display: flex;
    gap: 0.25rem;
    color: #ffffff;
}

.gas__info__box div h4 {
    font-size: 1.5rem;
}

.gas__info__box div span {
    font-size: 1rem;
    margin-top: 0.6rem;
}

@media screen and (max-width: 992px) {
    .gas__pricing__section {
        padding: 5rem 0;
    }
    .gas__pricing__section .container #tab__info__container {
        padding: 1rem 0
    }
    .gas__pricing__section .container .tab__info__box {
        padding: 0;
    }
    .gas__pricing__section .container .tab__info__box .specifications img {
        max-width: 10rem;
    }
    .gas__info__box {
        padding: 0.5rem;
    }
    .gas__info__box div h4 {
        font-size: 1.25rem;
    }
    .gas__info__box div span {
        font-size: 0.9rem;
        margin-top: 0.4rem;
    }
}

@media screen and (max-width: 768px) {
    .gas__pricing__section .container .tab__content {
        flex-direction: column;
    }
    .gas__pricing__section .container .tabs img {
        max-width: 25vw;
    }
    .gas__pricing__section .container .tab__content img {
        max-width: 15vw;
    }
    .gas__pricing__section .container .tabs .tab__btn,
    .gas__pricing__section .container .tab__content .tab__btn {
        width: 100%;
    }
    .gas__pricing__section .container .tab__info__box {
        flex-direction: column-reverse;
    }
    .gas__pricing__section .container .tab__info__box .specifications {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    .gas__pricing__section .container .tab__info__box .specifications .specifications__inner p {
        font-size: 0.9rem;
    }
    .gas__pricing__section .container .tab__info__box .information .button__primary {
        width: 100%;
    }
}

/*******************/
/* CONTACT SECTION */
/*******************/

.contact__section {
    position: relative;
    height: auto;
    width: 100%;
    padding: 10rem 0rem;
}

.contact__section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.contact__section .content__wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact__section .content__wrapper .card {
    position: relative;
    top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 2rem;
    transition-duration: 0.25s;
}

.contact__section .content__wrapper .card:hover {
    top: -5px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(172,0,0,1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(172,0,0,1);
    box-shadow: 0px 0px 10px 0px rgba(172,0,0,1);
    transition-duration: 0.25s;
}

.contact__section .content__wrapper .card a {
    transition-duration: 0.25s;
}

.contact__section .content__wrapper .card a:hover {
    cursor: pointer;
    color: var(--color-primary) !important;
    transition-duration: 0.25s;
}

.contact__section .content__wrapper .card p {
    text-align: center;
}

.contact__section .content__wrapper .card .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.contact__section .content__wrapper .card .header i {
    font-size: 2rem;
    color: var(--color-primary) !important;
}

.contact__section .form__wrapper {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.contact__section .form__wrapper .form__image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.contact__section .form__wrapper .form__image img {
    position: relative;
    max-width: 15rem;
}

.contact__section .form__wrapper .form__inner {
    flex: 1;
}

.contact__section .form__wrapper .form__inner form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact__section .form__wrapper .form__inner form input:not([type="submit"]),
.contact__section .form__wrapper .form__inner form textarea {
    width: 100%;
    background: var(--background-color-2);
    color: #fff;
    padding: 0.75rem 1rem;
    box-sizing: border-box;
    outline: none;
    border: 1px solid #112298;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    transition-duration: 0.4s;
}

.contact__section .form__wrapper .form__inner form input:not([type="submit"]):focus,
.contact__section .form__wrapper .form__inner form textarea:focus {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(172,0,0,1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(172,0,0,1);
    box-shadow: 0px 0px 10px 0px rgba(172,0,0,1);
    transition-duration: 0.4s;
}

.contact__section .form__wrapper .form__inner form input[type="submit"]:hover {
    cursor: pointer;
}

@media screen and (max-width: 992px) {
    .contact__section .form__wrapper .form__image img {
        max-width: 12.5rem;
    }
    .contact__section .form__wrapper .form__inner form input:not([type="submit"]), .contact__section .form__wrapper .form__inner form textarea {
        padding: 0.375rem 0.5rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .contact__section .form__wrapper .form__image {
        display: none;
    }
}

/*********/
/* ABOUT */
/*********/

.about__section {
    position: relative;
    height: auto;
    width: 100%;
    padding: 10rem 0rem;
}

.about__section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about__section .container .content__wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    padding-top: 1rem;
}

.about__section .container .content__wrapper .about__content,
.about__section .container .content__wrapper .about__illustration {
    display: flex;
    align-items: center;
    flex: 1;
}

.about__section .container .content__wrapper .about__content {
    justify-content: flex-start;
}

.about__section .container .content__wrapper .about__content a {
    color: var(--color-primary) !important;
    transition-duration: 0.25s;
}

.about__section .container .content__wrapper .about__content a:hover {
    opacity: 0.75;
    transition-duration: 0.25s;
}

.about__section .container .content__wrapper .about__illustration {
    justify-content: flex-end;
}

.about__section .container .content__wrapper .about__illustration img {
    max-width: 35rem;
    border-radius: 1rem;
}

@media screen and (max-width: 992px) {
    .about__section .container .content__wrapper .about__illustration img {
        max-width: 25rem;
    }
}

@media screen and (max-width: 850px) {
    .about__section .container .content__wrapper {
        flex-direction: column;
    }
    .about__section .container .content__wrapper .about__content,
    .about__section .container .content__wrapper .about__illustration {
        justify-content: center;
    }
}

@media screen and (max-width: 600px) {
    .about__section .container .content__wrapper .about__illustration img {
        max-width: 100%;
    }
}

/*********/
/* STATS */
/*********/

.stats__section {
    position: relative;
    height: auto;
    width: 100%;
    padding: 5rem 0;
}

.stats__section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stats__section .container .content__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    width: 100%;
}

.stats__section .container .content__wrapper .card {
    position: relative;
    top: 0px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
    transition-duration: 0.25s;
}
.stats__section .container .content__wrapper .card:hover {
    top: -5px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(172,0,0,1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(172,0,0,1);
    box-shadow: 0px 0px 10px 0px rgba(172,0,0,1);
    transition-duration: 0.25s;
}

.stats__section .container .content__wrapper .card i {
    color: var(--color-primary) !important;
    font-size: 1.75rem;
}

@media screen and (max-width: 768px) {
    .stats__section .container .content__wrapper {
        gap: 1rem;
    }
}

/**********/
/* FOOTER */
/**********/

footer.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    background: var(--background-color-2);
    border-top: 1px solid #112298;
}

footer.footer .container {
    display: flex;
    justify-content: space-between;
}

footer.footer .container .footer__logo {
    flex: 1;
}

footer.footer .container .footer__logo img {
    max-width: 10rem;
}

footer.footer .container .footer__links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex: 2;
}

footer.footer .container .footer__links .footer__widget {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 1rem;
}

footer.footer .container .footer__links .footer__widget h2 {
    font-size: 1.5rem;
    color: var(--color-primary) !important;
    text-transform: uppercase;
}

footer.footer .container .footer__links .footer__widget a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.25rem;
    transition-duration: 0.25s;
}

footer.footer .container .footer__links .footer__widget a:hover {
    color: var(--color-primary) !important;
    transition-duration: 0.25s;
}

footer.footer .container .footer__links .footer__widget a i:not(.fa-brands) {
    color: var(--color-primary) !important;
}

footer.footer .container .footer__links .footer__widget a i.fa-brands {
    background-color: rgba(255, 255, 255, 0.1);
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    footer.footer .container {
        flex-direction: column;
    }
    footer.footer .container .footer__logo {
        flex: 0;
    }
    footer.footer .container .footer__links {
        flex-direction: column;
        flex: 0;
    }
    footer.footer .container .footer__links .footer__widget {
        padding-top: 1rem;
        padding-left: 0rem;
    }
    footer.footer .container .footer__links .footer__widget h2 {
        font-size: 17.5px;
    }
    footer.footer .container .footer__links .footer__widget a {
        font-size: 0.85rem;
    }
}

footer.footer .container .copyright {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

footer.footer .container .copyright__inner a {
    color: var(--color-primary) !important;
}

footer.footer .container .copyright .dev {
    color: #39c70d !important;
    color:#54FF9F;
    text-shadow:1px 1px 10px #39c70d;
    background-image:url('../images/misc/particles.webp')
}

footer.footer .container .copyright .copyright__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

@media screen and (max-width: 768px) {
    footer.footer .container .copyright .copyright__inner {
        flex-direction: column;
    }
}