body {
  margin: 0;
}

body,
body * {
  box-sizing: border-box;
}

header {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  height: 60px;
  border-bottom: 1px solid #ececec;
  padding: 0 10px;
}

header,
h1,
h2,
h3 {
  color: #4271b5;
}

header .fas {
  margin-left: 5px;
  transition: transform 0.4s ease-in-out;
}

header .wrap>a:first-child {
  color: #4271b5;
}

.active a {
  padding-bottom: 17px;
  border-bottom: 5px solid #4271b5;
  cursor: pointer;
  color: #4271b5;
}

.navigation {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 10px;
  margin-top: 20px;
}

ul a {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 15px;
  padding: 10px;
  color: #5292ec;
  transition: color .4s ease;
}

.dropdown {
  display: block;
  position: relative;
  padding-bottom: 40px;
}

.dropdown:hover .fas:first-of-type {
  transform: rotate(180deg);
  padding: 0;
  margin-left: 5px;
}

.dropdown:hover li>a {
  color: #4271b5;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  width: 300px;
  z-index: 1;
  border: 1px solid #4271b5;
  border-radius: 10px;
  font-size: 10px;
  padding: 10px;
  font-family: 'Rubik', sans-serif;
  background-color: #4271b5;
}

.dropdown-content div {
  display: grid;
  grid-template-columns: 1fr;
}

.dropdown-content a {
  text-transform: none;
  font-weight: normal;
  font-size: 14px;
  padding: 0 10px;
  margin-bottom: 5px;
  color: #fff;
  border: 1px solid transparent;
  border-opacity: 1;
  transition: border .2s ease;
}

.dropdown-content a:hover {
  border-left: 1px solid #fff;
  border-opacity: 0;
}

.navigation li>a:hover {
  color: #4271b5;
}

.company-name {
  float: left;
  font-size: 30px;
  margin-top: 10px;
  text-decoration: none;
  color: #4271b5;
}

.container {
    display: none;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s ease-out;
  background-color: #4271b5;
}

section {
  padding: 0 10px;
}

section h2 {
  font-size: 30px;
  margin: 100px 0 50px;
}

section h3 {
  font-size: 20px;
  font-family: 'Rubik', sans-serif;
}

.project {
  margin-bottom: 30px;
  border: 1px solid #4271b5;
  border-radius: 10px;
  padding: 0 10px;
}

.project h3 {
  padding-bottom: 15px;
  border-bottom: 1px solid #4271b5;;
}

.content {
  display: none;
  transition: max-height 0.2s ease-out;
}

.content p:first-child {
    border-top: 1px solid #4271b5;
    padding-top: 10px;
}

.project > div:first-of-type {
    border-top: 1px solid #4271b5;
}

.collapsible {
  display: inline-block;
  padding: 20px 0 0 0;
  margin-bottom: 10px;
  color: #5292ec;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: #fff;
  font-size: 16px;
}

.collapsible:hover {
  color: #4271b5;
}

.project a {
  color: #5292ec;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.project a:hover {
  color: #4271b5;
}

footer {
  height: 80px;
  border-top: 1px solid #4271b5;
  position: relative;
  background-color: #4271bf;
  color: #fff;
  text-align: center;
  padding: 0 10px;
}

footer a {
  padding: 10px;
  color: #fff;
  background-color: transparent;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color .2s ease;
  transition: color .2s ease;
}

footer a:visited {
  padding: 10px;
  color: #fff;
  text-decoration: none;
}

.inline {
  display: inline-block;
}

.inline:first-child {
  padding: 20px 0 10px;
}

footer a:hover {
  background-color: #fff;
  color: #4271b5;
  border-radius: 10px;
}

@media screen and (max-width: 966px) {
 
  body * {
    font-size: 15px;
    max-width: 960px;
  }
  .company-name {
    font-size: 20px;
    margin-top: 20px;
  }
  header {
      position: relative;
  }
  .navigation {
        display: grid;
        grid-template-columns: repeat(4, auto);
        margin: 0;
        padding: 5px;
        font-size: 15px;
        border: 1px solid #4271b5;
        border-radius: 10px;
        float: none;
        position: absolute;
        top: 70px;
        left: 5px;
    }
    .navigation a {
        padding: 0;
        margin: 0;
        font-size: 13px;
    }
    .navigation li {
        padding: 0;
        margin: 0
    }
    .navigation div {
        padding: 0;
        margin: 0
    }
    .navigation .fas {
        display: none;
    }
    .dropdown:hover .dropdown-content {
        display: none;
    }
    .active a {
        border-bottom: 2px solid #4271b5;
    }
  .container {
      display: block;
      margin-top: 10px;
      float: right;
  }
  .change .bar1 {
      transform: rotate(-50deg) translate(-9px, 6px);
  }
  .change .bar2 {
    background-color: white;
  }
  .change .bar3 {
      transform: rotate(50deg) translate(-8px, -8px);
  }
  section h2 {
      margin-top: 70px;
      margin-bottom: 25px;
  }
  footer {
    height: 100%;
    width: 100%;
  }
  footer span {
    position: static;
  }
  footer .wrap div:last-child {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 355px) {
    .company-name {
    font-size: 20px;
    margin-top: 5px;
    max-width: 85%;
    width: 100%;
  }
    }

/* Helpers */

.wrap {
  max-width: 1170px;
  margin: 0 auto;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.taj {
  text-align: justify;
}

.tar {
  text-align: right;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.tab {
  margin-left: 5%;
}

.bold {
  font-weight: bold;
}