@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    background-color: #185d4e !important;
    background-image: url("../images/background.png");
}
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #fff;
}

.main-wrapper {
    min-height: 100vh;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
}
nav .wrapper {
    position: relative;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wrapper .logo img {
    width: 100%;
}
.wrapper .nav-links {
    display: inline-flex;
    margin: 0px;
}
.nav-links li {
    list-style: none;
}
.nav-links li i {
    display: none;
    color: #ffffff;
}
.nav-links li a,
.navbar-nav .nav-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 5px;
    margin: 0px 5px;
    transition: all 0.3s ease;
}
.nav-links li a:hover,
.navbar-nav .nav-item a:hover {
    background: #fec200;
}
.nav-links .mobile-item {
    display: none;
}
.wrapper .btn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}
.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}

nav input {
    display: none;
}

.home-image {
    height: 300px;
}

.home-box h1 {
    color: #fec200;
    font-family: Cinzel Decorative;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: 100px;
}

.home-box p {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-top: 10px;
}

.form-box {
    border-radius: 16px;
    background: #0e5344;
    padding: 20px;
    margin: 10px 0px;
}

.form-box h1 {
    color: #fec200;
    font-size: 24px;
    font-weight: 700;
}

.form-box form {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
}

.form-box form .input-box {
    border-radius: 4px 4px 0px 0px;
    border-bottom: 2px solid rgba(24, 93, 78, 0.2);
    background: #f9f9f9;
    padding: 5px 15px;
    margin-right: 1%;
}

.form-box form .input-box input,
.form-box form .input-box select {
    background: transparent;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
}

.form-box form .input-box h4 {
    color: #212121;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-box form .input-box.field {
    width: 30%;
}

.form-box form .input-box.location-field{
    width: 100%;
    margin-bottom: 5px;
}

.form-box form .input-box.counter {
    width: 25%;
}

.form-box form .counter-block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-box form .counter-block img {
    cursor: pointer;
}

.form-box form .counter-block input{
    text-align: center;
}

.form-box form button {
    display: flex;
    max-height: 64px;
    padding: 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    border-radius: 4px;
    background: #fec200;
    width: 16%;
    border: none !important;
    outline: none !important;
}

.home-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #fff;
    padding: 15px 0px;
    margin-top: auto;
}

footer .copyright {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

footer .footer-link {
    display: flex;
    align-items: center;
}

footer .footer-link a {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0px 10px;
}

.language-switcher {
    position: relative;
    display: inline-block;
}

.selected-language {
    border: none;
    border-radius: 20px;
    cursor: pointer;
    background: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
}

.selected-language i{
    display: inline-flex !important;
}

.flag {
    width: 24px;
    height: auto;
    border-radius: 50%;
    margin-right: 5px;
}

.language-list {
    display: none;
    position: absolute;
    z-index: 1;
    margin-top: 5px;
    padding: 0;
    background: #0e5344;
    border-radius: 5px;
    list-style: none;
    top: 50px;
    left: -8px;
}

.language-list.show{
    display: block;
}

.language-list li {
    margin: 0;
}

.language-list a {
    display: flex !important;
    padding: 5px !important;
    align-items: center;
    height: 45px;
}

.language-list a:hover {
    background: #ddd;
}

.sm-language{
    display: none;
}

.number::-webkit-outer-spin-button,
.number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}