@font-face {
  font-family: Helvetica;
  src: url(./HelveticaNeueRoman.otf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica;
}

html,
body {
  height: 100%;
  width: 100%;
}

main {
  height: 100%;
  width: 100%;
  background-color: white;
}

.hero-section {
  background-color: white;
  display: grid;
  gap: 10px;
  padding: 20px 80px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 60px 5fr 4fr 4fr;
  grid-template-areas:
    "header header header"
    "section section section"
    "bottom-left bottom-up bottom-right"
    "bottom-left bottom-down bottom-right";
}

.header {
  background-color: transparent;
  grid-area: header;
}

.section {
  background-color: transparent;
  grid-area: section;
  border-radius: 20px;
  padding: 40px 0px;
}

.bottom-left {
  background-color: transparent;
  grid-area: bottom-left;
  border-radius: 20px;
}

.bottom-right {
  background-color: transparent;
  grid-area: bottom-right;
  border-radius: 20px;
}

.bottom-up {
  background-color: rgb(5, 112, 235);
  grid-area: bottom-up;
  border-radius: 20px;
  padding: 30px 40px;
}

.bottom-down {
  background-color: black;
  grid-area: bottom-down;
  border-radius: 20px;
  padding: 30px 40px;
}

nav {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

nav .nav-left {
  display: flex;
  padding: 10px;
}

.nav-left img {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}

.nav-left h4 {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 600;
}

nav .nav-center {
  display: flex;
  gap: 40px;
}

nav .nav-center a {
  font-size: 16px;
  color: black;
  text-decoration: none;
}

nav .nav-center a i {
  margin-left: 8px;
  font-size: 16px;
}

nav .nav-right {
  display: flex;
  gap: 20px;
}

.nav-right button {
  padding: 14px 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
}

.nav-right .btn-1 {
  color: rgb(5, 112, 235);
  background-color: white;
  border: 2px solid rgb(5, 112, 235);
}

.nav-right .btn-1:hover {
  background-color: rgb(5, 112, 235);
  color: white;
}

.nav-right .btn-2 {
  color: white;
  background-color: rgb(5, 112, 235);
  border: 2px solid transparent;
}

.nav-right .btn-2:hover {
  background-color: white;
  color: rgb(5, 112, 235);
  border: 2px solid rgb(5, 112, 235);
}

.section h1 {
  font-size: 70px;
  font-weight: 400;
  margin: 20px 0px;
  text-align: center;
}

.section p {
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  color: gray;
  margin-bottom: 20px;
}

.section .section-btn {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0px;
}

.section button {
  padding: 20px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}

.section .btn-3 {
  background-color: rgb(5, 112, 235);
  color: white;
  border: 2px solid transparent;
}

.section .btn-3:hover {
  background-color: white;
  color: rgb(5, 112, 235);
  border: 2px solid rgb(5, 112, 235);
}

.section .btn-4 {
  background-color: white;
  color: rgb(5, 112, 235);
  border: 2px solid rgb(5, 112, 235);
}

.section .btn-4:hover {
  background-color: rgb(5, 112, 235);
  color: white;
}

.section .btn-3 i {
  margin-left: 10px;
}

.bottom-left img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
}

.bottom-right img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
}

.bottom-up h4 {
  font-size: 14px;
  font-weight: 100;
  color: rgb(253, 252, 252);
}

.bottom-up h1 {
  font-size: 60px;
  font-weight: 100;
  color: white;
  margin-top: 100px;
}

.bottom-down h4 {
  font-size: 14px;
  font-weight: 100;
  color: rgb(253, 252, 252);
}

.bottom-down h1 {
  font-size: 60px;
  font-weight: 100;
  margin-top: 60px;
  margin-bottom: 20px;
  color: white;
}

.section_1 {
  height: auto;
  width: 100%;
  background-color: white;
  padding: 80px;
}

.section_1 .section-top {
  padding-top: 20px;
  padding-bottom: 60px;
  text-align: center;
}

.section-top button {
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 20px;
  color: black;
  border: 2px solid black;
  background-color: white;
}

.section-top h1 {
  font-size: 34px;
  font-weight: 100;
  color: rgb(157, 154, 154);
  margin: 20px 0px;
}

.section_1 .section-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.section-bottom div {
  padding: 20px;
  text-align: center;
}

.section-bottom div h1 {
  font-size: 50px;
  font-weight: 300;
}

.section-bottom div h4 {
  font-size: 16px;
  color: rgb(119, 118, 118);
  padding-top: 10px;
}

.section_2 {
  height: 700px;
  width: 100%;
  background-color: white;
  display: grid;
  gap: 10px;
  padding: 40px 80px;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "section-left section-top-left section-top-right"
    "section-left section-down-left section-down-right";
}

.section-left {
  background-color: transparent;
  grid-area: section-left;
}

.section-top-left {
  background-color: rgb(242, 242, 242);
  grid-area: section-top-left;
  border-radius: 20px;
}

.section-top-right {
  background-color: rgb(242, 242, 242);
  grid-area: section-top-right;
  border-radius: 20px;
}

.section-down-left {
  background-color: rgb(242, 242, 242);
  grid-area: section-down-left;
  border-radius: 20px;
}

.section-down-right {
  background-color: rgb(242, 242, 242);
  grid-area: section-down-right;
  border-radius: 20px;
}

.section-left .btn-5 {
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid black;
  color: black;
  background-color: white;
  margin-bottom: 40px;
}

.section-left .btn-6 {
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 30px;
  border: 2px solid transparent;
  color: white;
  background-color: rgb(5, 112, 235);
  margin-bottom: 40px;
  margin-top: 54%;
  cursor: pointer;
}

.section-left .btn-6 i {
  margin-left: 10px;
}

.section-left .btn-6:hover {
  background-color: white;
  color: rgb(5, 112, 235);
  border: 2px solid rgb(5, 112, 235);
}

.section-left h1 {
  font-size: 40px;
  font-weight: 100;
  margin-bottom: 40px;
  margin-right: 40px;
}

.section-left h4 {
  font-size: 16px;
  margin-right: 80px;
}

.section-top-left,
.section-top-right,
.section-down-left,
.section-down-right {
  padding: 40px;
  cursor: pointer;
}

.section_2 .icon-box {
  width: 50px;
  height: 50px;
  font-size: 30px;
  background-color: rgb(5, 112, 235);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section_2 h3 {
  font-size: 20px;
  margin-top: 60px;
}

.section_2 h4 {
  font-size: 16px;
  margin-top: 20px;
  color: rgb(181, 178, 178);
}

.section_3 {
  height: 800px;
  width: 100%;
  background-color: white;
  display: grid;
  gap: 20px;
  padding: 80px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 3fr 2fr;
  grid-template-areas:
    "section3-top section3-top"
    "section3-bottom-left section3-bottom-right";
}

.section3-top {
  background-color: transparent;
  grid-area: section3-top;
}

.section3-bottom-left {
  background-color: transparent;
  grid-area: section3-bottom-left;
  border-radius: 20px;
}

.section3-bottom-right {
  background-color: transparent;
  grid-area: section3-bottom-right;
  border-radius: 20px;
}

.section3-top .btn-7 {
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid black;
  color: black;
  background-color: white;
  margin-bottom: 20px;
}

.section3-top div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0px;
}

.section3-top div h1 {
  font-size: 40px;
  font-weight: 100;
}

.section3-top .btn-8 {
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid transparent;
  color: white;
  background-color: rgb(5, 112, 235);
  margin-bottom: 20px;
  cursor: pointer;
}

.section3-top .btn-8:hover {
  background-color: white;
  color: rgb(5, 112, 235);
  border: 2px solid rgb(5, 112, 235);
}

.section3-top .btn-8 i {
  margin-left: 10px;
}

.section3-bottom-left img {
  height: 400px;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
}

.section3-bottom-right img {
  height: 400px;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
}

.section_4 {
  height: auto;
  width: 100%;
  background-color: white;
  padding: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.left-text .logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-text .logo img {
  height: 50px;
  width: 150px;
}

.left-text h4 {
  font-size: 20px;
  font-weight: 100;
  margin: 60px 0px;
}

.left-text .text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.left-text .text h3 {
  font-size: 20px;
  color: black;
}

.left-text .text h4 {
  font-size: 22px;
  color: rgb(154, 152, 152);
}

.right-image img {
  height: 100%;
  width: 600px;
  border-radius: 20px;
}

.section_5 {
  height: 100%;
  width: 100%;
  background-color: white;
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.contact-us {
  padding: 40px;
}

.contact-us button {
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: white;
  margin-bottom: 40px;
}

.contact-us h2 {
  font-size: 36px;
  font-weight: 100;
  margin-bottom: 80px;
}

.contact-us .contact-details {
  margin-top: 36%;
}

.contact-details div h3 {
  font-size: 22px;
  color: rgb(179, 178, 178);
  margin-bottom: 20px;
}

.contact-details div h4 {
  font-size: 22px;
  color: black;
  margin: 20px 0px;
}

.contact-us div .social-media {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin: 5px 0px;
}

.contact-us div .social-media a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: black;
  background-color: white;
  border: 1px solid rgb(171, 170, 170);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.contact-us div .social-media a:hover {
    color: rgb(5, 112, 235);
    background-color: white;
    border: 1px solid rgb(5, 112, 235);
}

.form {
  padding: 40px;
}

.form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form .name {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

form .name div {
  display: flex;
  flex-direction: column;
}

form label {
  font-size: 20px;
}

form input {
  font-size: 16px;
  color: black;
  background-color: white;
  padding: 20px 20px;
  border: 1px solid rgb(228, 228, 228);
  border-radius: 30px;
  margin: 20px 0px;
}

form textarea {
  height: 200px;
  font-size: 16px;
  color: black;
  background-color: white;
  padding: 20px 20px;
  border: 1px solid rgb(228, 228, 228);
  border-radius: 30px;
  margin-top: 20px;
  margin-bottom: 10px;
}

form button {
  font-size: 16px;
  color: rgb(247, 244, 244);
  background-color: rgb(5, 112, 235);
  padding: 20px 20px;
  border: 1px solid rgb(228, 228, 228);
  border-radius: 30px;
  cursor: pointer;
}

form button:hover {
  color: rgb(247, 244, 244);
  background-color: rgb(7, 119, 248);
}

.footer {
  height: 500px;
  width: 100%;
  background-color: white;
  padding: 0px 80px;
  padding-top: 60px;
}

.footer-section {
  height: 400px;
  width: 100%;
  background-color: black;
  border-radius: 30px;
  padding: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}

.footer-left .footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-left img {
  height: 40px;
  width: 40px;
}

.footer-left h3 {
  font-size: 24px;
  color: white;
  margin-left: 10px;
}

.footer-left h4 {
  font-size: 26px;
  color: white;
  margin-top: 40px;
}

.footer-subscribe {
  display: flex;
  margin: 20px 0px;
  gap: 10px;
}

.footer-subscribe input {
  font-size: 16px;
  color: white;
  background-color: rgb(68, 68, 68);
  padding: 16px 20px;
  border-radius: 30px;
  border: none;
}

.footer-subscribe input:focus {
  outline: none;
  box-shadow: none;
  border-color: transparent; 
}


.footer-subscribe button {
  font-size: 16px;
  color: rgb(247, 244, 244);
  background-color: rgb(5, 112, 235);
  padding: 16px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

.footer-subscribe button:hover {
  background-color: rgb(4, 118, 248);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.footer-right div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.footer-right a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 150px;
  height: 40px;
  color: #a6a6a8;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-right a:hover {
  color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom div h4 {
    font-size: 14px;
    color: rgb(204, 202, 202);
}

.footer-bottom div a {
    color: white;
    text-decoration: none;
    background-color: transparent;
    height: 40px;
    width: 40px;
    padding: 10px 10px;
    border: 1px solid white;
    border-radius: 50%;
    margin-right: 20px;
}

.footer-bottom div a:hover {
    color: rgb(5, 112, 235);
    background-color: white;
}
