@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", "Nunito", sans-serif;
    font-family: "Nunito", sans-serif;
}
h1 {
    font-size: 32px;
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    line-height: 120%;
}
h2 {
    font-size: 28px;
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    line-height: 120%;

}
h3 {
    font-size: 24px;
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    line-height: 120%;

}

p {
    font-family: "Open Sans",  sans-serif;
    font-style: 16px;
    line-height: 150%;
    font-weight: normal;
}
:root {
    --btn-color: hsl(218, 70%, 40%);
    --btn-color-hover: hsl(218, 90%, 60%);
    --testimonials-section-background-color: hsl(216, 75%, 33%);
    --card-background-color: hsl(216, 80%, 33%);
    --call-to-action-section-background-color: hsl(336, 60%, 28%);
}

body {
    background-color: linear-gradient(0deg, rgba(0, 0, 0, 0.5),  rgba(0, 0, 0, 0.5)) ;
}

header {
    width: 100wh;
    height: 100vh;
    background-image:linear-gradient(0deg, rgba(0, 0, 0, 0.5),  rgba(0, 0, 0, 0.5)) , url("../img/desktop/hero.jpg");
    background-repeat: no-repeat;
    background-position:center;
    background-size: cover;
    padding: 40px 0;
    
    

}
.wrapper {
    width: 90%;
    margin: 0 auto;
}
.navbar {
   display: flex;
   justify-content: space-between;
   align-items: end;
  /* margin-bottom: 90px;*/
}
.navbar nav ul {
    list-style: none;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.navbar nav ul a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: .4s;
}
.navbar nav ul a:hover {
   color: gold;
   border-bottom: 1px solid gold;
}

.navbar .nav-btns {
    
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.navbar .nav-btns  .book-btn {
    border: 2px solid white;
    color: white;
    padding:  6px 16px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: .4s;
}
.navbar .nav-btns  .call-btn {
    color: white;
    padding:  8px 16px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    background-color: var(--btn-color);
    border: 2px solid var(--btn-color);
    transition: .4s;

}
.navbar .nav-btns  .book-btn:hover {
    background-color: var(--btn-color-hover);
    border: 2px solid var(--btn-color-hover);
}
.navbar .nav-btns  .call-btn:hover {
   

    background-color: var(--btn-color-hover);

}

.hero-section__content {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25% 0;
}

.hero-section__content h1 {
    color: white;
    text-align: center;
    margin-bottom: 24px;
    font-size: 32px;
}

.hero-section__content p {
    color: white;
    text-align: center;
    font-size: 18px;
    margin-bottom: 48px;
}
.hero-section__content a {
    background-color: var(--btn-color);
    color: white;
    padding:  16px 32px;
    border-radius: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: .4s;
}
.btn-hover:hover {
    background-color: var(--btn-color-hover);
   
}
/* Destinations */

.destinations-section {
    width: 100%;
    background-image: linear-gradient(0deg, rgba(0, 0, 0,0.5), rgba(0, 0, 0,0.5)), url("../img/desktop/Destinations.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 0;
}
.destinations-section__cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
}
.destinations-section__cards__card {

    width: 90%;
    height: 553px;
    border-radius: 16px;
    background-color: rgba(55, 67, 79, .5);
    text-align: center;
}
.destinations-section__cards__card h4 {
    font-size: 24px;
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    line-height: 120%;
    color: white;
    margin-bottom: 24px;
}

.destinations-section__cards__card h5 {
    font-size: 20px;
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    line-height: 120%;
    color: white;
    margin-bottom: 24px;
}
.destinations-section__cards__card p {
    color: white;
    margin-bottom: 32px;
    margin-left: 24px;
    margin-right: 24px;
    text-align: center;
}

.destinations-section__cards__card  a {
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none ;
    background-color: var(--btn-color);
    color:  white;
    transition: .4s;
    margin-bottom: 48px;
    
}
.destinations-section__cards__card img {
    margin-bottom: 24px;
    width: 100%;
    height: 300px;
    border-radius: 16px 16px 0 0;
}
.destinations-section__cards__card__content {
    width: 100%;
    height: 100%;
    padding: 0px 24px 24px 24px;
}

.testimonials-section {
    width: 100%;
    padding: 48px 0;
    background-color: var(--testimonials-section-background-color);
}
.testimonials-section  h2 {
    font-size: 24px;
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    line-height: 120%;
    color: white;
    text-align: center;
    padding-top: 24px;

}
.testimonials-section__cards {
    width: 100%;
    display:  flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 48px 0;
}
.testimonials-section__cards__card {
   
    width: 90%;
    background-color: var(--card-background-color);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid white;
}
.testimonials-section__cards__card  p {
    color: white;
    text-align: justify;
    line-height: 140%;
    font-family: "Open Sans", "Nunito", sans-serif;
}

.testimonials-section__cards__card .personal-info {
    margin-top: 24px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 16px;
}
.testimonials-section__cards__card .personal-info img {
    width: 72px;
    height: 72px;
}
.testimonials-section__cards__card .personal-info h6 {
    color: white;
    text-align: left;
    line-height: 120%;
    font-family: "Open Sans", "Nunito", sans-serif;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
}
.testimonials-section__cards__card .personal-info  .personal {
    color: #BBBBBB;
    text-align: left;
    line-height: 120%;
    font-family: "Open Sans", "Nunito", sans-serif;
    font-weight: normal;
    font-size: 12px;

}

.call-to-action-section {
    padding: 48px 0;
    width: 100%;
    background-color: var(--call-to-action-section-background-color);
}

.call-to-action-section__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.call-to-action-section__content  h2 {
    font-size: 30px;
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    line-height: 120%;
    color: white;
    text-align: center;


}
.call-to-action-section__content  p {
  
    color: white;
    font-family: "Open Sans",  sans-serif;
    font-size: 16px;    line-height: 150%;
    font-weight: normal;
    margin-top: 16px;
    text-align: center;


}


.call-to-action-section__content  a {
    background-color: var(--btn-color);
    color: white;
    padding:  16px 32px;
    border-radius: 16px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 24px;
    transition: .4s;
}
.call-to-action-section .wrapper {
    height: 100%;
}
footer {
    width: 100%;
    padding: 48px 0;
    background-color: var(--testimonials-section-background-color);
}
footer .wrapper {
    height: 100%;
}
.footer__content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.footer__content__social__icons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}
.footer__content_links {
    margin: 40px 0;
}
.footer__content_links ul {

    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    gap: 40px;

}
.footer__content_links ul li a {

    text-decoration: none;
    color: white;
    font-size: 16px;
}


.footer__content__copyrights p {
    color: white;
}


@media only screen and (min-width: 600px) {


    header {
        width: 100wh;
        height: 100vh;
        background-image:linear-gradient(0deg, rgba(0, 0, 0, 0.5),  rgba(0, 0, 0, 0.5)) , url("../img/desktop/hero.jpg");
        background-repeat: no-repeat;
        background-position:center;
        background-size: cover;
        padding: 60px 0;
        
        
    
    }
    .wrapper {
        width: 90%;
        margin: 0 auto;
    }
    .navbar {
       display: flex;
       justify-content: space-between;
       align-items: end;
      /* margin-bottom: 90px;*/
    }
    .navbar nav ul {
        list-style: none;
        display: none;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }
    .navbar nav ul a {
        text-decoration: none;
        color: white;
        font-size: 16px;
    }
    
    .navbar .nav-btns {
        
        display: none;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }
    .navbar .nav-btns  .book-btn {
        border: 2px solid white;
        color: white;
        padding:  6px 16px;
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        transition: .4s;
    }
    .navbar .nav-btns  .call-btn {
        color: white;
        padding:  8px 16px;
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        background-color: var(--btn-color);
        border: 2px solid var(--btn-color);
        transition: .4s;
    
    }
    .navbar .nav-btns  .book-btn:hover {
        background-color: var(--btn-color-hover);
        border: 2px solid var(--btn-color-hover);
    }
    .navbar .nav-btns  .call-btn:hover {
       
    
        background-color: var(--btn-color-hover);
    
    }
    
    .hero-section__content {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20% 0;
    }
    
    .hero-section__content h1 {
        color: white;
        text-align: center;
        margin-bottom: 24px;
        font-size: 48px;
    }
    
    .hero-section__content p {
        color: white;
        text-align: center;
        font-size: 18px;
        margin-bottom: 48px;
    }
    .hero-section__content a {
        background-color: var(--btn-color);
        color: white;
        padding:  16px 32px;
        border-radius: 16px;
        font-weight: bold;
        text-decoration: none;
        font-size: 18px;
    }
    
   


.call-to-action-section {
    padding: 76px 0;
    width: 100%;
    background-color: var(--call-to-action-section-background-color);
}


footer {
    width: 100%;
    padding: 76px 0;
    background-color: var(--testimonials-section-background-color);
}
} 

@media only screen and (min-width: 768px) {


    header {
        width: 100wh;
        height: 100vh;
        background-image:linear-gradient(0deg, rgba(0, 0, 0, 0.5),  rgba(0, 0, 0, 0.5)) , url("../img/desktop/hero.jpg");
        background-repeat: no-repeat;
        background-position:center;
        background-size: cover;
        padding: 60px 0;
        
        
    
    }
    .wrapper {
        width: 90%;
        margin: 0 auto;
    }
    .navbar {
       display: flex;
       justify-content: space-between;
       align-items: end;
      /* margin-bottom: 90px;*/
    }
    .navbar nav ul {
        list-style: none;
        display: none;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }
    .navbar nav ul a {
        text-decoration: none;
        color: white;
        font-size: 16px;
    }
    
    .navbar .nav-btns {
        
        display: none;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }
    .navbar .nav-btns  .book-btn {
        border: 2px solid white;
        color: white;
        padding:  6px 16px;
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        transition: .4s;
    }
    .navbar .nav-btns  .call-btn {
        color: white;
        padding:  8px 16px;
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        background-color: var(--btn-color);
        border: 2px solid var(--btn-color);
        transition: .4s;
    
    }
    .navbar .nav-btns  .book-btn:hover {
        background-color: var(--btn-color-hover);
        border: 2px solid var(--btn-color-hover);
    }
    .navbar .nav-btns  .call-btn:hover {
       
    
        background-color: var(--btn-color-hover);
    
    }
    
    .hero-section__content {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10% 0;
    }
    
    .hero-section__content h1 {
        color: white;
        text-align: center;
        margin-bottom: 24px;
        font-size: 48px;
    }
    
    .hero-section__content p {
        color: white;
        text-align: center;
        font-size: 18px;
        margin-bottom: 48px;
    }
    .hero-section__content a {
        background-color: var(--btn-color);
        color: white;
        padding:  16px 32px;
        border-radius: 16px;
        font-weight: bold;
        text-decoration: none;
        font-size: 18px;
    }
    
   

    .call-to-action-section {
        padding: 76px 0;
        width: 100%;
        background-color: var(--call-to-action-section-background-color);
    }
    
    
    footer {
        width: 100%;
        padding: 76px 0;
        background-color: var(--testimonials-section-background-color);
    }
    .call-to-action-section__content {
        width: 60%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .testimonials-section__cards__card {
   
        width: 90%;
        background-color: var(--card-background-color);
        border-radius: 16px;
        padding: 15% ;
        border:   1px solid white;
        
    }
    .testimonials-section__cards__card  p {
        color: white;
        text-align: justify;
        line-height: 140%;
        font-family: "Open Sans", "Nunito", sans-serif;
    }
    
    .testimonials-section__cards__card .personal-info {
        margin-top: 24px;
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 16px;
    }
    .testimonials-section__cards__card .personal-info img {
        width: 72px;
        height: 72px;
    }
    .testimonials-section__cards__card .personal-info h6 {
        color: white;
        text-align: left;
        line-height: 120%;
        font-family: "Open Sans", "Nunito", sans-serif;
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 8px;
    }
    .testimonials-section__cards__card .personal-info  .personal {
        color: #BBBBBB;
        text-align: left;
        line-height: 120%;
        font-family: "Open Sans", "Nunito", sans-serif;
        font-weight: normal;
        font-size: 12px;
    
    }

}

@media only screen and (min-width: 992px) {


    header {
        width: 100wh;
        height: 100vh;
        background-image:linear-gradient(0deg, rgba(0, 0, 0, 0.5),  rgba(0, 0, 0, 0.5)) , url("../img/desktop/hero.jpg");
        background-repeat: no-repeat;
        background-position:center;
        background-size: cover;
        padding: 60px  0; 
    }
    .wrapper {
        width: 90%;
        margin: 0 auto;
    }
    .navbar {
       display: flex;
       justify-content: space-between;
       align-items: end;
      /* margin-bottom: 90px;*/
    }
    .navbar nav ul {
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }
    .navbar nav ul a {
        text-decoration: none;
        color: white;
        font-size: 16px;
    }
    
    .navbar .nav-btns {
        
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }
    .navbar .nav-btns  .book-btn {
        border: 2px solid white;
        color: white;
        padding:  6px 16px;
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        transition: .4s;
    }
    .navbar .nav-btns  .call-btn {
        color: white;
        padding:  8px 16px;
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        background-color: var(--btn-color);
        border: 2px solid var(--btn-color);
        transition: .4s;
    
    }
    .navbar .nav-btns  .book-btn:hover {
        background-color: var(--btn-color-hover);
        border: 2px solid var(--btn-color-hover);
    }
    .navbar .nav-btns  .call-btn:hover {
       
    
        background-color: var(--btn-color-hover);
    
    }
    .menu {
        display: none;
    }
    .hero-section__content {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
       
    }
    
    .hero-section__content h1 {
        color: white;
        text-align: center;
        margin-bottom: 24px;
        font-size: 48px;
    }
    
    .hero-section__content p {
        color: white;
        text-align: center;
        font-size: 18px;
        margin-bottom: 48px;
    }
    .hero-section__content a {
        background-color: var(--btn-color);
        color: white;
        padding:  16px 32px;
        border-radius: 16px;
        font-weight: bold;
        text-decoration: none;
        font-size: 18px;
    }
    
   

    .call-to-action-section {
       
        width: 100%;
        height: 50vh;
        background-color: var(--call-to-action-section-background-color);
    }
    
    
    footer {
        width: 100%;
        height: 50vh;
        padding: 76px 0;
        background-color: var(--testimonials-section-background-color);
    }
    .call-to-action-section__content {
        width: 60%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .testimonials-section__cards__card {
   
        width: 90%;
        background-color: var(--card-background-color);
        border-radius: 16px;
        padding: 15% ;
        border:   1px solid white;
        
    }
    .testimonials-section__cards__card  p {
        color: white;
        text-align: justify;
        line-height: 140%;
        font-family: "Open Sans", "Nunito", sans-serif;
    }
    
    .testimonials-section__cards__card .personal-info {
        margin-top: 24px;
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 16px;
    }
    .testimonials-section__cards__card .personal-info img {
        width: 72px;
        height: 72px;
    }
    .testimonials-section__cards__card .personal-info h6 {
        color: white;
        text-align: left;
        line-height: 120%;
        font-family: "Open Sans", "Nunito", sans-serif;
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 8px;
    }
    .testimonials-section__cards__card .personal-info  .personal {
        color: #BBBBBB;
        text-align: left;
        line-height: 120%;
        font-family: "Open Sans", "Nunito", sans-serif;
        font-weight: normal;
        font-size: 12px;
    
    }


    .destinations-section {
        width: 100%;
        height: 100vh;
        background-image: linear-gradient(0deg, rgba(0, 0, 0,0.5), rgba(0, 0, 0,0.5)), url("../img/desktop/Destinations.jpg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
       
    }
    .destinations-section__cards {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }
    .destinations-section__cards__card {
    
        width: 100%;
        height: 553px;
        border-radius: 16px;
        
        background-color: rgba(55, 67, 79, .5);
        text-align: center;
    }
    .destinations-section__cards__card h4 {
        font-size: 24px;
        font-family: "Nunito", sans-serif;
        font-weight: bold;
        line-height: 120%;
        color: white;
        margin-bottom: 24px;
    }
    .destinations-section__cards__card p {
        color: white;
        margin-bottom: 32px;
        margin-left: 24px;
        margin-right: 24px;
    }
    
    .destinations-section__cards__card  a {
        padding: 16px 32px;
        border-radius: 16px;
        text-decoration: none ;
        background-color: var(--btn-color);
        color:  white;
        
    }
    .destinations-section__cards__card img {
        margin-bottom: 24px;
        width: 100%;
        height: 300px;
        border-radius: 16px 16px 0 0;
    }
    .destinations-section__cards__card__content {
        width: 100%;
        height: 100%;
        padding: 0px 24px 24px 24px;
    }
    
    .testimonials-section {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        background-color: var(--testimonials-section-background-color);
    }
    .testimonials-section  h2 {
        font-size: 32px;
        font-family: "Nunito", sans-serif;
        font-weight: bold;
        line-height: 120%;
        color: white;
        text-align: center;
        padding-top: 24px;
    
    }
    .testimonials-section__cards {
        width: 100%;
        display:  flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 24px;
        margin: 96px 0;
    }
    .testimonials-section__cards__card {
       
        width: 100%;
        background-color: var(--card-background-color);
        border-radius: 16px;
        padding: 48px;
        border: 1px solid white;
    }
    .testimonials-section__cards__card  p {
        color: white;
        text-align: justify;
        line-height: 140%;
        font-family: "Open Sans", "Nunito", sans-serif;
    }
    
    .testimonials-section__cards__card .personal-info {
        margin-top: 24px;
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 16px;
    }
    .testimonials-section__cards__card .personal-info img {
        width: 72px;
        height: 72px;
    }
    .testimonials-section__cards__card .personal-info h6 {
        color: white;
        text-align: left;
        line-height: 120%;
        font-family: "Open Sans", "Nunito", sans-serif;
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 8px;
    }
    .testimonials-section__cards__card .personal-info  .personal {
        color: #BBBBBB;
        text-align: left;
        line-height: 120%;
        font-family: "Open Sans", "Nunito", sans-serif;
        font-weight: normal;
        font-size: 12px;
    
    }
    
    .call-to-action-section {
        padding: 48px 0;
        width: 100%;
        height: 50vh;
        background-color: var(--call-to-action-section-background-color);
    }
    
    .call-to-action-section__content {
        width: 60%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .call-to-action-section__content  h2 {
        font-size: 30px;
        font-family: "Nunito", sans-serif;
        font-weight: bold;
        line-height: 120%;
        color: white;
        text-align: center;
    
    
    }
    .call-to-action-section__content  p {
      
        color: white;
        font-family: "Open Sans",  sans-serif;
        font-size: 16px;    line-height: 150%;
        font-weight: normal;
        margin-top: 16px;
        text-align: center;
    
    
    }
    
    
    .call-to-action-section__content  a {
        background-color: var(--btn-color);
        color: white;
        padding:  16px 32px;
        border-radius: 16px;
        font-weight: bold;
        text-decoration: none;
        margin-top: 24px;
    }
    .call-to-action-section .wrapper {
        height: 100%;
    }
    footer {
        width: 100%;
       height: 50vh;
        background-color: var(--testimonials-section-background-color);
    }
    footer .wrapper {
        height: 100%;
    }
    .footer__content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    
    }
    .footer__content__social__icons{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 32px;
    }
    .footer__content_links {
        margin: 40px 0;
    }
    .footer__content_links ul {
    
        display: flex;
        justify-content: space-between;
        align-items: center;
        list-style: none;
        gap: 40px;
    
    }
    .footer__content_links ul li a {
    
        text-decoration: none;
        color: white;
        font-size: 16px;
    }
    
    
    .footer__content__copyrights p {
        color: white;
} 
}

@media only screen and (min-width: 1200px) {


    .wrapper {
        width: 1140px;
        margin: 0 auto;
    }
    .hero-section__content {
       
        padding: 0 20%;
       
    }
} 

.hero-section__content {
       
    padding: 13% 0;
  
}

.hero-section__content h1 {
    color: white;
    text-align: center;
    margin-bottom: 24px;
    font-size: 40px;
}

