@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/*==Font-setup==*/

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

body {
     font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #000;
    background: #fff;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

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

/*==Basic-setup==*/

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

.hero-area {
  background: url('images/comig-bg.png') no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  max-width: 559px;
  width: 100%;
}

.hero-main {
  text-align: center;
}

.hero-main h2 {
  font-weight: 700;
  font-size: 62px;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 18px;
}

.hero-main p {
  font-weight: 400;
  font-size: 28px;
  color: #ffffff;
  line-height: 44px;
  margin-top: 22px;
}

.email-box {
  display: grid;
  grid-template-columns: 55% auto;
  column-gap: 26px;
  max-width: 653px;
  margin: auto;
  background: #2C554E;
  border-radius: 32px;
  padding-left: 42px;
  margin-top: 42px;
  box-shadow: inset 0 18px 18px -20px rgba(0,0,0,0.4);
}

.email-input input {
  font-weight: 400;
  font-size: 24px;
  color: #ffffff;
  width: 100%;
  text-align: center;
  height: 100%;
  padding: 26px 10px;
  background: none;
  border: none;
  outline: none;
}

.email-input input::placeholder {
  font-weight: 400;
  font-size: 24px;
  color: #ffffff;
}

.email-submit button {
  font-weight: 700;
  font-size: 24px;
  color: #FF8003;
  width: 100%;
  height: 100%;
  border: 0.5px solid #FF8003;
  border-radius: 60px;
  background: linear-gradient(to left, #2F554F, #344F42);
    box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.6);
    cursor: pointer;
  padding: 10px;
}

.email-submit button:hover {
  opacity: 0.8;
}



/*FOR-TABLATE-START*/
@media screen and (min-width: 768px) and (max-width: 991px) {
  
  .hero-main h2 {
    font-size: 30px;
  }

  .hero-main p {
    font-size: 20px;
  }

  .hero-logo img {
    max-width: 490px;
  }


/*=laptop=*/
}

/*FOR-MOBIL-START*/
@media screen and (max-width: 767px) {

  .hero-logo img {
      max-width: 290px;
  }

  .hero-main h2 {
    font-size: 28px;
    line-height: 42px;
  }

  .hero-main p {
    font-size: 18px;
    line-height: 30px;
    margin-top: 21px;
  }

  .email-box {
    grid-template-columns: 100%;
    padding-left: 0;
    row-gap: 20px;
    padding: 40px 15px;
    border-radius: 20px;
  }

  .email-input input {
    border: 1px solid #fff;
    border-radius: 90px;
    padding: 15px 10px;
    font-size: 18px;
  }

  .email-submit button {
    padding: 15px 5px;
    font-size: 18px;
  }

  .email-input input::placeholder {
      font-size: 18px;
  }

  


/*=phone=*/
}