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

a {
  text-decoration: none;
  color: white;
}

html, body {
  height: 100%;
  line-height: 1;
  scroll-behavior: smooth;
  font-family: Montserrat;
  color: #FFFFFF;
  font-size: 14px;
}

body.lock {
  overflow: hidden;
  padding-right: 0px !important;
}

ul,
ol,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

/*-------------------------------------*/
.section-1 {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(/img/bg-sec1.png) no-repeat;
  background-size: cover;
  -webkit-animation: introLoad 2s forwards;
          animation: introLoad 2s forwards;
}

.container {
  margin: 0px;
  width: 80vw;
  max-width: 1350px;
  overflow: hidden;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 17vh;
}

.logo {
  padding: 5px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #FAF8FF;
}

.logo_img img {
  width: 30px;
  margin-right: 7px;
  color: #FAF8FF;
}

.logo_txt {
  font-weight: 700;
  font-size: 1rem;
  line-height: 29px;
  color: #FAF8FF;
}

nav {
  position: fixed;
  right: 0;
  top: 0;
  background-color: #282828;
  height: 100vh;
  width: 50%;
  z-index: 999;
  text-transform: uppercase;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform .5s ease-in-out;
  transition: -webkit-transform .5s ease-in-out;
  transition: transform .5s ease-in-out;
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin-top: 8em;
}

nav ul .link {
  list-style-type: none;
  padding: 2em 1em;
  color: #eeeeee;
  display: block;
  width: 100%;
  font-weight: 600;
  border-radius: 10px;
  -webkit-transition: background-color 0.8s ease 0s;
  transition: background-color 0.8s ease 0s;
}

nav ul .link:hover {
  color: #797979;
  -webkit-transition: background-color 0.4s ease 0s;
  transition: background-color 0.4s ease 0s;
}

nav .close {
  float: right;
  margin: 2em;
  width: 2.5em;
  border-radius: 10px;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

nav .close:hover {
  background: #797979;
}

.open-nav {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

@media only screen and (min-width: 840px) {
  .burger {
    display: none;
  }
  nav {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    position: unset;
    background: none;
    display: block;
    width: auto;
    height: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 0 0;
  }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 8em;
  }
  nav ul .link {
    text-transform: none;
    letter-spacing: 2px;
    display: list-item;
    width: auto;
    padding: 1em 0.8em;
  }
  nav ul .link:hover {
    color: #999999;
    background: none;
  }
  .close {
    display: none;
  }
}

@media only screen and (min-width: 1020px) {
  .logo .logo_txt {
    font-size: 1.4em;
  }
  nav ul .link {
    padding: 1em 1.3em;
    font-size: 1.2em;
  }
  nav ul .link:hover {
    color: #999999;
    background: none;
  }
}

.window {
  position: absolute;
  bottom: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(56, 56, 56, 0.3);
  border-radius: 20px;
  -webkit-animation: moveDown 1.5s ease-in-out forwards;
          animation: moveDown 1.5s ease-in-out forwards;
}

.window .window-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2vw;
}

.window .window-container .services {
  width: 100%;
  height: 100%;
  padding-top: 8vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33%;
          flex: 1 1 33%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.window .window-container .services .service {
  width: 70%;
  height: auto;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.window .window-container .services .service .img-container {
  height: 20px;
}

.window .window-container .services .service .img-container .service-img {
  height: 100%;
}

.window .window-container .services .service .service-title {
  font-size: 1.4em;
  padding-top: 10px;
  text-align: start;
  display: inline-block;
}

.window .window-container .services .service .service-text {
  font-size: 1.2em;
}

.window .window-container .window-title {
  font-weight: 700;
  padding-top: 3vh;
  padding-bottom: 3vh;
  font-size: 1.5rem;
  letter-spacing: 1px;
  line-height: 140%;
  text-align: center;
}

.window .window-container .window-text-container {
  padding-bottom: 3vh;
}

.window .window-container .window-text-container .window-text {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 140%;
  padding-bottom: 1vh;
  text-align: center;
  letter-spacing: 1px;
}

.window .window-container .btn {
  padding-bottom: 4vh;
}

.window .window-container .btn-a {
  background-color: #030663;
  color: #FFFFFF;
  font-size: 1.2em;
  padding: 1.5vh 2.8vh;
  letter-spacing: 0.1em;
  border-radius: 10px;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
  text-transform: uppercase;
}

.window .window-container .btn-a:hover {
  background-color: #092f5a;
}

@media only screen and (min-width: 840px) {
  .window {
    position: absolute;
    bottom: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(56, 56, 56, 0.3);
    border-radius: 20px;
    -webkit-animation: moveDown 1.5s ease-in-out forwards;
            animation: moveDown 1.5s ease-in-out forwards;
  }
  .window .window-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 2vw;
  }
  .window .window-container .services {
    width: 100%;
    height: 100%;
    padding: 3vh 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 33%;
            flex: 1 1 33%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .window .window-container .services .service {
    width: 30%;
    height: auto;
    padding-bottom: 8vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .window .window-container .services .service .img-container {
    height: 40px;
    margin-bottom: 10px;
  }
  .window .window-container .services .service .img-container .service-img {
    height: 100%;
  }
  .window .window-container .services .service .service-title {
    font-size: 1.7em;
    padding-top: 20px;
    text-align: start;
    display: inline-block;
  }
  .window .window-container .services .service .service-text {
    font-size: 1.2em;
  }
  .window .window-container .window-title {
    font-weight: 700;
    padding-top: 3vh;
    padding-bottom: 3vh;
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 140%;
    text-align: center;
  }
  .window .window-container .window-text-container {
    padding-bottom: 3vh;
  }
  .window .window-container .window-text-container .window-text {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 140%;
    padding-bottom: 1vh;
    text-align: center;
    letter-spacing: 1px;
  }
  .window .window-container .btn {
    padding-bottom: 4vh;
  }
  .window .window-container .btn-a {
    background-color: #030663;
    color: #FFFFFF;
    font-size: 1.2em;
    padding: 1.5vh 2.8vh;
    letter-spacing: 0.1em;
    border-radius: 10px;
    -webkit-transition: background-color 0.3s ease 0s;
    transition: background-color 0.3s ease 0s;
    text-transform: uppercase;
  }
  .window .window-container .btn-a:hover {
    background-color: #092f5a;
  }
}

@media only screen and (min-width: 1020px) {
  .window {
    position: absolute;
    bottom: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(56, 56, 56, 0.3);
    border-radius: 20px;
    -webkit-animation: moveDown 1.5s ease-in-out forwards;
            animation: moveDown 1.5s ease-in-out forwards;
  }
  .window .window-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 2vw;
  }
  .window .window-container .services {
    width: 100%;
    height: 100%;
    padding-top: 8vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 33%;
            flex: 1 1 33%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .window .window-container .services .service {
    width: 30%;
    height: auto;
    padding-bottom: 8vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .window .window-container .services .service .img-container {
    height: 40px;
    margin-bottom: 10px;
  }
  .window .window-container .services .service .img-container .service-img {
    height: 100%;
  }
  .window .window-container .services .service .service-title {
    font-size: 1.7em;
    padding-top: 20px;
    text-align: start;
    display: inline-block;
  }
  .window .window-container .services .service .service-text {
    font-size: 1.2em;
  }
  .window .window-container .window-title {
    font-weight: 700;
    padding-top: 3vh;
    padding-bottom: 3vh;
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 140%;
    text-align: center;
  }
  .window .window-container .window-text-container {
    padding-bottom: 3vh;
  }
  .window .window-container .window-text-container .window-text {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 140%;
    padding-bottom: 1vh;
    text-align: center;
    letter-spacing: 1px;
  }
}

@media only screen and (min-width: 1350px) {
  .window {
    position: absolute;
    bottom: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(56, 56, 56, 0.3);
    border-radius: 20px;
    -webkit-animation: moveDown 1.5s ease-in-out forwards;
            animation: moveDown 1.5s ease-in-out forwards;
  }
  .window .window-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 2vw;
  }
  .window .window-container .services {
    width: 100%;
    height: 100%;
    padding-top: 8vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 33%;
            flex: 1 1 33%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .window .window-container .services .service {
    width: 30%;
    height: auto;
    padding-bottom: 8vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .window .window-container .services .service .img-container {
    height: 40px;
    margin-bottom: 10px;
  }
  .window .window-container .services .service .img-container .service-img {
    height: 100%;
  }
  .window .window-container .services .service .service-title {
    font-size: 1.7em;
    padding-top: 20px;
    text-align: start;
    display: inline-block;
  }
  .window .window-container .services .service .service-text {
    font-size: 1.2em;
  }
  .window .window-container .window-title {
    font-weight: 700;
    padding-top: 3vh;
    padding-bottom: 3vh;
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 140%;
    text-align: center;
  }
  .window .window-container .window-text-container {
    padding-bottom: 3vh;
  }
  .window .window-container .window-text-container .window-text {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 140%;
    padding-bottom: 1vh;
    text-align: center;
    letter-spacing: 1px;
  }
}

@media only screen and (min-width: 1350px) {
  .section-1 .container .header .logo .logo_txt {
    font-size: 1.5rem;
  }
  .section-1 .container .header .nav-bar .nav-ul .link {
    font-size: 1.3rem;
  }
}

@media only screen and (min-width: 470px) {
  .window {
    bottom: 35%;
  }
}

/*----------animations------------*/
@-webkit-keyframes introLoad {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    background-color: #282828;
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes introLoad {
  from {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    background-color: #282828;
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@-webkit-keyframes moveScroll {
  from {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes moveScroll {
  from {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes moveDown {
  from {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes moveDown {
  from {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}

.active.fade-bottom {
  -webkit-animation: fade-bottom 1s ease-in;
          animation: fade-bottom 1s ease-in;
}

.active.fade-left {
  -webkit-animation: fade-left 1s ease-in;
          animation: fade-left 1s ease-in;
}

.active.fade-right {
  -webkit-animation: fade-right 1s ease-in;
          animation: fade-right 1s ease-in;
}

@-webkit-keyframes fade-bottom {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-bottom {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fade-left {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-left {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes fade-right {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

/*-------section2---------*/
.section-2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #161D27;
  background-size: cover;
  -webkit-animation: introLoad 2s forwards;
          animation: introLoad 2s forwards;
}

.section-2 .container-2 {
  margin: 0px;
  width: 80vw;
  max-width: 1350px;
}

.section-2 .container-2 .services-block-2 {
  padding-bottom: 8vh;
}

.section-2 .container-2 .services-block {
  margin-top: 8vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.section-2 .container-2 .services-block .services-block-title {
  font-size: 1.5em;
  padding-bottom: 8vh;
  font-weight: 700;
  text-align: center;
}

.section-2 .container-2 .services-block .services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section-2 .container-2 .services-block .services .service {
  max-width: 80%;
  padding-bottom: 7vh;
}

.section-2 .container-2 .services-block .services .service .service-img {
  height: 7vh;
  padding-bottom: 2vh;
}

.section-2 .container-2 .services-block .services .service .service-title {
  font-size: 1.4em;
  font-weight: 600;
  padding-bottom: 1vh;
}

.section-2 .container-2 .services-block .services .service .service-text {
  font-size: 1.1em;
  line-height: 140%;
}

.lock-padding {
  padding-right: 0px !important;
}

@media only screen and (min-width: 1020px) {
  .section-2 .container-2 .services-block-2 {
    padding-bottom: 8vh;
  }
  .section-2 .container-2 .services-block {
    margin-top: 15vh;
  }
  .section-2 .container-2 .services-block .services-block-title {
    font-size: 2em;
    padding-bottom: 10vh;
  }
  .section-2 .container-2 .services-block .services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 33%;
            flex: 1 1 33%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section-2 .container-2 .services-block .services .service {
    width: 30%;
    padding-bottom: 8vh;
  }
  .section-2 .container-2 .services-block .services .service .service-img {
    height: 7vh;
    padding-bottom: 2.5vh;
  }
  .section-2 .container-2 .services-block .services .service .service-title {
    font-size: 1.7em;
    padding-bottom: 1.5vh;
  }
  .section-2 .container-2 .services-block .services .service .service-text {
    font-size: 1.2em;
  }
  .section-2 .container-2 .services-block .civil {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section-2 .container-2 .services-block .civil .ser-civil {
    width: 47%;
  }
}

.horizon {
  width: 50%;
  border-top: 0.1px solid #474747;
  margin-bottom: 8vh;
}

.section-3 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #1D334B;
  background-size: cover;
  -webkit-animation: introLoad 2s forwards;
          animation: introLoad 2s forwards;
}

.section-3 .container-3 {
  margin: 0px;
  width: 80vw;
  max-width: 1350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-3 .container-3 .services-block-title {
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
}

.section-3 .container-3 .partners-area {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 40px 0;
}

.section-3 .container-3 .partners-area .partner {
  width: 25vw;
  height: 25vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #e6e6e6;
  border-radius: 20px;
  cursor: pointer;
}

.section-3 .container-3 .partners-area .partner img {
  width: 22vw;
}

.section-3 .container-3 .partners-area .partner .partner-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-3 .container-3 .partners-area .partner .partner-text .partner-p {
  color: #1B1B1B;
  font-family: Roboto-regular;
  font-size: 14px;
}

.section-3 .container-3 .partners-area .partner .partner-text .partner-p-dot {
  font-size: 20px;
  font-family: Roboto-regular;
}

@media only screen and (min-width: 840px) {
  .section-3 .container-3 .services-block-title {
    font-size: 2em;
    margin-top: 60px;
  }
  .section-3 .container-3 .partners-area {
    margin: 60px 0;
  }
  .section-3 .container-3 .partners-area .partner {
    width: 20vw;
    height: 20vw;
    cursor: pointer;
  }
  .section-3 .container-3 .partners-area .partner img {
    width: 15vw;
  }
  .section-3 .container-3 .partners-area .partner .partner-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section-3 .container-3 .partners-area .partner .partner-text .partner-p {
    color: #1B1B1B;
    font-family: Roboto-regular;
    font-size: 20px;
  }
  .section-3 .container-3 .partners-area .partner .partner-text .partner-p-dot {
    font-size: 30px;
    font-family: Roboto-regular;
  }
}

@media only screen and (min-width: 1350px) {
  .section-3 .container-3 .services-block-title {
    font-size: 2em;
    margin-top: 60px;
  }
  .section-3 .container-3 .partners-area {
    margin: 60px 0;
  }
  .section-3 .container-3 .partners-area .partner {
    width: 300px;
    height: 300px;
    cursor: pointer;
  }
  .section-3 .container-3 .partners-area .partner img {
    width: 220px;
  }
  .section-3 .container-3 .partners-area .partner .partner-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section-3 .container-3 .partners-area .partner .partner-text .partner-p {
    color: #1B1B1B;
    font-family: Roboto-regular;
    font-size: 25px;
  }
  .section-3 .container-3 .partners-area .partner .partner-text .partner-p-dot {
    font-size: 34px;
    font-family: Roboto-regular;
  }
}

/*---------------popup-----------------------*/
.popup {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0%;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup.open .popup__content {
  -webkit-transform: perspective(600px) translate(0px, 0px) rotateX(0deg);
          transform: perspective(600px) translate(0px, 0px) rotateX(0deg);
  opacity: 1;
}

.popup__area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.popup__body {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 0px;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
}

.popup__content {
  position: relative;
  background-color: #eee;
  border-radius: 20px;
  color: black;
  max-width: 800px;
  padding: 30px;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  opacity: 0;
  -webkit-transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
          transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
}

.popup__close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 20px;
  color: black;
  text-decoration: none;
}

.pop__title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1em;
}

.pop_contact {
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 500;
}

.contact__space {
  margin-bottom: 30px;
}

/*---------------footer-----------------------*/
footer {
  background-color: #1B1B1B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .container-4 {
  margin: 0px;
  width: 80vw;
  max-width: 1350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .container-4 .footer-content {
  margin-top: 20px;
  min-height: 30vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

footer .container-4 .footer-content .footer-logo {
  margin-top: 2vw;
  padding: 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .container-4 .footer-content .footer-logo .footer-logo-img img {
  margin: 0 0.5vw;
  width: 30px;
  margin-right: 7px;
  color: #FAF8FF;
}

footer .container-4 .footer-content .footer-logo .footer-logo-txt {
  font-weight: 700;
  font-size: 1rem;
  line-height: 29px;
  color: #FAF8FF;
}

footer .container-4 .footer-content .footer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2vw 0;
}

footer .container-4 .footer-content .footer-item .footer-item-tel {
  padding: 0.5vw;
}

footer .container-4 .footer-content .footer-item .fotter-phone_txt {
  padding: 0.5vw;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 29px;
  color: #FAF8FF;
}

footer .container-4 .footer-content .footer-item .fotter-item-image {
  padding: 0.5vw;
}

footer .container-4 .footer-content .footer-item .fotter-item-text {
  padding: 0.5vw;
  font-weight: 500;
  font-size: 0.9rem;
  color: #FAF8FF;
  line-height: 140%;
}

footer .container-4 .footer-content .footer-adresses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

footer .container-4 .footer-content .footer-adresses .footer-item-adr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5vw 0;
}

footer .container-4 .footer-content .footer-adresses .footer-item-adr .fotter-item-image {
  padding: 0.5vw;
}

footer .container-4 .footer-content .footer-adresses .footer-item-adr .fotter-item-text {
  padding: 0.5vw;
  font-weight: 500;
  font-size: 0.9rem;
  color: #FAF8FF;
  line-height: 150%;
}

@media only screen and (min-width: 1319px) {
  footer {
    background-color: #1B1B1B;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .container-4 {
    margin: 0px;
    width: 80vw;
    max-width: 1350px;
    display: block;
  }
  footer .container-4 .footer-content {
    min-height: 30vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .container-4 .footer-content .footer-logo {
    margin: -1vw;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .container-4 .footer-content .footer-logo .footer-logo-img img {
    width: 30px;
    margin-right: 7px;
    color: #FAF8FF;
  }
  footer .container-4 .footer-content .footer-logo .footer-logo-txt {
    font-weight: 700;
    font-size: 1rem;
    line-height: 29px;
    color: #FAF8FF;
  }
  footer .container-4 .footer-content .footer-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .container-4 .footer-content .footer-item .footer-item-tel {
    padding: 3px;
  }
  footer .container-4 .footer-content .footer-item .fotter-phone_txt {
    padding: 3px;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 29px;
    color: #FAF8FF;
  }
  footer .container-4 .footer-content .footer-item .fotter-item-image {
    padding: 3px;
  }
  footer .container-4 .footer-content .footer-item .fotter-item-text {
    padding: 3px;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 29px;
    color: #FAF8FF;
  }
  footer .container-4 .footer-content .footer-adresses {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  footer .container-4 .footer-content .footer-adresses .footer-item-adr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3px;
  }
  footer .container-4 .footer-content .footer-adresses .footer-item-adr .fotter-item-image {
    padding: 3px;
  }
  footer .container-4 .footer-content .footer-adresses .footer-item-adr .fotter-item-text {
    padding: 3px;
  }
}
/*# sourceMappingURL=main.css.map */