.hero_section {
  height: 100vh;
  width: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.hero_section .social_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  right: 5%;
  top: 40%;
}
.hero_section .social_column a {
  color: #101010;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hero_section .social_column a svg {
  margin-bottom: 5vh;
}
.hero_section .social_column a:hover {
  color: #C95F11;
}
.hero_section .hero_title {
  text-align: center;
  font-weight: bold;
  color: #101010;
  font-size: 5rem;
  padding-bottom: 3%;
  padding-inline: 15%;
}
.hero_section .hero_title .img_container {
  padding-top: 3%;
  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;
}
.hero_section .hero_title .img_container img {
  width: 25%;
}
.hero_section .hero_desc {
  width: 50%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.hero_section .hero_desc p {
  color: #FFFFFF;
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 3%;
}
.hero_section .hero_desc button {
  background-color: #57368C;
  border: 1px solid #57368C;
  padding: 2% 4%;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hero_section .hero_desc button:hover {
  background-color: #FFFFFF;
}
.hero_section .hero_desc button:hover a {
  color: #57368C;
}
.hero_section .hero_desc button a {
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
}
@media (max-width: 1536px) and (max-height: 731px) {
  .hero_section .hero_title {
    font-size: 4rem;
  }
  .hero_section .hero_title .img_container .img {
    width: 25%;
  }
  .hero_section .hero_desc p {
    font-size: 1.1rem;
  }
}
.hero_section .mobile_logo {
  display: none;
}

.journey_section .container-fluid .row .img_col {
  padding: 0;
  position: relative;
}
.journey_section .container-fluid .row .img_col::after {
  content: url(../images/dots.svg);
  position: absolute;
  bottom: -8%;
  right: -4%;
  z-index: 1;
}
.journey_section .container-fluid .row .img_col .img_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;
  z-index: 5;
}
.journey_section .container-fluid .row .img_col .img_container img {
  z-index: 5;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.journey_section .container-fluid .row .desc_col {
  position: relative;
  padding: 0;
}
.journey_section .container-fluid .row .desc_col .title {
  z-index: 6;
  background-color: #C95F11;
  color: #101010;
  font-size: 2.4rem;
  font-weight: bold;
  padding-block: 5%;
  text-align: center;
  position: absolute;
  top: 0;
  left: -10%;
  width: -webkit-fill-available;
}
.journey_section .container-fluid .row .desc_col .desc {
  padding-top: 25%;
  padding-inline: 7%;
  position: relative;
}
.journey_section .container-fluid .row .desc_col .desc p {
  font-weight: bold;
  color: #101010;
  font-size: 1.6rem;
  text-align: justify;
}
.journey_section .container-fluid .row .desc_col .desc .overflow_arrow {
  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;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), to(rgba(255, 255, 255, 0.9)));
  background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-box-shadow: -1px -20px 12px 20px rgba(255, 255, 255, 0.8705882353);
          box-shadow: -1px -20px 12px 20px rgba(255, 255, 255, 0.8705882353);
  padding-block: 5%;
  position: absolute;
  width: -webkit-fill-available;
  top: 75%;
}
.journey_section .container-fluid .row .desc_col .desc .overflow_arrow img {
  width: 90px;
  cursor: pointer;
}

.experience_section {
  padding: 10% 5%;
}
.experience_section .container-fluid .row .col-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.experience_section .container-fluid .row .col-12 .img_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;
  height: 50%;
}
.experience_section .container-fluid .row .col-12 .img_container img {
  width: 100%;
}
.experience_section .container-fluid .row .col-12 h4 {
  text-align: center;
  color: #101010;
  line-height: 2;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: bold;
}
.experience_section .container-fluid .row .col-12 h4 span {
  font-weight: lighter;
  text-align: center;
}

.pride_section .container-fluid .row .desc_col {
  position: relative;
  padding: 0;
}
.pride_section .container-fluid .row .desc_col .title {
  z-index: 6;
  background-color: #C95F11;
  color: #101010;
  font-size: 2.4rem;
  font-weight: bold;
  padding-block: 5%;
  text-align: center;
  position: absolute;
  top: 0;
  right: -10%;
  text-transform: uppercase;
  width: -webkit-fill-available;
}
@media (max-width: 1564px) {
  .pride_section .container-fluid .row .desc_col .title {
    right: -23%;
  }
}
@media (max-width: 1398px) {
  .pride_section .container-fluid .row .desc_col .title {
    right: -30%;
  }
}
@media (max-width: 1323px) {
  .pride_section .container-fluid .row .desc_col .title {
    right: -36%;
  }
}
@media (max-width: 1265px) {
  .pride_section .container-fluid .row .desc_col .title {
    right: -42%;
  }
}
@media (max-width: 1211px) {
  .pride_section .container-fluid .row .desc_col .title {
    right: -50%;
  }
}
@media (max-width: 1143px) {
  .pride_section .container-fluid .row .desc_col .title {
    right: -56%;
  }
}
@media (max-width: 1105px) {
  .pride_section .container-fluid .row .desc_col .title {
    right: -63%;
  }
}
@media (max-width: 1055px) {
  .pride_section .container-fluid .row .desc_col .title {
    right: -75%;
  }
}
@media (max-width: 991px) {
  .pride_section .container-fluid .row .desc_col .title {
    right: 0;
  }
}
.pride_section .container-fluid .row .desc_col .desc {
  padding-top: 25%;
  padding-inline: 8%;
  position: relative;
}
.pride_section .container-fluid .row .desc_col .desc p {
  color: #101010;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: bold;
}
.pride_section .container-fluid .row .desc_col .desc .overflow_arrow {
  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;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), to(rgba(255, 255, 255, 0.9)));
  background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-box-shadow: -1px -20px 12px 20px rgba(255, 255, 255, 0.8705882353);
          box-shadow: -1px -20px 12px 20px rgba(255, 255, 255, 0.8705882353);
  padding-block: 5%;
  position: absolute;
  width: -webkit-fill-available;
  top: 75%;
}
.pride_section .container-fluid .row .desc_col .desc .overflow_arrow img {
  width: 90px;
  cursor: pointer;
}
.pride_section .container-fluid .row .img_col {
  padding: 0;
  position: relative;
}
.pride_section .container-fluid .row .img_col::after {
  content: url(../images/dots.svg);
  position: absolute;
  bottom: -8%;
  left: -4%;
  z-index: 1;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.pride_section .container-fluid .row .img_col .img_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;
  z-index: 5;
}
.pride_section .container-fluid .row .img_col .img_container img {
  z-index: 5;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.iso_section {
  height: 100vh;
  width: 100%;
  padding: 10% 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.iso_section .text_container {
  width: 80%;
  text-align: center;
}
.iso_section .text_container h2 {
  color: #101010;
  font-size: 3.2rem;
  font-weight: bold;
  padding-bottom: 3%;
  text-transform: uppercase;
}
.iso_section .text_container p {
  color: #101010;
  font-size: 1.4rem;
}

.solutions_section {
  padding: 5%;
}
.solutions_section .title {
  padding-bottom: 5%;
}
.solutions_section .title h2 {
  font-weight: lighter;
  font-size: 2.4rem;
  color: #101010;
  border-bottom: 4px solid transparent;
}
.solutions_section .title h2 span {
  color: #57368C;
  border-bottom: 4px solid #57368C;
  font-weight: bold;
}
.solutions_section .container-fluid {
  padding-inline: 5%;
}
.solutions_section .container-fluid .row .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 5%;
}
.solutions_section .container-fluid .row .col .rounded-circle {
  -webkit-box-shadow: 0 0 10px 0 rgba(16, 16, 16, 0.3);
          box-shadow: 0 0 10px 0 rgba(16, 16, 16, 0.3);
}
.solutions_section .container-fluid .row .col h3 {
  padding-block: 5%;
  color: #57368C;
  font-weight: bold;
}
.solutions_section .container-fluid .row .col p {
  color: #101010;
  font-size: 1.2rem;
  -webkit-padding-end: 3%;
          padding-inline-end: 3%;
}
.solutions_section .container-fluid .row .all_link {
  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;
}
.solutions_section .container-fluid .row .all_link a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.solutions_section .container-fluid .row .all_link a:hover p {
  color: #C95F11;
}
.solutions_section .container-fluid .row .all_link a:hover img {
  -webkit-margin-start: 2%;
          margin-inline-start: 2%;
}
.solutions_section .container-fluid .row .all_link a img {
  width: 10%;
}
.solutions_section .container-fluid .row .all_link a p {
  color: #57368C;
  font-size: 1.4rem;
}

.strategic_section {
  height: 100vh;
  width: 100%;
  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;
  overflow: hidden;
}
.strategic_section .top_left {
  position: absolute;
  top: -2%;
  height: 70%;
  left: -34%;
  width: 100%;
}
.strategic_section .bottom_right {
  position: absolute;
  bottom: -2%;
  right: -34%;
  width: 100%;
  height: 70%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.strategic_section h2 {
  text-align: center;
  color: #FFFFFF;
  width: 70%;
  font-size: 3.4rem;
  text-transform: uppercase;
  line-height: 1.8;
}

.schedule_call_section {
  padding: 5%;
}
.schedule_call_section .logo_text {
  padding-bottom: 5%;
}
.schedule_call_section .logo_text .img_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;
  padding-bottom: 5%;
}
.schedule_call_section .logo_text .img_container img {
  width: 15%;
}
.schedule_call_section .logo_text .desc p {
  color: #555555;
  text-align: center;
  font-size: 1.4rem;
}
.schedule_call_section .logo_text button {
  display: none;
  background-color: #57368C;
  padding: 1% 2%;
  border-radius: 50px;
}
.schedule_call_section .logo_text button a {
  text-decoration: none;
  color: #FFFFFF;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .hero_section .hero_title {
    font-size: 2.8rem;
    padding-inline: 5%;
  }
  .hero_section .hero_title span {
    display: none;
  }
  .hero_section .hero_title .img_container {
    padding-top: 3%;
  }
  .hero_section .hero_title .img_container img {
    width: 27%;
  }
  .hero_section .hero_desc {
    width: 80%;
  }
  .hero_section .hero_desc p {
    font-size: 1.2rem;
  }
  .hero_section .social_column {
    display: none;
  }
  .journey_section .container-fluid .row .img_col::after {
    display: none;
  }
  .journey_section .container-fluid .row .desc_col {
    position: relative;
    padding: 0;
  }
  .journey_section .container-fluid .row .desc_col .title {
    font-size: 1.8rem;
    position: unset;
    width: 100%;
  }
  .journey_section .container-fluid .row .desc_col .desc {
    padding-top: 5%;
  }
  .journey_section .container-fluid .row .desc_col .desc p {
    font-size: 1.4rem;
  }
  .journey_section .container-fluid .row .desc_col .desc .overflow_arrow {
    width: 100%;
    top: 50%;
    left: 0;
  }
  .experience_section {
    padding: 20% 5%;
  }
  .experience_section .container-fluid .row .col-12 {
    padding-bottom: 5%;
  }
  .experience_section .container-fluid .row .col-12 .img_container {
    padding-bottom: 5%;
  }
  .experience_section .container-fluid .row .col-12 h4 {
    font-size: 1.8rem;
  }
  .pride_section .container-fluid .row .desc_col {
    position: relative;
    padding: 0;
  }
  .pride_section .container-fluid .row .desc_col .title {
    font-size: 1.8rem;
    width: 100%;
    text-transform: uppercase;
    right: 0;
  }
  .pride_section .container-fluid .row .desc_col .desc .overflow_arrow {
    width: 100%;
    top: 70%;
    left: 0;
  }
  .pride_section .container-fluid .row .img_col {
    padding-top: 5%;
  }
  .pride_section .container-fluid .row .img_col::after {
    display: none;
  }
  .iso_section {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .iso_section .text_container {
    width: 90%;
  }
  .iso_section .text_container h2 {
    font-size: 2.8rem;
  }
  .solutions_section .container-fluid .row .col {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 10%;
  }
  .solutions_section .container-fluid .row .col p {
    font-size: 1.4rem;
    -webkit-padding-end: 0%;
            padding-inline-end: 0%;
    text-align: center;
  }
  .solutions_section .container-fluid .row .all_link {
    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 .all_link a {
    width: 50%;
  }
  .solutions_section .container-fluid .row .all_link a p {
    font-size: 1.6rem;
  }
  .strategic_section .top_left {
    display: none;
  }
  .strategic_section .bottom_right {
    display: none;
  }
  .strategic_section h2 {
    width: 90%;
    font-size: 2.8rem;
  }
  .schedule_call_section {
    padding-block: 10%;
  }
  .schedule_call_section .logo_text .img_container img {
    width: 35%;
  }
  .schedule_call_section button {
    display: block;
    background-color: #57368C;
    padding: 1% 2%;
    border-radius: 50px;
  }
  .schedule_call_section button a {
    text-decoration: none;
    color: #FFFFFF;
    text-transform: capitalize;
  }
}
@media (max-width: 500px) {
  .hero_section {
    position: relative;
  }
  .hero_section .hero_title {
    font-size: 2rem;
    padding-inline: 0%;
    padding-bottom: 5%;
  }
  .hero_section .hero_desc {
    background-color: #FFFFFF;
    width: 95%;
    border-radius: 8px;
    padding: 6% 6%;
    z-index: 55;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  }
  .hero_section .hero_desc p {
    color: #555555;
    font-size: 1rem;
    padding-bottom: 6%;
    text-align: start;
  }
  .hero_section .mobile_logo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 20vh;
    background-color: #FFFFFF;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero_section .mobile_logo .line {
    width: 35%;
    height: 1px;
    background-color: #555555;
  }
  .hero_section .mobile_logo .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%;
  }
  .journey_section .container-fluid .row {
    position: relative;
  }
  .journey_section .container-fluid .row .img_col {
    height: 40vh;
  }
  .journey_section .container-fluid .row .img_col::after {
    display: none;
  }
  .journey_section .container-fluid .row .img_col .img_container {
    height: 100%;
  }
  .journey_section .container-fluid .row .img_col .img_container img {
    height: 100%;
  }
  .journey_section .container-fluid .row .desc_col {
    position: absolute;
    top: 2.5%;
    left: 2.5%;
    padding: 0;
    z-index: 5;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    width: 95%;
    height: 95%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .journey_section .container-fluid .row .desc_col .title {
    font-size: 1.4rem;
    position: unset;
    width: 100%;
    background-color: transparent;
    color: #C95F11;
  }
  .journey_section .container-fluid .row .desc_col .desc {
    padding-top: 2%;
    padding-inline: 3%;
  }
  .journey_section .container-fluid .row .desc_col .desc p {
    font-size: 1rem;
    color: #FFFFFF;
  }
  .journey_section .container-fluid .row .desc_col .desc .overflow_arrow {
    width: 100%;
    top: 50%;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(56.9%, rgba(0, 0, 0, 0)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0) 56.9%);
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
  .experience_section {
    padding: 20% 5%;
  }
  .experience_section .container-fluid .row .col-12 {
    padding-bottom: 5%;
  }
  .experience_section .container-fluid .row .col-12 .img_container {
    padding-bottom: 5%;
  }
  .experience_section .container-fluid .row .col-12 h4 {
    font-size: 1.2rem;
  }
  .pride_section .container-fluid .row .desc_col {
    position: relative;
    padding: 0;
  }
  .pride_section .container-fluid .row .desc_col .title {
    font-size: 1.4rem;
    width: 100%;
    text-transform: uppercase;
    right: 0;
  }
  .pride_section .container-fluid .row .desc_col .desc {
    padding-top: 30%;
  }
  .pride_section .container-fluid .row .desc_col .desc p {
    font-size: 1.2rem;
  }
  .pride_section .container-fluid .row .desc_col .desc .overflow_arrow {
    width: 95%;
    top: 60%;
  }
  .pride_section .container-fluid .row .img_col {
    padding-top: 5%;
  }
  .pride_section .container-fluid .row .img_col::after {
    display: none;
  }
  .iso_section {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #FFFFFF !important;
    height: 50vh;
  }
  .iso_section .text_container {
    width: 90%;
  }
  .iso_section .text_container h2 {
    text-align: start;
    font-size: 1.1rem;
    color: #57368C;
  }
  .iso_section .text_container p {
    text-align: start;
    font-size: 1rem;
  }
  .solutions_section {
    background-color: #F4F4F4;
  }
  .solutions_section .title {
    padding-bottom: 10%;
    margin-top: -10%;
  }
  .solutions_section .title h2 {
    font-size: 1.8rem;
    color: #57368C;
    text-align: center;
  }
  .solutions_section .title h2 span {
    border: 0;
    font-weight: normal;
  }
  .solutions_section .container-fluid .row .col {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 10%;
  }
  .solutions_section .container-fluid .row .col h3 {
    text-align: center;
  }
  .solutions_section .container-fluid .row .col p {
    font-size: 1.2rem;
  }
  .strategic_section {
    height: 40vh;
  }
  .strategic_section .top_left {
    display: none;
  }
  .strategic_section .bottom_right {
    display: none;
  }
  .strategic_section h2 {
    width: 95%;
    font-size: 1.4rem;
  }
  .schedule_call_section {
    padding-block: 10%;
  }
  .schedule_call_section .logo_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .schedule_call_section .logo_text .img_container img {
    width: 35%;
  }
  .schedule_call_section .logo_text .desc {
    padding-bottom: 5%;
  }
  .schedule_call_section .logo_text .desc p {
    font-size: 1rem;
  }
  .schedule_call_section .logo_text button {
    margin-inline: auto;
    padding: 2% 4%;
  }
}