/***********************
*      Offcanvas
*************************/
.offcanvas .flex-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.offcanvas {
  position: fixed;
  height: 100%;
  width: 350px;
  top: 0;
  right: -350px;
  transition: 0.3s;
  padding: 0 25px 20px;
  z-index: 99999;
  background-color: #000000f8;
  max-width: 100%;
}

a.header-logo svg {
  width: 90px;
}

.offcanvas__nav a {
  font-size: 21px;
  line-height: 1;
  font-weight: 500;
  color: #feffff;
  transition: 0.3s;
  display: block;
  padding: 5px 0;
}

.offcanvas__nav ul li {
  margin-bottom: 20px;
}

.offcanvas__nav ul {
  list-style: none;
  padding-left: 0;
}

@media (max-width: 1023px) {
  .offcanvas.active {
    right: 0;
  }
}

.header__logo {
  max-width: 185px;
}

.offcanvas-open {
  display: none;
}

@media (max-width: 1023px) {
  .offcanvas-open {
    display: block;
  }
}

.offcanvas-open,
.offcanvas__close {
  cursor: pointer;
}

.offcanvas__nav {
  padding: 30px 10px 0;
}

.offcanvas__nav a:hover,
.offcanvas__nav .current-menu-item {
  color: #e11b22;
}

.offcanvas__nav li:last-child a {
  margin: 0;
}

a.choose-country__block-item.countey-block {
  text-decoration: none;
}


/* Newsletter form wrapper */
.newsletter-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Input field styling */
.newsletter-wrap input[type="email"] {
    width: 250px;
    padding: 15px 20px;
    border-radius: 40px;
    border: 1px solid rgba(245, 245, 245, 0.2);
    background: transparent;
    color: #fff;
    font-size: 12px;
    outline: none;
    backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
	box-shadow: inset 0 -2px 6px 0 rgba(21, 23, 26, 0.25), inset 0 2px 8px 0 rgba(245, 245, 245, 0.40);
	font-family: "Instrument Sans", sans-serif;
}

.newsletter-wrap input[type="email"]::placeholder {
    color: rgba(255,255,255,0.8);
}
	

/* Submit button styling */
.newsletter-wrap input[type="submit"] {
    padding: 14px 28px;
    border-radius: 40px;
    background-image: radial-gradient(at center center, #F3EC98 60%, #934F00 100%);
	box-shadow: 0px 8px 6px 0px rgba(0,0,0,0.5);
    border: none;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    font-size: 12px;
    transition: 0.3s;
	letter-spacing: -0.002px;
	font-family: "Instrument Sans", sans-serif;
}

/* Hover effect */
.newsletter-wrap input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 230, 120, 0.4);
}

/*Email Style*/
.footer-email{
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	transition: 0.3s;
}
.footer-email:hover{
	color: #939393;
}
