*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

html, input, textarea {
  font-family: "Inter", sans-serif;
  color: #0a1b65;
}

h1 {
  font-size: 62px;
  color: white;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h1 {
    font-size: 30px;
    margin: 20px 0;
  }
}

h2 {
  font-size: 36px;
  font-weight: 600;
  color: #0a1b65;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 768px) {
  p {
    font-size: 14px;
  }
}

.flx {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content_width {
  width: 90%;
  max-width: 1290px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  border: none;
  font-size: 14px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: white;
  padding: 20px 40px;
  background: linear-gradient(90deg, #FD7E14 0%, #FB3F3F 100%);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  transform: translateY(-5px);
}

.pre_header {
  font-size: 14px;
  font-weight: 600;
  color: #0a1b65;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  padding-left: 80px;
  position: relative;
}
.pre_header::before {
  display: block;
  position: absolute;
  content: "";
  height: 2px;
  width: 70px;
  background-color: #FD7E14;
  top: 50%;
  left: 0;
  transform: translateY(-2px);
}

header {
  padding: 15px 25px;
  background-color: #fff;
  border-radius: 10px;
}
@media (max-width: 768px) {
  header {
    padding: 15px 10px;
  }
  header .logo {
    width: 50%;
  }
  header .logo img {
    width: 100%;
  }
  header nav {
    display: none;
  }
}
header nav a {
  display: inline-flex;
  font-size: 14px;
  text-transform: uppercase;
  color: #0a1b65;
  transition: color 0.3s;
  margin-left: 25px;
  font-weight: 600;
  letter-spacing: 1.3px;
}
header nav a:hover {
  color: #FD7E14;
}
header + div {
  padding-top: 60px;
}
@media (max-width: 768px) {
  header + div > div {
    text-align: center;
  }
}
header + div img {
  width: 45%;
}
@media (max-width: 768px) {
  header + div img {
    display: none;
  }
}

footer {
  background: #0a1b65;
  color: white;
  padding: 30px 0;
}
@media (max-width: 768px) {
  footer .flx {
    flex-direction: column;
  }
  footer .flx .logo {
    margin-bottom: 10px;
  }
}
footer .copy {
  justify-content: center;
  margin-top: 10px;
}

#main {
  background-color: #0a1b65;
  padding: 20px 0 200px;
}
#main .pre_header {
  color: white;
}
#main h1 + p {
  color: white;
  font-weight: 300;
  font-size: 16px;
  margin: 20px 0;
  padding-right: 60px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #main h1 + p {
    padding-right: 0;
  }
}

#benefits {
  margin-top: -100px;
}
#benefits ul {
  align-items: stretch;
}
@media (max-width: 768px) {
  #benefits ul {
    flex-wrap: wrap;
  }
}
#benefits li {
  width: 30%;
  padding: 40px;
  background-color: white;
  border-radius: 20px;
  color: #0a1b65;
  text-align: center;
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  #benefits li {
    width: 100%;
    margin-bottom: 20px;
  }
}
#benefits li:nth-child(2) {
  background: linear-gradient(180deg, #FD7E14 0%, #FB3F3F 100%);
  color: white;
  box-shadow: none;
}
#benefits li img {
  width: 60px;
  height: 60px;
  margin: 0 auto 30px;
}
#benefits li p {
  font-weight: 300;
}

#about {
  padding: 120px 0 80px;
}
@media (max-width: 768px) {
  #about {
    padding: 60px 0 40px;
  }
}
#about p {
  margin: 20px 0;
}
#about img {
  width: 45%;
  margin-right: 50px;
}
@media (max-width: 768px) {
  #about img {
    display: none;
  }
}

#counters {
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  #counters {
    padding-bottom: 50px;
  }
}
#counters .systems {
  padding: 50px 0 100px;
}
@media (max-width: 768px) {
  #counters .systems {
    padding: 25px 0 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
#counters ul {
  justify-content: space-around;
  padding: 50px 20px;
  background-color: #0a1b65;
  border-radius: 30px;
}
@media (max-width: 768px) {
  #counters ul {
    display: flex;
    flex-wrap: wrap;
    padding: 25px 10px;
  }
}
@media (max-width: 768px) {
  #counters ul li {
    width: 50%;
    margin-bottom: 20px;
  }
}
#counters ul li p {
  color: white;
  font-size: 42px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  #counters ul li p {
    font-size: 35px;
  }
}
#counters ul li p span {
  color: #FD7E14;
  font-size: 24px;
  margin-left: 10px;
}
@media (max-width: 768px) {
  #counters ul li p span {
    font-size: 20px;
  }
}
#counters ul li > span {
  color: white;
  opacity: 0.6;
  text-align: center;
  display: block;
}
#counters ul li img {
  display: block;
  width: 49px;
  height: 49px;
  margin: 0 auto 10px;
}

#services ul {
  flex-wrap: wrap;
  margin-top: 30px;
}
#services ul li {
  width: 32%;
  padding: 50px 40px;
  background-color: white;
  border-radius: 20px;
  color: #0a1b65;
  text-align: center;
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #services ul li {
    width: 100%;
  }
}
#services ul li:nth-child(2) {
  background: linear-gradient(180deg, #FD7E14 0%, #FB3F3F 100%);
  color: white;
  box-shadow: none;
}
#services ul li img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
}

#why {
  padding: 100px 0;
}
@media (max-width: 768px) {
  #why {
    padding: 50px 0;
  }
  #why > .flx {
    flex-direction: column-reverse;
  }
}
#why > .flx > img {
  width: 45%;
}
@media (max-width: 768px) {
  #why > .flx > img {
    width: 100%;
    margin-bottom: 30px;
  }
}
#why ul li {
  display: flex;
  margin-top: 30px;
  align-items: center;
}
#why ul li h3 {
  margin-bottom: 10px;
}
#why ul li .img {
  flex-shrink: 0;
  height: 80px;
  width: 80px;
  margin-right: 20px;
  background: url(img/ellipse.svg) center center no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
#why ul li .img img {
  width: 70%;
  height: 70%;
}

#reviews {
  background-image: linear-gradient(to top, rgba(10, 27, 101, 0.8), rgba(10, 27, 101, 0.8)), url(img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 100px 0;
}
#reviews .pre_header, #reviews h2, #reviews .content_width > p {
  color: white;
}
#reviews h2 {
  margin: 20px 0;
}
#reviews .content_width > p {
  width: 50%;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  #reviews .content_width > p {
    width: 100%;
  }
}
#reviews .item {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin: 0 10px;
  text-align: left;
}
#reviews .item > p {
  margin-bottom: 20px;
  font-style: italic;
}
#reviews .item > div {
  display: flex;
}
#reviews .item > div img {
  border-radius: 50%;
  height: 60px;
  width: 60px;
  overflow: hidden;
  margin-right: 20px;
}
#reviews .item > div .name {
  font-size: 18px;
  font-weight: 500;
}
#reviews .item > div .name span {
  font-size: 14px;
  font-weight: 300;
  margin-top: 10px;
}
#reviews .slick-dots {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}
#reviews .slick-dots button {
  height: 10px;
  width: 10px;
  border: none;
  font-size: 0.1px;
  border-radius: 50%;
  padding: 0;
  margin: 0 7px;
  transition: all 0.3s ease-in-out;
}
#reviews .slick-dots .slick-active button {
  background: #FD7E14;
}

#contact {
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 768px) {
  #contact {
    padding: 50px 0;
  }
}
#contact .form {
  margin-top: 30px;
}
#contact .form input {
  border: 2px solid #0a1b65;
  font-size: 16px;
  font-weight: 300;
  border-radius: 40px;
  color: #0a1b65;
  padding: 20px;
  margin-right: 15px;
}
@media (max-width: 768px) {
  #contact .form input {
    margin-bottom: 15px;
  }
}
#contact .form input::placeholder {
  color: #0a1b65;
  opacity: 0.6;
}

.dark_bg {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.dark_bg.active {
  display: block;
}
.dark_bg .pop_up {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 50px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .dark_bg .pop_up {
    width: 80%;
  }
}
.dark_bg .pop_up p:first-of-type {
  color: #FD7E14;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .dark_bg .pop_up p:first-of-type {
    font-size: 24px;
  }
}
.dark_bg .pop_up p:last-of-type {
  color: #0a1b65;
  text-align: center;
}
.dark_bg .pop_up .close {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 20px;
  width: 20px;
  background: url(img/close.png) center center no-repeat;
  background-size: contain;
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */
