* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Futura";
  src: url("../fonts/FuturaNewBold-Reg.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Futura";
  src: url("../fonts/FuturaNewExtraBold-Reg.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
}
@font-face {
  font-family: "Futura";
  src: url("../fonts/FuturaNewMedium-Reg.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
body {
  font-family: "Futura", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-inline: 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Futura";
  src: url("../../assets/fonts/FuturaNewBold-Reg.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Futura";
  src: url("../../assets/fonts/FuturaNewExtraBold-Reg.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
}
@font-face {
  font-family: "Futura";
  src: url("../../assets/fonts/FuturaNewMedium-Reg.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
body {
  font-family: "Futura", sans-serif;
}

.head,
nav,
.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  position: sticky;
  top: 0;
  padding-block: 20px;
  z-index: 9999;
  background: linear-gradient(-90deg, #8ec7ef, #1e419b);
}
header ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header ul li:last-child a {
  color: #f58220;
}
header ul li:last-child a span:after {
  width: 100%;
}
header .cloud {
  position: absolute;
  top: 0;
  transform: rotate(180deg);
  width: 105px;
}
header nav {
  width: 72%;
}
header .overlay {
  display: none;
}
header .close,
header .fas {
  display: none;
}

@keyframes bounceIn {
  0% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
  70% {
    transform: scaleX(0.9);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes bounceOut {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  70% {
    transform: scaleX(0.1);
  }
  100% {
    transform: scaleX(0);
  }
}
.header-list li a {
  font-size: 16px;
  font-weight: 500;
  padding-inline: 10px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header-list li a:hover {
  color: #f58220;
}
.header-list li a span {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.header-list li a span:after {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: #f58220;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: bounceOut 0.6s ease forwards;
  opacity: 0;
}
.header-list li a span:hover:after {
  opacity: 1;
  animation: bounceIn 0.6s ease forwards;
}
.header-list li a.selected {
  color: #f58220;
}
.header-list li a.selected span:after {
  transform: scaleX(100%);
  animation: bounceIn 0.6s ease forwards;
  opacity: 1;
}
.header-list .header-list.d-none {
  display: none;
}
.header-list .header-list.d-block {
  display: block;
}

.logo img {
  max-width: 130px;
}

.menu {
  gap: 12px;
}

.search-logo {
  cursor: pointer;
  padding: 10px 10px 5px 10px;
  border-radius: 50%;
  background-color: #fff;
}

.lang-dropdown,
.call-link,
.drop-lang {
  display: flex;
  align-items: center;
}

.call-link,
.drop-lang {
  gap: 5px;
}

.drop-down {
  position: relative;
  padding-bottom: 15px;
}
.drop-down:hover .drop-lang {
  display: block;
}

.lang-dropdown {
  border-radius: 0.9375rem;
  padding: 5px 7px;
  background-color: #fff;
  color: #fff;
  position: relative;
  top: 8px;
  font-weight: 600;
}
.lang-dropdown .choose-lang {
  font-weight: 600;
  display: flex;
  align-items: center;
}
.lang-dropdown img {
  width: 20px;
  height: 20px;
}
.lang-dropdown span {
  font-size: 12px;
  color: #000;
  margin-inline: 4px;
}
.lang-dropdown::after {
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
  color: #e2e2e2;
}

.drop-lang {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  color: #fff;
  background-color: #fff;
  border-radius: 12px;
}
.drop-lang a:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.031372549);
}
.drop-lang a:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.drop-lang a {
  display: block;
  width: 100%;
  display: flex;
  gap: 8px;
  padding: 5px;
  transition: 0.3s all ease;
  align-items: center;
}
.drop-lang a:hover {
  background-color: #e2e2e2;
}
.drop-lang::after {
  position: absolute;
  z-index: -5;
  content: "";
  border-bottom: 8px solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  top: -5px;
  left: 20%;
}

.call-link {
  border-radius: 34px;
  background-color: #fff;
  padding: 10px 15px;
  color: #000;
}
.call-link span {
  font-size: 13px;
}

#contact {
  transition: background 0.3s;
  cursor: pointer;
  border-bottom: 1px solid transparent;
}
#contact:hover {
  background-color: #f7f7f8;
  border-bottom: 1px solid #fbb439;
}

#contact-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0px;
  border-bottom: 1px solid #d6d9db;
}
#contact-info img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

#work-hours {
  text-align: center;
}

#contact-form {
  padding: 50px 0;
}

.contact-head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.contact-head h3 {
  margin-left: 16px;
  color: #f1823a;
  font-weight: 500;
  font-size: 28px;
}

.contact {
  background-image: url("https://bravotravel.az/img/map.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.contact .line {
  height: 6px;
  position: relative;
  background: #fbb439;
  border-radius: 25px;
  box-shadow: inset 0 -1px 1px hsla(0, 0%, 100%, 0.3);
  margin: 20px 0;
}
.contact label {
  display: block;
  margin-bottom: 6px;
}
.contact textarea {
  padding: 12px;
  border: 2px solid #eaeaea;
  border-radius: 3px;
  font-size: 14px;
  outline: none;
  position: relative;
  z-index: 2;
}
.contact textarea:focus {
  background: transparent;
}
.contact textarea {
  resize: vertical;
  max-height: 300px;
  min-height: 100px;
  width: 100%;
}
.contact input {
  height: 50px;
}
.contact input::-webkit-outer-spin-button,
.contact input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.name-number {
  display: flex;
  gap: 30px;
}
.name-number input {
  width: 100%;
  padding: 12px;
  border: 2px solid #eaeaea;
  border-radius: 3px;
  font-size: 14px;
  outline: none;
  position: relative;
  z-index: 2;
}
.name-number input:focus {
  background: transparent;
}
.name-number .input-box {
  width: 50%;
}

.input-box,
.textarea-box {
  position: relative;
  margin-top: 30px;
}
.input-box label,
.textarea-box label {
  position: absolute;
  left: 14px;
  top: 15px;
  transition: 0.3s;
  font-size: 14px;
  color: #777;
  pointer-events: none;
  background: #fff;
  padding: 0 5px;
}
.input-box.active label,
.textarea-box.active label {
  top: -18px;
  left: 0;
  font-size: 12px;
  color: #333;
}

.focus-bg {
  position: relative;
  overflow: hidden;
}
.focus-bg::before, .focus-bg::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  z-index: 1;
  transition: all 0.4s ease;
}
.focus-bg::before {
  top: 0;
  left: 0;
  background: #fffcef;
}
.focus-bg::after {
  bottom: 0;
  right: 0;
  background: #fffcef;
}
.focus-bg:focus-within::before, .focus-bg:focus-within::after {
  width: 50%;
  height: 100%;
}

.submit-btn {
  display: flex;
  justify-self: end;
  margin-top: 20px;
  background-color: #fb9505;
  color: white;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 21px 0 rgba(251, 149, 5, 0.71);
  padding: 13px 36px 13px 54px;
  border-radius: 24px;
  border: none;
  transition: 0.3s all ease-in-out;
  outline: none;
  background-image: url("https://bravotravel.az/img/submit-icon.png");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: 21px center;
  cursor: pointer;
}
.submit-btn:hover {
  box-shadow: none;
}

footer .info,
footer .info-item {
  display: flex;
  align-items: center;
}
footer .info {
  justify-content: space-between;
}
footer .info-item {
  width: 33%;
}
footer .info-item:last-child {
  justify-content: flex-end;
}
footer .info-item:nth-child(2) {
  justify-content: center;
}

.first {
  background-color: #1e419b;
  padding: 50px 0;
  position: relative;
}
.first .info {
  color: #fff;
  gap: 10px;
}
.first .info-item {
  gap: 8px;
}
.first .info-item a {
  position: relative;
}
.first .info-item a:after {
  content: "";
  height: 1px;
  width: 0;
  position: absolute;
  background-color: #fff;
  display: block;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transform-origin: 0 50%;
  transition-property: all;
  transition-duration: 0.5s;
  bottom: 0;
}
.first .info-item a:hover:after {
  width: 100%;
}
.first .imgdiv {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f58220;
}
.first .cloud-footer {
  position: absolute;
}
.first .left {
  left: 0;
  bottom: 30px;
}
.first .right {
  right: 0;
  bottom: 0;
}

.second {
  padding: 20px 0;
}
.second .info-item {
  gap: 8px;
  font-size: 15px;
}
.second .info-item:last-child {
  color: #b2b2b2;
}
.second .social-link {
  background-color: gray;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  width: 25px;
  height: 25px;
  text-align: center;
  transition: 0.5s all ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.second .social-link:hover {
  background-color: #f58220;
}

.burger-menu {
  display: none;
  cursor: pointer;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  background-color: transparent;
  border: 1px solid transparent;
  transform: rotateY(180deg);
}
.burger-menu span {
  display: block;
  margin-bottom: 5px;
  height: 3px;
  background-color: #2872a1;
}
.burger-menu .line1,
.burger-menu .line2 {
  width: 30px;
}
.burger-menu .line3 {
  width: 19px;
}/*# sourceMappingURL=contact.css.map */