* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Poppins,sans-serif;
  text-decoration: none;
  scroll-behavior: smooth!important;
  list-style: none
}
:root {
  --bg-color: #fff;
  --text-color: #2C2C2C;
  --them-color: #191919;
  --text-menu: #D2D2D2;
  --menu-hover: #A5A5A5
}
header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--them-color);
  z-index: 1000;
  padding-left: 8%;
  padding-right: 20%;
  padding-top: 5px;
  transition: ease .4s
}
.logo img {
  height: 55px;
  padding-left: 38px
}
.navbar {
  display: flex
}
.navbar a {
  color: var(--text-menu);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  font-family: Raleway,sans-serif;
  padding: 12px 5px 12px 30px;
  transition: ease .4s;
  border-bottom: 2px solid var(--them-color)
}
.navbar a:hover {
  color: var(--menu-hover)
}
#menu-icon {
  color: var(--text-menu);
  font-size: 35px;
  z-index: 10001;
  cursor: pointer;
  display: none
}
header.sticky {
  background: var(--bg-color);
  padding: 15px 18%;
  box-shadow: rgba(35,35,38,.1)
}
.sticky .logo {
  color: var(--text-color)
}
.sticky .navbar a {
  color: var(--text-color)
}
.bx-x:before {
  content: "\ec8d";
  margin-right: 180px
}
.title {
  display: flex;
  flex-direction: column;
  padding-bottom: 3rem;
  text-align: left;
  color: var(--text-color);
  width: 60%
}
.title h1 {
  font-family: "Bebas Neue",sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 6rem;
  text-align: left;
  color: var(--text-color)
}
.Contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-bottom: 100px
}
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 62%
}
.form-submit {
  grid-column: 1/-1;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px
}
.column {
  background: #fff;
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}
label {
  display: block;
  margin: 1em 0 .2em;
  font-size: 14px;
  font-family: Raleway,sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal
}
input,
select,
textarea {
  width: 100%;
  margin-top: 10px;
  padding: .3em;
  border: solid 1px #000;
  outline: 0
}
textarea {
  min-height: 200px
}
select {
  color: #000;
  font-size: 14px;
  outline: 0
}
option {
  color: #000
}
input[type=checkbox] {
  width: auto
}
.SUBMIT {
  background: #191919;
  margin: 1em 0 0;
  color: var(--text-menu);
  border: none;
  transition: all .3s ease-out;
  font-size: 12px;
  width: 130px;
  height: 40px;
  font-family: Raleway,sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 2px
}
.SUBMIT:focus,
.SUBMIT:hover {
  outline: 0;
  color: #fff
}
.con-footer {
  background-color: var(--text-color)
}
.con-footer ul {
  display: flex;
  justify-content: center;
  gap: 45px;
  padding: 40px 0
}
.con-footer img {
  height: 40px;
  width: auto;
  opacity: .4;
  transition: transform .5s ease
}
.con-footer img:hover {
  transform: translateY(-10px);
  cursor: pointer
}
footer div:last-child {
  height: 90px;
  padding-top: 50px;
  background-color: var(--them-color)
}
@media (max-width:1400px) {
  header {
    padding: 3px 3% 3px 3%;
    transition: .2s;
    min-height: 60px
  }
  header.sticky {
    padding: 10px 3%;
    transition: .2s
  }
  :root {
    transition: .2s
  }
}
@media (max-width:1020px) {
  form {
    width: 80%
  }
  .snd-btn {
    width: 80%
  }
  .title {
    width: 80%
  }
  .logo img {
    padding-left: 5.2vw
  }
}
@media (max-width:800px) {
  .Contact {
    height: unset;
    margin-top: 150px
  }
  form {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 80%
  }
  form .column:first-child {
    padding-bottom: 0px
  }
  form .column:last-child {
    padding-top: 0px
  }
  .title h1 {
    font-size: 5rem
  }
  .snd-btn {
    width: 80%
  }
  .title {
    width: 80%
  }
  .logo img {
    height: 50px
  }
  .form-submit {
    justify-content: center
  }
}
@media (max-width:670px) {
  .logo img {
    height: 44px
  }
}
@media (max-width:400px) {
  .title h1 {
    font-size: 3rem
  }
  .snd-btn input {
    width: 100px
  }
  .logo img {
    height: 37px;
    padding-left: 38px
  }
}
@media (max-width:1040px) {
  #menu-icon {
    display: block
  }
  .sticky #menu-icon {
    color: var(--text-menu)
  }
  .navbar {
    position: absolute;
    top: 0;
    right: -100%;
    width: 200px;
    height: 120vh;
    background: var(--them-color);
    display: flex;
    flex-direction: column;
    align-items: end;
    padding-right: 40px;
    padding-left: 30px;
    padding-top: 60px;
    padding-bottom: 80px;
    transition: .5s all
  }
}
.navbar a {
  display: block;
  margin: 14px 0
}
.sticky .navbar a {
  color: var(--bg-color)
}
.open {
  right: 0
}
.list {
  width: 50%;
  margin-bottom: 12px
}