@charset "UTF-8";

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */

.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */

@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

a {
  text-decoration: none;
  color: #fff;
}

body {
  font-family: "Raleway", sans-serif;
  font-size: 26px;
  max-width: 100%;
  min-width: 320px;
  background-color: #021528;
  color: #fff;
  height: 100%;
}

section {
  min-height: 100vh;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper {
  height: 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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container {
  min-width: 320px;
}

img {
  display: block;
  width: 100%;
}

.title {
  font-size: calc(40px + 1.3020833333vw);
  text-transform: uppercase;
  font-weight: bold;
}

.description {
  font-size: calc(20px + 0.5208333333vw);
}

.story {
  font-size: calc(15px + 0.2604166667vw);
}

.btn.btn-primary.btn-lg {
  background-color: #19B1DE;
  border-color: transparent;
}

button.btn {
  border-radius: 1.3rem;
}

.scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #19B1DE;
  border-radius: 50%;
  padding: 20px;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  margin-top: 20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 30px;
}

.scroll:hover {
  width: 80px;
  height: 80px;
  padding: 30px;
}

.scroll img {
  width: 20px;
}

.dropdown-menu {
  width: 100px;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #021528;
  text-decoration: none;
  background-color: #fff;
}

/*
  ========================================
  HEADER
  ========================================
*/

header {
  background-color: #273747;
  font-weight: bold;
}

header img {
  width: 75px;
}

header .logo {
  width: 50px;
  -webkit-animation: rotation 1s;
          animation: rotation 1s;
  padding-left: 20px;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }

  100% {
    -webkit-transform: rotateX(360deg);
            transform: rotateX(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }

  100% {
    -webkit-transform: rotateX(360deg);
            transform: rotateX(360deg);
  }
}

.hero .wrapper {
  min-height: calc(100vh - 290px);
}

.hero .logo {
  height: 450px;
  padding: 25px 0;
}

.btn-group-lg > .btn,
.btn-lg {
  border-radius: 20px;
  padding: 1rem 2rem;
}

.hero_slider {
  margin-top: 20px;
  font-size: calc(12px + 0.5208333333vw);
}

.slider.center {
  background-color: #273747;
  height: 77px;
  padding: 10px;
}

.slider.center img {
  height: 57px;
}

.slider.center img.slick-arrow {
  width: 35px;
  height: 35px;
  position: absolute;
  right: 20px;
  z-index: 1;
}

.slider.center img.slick-prev.slick-arrow {
  left: 20px;
}

.mission::after {
  content: "";
  border-bottom: #fff solid 1px;
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.mission .mission_pic {
  position: relative;
  height: 500px;
}

.mission .mission_pic::before {
  content: "";
  width: 400px;
  height: 250px;
  border-radius: 30px;
  display: block;
  background: #273747;
  position: absolute;
  top: 0;
  left: 0;
}

.mission .mission_pic::after {
  content: "KRAI Team";
  padding: 20px;
  text-align: center;
  width: 250px;
  height: 100px;
  border-radius: 30px;
  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: #273747;
  position: absolute;
  z-index: 2;
  bottom: 2%;
  left: 50%;
}

.mission .mission_pic img {
  height: calc(260px + 10.4166666667vw);
  width: calc(260px + 10.4166666667vw);
  max-width: 550px;
  max-height: 550px;
  z-index: 1;
  position: absolute;
  top: 50px;
  left: 50px;
  background-color: #fff;
  border-radius: 30px;
}

.mission .mission_text {
  position: relative;
  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;
}

.mission .mission_text .description {
  margin: 0;
}

.about {
  padding: 100px 0 20px 0;
}

.about::after {
  content: "";
  border-bottom: #fff solid 1px;
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.about .about_us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about .about_us .about_pics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.about .about_us img {
  border-radius: 30px;
  margin-left: 25px;
  margin-bottom: 25px;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about .about_us img.about_trip {
  margin: 0 0 25px 0;
}

.team {
  padding: 100px 0 20px 0;
}

.team .team_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  cursor: pointer;
}

.team .team_card {
  width: 20%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.team .team_card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #19B1DE;
  margin-bottom: 20px;
}

.team .team_card .team_text {
  font-size: calc(12px + 0.2083333333vw);
  text-align: center;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.team .team_card .team_text p:first-child {
  font-weight: 900;
}

.team .team_card .team_text .team_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.team .team_card .team_text .team_link p {
  margin-right: 10px;
}

.team .team_card .team_text .team_link img {
  height: 25px;
  width: 25px;
  background: transparent;
}

.team .team_card .team_text .team_visible {
  margin-bottom: 0;
}

.team .team_card .team_text .team_hidden {
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.team .team_card .team_text:hover .team_hidden {
  opacity: 1;
}

.technology form {
  background-color: #19B1DE;
  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: 20px;
  max-width: 310px;
  width: 100%;
  border-radius: 30px;
  margin: 0 auto;
}

.services img {
  max-height: 200px;
  max-width: 200px;
  background-color: #19B1DE;
  padding: 30px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.services .services_points {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services .services_points p:last-child {
  font-size: calc(12px + 0.2083333333vw);
  text-align: justify;
  padding: 20px 40px;
}

.news {
  padding: 100px 0 20px 0;
}

.news_wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #273747;
  border-radius: 30px;
  width: 100%;
  height: 230px;
  font-size: calc(12px + 0.2083333333vw);
  margin-bottom: 30px;
  opacity: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.news_wrapp:hover {
  color: #fff;
  opacity: 0.8;
}

.news_wrapp img {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  height: 100%;
  min-height: 195px;
  width: 300px;
}

.news_wrapp .news_details {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
  margin: 20px;
}

.news_wrapp .news_details .story {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3em;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 0;
}

.news_wrapp .news_details p {
  margin: 0;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.3em;
}

.news_wrapp .news_details p a {
  font-weight: bold;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.news_wrapp .news_details p a:hover {
  color: #19B1DE;
}

.news_wrapp .news_details .news_date {
  font-size: calc(12px + 0.2083333333vw);
  opacity: 0.5;
  margin-bottom: 10px;
  line-height: 1.2;
  height: auto;
  font-style: italic;
}

.news_wrapp .news_btn {
  background-color: #19B1DE;
  border-radius: 20px;
  padding: 10px 20px;
  width: 200px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.news_wrapp .news_btn:hover {
  font-weight: 900;
}

/*
  ========================================
  FOOTER
  ========================================
*/

footer {
  text-transform: capitalize;
  padding: 50px 0;
  background: #021528;
}

footer .description {
  margin-bottom: 10px;
}

footer ul {
  padding-left: 0;
}

footer .row:first-child {
  border-bottom: 1px solid #273747;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

footer .footer_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .footer_logo img {
  width: calc(65px + 1.5625vw);
  padding-top: 20px;
}

footer .footer_logo img:first-child {
  width: calc(85px + 1.5625vw);
  margin-right: 30px;
}

footer a {
  color: #fff;
  opacity: 0.3;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

footer a:hover {
  color: #fff;
  opacity: 0.6;
}

footer .footer__list li {
  margin-bottom: 10px;
}

footer .footer__link {
  display: inline-block;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  padding: 0 10px;
  margin: 0 10px;
}

footer .footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
}

footer .footer__contact img {
  height: 20px;
  width: 20px;
  padding-top: 0;
  margin: 2px 10px;
}

footer .footer__contact svg {
  height: 25px;
  width: 25px;
  margin-right: 10px;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 2.2rem;
    padding-left: 2.2rem;
  }
}

@media screen and (max-width: 992px) {
  .mission .mission_text .description a {
    margin: 30px 0 0;
    text-align: center;
  }

  .mission .mission_pic::before {
    width: 250px;
    height: 200px;
    top: 8%;
    left: 25px;
  }

  .mission .mission_pic {
    width: 300px;
    height: 300px;
  }

  .mission .mission_pic img {
    height: 280px;
    width: 280px;
  }

  .mission .mission_pic::after {
    left: 35%;
    top: 70%;
    width: 70%;
    max-width: 250px;
    height: 30px;
    font-size: calc(12px + 0.2083333333vw);
  }

  .team .team_cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .team .team_card {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 40px;
  }

  .team .team_card .team_text {
    padding-left: 5%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    text-align: left;
  }

  .team .team_card .team_text p {
    margin: 0;
  }

  .team .team_card .team_text .team_hidden {
    opacity: 1;
    padding: 0;
    margin: 0;
  }

  .services_points p:last-child {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media screen and (max-width: 768px) {
  .mission .mission_pic {
    width: 400px;
    height: 600px;
    margin: 0 auto;
  }

  .mission .mission_pic img {
    top: 120px;
    height: 320px;
    width: 320px;
  }

  .mission .mission_pic::after {
    left: 35%;
    top: 70%;
    width: 70%;
    max-width: 250px;
    height: 30px;
    font-size: calc(12px + 0.2083333333vw);
  }

  .services_points {
    margin-bottom: 40px;
  }

  .news_wrapp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    padding-bottom: 20px;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .news_wrapp .news_details {
    margin-top: 25px;
  }

  .news_wrapp img {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 30px;
    height: auto;
    width: 100%;
  }

  .news_wrapp .news_btn {
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .footer_logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 590px) {
  .footer_logo {
    height: 150px;
  }
}

@media screen and (max-width: 576px) {
  .about .about_us img {
    margin-left: 0;
  }
}

@media screen and (max-width: 400px) {
  .mission .mission_pic {
    width: 300px;
    margin: 0 auto;
  }

  .mission .mission_pic img {
    top: 120px;
    height: 250px;
    width: 250px;
  }
}