.hero_section {
  height: 40vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1440px) {
  .hero_section {
    height: 35vh;
  }
}
.hero_section .tabs {
  width: 100%;
  padding-bottom: 3%;
  padding-inline: 5%;
}
.hero_section .tabs ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.hero_section .tabs ul li {
  font-size: 1.2rem;
}
.hero_section .tabs ul li a {
  color: #101010;
  text-decoration: none;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hero_section .tabs ul li a:hover {
  color: #C95F11;
}
.hero_section h4 {
  padding-bottom: 3%;
  color: #101010;
  font-size: 1.6rem;
  font-weight: bold;
}
.hero_section h4 span {
  color: #C95F11;
}
.hero_section h2 {
  color: #57368C;
  font-size: 5rem;
  text-transform: uppercase;
  font-weight: bold;
}

.solutions_section {
  padding-inline: 5%;
}
.solutions_section .container-fluid .row .col {
  padding-bottom: 2%;
}
.solutions_section .container-fluid .row .col .solution_card {
  height: 60vh;
  position: relative;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 6% 6%;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.solutions_section .container-fluid .row .col .solution_card:hover .img_container img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.solutions_section .container-fluid .row .col .solution_card .img_container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.solutions_section .container-fluid .row .col .solution_card .img_container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.solutions_section .container-fluid .row .col .solution_card .text {
  z-index: 55;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.solutions_section .container-fluid .row .col .solution_card .text .solution_name {
  width: 75%;
  color: #FFFFFF;
}
.solutions_section .container-fluid .row .col .solution_card .text .btn_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25%;
}
.solutions_section .container-fluid .row .col .solution_card .text .btn_container button {
  background-color: #57368C;
  width: 100%;
  padding: 8% 10%;
  border: 0;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.solutions_section .container-fluid .row .col .solution_card .text .btn_container button:hover {
  background-color: #C95F11;
}
.solutions_section .container-fluid .row .col .solution_card .text .btn_container button a {
  color: #FFFFFF;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.solutions_section .container-fluid .row .col .solution_card .text .btn_container button a img {
  margin-left: 5%;
  width: 15%;
}
.solutions_section .container-fluid .row .col .mobile_card {
  display: none;
}

.contact_section {
  padding-bottom: 5%;
}
.contact_section .logo_container {
  padding-block: 8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact_section .logo_container .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20%;
}
.contact_section .logo_container .logo img {
  width: 75%;
}
.contact_section .logo_container .line {
  width: 30%;
  height: 2px;
  background-color: #555555;
}
.contact_section .learn_more {
  -webkit-padding-start: 5%;
          padding-inline-start: 5%;
  background: linear-gradient(135deg, #57368C 50%, #FFFFFF 100%);
}
.contact_section .learn_more .container-fluid .row .text_col {
  padding-block: 5%;
  position: relative;
}
.contact_section .learn_more .container-fluid .row .text_col::after {
  content: url(../images/stroke.svg);
  position: absolute;
  bottom: 0%;
  left: 0;
  z-index: 1;
}
.contact_section .learn_more .container-fluid .row .text_col h2 {
  padding-bottom: 5%;
  font-size: 5rem;
  color: #FFFFFF;
  font-weight: bold;
}
.contact_section .learn_more .container-fluid .row .text_col h2 span {
  color: #101010;
  font-size: 1rem;
  font-weight: normal;
}
.contact_section .learn_more .container-fluid .row .text_col p {
  padding-bottom: 5%;
  color: #FFFFFF;
  font-size: 1.8rem;
  -webkit-padding-end: 10%;
          padding-inline-end: 10%;
}
.contact_section .learn_more .container-fluid .row .text_col button {
  border: 0;
  padding: 2% 6%;
  text-align: center;
  background-color: #C95F11;
  border-radius: 50px;
  position: relative;
  z-index: 5;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.contact_section .learn_more .container-fluid .row .text_col button:hover {
  background-color: #FFFFFF;
}
.contact_section .learn_more .container-fluid .row .text_col button:hover a {
  color: #C95F11;
}
.contact_section .learn_more .container-fluid .row .text_col button a {
  color: #FFFFFF;
  text-decoration: none;
}
.contact_section .learn_more .container-fluid .row .man_img_col {
  position: relative;
}
.contact_section .learn_more .container-fluid .row .man_img_col::after {
  content: url(../images/men.svg);
  position: absolute;
  bottom: -5%;
  right: -12%;
  width: 100%;
  z-index: 5;
}
.contact_section .learn_more .container-fluid .row .man_img_col::before {
  content: url(../images/stroke.svg);
  position: absolute;
  top: 5%;
  left: 0%;
  width: 100%;
}

@media (max-width: 768px) {
  .hero_section {
    height: 65vh;
    width: 100%;
  }
  .hero_section .tabs ul li {
    font-size: 1rem;
  }
  .hero_section h4 {
    font-size: 1.4rem;
  }
  .hero_section h2 {
    font-size: 2.8rem;
  }
  .contact_section .learn_more {
    padding-inline: 5%;
  }
  .contact_section .learn_more .container-fluid .row .text_col {
    padding-block: 5%;
    position: relative;
  }
  .contact_section .learn_more .container-fluid .row .text_col::after {
    display: none;
  }
  .contact_section .learn_more .container-fluid .row .text_col h2 {
    font-size: 2.8rem;
  }
  .contact_section .learn_more .container-fluid .row .text_col h2 span {
    font-size: 1.2rem;
  }
  .contact_section .learn_more .container-fluid .row .text_col p {
    font-size: 1.4rem;
    -webkit-padding-end: 10%;
            padding-inline-end: 10%;
  }
  .contact_section .learn_more .container-fluid .row .man_img_col {
    height: 50vh;
  }
  .contact_section .learn_more .container-fluid .row .man_img_col::after {
    content: url(../images/men.svg);
    position: absolute;
    bottom: -6%;
    right: 60%;
    width: 50%;
    z-index: 5;
  }
  .contact_section .learn_more .container-fluid .row .man_img_col::before {
    display: none;
  }
}
@media (max-width: 500px) {
  .hero_section {
    height: 30vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    padding-bottom: 10%;
  }
  .hero_section .tabs {
    display: none;
  }
  .hero_section h4 {
    display: none;
  }
  .hero_section h2 {
    color: #57368C;
    font-size: 2.4rem;
    text-transform: uppercase;
    font-weight: bold;
  }
  .solutions_section {
    padding-inline: 2%;
    padding-bottom: 5%;
  }
  .solutions_section .container-fluid .row .col {
    padding: 0;
  }
  .solutions_section .container-fluid .row .col .solution_card {
    display: none;
  }
  .solutions_section .container-fluid .row .col a {
    text-decoration: none;
  }
  .solutions_section .container-fluid .row .col a .mobile_card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    height: 12vh;
    border-radius: 12px;
    margin-bottom: 3%;
  }
  .solutions_section .container-fluid .row .col a .mobile_card .img_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .solutions_section .container-fluid .row .col a .mobile_card .img_container img {
    border-radius: 12px;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .solutions_section .container-fluid .row .col a .mobile_card .text {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 55;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .solutions_section .container-fluid .row .col a .mobile_card .text h2 {
    color: #FFFFFF;
    text-transform: capitalize;
    font-size: 1.2rem;
  }
  .contact_section {
    display: none;
  }
}