@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  position: relative;
  max-width: 80px;
}
header ul {
  position: relative;
  display: flex; /* change vert. ul to horz. ul */
}
header ul li {
  list-style: none;
}
header ul li a {
  display: inline-block;
  color: #333;
  font-weight: 400;
  margin-left: 40px;
  text-decoration: none;
}
.content {
  position: relative;
  width: 100%;
  display: flex; /* change component position in same class from vert. to horz. */
  justify-content: space-between;
  align-items: center;
}
.content .textBox {
  position: relative;
  max-width: 600px;
}
.content .textBox h2 {
  color: #333;
  /* font-size: 4em; */
  font-size: 2.8em;
  line-height: 1.4em;
  font-weight: 700;
}
.content .textBox h2 span {
  color: #242d6b;
  font-size: 1.1em;
  font-weight: 700;
}
.content .textBox p {
  color: #333;
}
.content .textBox a {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  background: #242d6b;
  color: #fff;
  border-radius: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
}
.content .imgBox {
  width: 600px;
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
  margin-top: 50px;
}
.content .imgBox img {
  max-width: 340px;
  max-height: 340px;
}
.thumb {
  position: absolute;
  left: 50%;
  bottom: 20px; /* consider to remove if you have any other components below than this */
  /* top: 575px; */
  transform: translateX(-50%);
  display: flex;
}
.thumb li {
  list-style: none;
  display: inline-block;
  margin: -25px 20px;
  cursor: pointer;
  transition: 0.5s;
}
.thumb li:hover {
  transform: translateY(-15px);
}
.thumb li img {
  max-width: 60px;
  max-height: 60px;
}
.thumb li a {
  display: inline-block;
  /* margin-top: 20px; */
  margin-left: -8px;
  padding: 5px 15px;
  background: #242d6b;
  color: #fff;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 10px;
}
.sci {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #242d6b;
}
.sci li {
  list-style: none;
}
.sci li a {
  display: inline-block;
  margin: 5px 4px;
  transform: scale(0.6);
  filter: invert(1); /* no need if background is white */
}
.whatsapp-button {
  position: absolute;
  top: 80%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* background: #3EA611 ; */
  width: 50px;
  height: 50px;
}
.whatsapp-button a {
  display: inline-block;
  margin: 0px 0px;
  transform: scale(0.1);
  /* filter: invert(1); */ /* no need if background is white */
}
/* will disable if have more section */
/*.circle 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #017143;
    clip-path: circle(600px at right 800px);
}*/
.sectionImage /* body section will become .sectionImage */ {
  /* height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #1D212B; */
  background: #fff;
}
.sectionImage .img-slider {
  position: relative;
  width: 800px;
  height: 500px;
  margin: 10px;
  /* background: #1D212B; */
  background: #fff;
}
.sectionImage .slide {
  z-index: 1;
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}
.sectionImage .img-slider .slide.active {
  clip-path: circle(150% at 0 50%);
  transition: 2s;
  transition-property: clip-path;
}
.sectionImage .img-slider .slide img {
  z-index: 1;
  width: 100%;
  border-radius: 5px;
}
.sectionImage .img-slider .slide .info {
  position: absolute;
  top: 0;
  padding: 15px 30px;
}
.sectionImage .img-slider .slide .info h2 {
  color: #fff;
  background: rgba(0, 0, 0, 0.3); /* to add depend on image background */
  width: 80%; /* to add depend on image background */
  /* font-size: 45px; */
  font-size: 30px;
  padding: 10px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
}
.sectionImage .img-slider .slide .info p {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  font-size: 16px;
  width: 80%;
  padding: 10px;
  border-radius: 0px; /* to remove border radius if h2 add opacity background */
}
.sectionImage .img-slider .navigation {
  z-index: 2;
  position: absolute;
  display: flex;
  /* bottom: 30px; */
  bottom: -210px;
  left: 50%;
  transform: translateX(-50%);
}
.sectionImage .img-slider .navigation .btn {
  background: rgba(0, 0, 0, 0.5);
  width: 12px;
  height: 12px;
  margin: 10px;
  border-radius: 50%;
  cursor: pointer;
}
.sectionImage .img-slider .navigation .btn.active {
  background: #242d6b;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.copyrightText {
  width: 100%;
  background: #fff;
  padding: 300px 100px 10px;
  text-align: center;
}

@media (max-width: 991px) {
  header {
    padding: 20px;
  }
  header .logo {
    max-width: 60px;
  }
  header ul {
    display: none;
  }
  .toggle {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: url(./img/menu.png);
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(1);
    z-index: 11;
  }
  .toggle.active {
    position: fixed;
    right: 20px;
    background: url(./img/close.png);
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;
  }
  header ul.navigation.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    z-index: 10;
  }
  header ul li a {
    font-size: 1.5em;
    margin: 5px 0;
  }
  section {
    padding: 20px 20px 120px;
  }
  .content {
    flex-direction: column;
    margin-top: 100px;
  }
  .content .textBox h2 {
    /* font-size: 2.5em; */
    font-size: 1.8em;
  }
  .content .textBox h2 span {
    color: #242d6b;
    font-size: 1em;
    font-weight: 800;
  }
  .content .textBox {
    max-width: 100%;
  }
  .content .imgBox {
    max-width: 100%;
    justify-content: center;
  }
  .content .imgBox img {
    max-width: 300px;
    max-height: 300px;
  }
  .thumb li {
    margin: 0 5px;
  }
  .thumb li img {
    max-width: 40px;
    max-height: 40px;
  }
  .thumb li a {
    display: inline-block;
    /* margin-top: 20px; */
    margin-left: -7px;
    padding: 5px 5px;
    background: #242d6b;
    color: #fff;
    border-radius: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 8px;
  }
  .circle /* will disable if have more section */ {
    clip-path: circle(400px at center bottom);
  }
  .sci {
    background: #242d6b;
    right: 0;
    width: 50px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  .whatsapp-button {
    top: 70%;
    right: 10px;
    width: 50px;
  }

  .sectionImage .img-slider {
    width: 400px;
    height: 250px;
  }
  .img-slider .slide .info {
    padding: 10px 20px;
  }
  .sectionImage .img-slider .slide .info h2 {
    width: 80%; /* to add if h2 use opacity background */
    /* font-size: 30px; */
    font-size: 18px;
  }
  .sectionImage .img-slider .slide .info p {
    width: 80%;
    font-size: 13px;
  }
  .sectionImage .img-slider .navigation {
    bottom: -110px;
  }
  .sectionImage .img-slider .navigation .btn {
    width: 8px;
    height: 8px;
    margin: 6px;
  }
  .copyrightText {
    padding: 120px 40px 10px;
    font-size: 12px;
  }
}
