:root {
    --red: #143994;
    --black: #000;
    --elenista: #F0EDED;
    --white: #fff; 
    --grey: #4C4A4B;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

.navbar {
    background: var(--white);
    height: 60px;
    padding: 2rem calc((100vw - 1400px) / 2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:fixed;
    z-index: 100000;
    width: 100%;
    box-shadow: 0 4px 8px 0 rgba(120, 120, 120, 0.3);
    
}

.navbar__img {
    width: 30%;
    height: 30%;
    padding-left: 0.5rem;
    padding-top: 0.5rem;
}

.navbar__menu {
    font-size: 16px;
}

.navbar__link {
    color: var(--black);
    text-decoration: none;
    padding: 0.6rem;
}

.navbar__link:hover {
    color: #2256d9;
}

.navbar.sticky {
    padding: 5px 100px;
    background: var(--white);
}

.dropdown-content {
    display: none; /* Hidden by default */
    transition: max-height 0.3s ease; /* Smooth opening */
}

.dropdown-content.show {
    display: block; /* Display when toggled */
}

@media screen and (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    body.active {
        overflow-y: hidden;
        overflow-x: hidden;
    }
    .navbar__link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    .dropdown .dropbtn{
        font-size: 1.5rem;
        padding-left: 1rem;
        padding-top: 2rem;
        padding-bottom: 0;
    }

    .dropdown-content {
        padding: 0;
        margin: 0;
        right: 25%;
    }

    .dropdown i {
        display: none;
    }


    .navbar__menu {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 100px);
        position: absolute;
        width: 100%;
        top: -1000px;
        padding: 0;
        margin: 0;
    }

    .navbar__menu.active {
        top: 100%;
        opacity: 1;
        z-index: 99;
        height: 100vh;
        font-size: 1.5rem;
        background: var(--elenista);
        padding: 0;
        margin: 0;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: var(--black);
        display: block;
        cursor: pointer;
    }

    #mobile-menu {
        position: absolute;
        top: 15%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}

/*Navbox Section*/
.navbox {
   position: fixed;
   padding: 0.7rem;
   background-color: #fff;
   border-radius: 5px;
   z-index: 100;
   top: 35%;
   right: 0;
   box-shadow: 0 4px 8px 0 rgba(120, 120, 120, 0.3);
}

.navbox__items {
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;

}

.navbox__items i {
    color: var(--grey);
}


/* Dropdown Button */
.dropbtn {
    background-color: transparent;
    color: var(--black);
    text-decoration: none;
    padding: 8px;
    font-size: 16px;
    border: none;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  .dropbtn i {
    font-size: 10px;
    position: relative;
    bottom: 1px;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown a:hover {
    color: var(--red);
  } 
/* Hero Section */
.hero {
    background: linear-gradient(to right, rgba(0,0,0, 0.4), rgba(0, 0, 0, 0.1)), 
    url('/images/pexels-janetrangdoan-1024248.jpg');
    height: 100vh;
    background-position: center;
    background-size: cover;
    padding: 0.5rem calc((100vw - 1400px) / 2);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero__content {
    color: var(--white);
    padding: 3rem 1 rem;
    line-height: 1;
    padding-left: 1rem;
}

.hero__content p:nth-child(2) {
    font-size: clamp(3rem, 4.5vw, 5rem);
}

.notbold {
    font-weight: normal;
}

.hero__content h1 {
    font-size: clamp(3rem, 5vw, 5rem);
}

.hero__content p {
    font-size: clamp(1.1rem, 3vw, 2rem);
    margin-bottom: 3rem;
    margin-top: 1rem;
}

.button {
    padding: 1rem 2.5rem;
    border: none;
    background: var(--red);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    transition: 0.3s ease;
    text-decoration: none;
    border-radius: 4px;
    padding-left: -3rem;
}

.button:hover {
    background: var(--black);
}

/*Home Section */
.home {
    background: var(--white);
    color: var(--grey);
    padding: 8rem calc((100vw - 1100px) / 2);
    text-align: center;
}

.home h1 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
    padding: 0 1rem;
    padding-bottom: 1rem;
    color: var(--black);
}

.home p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.home__wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0rem;
    margin-bottom: 1rem;
}

.home__card {
    padding: 2rem;
    height: 400px;
    width: 450px;
    background: #F0EDED;
    color: var(--grey);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 20px;
}

.home__perks {
    min-height: 150px;
}

.home__card p {
    margin-top: 1rem;
}

.home__title i {
    font-size: 3rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: var(--red);
}

.home__card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    padding: 13px 0 7px 0;
}

@media screen and (max-width: 1100px) {
    .home__wrapper {
        flex-direction: column;
        align-items: center;
    }

    .home__card {
        width: 80%;
        height: 60%;
        margin-bottom: 2rem;
    }
}

/* Membership Section */
.memberships {
    background: var(--elenista);
    color: var(--grey);
    padding: 6rem calc((100vw - 1100px) / 2);
    text-align: center;
}

.memberships h1 {
    margin-bottom: 1 rem;
    font-size: clamp(2rem, 5vw, 3rem);
    padding: 0 1rem;
    color: var(--black);
}

.memberships p {
    font-size: 1.1rem;
}

.membership__desc {
    margin-bottom: 2rem;
    font-size: clamp(1rem, 3vw, 1.5rem);
    padding: 1.5rem;
}

.membership__wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem;
}

.membership__card1 {
    padding: 2rem;
    height: 450px;
    width: 400px;
    background: url(/images/pexels-pixabay-39290.jpg);
    color: var(--grey);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px;
}

.membership__card2 {
    padding: 2rem;
    height: 450px;
    width: 400px;
    background: url(/images/pexels-divinetechygirl-1181662\ \(1\).jpg);
    color: var(--grey);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px;
}
.membership__card3 {
    padding: 2rem;
    height: 450px;
    width: 400px;
    background: url(/images/pexels-brett-sayles-1624895.jpg);
    color: var(--grey);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px;
}

.membership__perks {
    min-height: 150px;
}

.membership__cards p {
    margin-bottom: 1rem;
}

.membership__card h3 {
    font-size: clamp(1rem, 5vw, 2rem);
    margin-bottom: 2rem;
}

.membership__wrapper p {
    text-decoration: none;
    color: var(--white);
    font-size: 2.5rem;
    text-align: center;
    cursor: pointer;
}

.membership__card1:hover {
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}
.membership__card2:hover {
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}
.membership__card3:hover {
    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

@media screen and (max-width: 1100px) {
    .membership__wrapper {
        flex-direction: column;
        align-items: center;
    }

    .membership__card1 {
        width: 90%;
        height: 380px;
        margin-bottom: 2rem;
    }
    .membership__card2 {
        width: 90%;
        height: 380px;
        margin-bottom: 2rem;
    }
    .membership__card3 {
        width: 90%;
        height: 380px;
        margin-bottom: 2rem;
    }
}

/* Services Section */
.services {
    background: var(--white);
    color: var(--grey);
    padding: 8rem calc((100vw - 1400px) / 2);
}

.services__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.services__img {
    width: 100%;
    height: 97%;
    padding: 3%;
}

.topline {
    color: var(--red);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.5rem;
    padding-left: 1.7rem;
    font-size: 1.2rem;
    padding-top: 4rem;
}

.topline2 {
    color: var(--red);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.services__heading {
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 6vw, 3rem);
    padding-left: 1.7rem;
    color: var(--black);
}

.services__features {
    list-style: none;
    font-size: clamp(1rem, 5vw, 1rem);
    margin-bottom: 1rem;
    padding: 0.5rem;
    line-height: 2;
    padding-left: 2rem;
    margin-bottom: 3.5rem;
    padding-right: 3rem;
}

.services_feature {
    margin-bottom: 0.5rem;
    font-size: clamp(0.8rem, 4vw, 1rem);
}

@media screen and (max-width: 768px) {
    .services {
        padding: 3rem calc((100vw - 1400px) / 2);
    }
    
    .services__container {
        grid-template-columns: 1fr;
    }

    .topline {
        padding-top: 1rem;
    }
}

/* Hardware Section */
.hardware {
    background: var(--elenista);
    color: var(--grey);
    padding: 0.5rem calc((100vw -1400px) / 2);
}

.hardware__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hardware__img {
    width: 100%;
    height: 100%;
}

.hardwares__img {
    width: 100%;
    height: 100%;
    margin-bottom: 1rem;
}

.hardware__heading {
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 5vw, 2rem);
    padding-right: 6rem;
    padding-top: 9rem;
    margin-left: 5.3rem;
    color: var(--black);
}

.hardware__features {
    list-style: none;
    font-size: clamp(1rem, 5vw, 1rem);
    margin-bottom: 1rem;
    padding: 1rem;
    line-height: 2;
    padding-right: 5rem;
    margin-left: 4.5rem;
}

.hardware_feature {
    margin-bottom: 0.5rem;
    font-size: clamp(0.8rem, 4vw, 1rem);
}


@media screen and (max-width: 768px) {
    .hardware__container {
        grid-template-columns: 1fr;
    }
}

/* Software Section */
.software {
    background: var(--elenista);
    color: var(--grey);
    padding: 0.5rem calc((100vw - 1400px) / 2);
}

.software__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.software__img {
    width: 106.3%;
    height: 100.7%;
}

.software__heading {
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 5vw, 2rem);
    padding-left: 1rem;
    color: var(--black);
    padding-top: 7rem;
}

.software__features {
    list-style: none;
    font-size: clamp(1rem, 5vw, 1rem);
    margin-bottom: 1rem;
    padding: 0.5rem;
    line-height: 2;
    padding-left: 1rem;
    margin-bottom: 3.5rem;
    padding-right: 3rem;
}

.software_feature {
    margin-bottom: 0.5rem;
    font-size: clamp(0.8rem, 4vw, 1rem);
}

@media screen and (max-width: 768px) {
    .software__container {
        grid-template-columns: 1fr;
    }

    .topline2 {
        padding-top: 0rem;
    }
}

/* About Us Section */
.aboutus {
    background: var(--elenista);
    color: var(--grey);
    padding: 8rem calc((100vw - 1400px) / 2);
}

.aboutus__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.aboutus__img {
    width: 100%;
    height: 90%;
    padding: 3%;
}

.toplinee {
    color: var(--red);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.5rem;
    padding-left: 1.7rem;
    font-size: 1.2rem;
    padding-top: 4rem;
}

.aboutus__heading {
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 6vw, 3rem);
    padding-left: 1.7rem;
    color: var(--black);
}

.aboutus__features {
    list-style: none;
    font-size: clamp(1rem, 5vw, 1rem);
    margin-bottom: 1rem;
    padding: 0.5rem;
    line-height: 2;
    padding-left: 2rem;
    margin-bottom: 3.5rem;
    padding-right: 3rem;
}

.aboutus_features {
    margin-bottom: 0.5rem;
    font-size: clamp(0.8rem, 4vw, 1rem);
}

.aboutus__features p {
    padding-bottom: 3rem;
}

@media screen and (max-width: 768px) {
    .aboutus {
        padding: 6rem calc((100vw - 1400px) / 2);
    }
    
    .aboutus__container {
        grid-template-columns: 1fr;
    }

    .toplinee {
        padding-top: 0rem;
    }
}

/* Clients List */
.clientslist {
    background: var(--white);
    color: var(--black);
    padding: 6rem calc((100vw - 1100px) / 2);
    text-align: center;
}

.view__clients {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
    padding: 0 1rem;
    padding-bottom: 1rem;
    text-decoration: none;
    color: rgb(242,242,242);
    font-size: 3rem;
    margin-bottom: 0.5rem;
    transition: 0.3s ease-in-out;
}

.clients__wrapper h1 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
    padding: 0 1rem;
    color: var(--black);
}

.clients__wrapper a {
    color: var(--grey);
    font-size: clamp(1.3rem, 2vw, 1rem);
}

.clientslist__img {
    width: 100%;
    height: 100%;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
    .services__container {
        grid-template-columns: 1fr;
    }
}

/* About us 2 */
.aboutus2 {
    background: var(--elenista);
    color: var(--grey);
    padding: 6rem calc((100vw - 1100px) / 2);
    text-align: center;
}

.aboutus2 h1 {
    margin-bottom: 1 rem;
    font-size: clamp(2rem, 5vw, 3rem);
    padding: 0 1rem;
    color: var(--black);
    padding-bottom: 2rem;
}
.aboutus2 p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    
}

.aboutus2__feature {
    padding-right: 3rem;
    padding-left: 3rem;
}

.aboutus2__img {
    width: 90%;
    height: 90%;
}

/* Team */
.team {
    padding: 8rem calc((100vw - 1100px) / 2);
}

.team__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(auto, 350px);
}

.team__card {
    margin: 1rem;
    border-radius: 10px;
    position: relative;
}

.team__text {
    padding: 1rem;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.team__text h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.team__desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.4;
}

.team__card p {
    position:absolute;
    bottom: 30px;
    color: var(--white);
    left: 25px;
    font-size: 3rem;
}

.team__img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.team__text:nth-child(1) {
    grid-row: 1/2;
    grid-column: 2/3;
}

.team__text:nth-child(2) {
    grid-row: 3/4;
    grid-column: 1/2;
}

.team__text:nth-child(3) {
    grid-row: 4/5;
    grid-column: 2/3;
}

.team__text:nth-child(4) {
    grid-row: 6/7;
    grid-column: 1/2;
}

.team__card:nth-child(5) {
    grid-row: 1/3;
    grid-column: 1/2;
}

.team__card:nth-child(6) {
    grid-row: 2/4;
    grid-column: 2/3;
}
.team__card:nth-child(7) {
    grid-row: 4/6;
    grid-column: 1/2;
}
.team__card:nth-child(8) {
    grid-row: 5/7;
    grid-column: 2/3;
}

@media screen and (max-width: 768px) {
    .team__wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .team__text:nth-child(1) {
        grid-row: 1/2;
        grid-column: 1/2;
    }
    
    .team__text:nth-child(2) {
        grid-row: 5/6;
        grid-column: 1/2;
    }
    
    .team__text:nth-child(3) {
        grid-row: 9/10;
        grid-column: 1/2;
    }
    
    .team__text:nth-child(4) {
        grid-row: 13/14;
        grid-column: 1/2;
    }
    
    .team__card:nth-child(5) {
        grid-row: 3/4;
        grid-column: 1/2;
    }
    
    .team__card:nth-child(6) {
        grid-row: 7/8;
        grid-column: 1/2;
    }
    .team__card:nth-child(7) {
        grid-row: 11/12;
        grid-column: 1/2;
    }
    .team__card:nth-child(8) {
        grid-row: 15/17;
        grid-column: 1/2;
    }
}

/* Our Values */
.ourvalues {
    background: var(--elenista);
    color: var(--grey);
    padding: 6rem calc((100vw - 1100px) / 2);
    text-align: left;
}

.ourvalues h1 {
    margin-bottom: 1 rem;
    font-size: clamp(2rem, 5vw, 3rem);
    padding: 0 1rem;
    color: var(--black);
    padding-bottom: 2rem;
}

.ourvalues h2  {
    text-align: left;
    color: var(--black);
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}
.ourvalues p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    width: 19rem;
    padding-bottom: 3rem;
    text-align: justify;
}

.ourvalues h1 {
    text-align: center;
}

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

.values__img {
    width: 100%;
    height: 100%;
}

.facilities-col {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width:20rem;
    min-width:18rem;
    margin: 10px;
    text-align: center;
}

/* COntact Us */
.contactus {
    background: var(--elenista);
    color: var(--grey);
    padding: 8rem calc((100vw - 1400px) / 2);
    display: flex;
}

.contactus__form {
    background: var(--white);
    padding: 3rem;
}

.contactus__container {
    background: var(--red);
    padding: 3rem;
    color: var(--white);
}

.contactus__container p {
    color: #b2bcd2;
}

.contactus h1 {
    margin-bottom: 1rem;
    padding-left: 0.7rem;
}

.contactus h2 {
    padding-left: 0.7rem;
    padding-top: 1rem;
}

.contactus__info {
    display: flex;
    margin: 0.5rem;
}

.contactus__info a {
    text-decoration: none;
    color: #b2bcd2;
    padding-left: 0.6rem;
}

.contactus__info a:hover {
    color: var(--white);
}

.contactus__wrapper {
    padding-bottom: 1rem;
}

.contactus i {
    padding-top: 0.8rem;
    padding-left: 0.5rem;
}

.contactus p {
    padding-left: 0.6rem;
}

form {
    z-index: 10;
}

.form__wrap {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    padding-right: 5rem;
    text-align:left;
}

.form__wrap input {
    padding: 2.2rem;
    outline: none;
    width: 550px;
    height: 50px;
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 4px;
    margin: 7px;
    padding-left: 10px;
}

.form__wrap2 textarea {
    height: 220px;
    padding: 2.2rem;
    outline: none;
    width: 550px;
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 4px;
    margin: 7px;
    padding-left: 10px;
}

.button {
    width: 30%;
    margin-top: 2rem;
}

@media screen and (max-width: 768px) {
    .form__wrap {
        display: flex;
        flex-direction: column;
       
        padding-bottom: 3rem;
    }

    .form__wrap input {
        margin-bottom: 1rem;
        width: 110%;
        margin-right: 0;
    }

    .form__wrap2 textarea {
        width: 110%;
    }

    .form__wrap .button {
        width: 110%;
        margin-left: 0.5rem;
    }

    button {
        width: 30%;
        
    }

    iframe {
        width: 100%;
        padding-bottom: 3rem;
    }

    .contactus {
        display: flex;
        flex-direction: column;
        padding: 0 1rem;
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

}

@media screen and (max-width: 400px) {
    button {
        width: 100%;
        min-width: 250px;
    }
}

/* Footer Section */
.footer {
    padding: 6rem calc((100vw - 1400px) / 2);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    color: var(--white);
    background: #8B8B8B;
}

.footer__desc {
    padding: 0 2rem;
}

.footer__desc h1 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.footer p {
    margin-bottom: 1rem;
    font-size: 15px;
}

.footer i {
    margin-bottom: 0.4rem;
}

#phone {
    font-weight: bold;
    font-size: 1.2rem;
}

.footer__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
}

.footer__title {
    font-size: 14px;
    margin-bottom: 16px;
}

.footer__link {
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 0.5rem;
    transition: 0.3s ease-in-out;
}

.footer__link:hover {
    color: var(--red);
}

.footer__info {
    display: flex;
}

.footer__info a {
    text-decoration: none;
    color: var(--white);
    font-size: 15px;
    padding-left: 0.6rem;
    padding-bottom: 1rem;
}

.footer__info a:hover {
    color: var(--red);
}

.footer i {
   padding-top: 0.2rem;
}

.footer p {
    padding-left: 0.6rem;
}

.footer h3 {
    padding-bottom: 1rem;
}

@media screen and (max-width: 820px) {
    .footer__wrapper {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 400px) {
    .footer__desc {
        padding: 1rem;
    }

    .footer__links {
        padding: 1rem;
    }
}