* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;

}

body {
    font-family: Montserrat;
    max-width: 1440px;
    margin: 0 auto;
}

p {
    font-size: 18px;
}

button {
    font-weight: 500;
    width: fit-content;
    padding: 12px 25px;
    font-size: 18px;
    border: 1px solid rgb(44, 42, 42);
    background: transparent;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

/* HIDDEN MOBILE */

.snap__navbar-right__mobile,
.snap__hero-section_image__mobile,
.snap__hamburger {
    display: none;
}

.button-transparent {
    border: none;
}

.button-normal {
    color: #fff;
    background: #2b2929;
}

.snap__container {
    display: flex;
    flex-direction: column;
}

.snap__navbar {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    margin-inline: 60px;
}

.snap__navbar-right__desktop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.snap__company-logo {
    width: fit-content;
    margin-right: 70px;
}

.snap__company-logo img {
    width: 90px;
}

.snap__navbar ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-block: auto;
}

.snap__navbar .nav-link {
    width: max-content;
    justify-self: center;
    margin-inline: 20px;
}

.snap__navbar .nav-link img {
    margin-left: 5px;
}

.snap__validation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.snap__validation button {
    margin-left: 20px;
}

.snap__hero-section {
    padding-top: 50px;
    margin: 0 160px 0 120px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    /* height: 90vh; */
}

.snap__hero-section-left {
    width: 600px;
}

.snap__hero-section_text {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
}

.snap__hero-section_text h1 {
    font-size: 100px;
    font-weight: 600;
    margin-bottom: 50px;
    line-height: 100px;
    letter-spacing: -5px;
}
.snap__hero-section_text h2 {
    display: none;
}

.snap__hero-section_text p {
    font-size: 20px;
    line-height: 36px;
    width: 75%;

    margin-bottom: 50px;
}

.snap__hero-section_text button {
    margin-bottom: 70px;
}

.snap__hero-section_text button:hover {
    background: transparent;
    color: #2b2929;
}

.snap__hero-section_partners {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}

.snap__partner {
    width: fit-content;
}

.snap__partner img {
    width: 100px;
}

.snap__hero-section_image__desktop {
    width: fit-content;
    align-self: flex-end;
    float: right;
}

.snap__hero-section_image__desktop img {
    width: 500px;
    align-self: baseline;
}


/* Drop Down */


.dropdown-content li {
    margin-block: 10px;
    width: max-content;
    align-self: flex-start;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 14px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.dropdown-content li:hover {
    margin-block: 10px;
    padding: 5px 10px;
    background: rgb(108, 163, 177);
    color: #fff;
    width: max-content;
    align-self: flex-start;
    font-size: 14px;
}

.dropdown-content li img {
    margin-right: 10px;
}

.dropdown {
    position: relative;
    /* display: inline-block; */
}

.dropdown .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    width: fit-content;
    border-radius: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 10;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* .dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
  } */