@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300&display=swap");
* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0; }

html {
  margin: 0;
  padding: 0; }

img {
  max-width: 100%;
  height: auto;
  width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px; }

h2 {
  color: #E59625;
  text-align: center;
  font-size: 30px; }

h3 {
  font-size: 25px; }

p {
  font-size: 18px; }
  @media (max-width: 768px) {
    p {
      font-size: 17px; } }

picture {
  display: flex; }

header {
  padding-top: 40px;
  padding-bottom: 40px;
  background: white; }
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  header h3 {
    margin-bottom: 30px; }
  header nav.menu {
    font-size: 24px; }
    @media (max-width: 992px) {
      header nav.menu {
        font-size: 20px;
        display: flex;
        flex-direction: column;
        line-height: 1.5;
        padding-left: 20px; } }
    @media (max-width: 768px) {
      header nav.menu {
        font-size: 3.2vw; } }
    header nav.menu span {
      color: #007CC2; }
  header .logo {
    max-width: 224px; }
    @media (max-width: 768px) {
      header .logo {
        width: 29vw; }
        header .logo img {
          max-width: 120px; } }

.hero-banner {
  position: relative; }
  .hero-banner .info {
    max-width: 460px;
    padding: 34px;
    position: absolute;
    left: calc((100% - 1150px) / 2);
    top: 50%;
    transform: translatey(-50%);
    background: rgba(255, 255, 255, 0.9); }
    @media (max-width: 1200px) {
      .hero-banner .info {
        left: 20px; } }
    @media (max-width: 992px) {
      .hero-banner .info {
        padding: 27px;
        width: 90%;
        left: 5%;
        bottom: 5%;
        top: auto;
        transform: translateX(0);
        max-width: 100%; } }
    @media (max-width: 768px) {
      .hero-banner .info {
        padding: 6vw; } }
    .hero-banner .info h1 {
      font-size: 34px;
      color: #E59625;
      margin: 0; }
      @media (max-width: 992px) {
        .hero-banner .info h1 {
          font-size: 30px; } }
      @media (max-width: 768px) {
        .hero-banner .info h1 {
          font-size: 5vw; } }
  .hero-banner p {
    line-height: 1.8;
    margin-top: 10px;
    margin-bottom: 0; }
    @media (max-width: 768px) {
      .hero-banner p {
        font-size: 4vw; }
        .hero-banner p br {
          display: none; } }

.who-we-are {
  padding: 45px 15px; }
  @media (max-width: 768px) {
    .who-we-are {
      padding: 30px 15px; } }
  .who-we-are h2 {
    margin: 0 auto 35px; }
    @media (max-width: 768px) {
      .who-we-are h2 {
        margin: 0 auto 20px; } }
  .who-we-are p {
    line-height: 1.8;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center; }

.services {
  background: #F4F4F4; }
  .services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px; }
    @media (max-width: 768px) {
      .services .container {
        padding: 30px; } }
    .services .container > p {
      text-align: center;
      color: #636363;
      font-style: italic;
      font-size: 18px;
      line-height: 1.8; }
  .services .list-services {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 80px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.25);
    padding-bottom: 40px; }
    @media (max-width: 992px) {
      .services .list-services {
        grid-gap: 40px; } }
    @media (max-width: 768px) {
      .services .list-services {
        grid-template-columns: 1fr;
        grid-gap: 0;
        margin-bottom: 30px;
        padding-bottom: 30px; } }
    .services .list-services > div:first-child ul {
      column-count: 2;
      column-gap: 80px; }
      @media (max-width: 992px) {
        .services .list-services > div:first-child ul {
          column-gap: 40px; } }
      @media (max-width: 768px) {
        .services .list-services > div:first-child ul {
          column-gap: 0;
          column-count: 1; } }
    .services .list-services h3 {
      margin-bottom: 30px;
      margin-top: 35px; }
      @media (max-width: 768px) {
        .services .list-services h3 {
          margin-bottom: 15px;
          margin-top: 25px;
          font-size: 25px; } }
    .services .list-services ul li {
      list-style-type: none;
      margin-bottom: 10px;
      padding-left: 17px;
      position: relative; }
      .services .list-services ul li:after {
        content: "";
        position: absolute;
        left: 0;
        top: 4px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background-color: #E59625; }

.contact-info {
  padding: 25px 15px;
  background: #007CC2;
  color: white;
  text-align: center;
  font-size: 21px;
  font-weight: bold; }
  .contact-info a {
    display: block;
    text-decoration: none;
    color: white;
    margin: 10px auto 0;
    font-size: 21px;
    font-weight: bold; }

footer {
  background: #A0A0A0;
  padding: 65px 0;
  color: white;
  font-size: 18px; }
  @media (max-width: 768px) {
    footer {
      padding: 45px 0;
      text-align: center; } }
