/* DM Serif Display */
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

/* DM Sans */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

/* --- VARIABLES --- */
:root {
    /* COLORS */
    --white-color: #fff;
    --black-color: #000;
    --pink-color: #C41971;
    --blue-color: #016D9F;
    --blue-colsor: rgb(220, 220, 220);
    /* BORDER RADIUS */
    --border-radius-1: 10px;
    --border-radius-2: 15px;
    --border-radius-3: 25px;
    --border-rounded: 50%;
    /* FONTS */
    --dm-sans: "DM Sans", sans-serif;
    --dm-serif-display: "DM Serif Display", serif;
}

/* GENERAL STYLING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--dm-sans);
    color: var(--black-color);
    font-size: 20px;
    overflow-x: hidden;
    background: transparent url(/assets/images/pattern.webp) top left;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.container {
    max-width: calc(1450px - 30px);
    margin: 0 auto;
    padding: 0 30px;
}
.btn {
    font-size: 20px;
    padding: 15px 0;
    color: var(--black-color);
    background-color: var(--pink-color);
    border-radius: var(--border-radius-2);
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.5s;
    font-family: var(--dm-sans);
}

.btns .btn:last-child {
    display: block;
    text-align: center;
    background-color: var(--blue-color);
}

.btns .btn:last-child:hover,
.btn:hover {
    background-color: var(--white-color);
    border: 1px solid var(--pink-color);
    color: var(--pink-color);
}
.title {
    font-size: 48px;
    font-family: var(--dm-serif-display);
}
.small-title {
    font-size: 20px;
    font-family: var(--dm-sans);
}

/* Header */
header {
    width: 100%;
    position: absolute;
    padding: 25px 0;
    border-bottom: 1.3px solid rgba(0, 0, 0, 10%) !important;
    color: var(--white-color);
}
header.active {
    backdrop-filter: none;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navigation {
    display: flex;
    gap: 25px;
}
.navigation a {
    position: relative;
    color: var(--black-color);
    font-size: 20px;
    transition: 0.5s;
}

.about_us h3 {
    color: var(--pink-color);
    -webkit-filter: drop-shadow(
        0px 0px 3px  rgba(255, 255, 255, 1)
    );
    filter: drop-shadow(
        0px 0px 3px  rgba(255, 255, 255, 1)
    );
}
/* ----------- */
.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 20px;

    font-family: Jost;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.lang-dropdown.is-home svg path {
    fill: var(--black-color);
}
.lang-dropdown:not(.is-home) svg path {
    fill: var(--black-color);
}
/* --------------- */
.navigation a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--blue-color);
    transition: 0.5s;
}
.navigation a:hover::after,
.navigation a.active::after {
    width: 100%;
    color: var(--blue-color);
}
.navigation.is-home a,
.header-social.is-home i {
    color: var(--black-color);
}
.navigation:not(.is-home) a,
.header-social:not(.is-home) i {
    color: var(--black-color);
}
.navigation a:hover,
.navigation a.active {
    color: var(--blue-color);
}
.lang-lines {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-lines span{
    height: 30px;
    width: 1.5px;
    background: var(--black-color);
}

.header-social i {
    font-size: 25px;
    transition: 0.5s;
}
.header-social:hover i {
    color: var(--blue-color);
}

.lang-dropdown .dropdown-button{
    display: flex;
    align-items: center;
}

.lang-dropdown {
    position: relative;
    cursor: pointer;
}
.lang-menu {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 0;
    min-height: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s;
    z-index: 50;
}
.lang-menu.active {
    min-height: 140px;
    opacity: 1;
}
.lang-menu a {
    width: 100%;
    text-align: center;
    color: var(--black-color);
    height: 100%;
    font-size: 20px;
    padding: 10px 0 0;
    transition: 0.5s;
}
.lang-menu a:first-child {
    border-top-left-radius: var(--border-radius-1);
    border-top-right-radius: var(--border-radius-1);
}
.lang-menu a:last-child {
    border-bottom-left-radius: var(--border-radius-1);
    border-bottom-right-radius: var(--border-radius-1);
}
.lang-menu a:hover {
    background-color: var(--blue-color);
    color: var(--white-color);
}
.lang-dropdown svg path {
    transition: 0.5s;
}
.lang-dropdown:hover svg path {
    fill: var(--blue-color);
}

/* 
** Hamburger menu 
*/
.lines {
    position: relative;
    display: none;
    height: 100%;
    width: 35px;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    z-index: 50;
    transition: 0.5s;
}
.line {
    width: 100%;
    height: 2px;
    border-radius: var(--border-radius-2);
    transition: 0.5s;
}
.lines.is-home .line {
    background-color: var(--white-color);
}
.lines:not(.is-home) .line {
    background-color: var(--black-color);
}
.line:nth-child(1).active {
    transform: rotate(45deg) translate(6px, 8px);
    background-color: var(--black-color);
}
.line:nth-child(2).active {
    transform: translateX(20px);
    opacity: 0;
    background-color: var(--black-color);
}
.line:nth-child(3).active {
    transform: rotate(-45deg) translate(8px, -10px);
    background-color: var(--black-color);
}
.sidebarMenu {
    position: fixed;
    right: 0;
    height: 100%;
    width: 450px;
    background: #fff;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 2;
    transform: translate(100%, 0);
    transition: all 0.3s cubic-bezier(0.29, 0.39, 0.68, 0.53);
    -webkit-transition: all 0.3s cubic-bezier(0.29, 0.39, 0.68, 0.53);
    overflow: hidden;
}
.menuOpen .sidebarMenu {
    transform: translate(0, 0);
    transition: all 0.3s cubic-bezier(0.29, 0.39, 0.68, 0.53);
    -webkit-transition: all 0.3s cubic-bezier(0.29, 0.39, 0.68, 0.53);
}
body.menuOpen {
    overflow: hidden;
}
.menu-content {
    position: relative;
    color: var(--black-color);
    z-index: 100;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.menu-title h3 {
    text-transform: uppercase;
    font-size: 24px;
    border-bottom: 2px solid var(--blue-color);
    padding-bottom: 15px;
}
.hamburger-menu {
    display: flex;
    flex-direction: column;
}
.ham-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--darkGray-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--black-color);
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu_overlay {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.2);
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.menuOpen .menu_overlay {
    display: block;
}

/* 
** Banner 
*/
.banner {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url("/assets/images/backgrounds/banner.png");
    height: 100vh;
    width: 100%;
    color: var(--white-color);
}
.banner .container {
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.banner-text {
    margin-bottom: 150px;
}
.banner-text .title {
    font-weight: 900;
    margin-bottom: 25px;
}
.banner-text .small-title {
    font-weight: 400;
    text-align: center;
}
.banner-search {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 30px 30px 15px;
    border-radius: var(--border-radius-1);
    margin-bottom: 150px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.banner-form {
    width: 100%;
    display: flex;
    gap: 70px;
}
.banner-selects {
    display: flex;
    gap: 10px;
    width: 80%;
}

.select-box {
    width: 100%;
    height: 40px;
    padding: 0 20px;
    border-radius: 10px;
    border-color: rgba(0, 0, 0, 0.3);
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
    background-color: rgba(255, 255, 255, 0.7);
}

.select-dropdown select,
.select-dropdown input {
    outline: none;
    border: none;
}

.select-dropdown {
    width: 100%;
    position: relative;
}
.select-btn [type="checkbox"]:checked,
.select-btn [type="checkbox"]:not(:checked) {
    display: none;
}
.select-btn [type="checkbox"]:checked + label,
.select-btn [type="checkbox"]:not(:checked) + label {
    height: 40px;
    transition: all 200ms linear;
    border-radius: var(--border-radius-1);
    padding: 0 20px;
    display: flex;
    align-items: center;
    text-align: center;
    border: none;
    cursor: pointer;
    justify-content: space-between;
}
.select-btn label {
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--black-color);
    border-radius: var(--border-radius-1);
    width: 100%;
    padding: 10px;
    transition: all 200ms linear;
    cursor: pointer;
}

.select-btn {
    display: flex;
    justify-content: space-between;
}

.select-btn label .caret {
    transition: 0.3s;
}

.select-btn label .caret.clicked {
    transform: rotate(180deg);
}

.dropdown-options {
    width: 100%;
    position: absolute;
    top: 50px;
    display: flex;
    flex-direction: column;
    max-height: 0;
    border-radius: var(--border-radius-1);
    border: 1px solid transparent;
    color: var(--black-color);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 100;
}
.dropdown-options.active {
    max-height: 350px;
    background-color: var(--white-color);
}
.dropdown-options p {
    padding: 10px;
    border-bottom: 1px solid #e9e9e7;
    cursor: pointer;
}
.filter-btn {
    width: 20%;
    height: auto;
    padding: 0;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--black-color);
    border-radius: var(--border-radius-1);
    transition: 0.5s;
}
.filter-btn:hover {
    border: 1px solid var(--pink-color);
    background-color: var(--pink-color);
    color: var(--white-color);
}
.banner-search a {
    padding-top: 15px;
    align-self: center;
    color: var(--black-color);
    text-decoration: underline;
    transition: 0.5s;
}
.banner-search a:hover {
    color: var(--pink-color);
}

/*
** Popular Tours
*/

.popular-tours {
    padding: 70px 0;
    overflow: hidden;
}
.popular-tours .title {
    text-align: center;
    margin-bottom: 45px;
}
.popular-tours .title span {
    color: var(--blue-color);
}

.cards-container {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.card {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius-3);
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 25px 15px;
    color: var(--white-color);
}
.card::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    border-radius: var(--border-radius-3);
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    z-index: 10;
    transition: 0.5s;
}
.card:hover::before {
    opacity: 1;
}

.card h3 {

    position: relative;
    z-index: 15;
    font-size: 24px;
    padding-bottom: 10px;
    font-family: var(--dm-serif-display);
}
.floating-text,
.floating-text-db {
    height: 0;
    overflow: hidden;
    transition: 0.5s;
    position: relative;
    z-index: 15;
}
.card:hover .floating-text {
    height: 200px;
}

.card:hover .floating-text-db {
    height: 60px;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}
.card-list-item {
    display: flex;
    gap: 10px;
    font-size: 20px;
}
.tour-price {
    font-size: 24px;
    padding-left: 15px;
}

.see-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 45px;
}
.see-more a {
    font-size: 20px;
    color: var(--black-color);
    transition: 0.5s;
}
.see-more a:hover {
    color: var(--blue-color);
}
.benefits-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.benefit-section h2 {
    text-align: center;
    font-family: var(--dm-serif-display);
}

.benefit-section {
    margin-bottom: 100px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
}
.benefit h3 {
    font-size: 24px;
    margin-bottom: 5px;
    font-family: var(--dm-serif-display);
}
.benefit p {
    font-size: 20px;
}

/* Reviews */

/* Mask group */

.reviews {
    padding-bottom: 50px;
    background: url("/assets/images/backgrounds/review-background.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.reviews::after {
    content: "";
    position: absolute;
    top: 0;
    background: #ffffff;
    width: 100%;
    height: 100%;
    mix-blend-mode: exclusion;
}

.reviews h1 {
    text-align: center;
    padding: 50px 0;
    color: var(--white-color);
}
.swiper {
    padding-bottom: 60px !important;
    height: 300px;
}
.swiper .swiper-wrapper {
    align-items: center;
}
.swiper .swiper-slide {
    position: relative;
    border-radius: var(--border-radius-2);
    height: 180px !important;
    background-color: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: 0.2s;
    display: flex;
    gap: 15px;
    padding: 25px;
}
.swiper .swiper-slide::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: var(--border-radius-2);
    background-color: rgba(255, 255, 255, 0.35);
}
.swiper .swiper-slide.active {
    height: 230px !important;
}
.swiper .swiper-slide.active::after {
    content: none;
}
.reviewer-img img {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: var(--border-rounded);
}

.reviewer-text {
    position: relative;
    height: 100%;
    display: block;
    overflow: hidden;
}

.reviewer-text p {
    position: relative;
    overflow: scroll;
    scrollbar-color: transparent transparent;
    scrollbar-width: 0px;
    height: 140px;
}

.reviewer-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
}

.review-stars {
    display: flex;
    flex-direction: row;
    width: auto;
    gap: 2.5px;
    /* width: 115px; */
}
.reviewer-name h3 {
    font-size: 24px;
    font-family: var(--dm-serif-display);
}
.swiper .pagination {
    margin-left: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    z-index: 100;
}
.swiper .pagination span {
    opacity: 1;
    margin: 0px 6px !important;
    border: 1px solid var(--black-color);
    width: 15px;
    height: 15px;
}
.swiper .pagination span.swiper-pagination-bullet {
    background-color: transparent;
}
.swiper .pagination span.swiper-pagination-bullet-active {
    background-color: transparent;
    transform: scale(1.5);
    border: 1px solid var(--pink-color);
}

/* 
** Subscription
*/

.subscription {
    position: relative;
    margin: 200px 0;
}
.subscription .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.subscription h1 {
    text-align: center;
    margin-bottom: 50px;
}
.subscribe {
    width: 800px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.subscribe input {
    border: 1px solid var(--pink-color);
    border-radius: var(--border-radius-2);
    background: transparent;
    outline: none;
    padding: 15px 0;
    font-size: 20px;
    text-align: center;
    /* font-size: 16px; */
}
.subscribe input:focus {
    border: 1px solid var(--blue-color);
}
.subscribe input::placeholder {
    color: var(--blue-color);
}
.arrow-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    margin-right: 30px;
}
.arrow-bg img {
    width: 100%;
}
.subscribe .btn {
    font-size: 20px;
    color: var(--white-color);
}
.subscribe .btn:hover {
    color: var(--pink-color);
}

/* 
** Footer
*/
footer {
    padding-bottom: 25px;
    padding-top: 90px;
    color: var(--white-color);
}
footer .container {
    border-radius: 50px;
    position: relative;
    background: linear-gradient(
        81deg,
        rgba(1, 109, 159, 0.5) 8.58%,
        rgba(196, 25, 113, 0.5) 115.78%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 75px;
    padding: 80px 80px 10px 80px;
}
footer .container::before {
    content: "";
    border-radius: 50px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #016d9f;
    z-index: -10;
}
.footer-logo {
    text-align: center;
}

.footer-logo svg {
    -webkit-filter: drop-shadow(
        0px 0px 10px  rgba(255, 255, 255, 1)
    );
    filter: drop-shadow(
        0px 0px 10px  rgba(255, 255, 255, 1)
    );
}

.footer-logo {
    position: relative;
}
.footer-logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100%;
    width: 175px;
    height: 175px;
    background: #fff;
    z-index: -10;
    filter: blur(30px);
    opacity: .6;
}

.footer-links {
    display: flex;
    gap: 100px;
}
.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a,
.footer-socials a {
    font-size: 20px;
    color: var(--white-color);
    transition: 0.5s;
}

.footer-socials a {
    font-size: 40px;
}

.footer-nav a:hover,
.footer-nav a.active,
.footer-socials a:hover {
    color: var(--pink-color);
    font-weight: bold;
}
.footer-nav a.active{
    -webkit-filter: drop-shadow(
        0px 0px 3px  rgba(255, 255, 255, 1)
    );
    filter: drop-shadow(
        0px 0px 3px  rgba(255, 255, 255, 1)
    );
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-apps {
    display: flex;
    gap: 50px;
}
.footer-app h3 {
    font-size: 24px;
    font-family: var(--dm-serif-display);
    margin-bottom: 15px;
}
.app-images {
    width: 285px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.app-images img {
    width: 100%;
    object-fit: cover;
}
.copyright p {
    font-size: 16px;
    text-align: center;
}

.copyright {
    display: flex;
    flex-direction: column;
}

/* 
** Contacts
*/
.contact-divider {
    padding-top: 150px;
}
.contacts-banner {
    height: 500px;
}
.contacts-banner .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 15px;
}
.contacts-banner .container h1 {
    font-size: 64px;
    font-weight: 400;
    color: var(--white-color);
    font-family: var(--dm-serif-display);
}
.contacts-banner .container p {
    font-size: 24px;
    color: var(--white-color);
}
.contacts-details {
    padding: 80px 0;
}
.contacts-details .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.contact-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-icon i {
    font-size: 36px;
    margin-bottom: 30px;
}
.contact-detail h3 {
    font-size: 24px;
    font-family: var(--dm-serif-display);
    padding-bottom: 20px;
}
.contact-detail p {
    text-align: center;
    font-size: 20px;
    padding-bottom: 15px;
}
.contact-detail a {
    font-size: 20px;
    color: var(--blue-color);
    text-align: center;
    transition: 0.5s;
}
.contact-detail a:hover {
    color: rgba(0, 0, 0, 0.5);
}
.contacts-form {
    padding: 50px 0;
    background-color: #f8f8f8;
}
.contacts-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contacts-form-title h3 {
    text-align: center;
    font-size: 24px;
    font-family: var(--dm-serif-display);
    padding-bottom: 10px;
}
.contacts-form-title p {
    text-align: center;
    font-size: 20px;
    padding-bottom: 30px;
}
.form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-container input[type="email"] {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border-radius: var(--border-radius-2);
    border: none;
    outline: none;
}

.contact-inputs {
    display: flex;
    gap: 15px;
}
.contact-inputs input {
    width: 250px;
    padding: 15px;
    font-size: 20px;
    border-radius: var(--border-radius-2);
    border: none;
    outline: none;
}
.form-container textarea {
    padding: 15px;
    font-size: 20px;
    border-radius: var(--border-radius-2);
    border: none;
    outline: none;
    resize: none;
}
/* .contact-inputs input::placeholder,
.form-container textarea::placeholder {
    font-size: 16px;
    color: var(--black-color);
    font-family: var(--dm-sans);
} */
.contact-btn {
    padding: 10px 0;
    font-size: 16px;
    color: var(--white-color);
}
.map {
    width: 100%;
    height: 430px;
    margin-bottom: 80px;
}
.map iframe {
    width: 100%;
    height: 100%;
}

.contact-detail a i {
    font-size: 12px;
}

.alert {
    position: absolute;
    top: 10%;
    right: 10%;
    padding: 20px 25px;
    border-radius: 10px;
    color: #fdfdfd;
}

.alert-success {
    background: #3ce155;
}

.alert-danger {
    background: #d84545;
}

.oficial-partner {
    text-align: center;
    font-family: var(--dm-serif-display);
    font-size: clamp(18px, 3vw, 48px);
    padding: 20px;
}


.oficial-partner h1 {
    margin-bottom: 20px;
}


.oficial-partner .img img {
    width: 100%;
    height: auto;
    max-width: 650px;
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .oficial-partner h1 {
        font-size: clamp(16px, 5vw, 36px);
    }
}

@media (max-width: 480px) {
    .oficial-partner {
        padding: 10px;
    }

    .oficial-partner h1 {
        font-size: clamp(14px, 6vw, 28px);
    }
}

.product-oficial-partner {
    font-family: var(--dm-serif-display) !important;
    font-weight: bold;
    margin-bottom: 30px;
}

.product-oficial-partner .img img {
    width: 100%;
    height: auto;
    max-width: 150px;
    margin-top: 10px;
}