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

::selection {
  background-color: var(--main-color);
  color: #fff;
}

:root {
  --main-color: #4b7728;
  --white: #ffffff;
  --lightwhite: #c6c8c9;
  --bg1: #040404;
  --bg2: #0c0c0c;
  --border: rgba(255, 255, 255, 0.14);
}

@font-face {
  font-family: 'Manrope';
  src: url(../fonts/Manrope-VariableFont_wght.ttf);
}

html {
  overflow-x: hidden;
}
body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
  color: var(--white);
  background: url(../img/Background.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
  display: flex;
}


a {
  text-decoration: none;
}

a:focus {
  box-shadow: none;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

/* font size */

h1 {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
}

h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3;
}

p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--lightwhite);
}
.fs-14 {
  font-size: 14px;
  line-height: 1.5;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}


.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border: 0;
  border-radius: 100px;
  background-color: var(--main-color);
  color: #ffffff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.btn-fill p {
  font-weight: 500;
}
.btn-fill:hover {
  background-color: #008d97;
}
.btn-fill svg {
  width: 24px;
  height: 24px;
  transition: all 0.5s linear;
}
.btn-fill:hover svg {
  transform: rotate(41deg);
}

.wrapper-box {
  height: fit-content;
  margin: auto;
  /* position: relative; */
}
.wrapper-box .img-box {
  max-width: 50%;
  height: 120px;
  margin: 0 auto 40px;
  overflow: hidden;

}
.wrapper-box .img-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form-box{
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 40px;
}
.form-box .form-control {
  border: 1px solid #e3e3e3;
  box-shadow: none;
}
.form-box label {
  color: #040404;
}

.wrapper-box h1{
  position: absolute;
  top: 15%;
  left: 8%;
  text-transform: uppercase;
}
.wrapper-box h1 span {
  font-weight: 900;
}
.wrapper-box h2{
  position: absolute;
  bottom: 15%;
  left: 38%;
  transform: translateX(-62%);
  text-transform: uppercase;
  margin-top: 350px;
  text-align: end;
}
@media only screen and (min-width: 1200px) {
  .form-box {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 1200px) {
  .wrapper-box p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 991px) {
  .wrapper-box h1 {
    position: relative;
    top: unset;
    left: unset;
    font-size: 28px;
  }
  .wrapper-box h2 {
     position: relative;
    bottom: unset;
    left: unset;
    transform: unset;
    margin-bottom: 24px;
        font-size: 26px;
  }
  body {
    background: url(../img/Background1.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  
  .wrapper-box
  {
    display: flex;
    justify-content: center;
    margin: 24px 0 0;
  }
  .wrapper-box .img-box
  {
    height: 100px;
  }
.btn-fill
  {
    padding: 10px 24px;
  }
  .form-box
  {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .wrapper-box .img-box {

    margin-bottom: 10px;
  }
  .form-box
  {
    padding: 30px;
  }
  
}

@media only screen and (max-width: 576px) {
body {
  background-position: top center;
}
}