@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alef:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Duru+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/*
font-family: 'Raleway', sans-serif;
font-family: 'Bebas Neue', sans-serif;
font-family: 'Roboto Condensed', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Noto Sans JP', sans-serif;

font-family: 'Alef', sans-serif;
*/
a:active,
a:hover,
a {
  text-decoration: none;
  color: #FFFFFF;
}

ul {
  list-style-type: none; /* Убирает буллиты */
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif !important;
}

header,
main,
footer {
  overflow: hidden;
}

#remove-video {
  background-color: white;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.reveal {
  position: relative;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  -webkit-transition: 2s all ease;
  transition: 2s all ease;
}

.reveal.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.7);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.7);
  width: 100%;
  z-index: 999;
}

.nav-container {
  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;
  padding: 20px 50px 20px;
  width: 1500px;
}
@media screen and (max-width: 550px) {
  .nav-container {
    padding: 20px 20px !important;
  }
}

.nav_one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
@media screen and (max-width: 1100px) {
  .nav_one {
    display: none;
  }
}

#logo-name {
  font-size: 25px;
  font-family: "Lato", sans-serif !important;
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0.2em;
  padding-right: 10px;
}
@media screen and (max-width: 550px) {
  #logo-name {
    font-size: 21px;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
}

.shipping-delete {
  display: inline-block;
}
@media screen and (max-width: 500) {
  .shipping-delete {
    display: none;
  }
}

#nav-active a {
  color: #4e7fc4;
}

.nav-container li,
.nav_contact li a {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.15;
  color: #FFFFFF;
}

.nav_one li {
  position: relative;
}

.nav_one li:before {
  position: absolute;
  content: "";
  width: 70%;
  height: 2px;
  background-color: #4e7fc4;
  left: 15%;
  bottom: -10px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.nav_one li:hover:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.main_about_us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main_art {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 98px;
     -moz-column-gap: 98px;
          column-gap: 98px;
  max-width: 1400px;
  padding: 179px 30px;
}

@media screen and (max-width: 1350px) {
  .main_art {
    padding: 90px 30px;
  }
}

@media screen and (max-width: 700px) {
  .main_art {
    padding: 70px 30px;
  }
}

@media screen and (max-width: 1350px) {
  .main_art {
    -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;
  }
}


.main_about_us_enterpic img {
  width: 560px;
}

@media screen  and (max-width: 1350px){
  .main_about_us_enterpic img {
    width: 600px;
  }
}

.main_about_us_items {
  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;
  color: rgb(0, 0, 0);
  width: 100%;
  position: relative;
}
@media screen and (max-width: 550px) {
  .main_about_us_items {
    width: 100%;
  }
}

.main_about_us_items h3 {
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 45px;
}
@media screen and (max-width: 550px) {
  .main_about_us_items h3 {
    font-size: 30px;
  }
}

.main_about_us_items h3::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2.5px;
  background-color: #4e7fc4;
  left: 42%;
  top: 60px;
}

.main_about_op {
  width: 560px;
  text-align: center;
  font-size: 21px;
  font-weight: normal;
  line-height: 25.5px;
}
@media screen and (max-width: 560px) {
  .main_about_op {
    width: 100%;
  }
}


@media screen and (max-width: 1350px) {
  .main_about_us_cont {
    margin-bottom: 120px;
  }
}

@media screen and (max-width: 500px) {
  .main_about_us_cont {
    margin-bottom: 60px;
  }
}



.main_about_us-describe {
  width: 560px;
}

@media screen and (max-width: 1350px) {
  .main_about_pic {
    order: 2;
  } 
  .main_about_us-describe{
    order: 1;
  }
}

@media screen and (max-width: 550px) {
  .main_about_us-describe {
    width: 350px;
  }
}
@media screen and (max-width: 400px) {
  .main_about_us-describe {
    width: 320px;
  }
}

.mission-main-items {
  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;
  position: relative;
  padding-bottom: 80px;
}

#mission-main-items_id:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: repeat;
  height: 15px;
  background-size: 25px 25px;
  background-image: radial-gradient(circle at 10px -5px, transparent 12px, #f5f5f5 13px);
}

.mission-main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1200px;
}

.mission-main-items h3 {
  font-size: 42px;
  color: #151515;
  font-weight: 600;
  letter-spacing: 1.15;
  text-align: start;
  padding-bottom: 40px;
}
@media screen and (max-width: 500px) {
  .mission-main-items h3 {
    font-size: 30px;
  }
}

.mission-main-container div {
  width: 600px;
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ededed;
}
@media screen and (max-width: 500px) {
  .mission-main-container div {
    width: 450px;
  }
}


@media screen and (max-width: 1216px){
  .mission-main-items-two-block {
    order: 1;
  }
  
}



.mission-main-container div p {
  width: 400px;
  text-align: center;
  padding: 25% auto;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 1.55;
  opacity: 0.65;
  color: #151515;
}
@media screen and (max-width: 500px) {
  .mission-main-container div p {
    width: 80%;
  }
}
@media screen and (max-width: 400px) {
  .mission-main-container div p {
    width: 65%;
  }
}

.mission-main-container div img {
  width: 100%;
  height: 100%;
  background-position: center;
}
@media screen and (max-width: 500px) {
  .mission-main-container div img {
    background-size: cover;
  }
}

.send-message-items {
  width: 100%;
  height: 150px;
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .send-message-items {
    height: auto;
    padding: 15px 0;
  }
}

.send-message-container {
  width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .send-message-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.send-message-container h5 {
  max-width: 560px;
  color: #212121;
  line-height: 1.55;
  font-size: 21px;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  .send-message-container h5 {
    padding: 0 15px;
    text-align: center;
  }
}

.send-message-container a {
  font-size: 21px;
  padding: 20px 40px;
  display: block;
  color: #FFFFFF;
  font-weight: 600;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  background-color: #365889;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.send-message-container a:hover {
  background-color: #4e7fc4;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.main-video video {
  position: absolute;
  right: 10;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -9999;
}

.main-why-choose {
  background-color: rgba(0, 63, 104, 0.8);
  position: relative;
  overflow: hidden;
}

.main-choose-container {
  padding: 60px 20px;
}

.main-choose-items h4 {
  color: rgb(255, 255, 255);
  margin: auto;
  text-align: center;
  line-height: 3;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1.55;
}

.main-choose-items p {
  width: 560px;
  color: #8d8d8d;
  margin: auto;
  text-align: center;
  line-height: 1.5;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1.55;
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .main-choose-items p {
    width: 90%;
  }
}

.choose-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
}
@media screen and (max-width: 800px) {
  .choose-container {
    row-gap: 55px;
  }
}

.feature h3 {
  width: 80px;
  height: 80px;
  background-color: rgb(255, 255, 255);
  color: #212121;
  margin: auto;
  text-align: center;
  line-height: 3;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 3;
  border-radius: 50%;
  margin-bottom: 15px;
}

.feature h4 {
  font-size: 21px;
  font-weight: 300;
  text-align: center;
  color: #ffffff;
  margin-bottom: 25px;
}

.feature p {
  text-align: center;
  width: 300px;
  color: #ffffff;
  line-height: 1.7;
}

.main-form {
  background-color: #f5f5f5;
}

.main-form-items {
  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;
}

.main-form-container h4 {
  width: 760px;
  padding: 70px 30px;
  color: #212121;
  text-align: center;
  font-size: 51px;
  font-weight: bold;
  letter-spacing: 1.2;
}
@media screen and (max-width: 650px) {
  .main-form-container h4 {
    width: 85%;
    font-size: 39px;
  }
}

.form-control {
  width: 760px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 2px solid #212121;
  background-color: #f5f5f5;
  padding: 30px;
  font-size: 19px;
}
@media screen and (max-width: 800px) {
  .form-control {
    width: 600px;
  }
}
@media screen and (max-width: 800px) {
  .form-control {
    width: 400px;
  }
}
@media screen and (max-width: 450px) {
  .form-control {
    width: 300px;
  }
}

.rendered-form {
  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;
  row-gap: 25px;
}

.btn-default {
  margin-top: 30px;
  padding: 15px 60px;
  font-size: 21px;
  background-color: #365889;
  color: #f5f5f5;
  border: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
  margin-bottom: 30px;
}

.btn-default:hover {
  background-color: #4e7fc4;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 144px 0;
}
@media screen and (max-width: 500px) {
  .footer-container {
    padding: 60px 0;
  }
}

@media screen and (max-width: 500px) {
  .footer-container:first-child {
    width: 85%;
  }
}

@media screen and (max-width: 500px) {
  .footer-container:nth-child(2) {
    width: 85%;
  }
}

.footer-container h3 {
  width: 560px;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1.55;
  text-align: center;
  color: black;
  margin-bottom: 41px;
}
@media screen and (max-width: 500px) {
  .footer-container h3 {
    width: 100%;
    font-size: 39px;
  }
}

.footer-container p {
  width: 560px;
  color: black;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 1.25;
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 500px) {
  .footer-container p {
    width: 100%;
  }
}

.footer-container a {
  width: 560px;
  color: black;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1.5;
  opacity: 0.6;
  text-align: center;
}

.footer-icons {
  margin-top: 24px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

@media screen and (max-width: 500px) {
  .footer_bottom {
    padding: 0 15px;
    font-size: 12px;
  }
}

.menu-btn_cont {
  display: none;
}
@media screen and (max-width: 1100px) {
  .menu-btn_cont {
    display: block;
  }
}

/* Main menu positionning */
.menu-btn_cont {
  display: none;
}
@media screen and (max-width: 1100px) {
  .menu-btn_cont {
    display: block;
    z-index: 99999;
  }
}

.main-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  background: #fff;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  -webkit-transition: all 0.375s;
  transition: all 0.375s;
}

.main-nav.is-open {
  position: fixed;
  opacity: 1;
  z-index: 100;
  visibility: visible;
}

/* Yellow band effect */
.main-nav::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -15px;
  background: linear-gradient(-45deg, #070200, #00455e, #00523f);
  background-size: 400% 400%;
  -webkit-animation: gradient 5s ease infinite;
          animation: gradient 5s ease infinite;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: skew(-14deg) translateX(-120%);
          transform: skew(-14deg) translateX(-120%);
  -webkit-transition: all 0.275s 0.1s;
  transition: all 0.275s 0.1s;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.main-nav.is-open::before {
  -webkit-transform: skew(-14deg) translateX(0);
          transform: skew(-14deg) translateX(0);
}

/* Skewing effect on menu links */
.main-nav ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 93%; /* Should be 100%, but we have a notice message :D */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateX(-18%) skew(-16deg);
          transform: translateX(-18%) skew(-16deg);
}

.main-nav li {
  display: block;
  margin: 0.5rem 0;
  text-align: right;
  -webkit-transform: skew(16deg);
          transform: skew(16deg);
}

/* Apparition effect on links */
.main-nav a {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.main-nav.is-open a {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.main-nav li:nth-child(1) a {
  -webkit-transition: all 275ms 175ms;
  transition: all 275ms 175ms;
}

.main-nav li:nth-child(2) a {
  -webkit-transition: all 275ms 225ms;
  transition: all 275ms 225ms;
}

.main-nav li:nth-child(3) a {
  -webkit-transition: all 275ms 275ms;
  transition: all 275ms 275ms;
}

.main-nav li:nth-child(4) a {
  -webkit-transition: all 275ms 325ms;
  transition: all 275ms 325ms;
}

.main-nav li:nth-child(5) a {
  -webkit-transition: all 275ms 375ms;
  transition: all 275ms 375ms;
}

/* Decoration */
#main-nav a {
  display: block;
  padding: 12px 0;
  color: #ffffff;
  font-size: 45px;
  text-decoration: none;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  #main-nav a {
    font-size: 35px;
  }
}
@media screen and (max-width: 600px) {
  #main-nav a {
    font-size: 25px;
  }
}
@media screen and (max-width: 500px) {
  #main-nav a {
    font-size: 20px;
  }
}
@media screen and (max-height: 500px) {
  #main-nav a {
    font-size: 15px;
  }
}
@media screen and (max-width: 300px) {
  #main-nav a {
    font-size: 15px;
  }
}

.open-main-nav {
  position: absolute;
  top: 29px;
  padding-top: 20px;
  right: 15px;
  z-index: 1000;
  background: none;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 550px) {
  .open-main-nav {
    top: 21px;
  }
}

.open-main-nav:focus {
  outline: none;
}

.burger {
  position: relative;
  display: block;
  width: 30px;
  height: 4px;
  margin: 0 auto;
  background: #ffffff;
  -webkit-transform: skew(5deg);
          transform: skew(5deg);
  -webkit-transition: all 0.275s;
  transition: all 0.275s;
}

.burger:before {
  content: "";
  display: block;
  height: 100%;
  background: #ffffff;
  -webkit-transition: all 0.275s;
  transition: all 0.275s;
}

.burger:after {
  content: "";
  display: block;
  margin-bottom: 5px;
  height: 100%;
  background: #365889; 
  -webkit-transition: all 0.275s;
  transition: all 0.275s;
}

.burger:after {
  -webkit-transform: translateY(-12px) translateX(-2px) skew(-20deg);
          transform: translateY(-12px) translateX(-2px) skew(-20deg);
}

.burger:before {
  -webkit-transform: translateY(-16px) skew(-10deg);
          transform: translateY(-16px) skew(-10deg);
}

/* Toggle State part */
.is-open .burger {
  -webkit-transform: skew(5deg) translateY(-8px) rotate(-45deg);
          transform: skew(5deg) translateY(-8px) rotate(-45deg);
}

.is-open .burger:before {
  -webkit-transform: translateY(0px) skew(-10deg) rotate(75deg);
          transform: translateY(0px) skew(-10deg) rotate(75deg);
}

.is-open .burger:after {
  -webkit-transform: translateY(-12px) translateX(10px) skew(-20deg);
          transform: translateY(-12px) translateX(10px) skew(-20deg);
  opacity: 0;
}

.burger-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.menu-open {
  overflow: hidden;
}  






#slider{
  width:100%;
  height:100%;
  position:relative;
  overflow:hidden;
}
@keyframes load{
  from{left:-100%;}
  to{left:0;}
}
.slides{
  width:400%;
  height:auto;
  position:relative;
  -webkit-animation:slide 60s infinite;
  -moz-animation:slide 60s infinite;
  animation:slide 60s infinite;
}
.slider{
  width:25%;
  height:100%;
  float:left;
  position:relative;
  z-index:1;
  overflow:hidden;
}
.slide img{
  width:100%;
  height:100vh;
  object-fit: cover;
}
.slide img{
  width:100%;
  height:100vh;
  object-fit: cover;
}
.image{
  width:100%;
  height:100vh;
  object-fit: cover;
}
.image img{
  width:100%;
  height:100vh;
  object-fit: cover; 
}

/* Legend */
.legend{
  border:500px solid transparent;
  border-left:800px solid rgba(52, 73, 94, .9);
  border-bottom:0;
  position:absolute;
  bottom:0;
}

/* Contents */
.content-anvaya{
  width:100%;
  height:100%;
  position:absolute;
  overflow:hidden;
}
.content-txt{
  width:400px;
  height:200px;
  float:left;
  position:absolute;
  bottom: 15px;
  -webkit-animation:content-s 15s infinite;
  -moz-animation:content-s 15s infinite;
  animation:content-s 15s infinite;
}

@media screen and (max-width: 391px) {
  .content-txt{
    width: 350px;
  }
}

@media screen and (max-width: 500px) {
  .content-txt{
    bottom: 50px;
  }
}


.content-txt h1{
  text-transform:uppercase;
  font-size:30px;
  color:#fff;
  text-align:left;
  margin-left:26px;
  padding-bottom:10px;
}
.content-txt h2{
  font-weight:normal;
  letter-spacing: 0.5px;
  font-size:16px;
  color:#fff;
  text-align:left;
  margin-left:30px;
}

/* Switch */
.switch{
  width:120px;
  height:10px;
  position:absolute;
  bottom:55px;
  z-index:99;
  left:30px;
}

@media screen and (max-width: 500px){
    .switch{
        bottom: 85px;
    }
}

.switch > ul{
  list-style:none;
}
.switch > ul > li{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#333;
  float:left;
  margin-right:5px;
  cursor:pointer;
}
.switch ul{
  overflow:hidden;
}
.on{
  width:100%;
  height:100%;
  border-radius:50%;
  background:#f39c12;
  position:relative;
  -webkit-animation:on 60s infinite;
  -moz-animation:on 60s infinite;
  animation:on 60s infinite;
}

/* Animation */
@-webkit-keyframes slide{
  0%,100%{
    margin-left:0%;
  }
  21%{
    margin-left:0%;
  }
  25%{
    margin-left:-100%;
  }
  46%{
    margin-left:-100%;
  }
  50%{
    margin-left:-200%;
  }
  71%{
    margin-left:-200%;
  }
  75%{
    margin-left:-300%;
  }
  96%{
    margin-left:-300%;
  }
}
@-moz-keyframes slide{
  0%,100%{
    margin-left:0%;
  }
  21%{
    margin-left:0%;
  }
  25%{
    margin-left:-100%;
  }
  46%{
    margin-left:-100%;
  }
  50%{
    margin-left:-200%;
  }
  71%{
    margin-left:-200%;
  }
  75%{
    margin-left:-300%;
  }
  96%{
    margin-left:-300%;
  }
}
@keyframes slide{
  0%,100%{
    margin-left:0%;
  }
  21%{
    margin-left:0%;
  }
  25%{
    margin-left:-100%;
  }
  46%{
    margin-left:-100%;
  }
  50%{
    margin-left:-200%;
  }
  71%{
    margin-left:-200%;
  }
  75%{
    margin-left:-300%;
  }
  96%{
    margin-left:-300%;
  }
}

@-webkit-keyframes content-s{
  0%{left:-420px;}
  10%{left:0px;}
  30%{left:0px;}
  40%{left:0px;}
  50%{left:0px;}
  60%{left:0px;}
  70%{left:0;}
  80%{left:-420px;}
  90%{left:-420px;}
  100%{left:-420px;}
}
@-moz-keyframes content-s{
  0%{left:-420px;}
  10%{left:0px;}
  30%{left:0px;}
  40%{left:0px;}
  50%{left:0px;}
  60%{left:0px;}
  70%{left:0;}
  80%{left:-420px;}
  90%{left:-420px;}
  100%{left:-420px;}
}
@keyframes content-s{
  0%{left:-420px;}
  10%{left:20px;}
  15%{left:0px;}
  30%{left:0px;}
  40%{left:0px;}
  50%{left:0px;}
  60%{left:0px;}
  70%{left:0;}
  80%{left:-420px;}
  90%{left:-420px;}
  100%{left:-420px;}
}

@-webkit-keyframes on{
  0%,100%{
    margin-left:0%;
  }
  21%{
    margin-left:0%;
  }
  25%{
    margin-left:15px;
  }
  46%{
    margin-left:15px;
  }
  50%{
    margin-left:30px;
  }
  71%{
    margin-left:30px;
  }
  75%{
    margin-left:45px;
  }
  96%{
    margin-left:45px;
  }
}

@-moz-keyframes on{
  0%,100%{
    margin-left:0%;
  }
  21%{
    margin-left:0%;
  }
  25%{
    margin-left:15px;
  }
  46%{
    margin-left:15px;
  }
  50%{
    margin-left:30px;
  }
  71%{
    margin-left:30px;
  }
  75%{
    margin-left:45px;
  }
  96%{
    margin-left:45px;
  }
}

@keyframes on{
  0%,100%{
    margin-left:0%;
  }
  21%{
    margin-left:0%;
  }
  25%{
    margin-left:15px;
  }
  46%{
    margin-left:15px;
  }
  50%{
    margin-left:30px;
  }
  71%{
    margin-left:30px;
  }
  75%{
    margin-left:45px;
  }
  96%{
    margin-left:45px;
  }
}


