* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

/* ----------------
About-Section
------------------- */
.left img{
  width: 90%
}

.right{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-company{
  padding: 0 0 4rem 0
}
.right h1{
  padding: 2rem 0;
  color: #000;
  width: 100%;
}
.right h1 span{
  border-bottom: 4px solid #009961;
  padding: 0.5rem 0;
}
.right p{
 font-size: 1.2rem;
 font-weight: 600;
 color: #848484
}

.jsc{
  justify-content: space-between
}
/* ----------------
Section-one
------------------- */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;800&display=swap");


body {
  --black: #242424;
  --white: #f5f5f5;
  --pill: #e0d4be;
  --red: #cc033f;
}

ul {
  list-style: none;
}

.page-wrap {
  position: relative;
  /* top: 2rem; */
  z-index: -100 !important;
}

header {
  width: 100%;
  overflow-x: hidden;
}



#burger {
  width: min-content;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  cursor: pointer;
}

#burger span {
  display: block;
  height: 3px;
  width: 22px;
  background-color: var(--red);
  border-radius: 200px;
  transition: transform 0.3s 0.3s;
}

.active span:nth-of-type(1) {
  transform: translateY(-3px) scaleX(1.3);
}

.active span:nth-of-type(3) {
  transform: translateY(3px) scaleX(1.3);
}

/* Scroll Down */

#scroll-down-animation {
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h2 {
  color: transparent;
  font-family: 'Roboto', 'Arial', sans-serif;
  font-weight: 200;
  font-size: 16px;
}

.mouse {
  margin: 0 auto;
  display: block;
  border-radius: 50px;
  border: 2px solid #fff;
  height: 80px;
  width: 40px;
  cursor: pointer;
  position: relative;
  color: #222;
}

.move {
  position: absolute;
  background-color: #fff;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  animation: move 2s linear infinite;
}

@keyframes move {
  0% {
    transform: translate(-50%, 10px);
    opacity: 0;
  }

  50% {
    transform: translate(-50%, 40px);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 70px);
    opacity: 0;
  }
}

@keyframes animate {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) translate(10px, 10px);
  }

  100% {
    opacity: 0;
  }
}

/*  MAIN: Slider Section
----------------------------------------------- */

main {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

article {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--i);
}

.hero-info {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 8;
}

.hero-info h2 {
  font-size: clamp(2rem, 9vw, 5rem);
  line-height: clamp(2rem, 9vw, 5rem);
  text-transform: uppercase;
  /* font-family: 'Libre Baskerville', serif;
  color: #e3d48e !important; */
}

.hero-info h2 {
  color: transparent;
  -webkit-text-stroke: 3px var(--pill);
  text-shadow: none;
}

.hero-info h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 10vw, 7rem);
  font-family: 'Raleway', sans-serif;
  line-height: clamp(3.2rem, 10vw, 7rem);
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-info h3 {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: normal;
  margin-top: 2em;
}

@supports (-webkit-text-stroke: 3px var(--pill)) {
  .hero-info h2 {
    color: transparent;
    -webkit-text-stroke: 3px var(--pill);
    text-shadow: none;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hi-1 {
  background-image: url("../img/digi-un.jpg");
}


.hi-2 {
  background-image: url("../img/web-dev-un.jpg");
}


.hi-3 {
  background-image: url("../img/produc-ph.png");
}

.hi-4 {
  background-image: url("../img/social\ media-un-2.jpg");
}

.hi-5 {
  background-image: url("../img/google-un.jpg");
}

/*  SECTION: Overlay Menu Section
----------------------------------------------- */

.sec-home {
  position: absolute;
  top: 10rem;
  left: 0;
  z-index: 9;
  min-height: 100vh;
  padding: 8em 5em 2em 5em;
  background-color: var(--white);
  background-image: url("https://www.transparenttextures.com/patterns/church.png");
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

.level-1 {
  display: grid;
  grid-template-columns: 65% 1fr;
  grid-auto-rows: min-content;
  grid-gap: 2em;
}

.level-1 h3 {
  font-weight: 600;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.level-1 p {
  margin: 0.5em 0 0 0.5em;
}

.level-1 p small {
  font-size: 1rem;
  opacity: 0.5;
  cursor: pointer;
}

.level-1 p small:hover {
  opacity: 1;
  color: var(--red);
}

.level-1 ul>li {
  font-size: 1.2rem;
  padding: 0.3em;
  transition: color 0.3s;
}

.level-1 ul>li:hover {
  color: var(--red);
  cursor: pointer;
}

.level-1 li:nth-of-type(1) {
  grid-column: 1/2;
  grid-row: 1/4;
}

.level-1 li:nth-of-type(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}

.level-1 li:nth-of-type(3) {
  grid-column: 2/3;
  grid-row: 2/3;
}

.level-1 li:nth-of-type(4) {
  grid-column: 2/3;
  grid-row: 3/4;
}

.level-2 {
  padding: 0.3em 1em;
}

.level-2 li p {
  color: var(--red);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1em 0;
  text-transform: uppercase;
  border-bottom: 1px solid #fde0ac;
}

.level-3 {
  display: flex;
  flex-wrap: wrap;
}

.level-3 li {
  padding: 0.5em 1em !important;
  background-color: var(--pill);
  border-radius: 500px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 1rem !important;
  cursor: pointer;
  color: var(--black);
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  padding-right: 1.5rem;
  color: #009961;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

.features {
  padding: 4rem 0;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 10px;
}

.clients .clients-wrap {
  border-top: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
}

.clients .client-logo {
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  overflow: hidden;
  background: #fff;
  height: 140px;
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}

.clients img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding: 1rem 0;
  background-color: #ffff;
}

.icon img {
  width: 70%;
}

.services .icon-box {
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  border-radius: 18px;
  border-bottom: 5px solid #fff;
}

.services .icon-box .icon {
  width: 64px;
  height: 64px;
  background: #009961;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.services .icon-box .icon i {
  font-size: 28px;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.icon-box h4 a {
  text-decoration: none;
}

.services .icon-box h4 a {
  color: #282828;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
  border-color: #009961;
}

.services .icon-box:hover h4 a {
  color: #009961;
}

.section-title p {
  padding: 1rem 0;
}

.section-title h2 {
  padding: 2rem 0;
  color: #222;
}

.section-title h2::after {
  content: "";
  position: relative;
  display: block;
  width: 50px;
  height: 3px;
  background: #009961;
  top: 0.5rem;
  left: 0;
}

/* -----------------
Section-Two
------------------- */


.contant-3 {
  padding: 1rem 0;
}

.links ul li a {
  text-decoration: none;
  color: black;
  font-size: 1.2rem;
  font-weight: 600;
}

.links ul li {
  list-style: none;
  padding: 0.5rem 0rem;
}

.links {
  border: 2px solid #2e937a;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: rgba(77, 180, 116, 0.2) 0px 7px 29px 0px;
  position: sticky;
  top: 100px;
  background: rgba(255, 255, 255, 0.7);
  z-index: 100;
}

.links button {
  padding: 0.5rem 1rem;
  margin: 0 2rem;
  background-color: #009961;
  border: none;
  border-radius: 10px;
}

.links button a {
  color: #ffff;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
}

.contant-4 h1 {
  font-size: 3.5rem;
}

.contant-4 h1 span {
  color: #2e937a;
}

.contant-4 h3 {
  padding: 1rem 0;
  font-weight: 500;
  font-size: 2rem;
}

.contant-4 p {
  padding: 0.2rem 0;
  font-weight: 500;
  font-size: 1.2rem;
  color: rgb(75, 75, 75);
}

.contant-4 video {
  width: 100%;
  border-radius: 10px;
}

.contant-4 h2 {
  padding: 3rem 0 0 0;
  font-weight: 500;
  font-size: 1.7rem;
}

.contant-4 button {
  margin: 2rem 0;
  padding: 0.5rem 3rem;
  font-weight: 500;
  font-size: 1.2rem;
  background-color: #2e937a;
  color: #fff;
  border: none;
  border-radius: 8px;
}

.contant-4 h4 {
  font-weight: 500;
  font-size: 1.2rem;
  color: #aeaeae;
}

.contant-4 h3 {
  font-weight: 700;
  font-size: 1.5rem;
  color: #222;
  padding: 0rem 1.9rem 1rem 1.9rem;
}

.contant-4 i {
  color: #2e937a;
  font-size: 1.5rem;
  padding: 0 0.5rem;
}

.contant-4 img {
  width: 100%;
  border-radius: 10px;
}

.reward img {
  padding: 0 0 1.8rem 0;
}

.img {
  padding: 2rem 0 0 0;
}

.team .card {
  margin: 2rem 0;
  background-color: #fff;
  border-radius: 10px;
}

.team .card img {
  border-radius: 0;
  border-radius: 10px 10px 0px 0px;
}



.card-body {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  border-radius: 0 0 10px 10px;
}

.card-body h1 {
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  font-family: 'Dosis', sans-serif;
}

.card-body p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #aeaeae;
  text-align: center;
}

.our-team h1 span {
  color: #2e937a;
}

.our-team h1 {
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}

.r-side {
  margin-top: 5rem;
}

/* start  */

.col_half {
  width: 49%;
}

.col_third {
  width: 32%;
}

.col_fourth {
  width: 23.5%;
}

.col_fifth {
  width: 18.4%;
}

.col_sixth {
  width: 15%;
}

.col_three_fourth {
  width: 74.5%;
}

.col_twothird {
  width: 66%;
}

.col_half,
.col_third,
.col_twothird,
.col_fourth,
.col_three_fourth,
.col_fifth {
  position: relative;
  display: inline;
  display: inline-block;
  /* float: left; */
  margin-right: 2%;
  margin-bottom: 20px;
}

.end {
  margin-right: 0 !important;
}


/* Column Grids End */

.wrapper {
  width: 900px;
  margin: 30px auto;
  display: block;
  position: relative;
}

.counter {
  background-color: #ffffff;
  padding: 20px 0;
  border-radius: 5px;
}

.count-title {
  font-size: 40px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
}

.count-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #8c8c8c;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.fa-2x {
  margin: 0 auto;
  float: none;
  display: table;
  color: #2e937a;
  font-size: 3rem;
  padding: 2rem 0;
}

.clients h1 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

.clients {
  padding: 2rem 0 3rem 0;
  margin: 0 2rem;
}

.clients h1 span {
  color: #2e937a;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/business\ phone\ etiquette.png") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
  font-size: 25px;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  background: #009961;
  color: #fff;
  border-radius: 50px;
}

.cta .cta-btn:hover {
  background: #00b371;
}

.cta-btn-container a {
  text-decoration: none;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}



/* ========== =========
@media 
========== ======*/

@media screen and (max-width: 600px) {
  nav {
    padding: 1em 2em;
  }

  nav h1 {
    font-size: 0.9rem;
  }

  .sec-home {
    padding: 8em 2em 2em 2em;
  }

  .level-1 {
    grid-template-columns: 1fr;
  }

  .level-1 li:nth-of-type(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }

  .level-1 li:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }

  .level-1 li:nth-of-type(3) {
    grid-column: 1/2;
    grid-row: 3/4;
  }

  .level-1 li:nth-of-type(4) {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}

@media screen and (max-width: 1000px) {
  html {
    font-size: 0.8rem;
  }

  .navbar-brand img {
    width: 45%;
  }

  .foot-logo img {
    width: 25%;
  }

  /* =========== */

  .links ul li a {
    font-size: 1.2rem;
  }

  .links {
    padding: 2rem 0;
  }

  .team .card {
    width: 16rem !important;
  }
}

@media screen and (max-width: 770px) {

  html {
    font-size: 0.7rem;
  }

  .foot-logo img {
    width: 30%;
  }

  /* ========== */

  .container {
    margin: 0 auto;
  }

  .col-4 {
    max-width: 40% !important;
    flex: 40% !important;
  }

  .col-8 {
    max-width: 60% !important;
    flex: 60% !important;
  }

  .team .card {
    width: 20rem !important;
    display: block !important;
    margin: 2rem auto;
  }

  .our-team .d-flex {
    display: block !important;
  }


}

@media screen and (max-width: 550px) {
  html {
    font-size: 0.7rem;
  }

  /* ========== */

  .sec-two .row {
    display: block !important;
  }

  .col-3 {
    display: none !important;
  }

  .col-8 {
    max-width: 90% !important;
    margin: 0 auto;
  }

  .team .card {
    width: 14rem !important;
    margin: 2rem auto;
  }

  .our-team .d-flex {
    display: flex !important;
  }

  article {
    height: 100% !important;
  }

  main {
    height: 50vh !important;
  }

  .contant-3 {
    padding: 0;
  }

  .cta {
    background-position-x: 590px;
  }

  .left img{
    width: 70%;
    display: block;
    margin: 0 auto;
  }
}

@media screen and (max-width: 400px) {

  .col-8 {
    max-width: 95% !important;
    margin: 0 auto;
  }

  .team .card {
    width: 13rem !important;
    margin: 2rem auto;
  }

}

@media screen and (max-width: 350px) {

  .our-team .d-flex {
    display: block !important;
  }

  .team .card {
    width: 15rem !important;
    margin: 2rem auto !important;
  }

  .team {
    width: 100% !important;
  }

}
