@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/MaterialDesign-Webfont/7.4.47/css/materialdesignicons.min.css');
:root {
  --orange: #f5601b;
  --orange-light: #f7cb2d;
  --mid-orange: #f4966c;
  --darker-gray: #071330;
  --medium-gray: #151b25;
  --med-gray: #214358;
  --light-gray: #F2F6F9;
  --mid-gray: #E7EEF3;
  --lighest-gray: #aeb8c4;
  --light-blue: #a2c4e0;
  --dark-blue: #071330;
  --medium-blue: #202358;
  --stroke-gray: #d4d4d4;
  --green: #49CBA3;
  --black: #000;
  --white: #fff;
  --text-color: #1F1F1F;
  --blue-light-bg: #EEF3F7;
  --blue: #3e45eb;
  --text-color: #546E7A;
}

.container {
  max-width: 1140px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 18px;
  color: var(--text-color);
  font-family: "Poppins", serif;
  font-weight: 400;
  line-height: 1.65;
  padding-top: 68px;
}

#mainbanner {
  height: 80vh;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

#mainbanner h1 {
  font-size: 80px;
  text-align: center;
  margin: -120px 0 0;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

#mainbanner h1 .letter {
  font-size: 200px;
  position: absolute;
  width: 100px;
  height: 100px;
  left: 0;
  right: 0;
  top: -75px;
  margin: 0 auto;
  text-align: center;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
}

#mainbanner ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
}

#mainbanner a {
  color: var(--white);
  text-decoration: none;
}

#header {
  position: fixed;
  width: 100%;
  left: 0;
  padding: 20px;
  z-index: 100;
  top: 0;
  background-color: var(--blue);
}

#header #logo {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
}

#mainmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  list-style: none;
}

#mainmenu li {
  margin: 0 10px;
}

#mainmenu li a {
  color: var(--white);
  text-decoration: none;
}

.section-title {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.section-title h3 {
  font-size: 48px;
  font-weight: 600;
  margin: 0;
}

.section-title h3 span {
  color: var(--blue);
}

.section-title .section-letter {
  line-height: 1.2;
  color: rgba(0, 0, 0, .07);
  z-index: 1;
  position: absolute;
  top: 50%;
  left: -60px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 150px;
  font-weight: 600;
  pointer-events: none;
  text-transform: uppercase;
}

.main-section .container {
  box-shadow: 0 30px 50px 0 rgba(1,1,1,.15);
  position: relative;
  margin-top: -120px;
  padding-bottom: 100px;
  z-index: 10;
  background-color: var(--white);
}


.main-section .section {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 100px 0 0;
}

.main-section .section:after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: var(--stroke-gray);
  margin: 60px auto 0;
  display: block;
}

.main-section ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.main-section ol > li {
  position: relative;
  counter-increment: item;
  padding-left: 30px;
}

.main-section ol > li::before {
  content: counter(item)")";
  display: block;
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--blue);
}

.main-section #industry .section:after {
  display: none;
}

.main-section .section h4 {
  font-size: 20px; 
  font-weight:700;
}

#footer {
  padding: 180px 0 40px;
  margin-top: -120px;
  background-color: #37474F;
  color: var(--white);
}

#footer .container {
  max-width: 800px;
  text-align: center;
}

#footer .container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer .container li:not(:first-child) {
  margin-top: 10px;
}

#footer li a {
  color: var(--white);
}

.bottom-container {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.bottom-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media only screen and (max-width: 1023px) {
  .main-section .section {
    max-width: 100%;
    padding: 100px 40px 0;
  }

  #mainbanner h1 {
    margin-top: -70px;
  }

  #mainbanner h1 .letter {
    top: -102px;
  }

  #mainbanner {
    height: 400px;
  }

  #mainbanner h1 {
    font-size: 40px;
  }

  body {
    font-size: 16px;
    padding-top: 65px;
  }

  .container {
    width: 90%;
  }

  .section-title h3 {
    font-size: 32px;
  }

  .main-section .section h4 {
    font-size: 18px;
  }

  .section-title .section-letter {
    left: 0;
    font-size: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .main-section .section {
    padding: 100px 30px 0;
  }

  .section-title h3 { 
    font-size: 28px;
  }
}

@media only screen and (max-width: 568px) {
  .logo-col {
    text-align: center;
  }

  #mainmenu ul {
    justify-content: center;
  }

  #mainmenu li {
    margin: 0 4px;
  }

  #mainbanner ul {
    flex-direction: column;
    gap: 0px;
  }

  .bottom-container ul {
    flex-direction: column;
  }
}