@charset "utf-8";

/* CSS Document */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  list-style-type: none !important;
}

:root {
  --primary: #2b9a44 !important;
  --secondary: #13417a !important;
  --white: #ffffff !important;
  --black: #000 !important;
  --fonts: "Inter", sans-serif;
}

body {
  width: 100% !important;
  font-family: var(--fonts) !important;
  font-size: 16px !important;
  color: var(--black);
  overflow-x: hidden !important;
  max-width: 100% !important;
  height: 100vh;
  /* 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/bg-img.jpg); */
}

.main {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/bg-img.jpg);
  display: flex;
}

.left {
  width: 50%;
  max-height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  position: relative;
}

.content-div {
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.content-div img {
  margin-bottom: 50px;
}

.content-div h1 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 48px;
}

.content-div h4 {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 60px;
  font-size: 28px;
}

.content-div h6 {
  color: var(--black);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 28px;
}

.content-div p {
  color: var(--black);
  font-weight: 300;
  margin-bottom: 30px;
  font-size: 18px;
}

.content-div h5 a {
  color: var(--black);
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 35px;
  transition: all 0.4s;
  position: relative;
}

.content-div h5 a:hover {
  color: var(--primary);
  transition: all 0.4s;
}

.content-div h5 a::after {
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background-color: var(--primary);
  transition: all 0.4s;
}

.content-div h5 a:hover::after {
  width: 100%;
  transition: all 0.4s;
}

.content-div h5 i {
  background-color: var(--primary);
  height: 35px;
  width: 35px;
  color: var(--white);
  line-height: 35px;
  border-radius: 5px;
  margin-right: 10px;
}
