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 {
  color: #4271b5;
}

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

.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;
}

.navigation ul a:visited {
  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;
}

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

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

.navigation .active a {
  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 {
  margin-top: 70px;
  padding: 0 10px;
}

section h2  {
  font-size: 30px;
}

.article {
  font-size: 18px;
  border: 1px solid #4271b5;
  border-radius: 10px;
  margin-bottom: 50px;
  padding: 0 10px;
}

.article h3 {
  color: #4271b5;
  border-bottom: 1px solid #4271b5;
  padding: 15px 0;
  margin: 0;
  text-align: left;
}

.article div:first-of-type {
  margin-top: 15px;
}

.article p {
  text-align: justify;
}

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

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

.article img {
  max-width: 65%;
  margin-top: 20px;
  text-align: center;
}

.article div:last-of-type {
  margin-bottom: 20px;
}

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;
}

#button {
    border-radius: 60px;
    border: 1px solid #4271b5;
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 9999;
    font-size: 20px;
    outline: none;
    height: 60px;
    width: 60px;
    color: #4271b5;
    background-color: #fff;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

#button:hover {
    background-color: #4271b5;
    color: #fff;
}
.scroller.show {
    visibility: visible;
    opacity: 1;
  }
  
.scroller.hide {
    visibility: hidden;
    opacity: 0;
  }

@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);
  }
  .article h3 {
      font-size: 20px;
  }
  .article p {
      text-align: left;
  }
  footer {
    height: 100%;
    width: 100%;
  }
  footer span {
    position: static;
  }
  footer .wrap div:last-child {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #button .fas {
      font-size: 30px;
  }
}
@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;
}

.tar {
  text-align: right;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.tab {
  margin-left: 5%;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.italic span {
  text-decoration: underline;
}

.taj {
  text-align: justify;
}