@import url("https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Great+Vibes&family=Italianno&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:wght@400;500;700;800&display=swap");
::-moz-selection {
  color: wheat;
  background: rgb(118, 118, 118);
}
::selection {
  color: wheat;
  background: rgb(118, 118, 118);
}

*,
html {
  scroll-behavior: smooth !important;
}

body {
  scroll-behavior: smooth;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  visibility: hidden;
  opacity: 0;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
  z-index: 1111;
}

.popup {
  background: #1d1d1c;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition: all ease-in-out;
  transition: all ease-in-out;
  overflow-y: scroll;
}
.popup h2 {
  color: white;
}
.popup .close {
  font-size: 60px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  border: 5px wheat solid;
  border-radius: 50%;
  padding: 0 15px;
}
.popup .close:hover {
  color: rgb(255, 255, 255);
}

.sliding {
  text-decoration: none;
  display: inline;
  border-bottom: 2px solid transparent;
  width: 0px;
  -webkit-transition: 1s linear;
  transition: 1s linear;
  white-space: nowrap;
  padding-bottom: 2px;
}

.sliding:hover {
  border-bottom: 2px solid black;
  width: 100%;
}

.element {
  display: inline-block;
  padding-bottom: 3px;
}

.element:after {
  content: "";
  display: block;
  margin: auto;
  height: 2px;
  -webkit-animation: underline 2s infinite;
          animation: underline 2s infinite;
}

@-webkit-keyframes underline {
  0% {
    width: 0%;
    background-color: rgb(0, 0, 0);
  }
  100% {
    width: 100%;
    background-color: transparent;
  }
}

@keyframes underline {
  0% {
    width: 0%;
    background-color: rgb(0, 0, 0);
  }
  100% {
    width: 100%;
    background-color: transparent;
  }
}
.hoverelement > a {
  position: relative;
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.hoverelement > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  margin-bottom: -2px;
  background-color: rgb(255, 255, 255);
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.hoverelement > a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.modal-header {
  border-bottom: wheat 1px solid;
}

.modal-footer {
  border-top: 1px wheat solid;
}

.modal-content {
  background: #000000;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
#loader {
  border: 12px solid wheat;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  border-top: 12px solid rgb(0, 0, 0);
  width: 70px;
  height: 70px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  z-index: 1111;
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1111;
}

.contact-form {
  max-width: 600px;
  position: relative;
}
.contact-form #country {
  position: relative;
  background: #333;
  border: none;
}
.contact-form input {
  background: #333;
  padding: 10px;
  margin-bottom: 50px;
  border: none;
  border-bottom: 1px solid rgb(255, 255, 255);
  color:white;
}
.contact-form input:focus {
  outline: none;
  border-bottom: 1px solid wheat;
}
.contact-form input::-webkit-input-placeholder {
  color: white;
}
.contact-form input::-moz-placeholder {
  color: white;
}
.contact-form input:-ms-input-placeholder {
  color: white;
}
.contact-form input::-ms-input-placeholder {
  color: white;
}
.contact-form input::placeholder {
  color: white;
}
.contact-form .submit {
  color: rgb(0, 0, 0);
  background: wheat;
}
.contact-form .submit:hover {
  color: rgb(41, 40, 40);
}

button.accordion {
  width: 100%;
  background-color: rgb(87, 87, 87);
  border: none;
  outline: none;
  text-align: left;
  padding: 15px 20px;
  font-size: 18px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

button.accordion:after {
  content: "\f055";
  font-family: "fontawesome";
  font-size: 14px;
  float: right;
}

button.accordion.is-open:after {
  content: "\f056";
}

button.accordion:hover,
button.accordion.is-open {
  background-color: rgb(44, 38, 38);
  color: wheat;
}

.accordion-content {
  text-align: start;
  background-color: rgb(26, 26, 26);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-in-out;
  transition: max-height 0.2s ease-in-out;
}
.accordion-content p {
  color: white !important;
  padding: 30px 0;
}

.demo a {
  position: absolute;
  top: 90%;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.demo a:hover {
  opacity: 0.5;
}

#section05 a {
  padding-top: 70px;
}

#section05 a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb05 1.5s infinite;
  animation: sdb05 1.5s infinite;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-webkit-keyframes sdb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
            transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
            transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
