@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-brands-400.eot");
  src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"),
    url("../webfonts/fa-brands-400.woff2") format("woff2"),
    url("../webfonts/fa-brands-400.woff") format("woff"),
    url("../webfonts/fa-brands-400.ttf") format("truetype"),
    url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

.fal,
.far {
  font-family: "Font Awesome 5 Pro";
}

.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

a,
a:link,
a:visited,
a:active,
a:hover,
button,
input,
select,
textarea,
i {
  text-decoration: none;
  outline: none;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

input,
select,
textarea {
  width: 100%;
  outline: none;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

input[type="radio"],
input[type="checkbox"] {
  width: auto;
  height: auto;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
  box-shadow: none;
}

img {
  max-width: 100%;
}

p {
  font-size: 16px;
  line-height: 26px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

:root {
  --white: #ffffff;
  --dark: #4a4a4a;
  --light_green: #d9f608;
}

.comnbtn {
  font-size: 20px;
  text-transform: uppercase;
  padding: 20px 45px;
  border-radius: 8px;
  font-weight: bold;
  color: var(--dark);
  background: var(--light_green);
  display: inline-block;
  border: none;
  transition: 1s;
  cursor: pointer;
}

.comnbtn:hover {
  color: var(--white);
  background: var(--dark);
}

/* ======================================================================================================================================================================================================================================================================================================================================================================== */

header {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 15px;
  z-index: 1;
}

/* .bg_one {
    background: linear-gradient(90deg, rgba(8, 72, 91, 1) 0%, rgba(8, 162, 131, 1) 40%, rgba(217, 246, 8, 1) 100%);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    overflow: hidden;
} */

.bg_one {
  background-image: url("../images/pattern-1.png"),
    linear-gradient(
      90deg,
      rgba(8, 72, 91, 1) 0%,
      rgba(8, 162, 131, 1) 100%,
      rgba(217, 246, 8, 1) 100%
    );
  background-repeat: no-repeat;
  /* background-size:auto, 400% 400%;
    animation: gradient 5s ease infinite; */
}

.banner_part {
  height: calc(100vh - 40px);
  position: relative;
}

.banner_part .container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner_heading {
  width: 100%;
  color: var(--white);
  text-align: center;
}

.banner_heading h1 {
  margin-top: 0;
  font-size: 60px;
  font-family: "Oswald", sans-serif;
}

.banner_part .style_one {
  display: table;
  margin: auto;
}

.style_one li {
  font-size: 22px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
  display: table;
}

/* .style_one li:last-child {
    margin-bottom: 0;
} */

.style_one li:before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  font-size: 24px;
  position: absolute;
  top: 1px;
  left: 0;
}

.banner_heading a {
  margin-top: 30px;
}

@keyframes gradient {
  0% {
    background-position: 0% 80%;
  }
  50% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 0% 100%;
  }
}

.marquee {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  background: var(--light_green);
  text-align: center;
}

.marquee span {
  text-transform: uppercase;
  transform: translateX(0);
  animation: marquee 24s linear infinite;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  display: block;
  padding: 15px 0;
}

/* ========================================================================================= */

/* .bg_two {
    background: linear-gradient(90deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%);
} */

.bg_two {
  background-image: url("../images/pattern-2.png"),
    linear-gradient(90deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
}

.form_banner .style_one {
  margin: unset;
}

.form_banner .container {
  justify-content: unset;
  flex-wrap: wrap;
}

.form_banner .banner_heading {
  width: 50%;
  text-align: left;
}

.form_banner .form_div {
  width: 30%;
  margin: auto;
  background: #22222259;
  backdrop-filter: blur(25px);
  padding: 30px;
  border-radius: 15px;
}

.form_div h2 {
  font-size: 24px;
  text-align: center;
  color: white;
  margin: 0 0 30px 0;
}

input {
  background: #fff;
  color: var(--dark);
  height: 50px;
  border: none;
  border-radius: 8px;
  padding: 0 15px;
  font-size: 16px;
  margin-bottom: 30px;
  border: none;
}

input::placeholder {
  color: var(--dark);
}

.form_div input:last-child {
  margin-bottom: 0;
}

.form_banner .comnbtn,
button.needsclick {
  font-size: 16px !important;
  transition: unset;
  text-align: center !important;
  /* background: #9958fd; */
  background: #2c7f9a !important;
  color: var(--white) !important;
  padding: 15px 20px !important;
  border: 2px solid #ffffff !important;
  height: auto !important;
  visibility: visible !important;
}

.form_div .comnbtn {
  width: 100%;
}

.form_banner .comnbtn:hover,
button.needsclick:hover {
  background: #57c785 !important;
  color: #ffffff !important;
}

/* =================== */

.copyright {
  background: #1c1c1c;
  color: #fff;
  text-align: center;
  padding: 11px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.copyright a {
  color: #fff;
}

.copyright a:hover {
  color: #08a283;
}

.logo {
  background: #fff;
  padding: 0px;
  display: block;
  text-align: center;
  /* margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    z-index: 1; */
}
.logo img {
  max-width: 170px;
}

.logo2 {
  max-width: 200px;
  width: 100%;
  display: inline-block;
}
