
*{
  font-family: 'Lato', sans-serif;
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans:100,300,400,700);
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*
html, body {
  height: 100%;
  width: 100%;
}*/

/*body {
  padding: 0;
  margin: 0;
  background-color: #1a1a1a;
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  background-image: url("http://tinyimg.io/i/DhfgDkv.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}*/

header{
    /*background-image: url(../images/header-banner.webp);*/
      background-repeat: no-repeat;
      background-size: cover;
      height: 100vh;
      padding-top: 30px ;
      position: relative;
      padding-left: 30px; 
      background-color: #f66163;
     /* overflow: hidden;*/
}

/*
================
================
Global
================
================
*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}


/*
================
================
Icons
================
================
*/
/*.sticky{
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 999999999999999 !important;
    display: inline-table;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    padding: 10px 20px;
    background-color:rgba(0, 0, 0, 0.7); 
    left: 0;
}*/


.icons {
  font-size: 0;
  line-height: 0;
  text-align: right;
   position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    display: inline-table;
    padding: 0px 50px;
    left: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    /*background-color: rgba(246, 97, 99, 0.8)*/
    
}
@keyframes slide-down {
    0% {
        opacity: 1;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 1;
        transform: translateY(0);
    } 
}

.icons button {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 2rem;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 0;
  /*overflow: hidden;*/
  z-index: 55;
  cursor: pointer;
}

.icons button:nth-child(1){
  background: transparent;
}

.icons button:nth-child(2){
  background: transparent;
}

.icons button > span {
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        font-size: 0;
        line-height: 0;
        text-align: left;
        transition: .3s cubic-bezier(.58,-0.58,.33,1.52);
        font-size: 20px;
        height: auto;
        color: #fff;
}

.icons button:hover > span {
        transform: translate(-50%,-50%) scale(1.1);
}

/* Icon: Key */
.i-key span i,
.i-key span i:before,
.i-key span i:after {
  display: inline-block;
  position: relative;
  width: 1.2rem;
  height: .2rem;
  transform: translate(0.3rem, -0.3rem) rotate(-45deg);
  background: #FFFFFF;
  transition: .4s cubic-bezier(.8,0,.8,.8);
}

.i-key span i:before,
.i-key span i:after {
  content: "";
  position: absolute;
}

.i-key span i:before {
  width: .4rem;
  height: .4rem;
  -webkit-transform: rotate(90deg) translate(30%, -0.6rem);
  -ms-transform: rotate(90deg) translate(30%, -0.6rem);
  -o-transform: rotate(90deg) translate(30%, -0.6rem);
  transform: rotate(90deg) translate(30%, -0.6rem);
}

.i-key span i:after {
  width: .6rem;
  height: .6rem;
  top: 50%;
  -webkit-transform: translate(-0.8rem, -50%);
  -ms-transform: translate(-0.8rem, -50%);
  -o-transform: translate(-0.8rem, -50%);
  transform: translate(-0.8rem, -50%);
  background: transparent;
  border: .1rem solid #FFFFFF;
  border-radius: 100%;
}

/* Icon: Hamburger */
.i-hamb span i,
.i-hamb span i:before,
.i-hamb span i:after {
        position: relative;
        width: 1.77rem;
        height: .2rem;
        background: #FFFFFF;
        transition: .4s cubic-bezier(.8,0,.8,.8);
        opacity: 0.1;
}

.i-hamb span i:before,
.i-hamb span i:after {
        content: "";
        position: absolute;
        left: 50%;
}

.i-hamb span i:before {
        -webkit-transform: translate(-50%, -0.5rem);
        -ms-transform: translate(-50%, -0.5rem);
        -o-transform: translate(-50%, -0.5rem);
        transform: translate(-50%, -0.5rem);
}

.i-hamb span i:after {
        -webkit-transform: translate(-50%, .5rem);
        -ms-transform: translate(-50%, .5rem);
        -o-transform: translate(-50%, .5rem);
        transform: translate(-50%, .5rem);
}

.i-hamb-active span i {
  width: 2rem;
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
        opacity: 1;
}

.i-hamb-active span i:before {
  width: .92rem;
        -webkit-transform: translate(-120%, -0.3rem) rotate(-45deg);
        -ms-transform: translate(-120%, -0.3rem) rotate(-45deg);
        -o-transform: translate(-120%, -0.3rem) rotate(-45deg);
        transform: translate(-120%, -0.3rem) rotate(-45deg);
        opacity: 1;
}

.i-hamb-active span i:after {
  width: .92rem;
        -webkit-transform: translate(-120%, .3rem) rotate(45deg);
        -ms-transform: translate(-120%, .3rem) rotate(45deg);
        -o-transform: translate(-120%, .3rem) rotate(45deg);
        transform: translate(-120%, .3rem) rotate(45deg);
        opacity: 1;
}

.d-inline-block, .d-inline-block:before, .d-inline-block:after{
  display: inline-block !important;
  transition: .4s cubic-bezier(.8,0,.8,.8);
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.i-hamb-active span:nth-child(2){
  display: none;
  transition: .4s cubic-bezier(.8,0,.8,.8);
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.i-hamb span:nth-child(2){
  background-color: #000 !important;
  padding: 1.25rem 1.14rem;
  border-radius: 1.5rem;
}
.nav {
  position: fixed;
  width: 100%;
  /*max-width: 36.25rem;*/
  z-index: 555;
  right: 0;
  -webkit-transform: translateX(102%);
  -ms-transform: translateX(102%);
  -o-transform: translateX(102%);
  transform: translateX(102%);
  text-align: center;
 /* background: #F43059;*/
 background: #F66163;
 top: 0;
 height: 110vh;
 left: 0px;
/* padding:80px 0; */
  transition: .4s cubic-bezier(.8,0,.8,.8);
  overflow: scroll;
 scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}


/***************************dot nav******************************/

#wrapper{
  margin: 0 auto;
}


.nav-active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.nav-active ul li {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  margin-right: 10px;
  -webkit-box-shadow: 2px 2px 15px 5px rgba(0,0,0,0.2);
  box-shadow: 2px 2px 15px 5px rgba(0,0,0,0.2);
}


/*
            *******************form-wrapper********************/
.who-we-are{
  background-color: #F66163;
  padding: 120px 80px;
  text-align: left;
  color: #fff;
/*  height: auto;*/
/*  height: 130vh;*/
  display: block;
}

.who-we-are p{
  font-weight: 400;
  margin: 50px 0;
}

.who-we-are h2{
  font-weight: 600;
}



.social-icon{
  list-style-type: disc;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}
.social-icon li{
  list-style: none;
  margin: 20px 0;
  display: inline-block;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  text-align: center;
  padding-top: 5px;

}

.social-icon li a{
  text-decoration: none;
  color: #fff;
  padding: 8px 10px;
  margin-right: 10px;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}

.social-icon li a:hover{
  color: #444;
  background-color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}

.social-icon li:first-child a{
  background-color: #4e71a8;
}

.social-icon li:first-child a{
  padding: 7px 12px;
}
.social-icon li:nth-child(2) a{
  background-color: #444444;
}

.social-icon li:nth-child(2n+1) a{
  background-color: #FFF;
  
}

.social-icon li:nth-child(3n+1) a{
  background-color: #1686b0;
}

.social-icon li:nth-child(4n+1) a{
  background-color: #1cb7eb;
}

.form-wrapper{
  color: #fff;
  background-color: #282828;
  text-align: left;
  padding: 120px 160px 80px 80px;
  height: auto;
  /*max-height: 130vh;*/
}

.nopadding{
  padding: 0px;
}

.form-wrapper h2{
  font-weight: 600;
  /* margin-bottom: 50px; */
}

.form-wrapper h3{
  font-weight: 400;
  font-size: 25px;
}

.form-wrapper p{
  font-weight: 400;
  font-size: 18px;
}
.form-control{
  border-radius: 1rem !important;
}
.form-wrapper ::placeholder {
  color: #ed1c24;
  font-weight: 600;
  opacity: 1; /* Firefox */
}

.form-wrapper :-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #ed1c24;
 font-weight: 600;
}

.form-wrapper ::-ms-input-placeholder { /* Microsoft Edge */
 color: #ed1c24;
 font-weight: 600;
}

.btn-send{
  border-radius: 1rem !important;
  background-color: #ed1c24 !important;
}
/*
**********carousel-modification*-*-*-*-*-*-*-*-*/

 header .carousel-item{
  height: 85vh;
}
 header .carousel-caption{
  text-align: left;
  width: 100%;
  padding: 0 15px;
}


.text-wrapper{
  position: relative;
  height: 60vh;
  top: 0;
  left: 0;
  /*background-color: rgba(0, 0, 0, 0.4);*/
}

.question {
  width: 70%;
  position: absolute;
  top: 30%;
  left: 0;
  -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;


}
.question h2 {
  font-size: 66px;
  font-family: "Lato";
  color: #000;
  line-height: 0.98;
  text-align: left;
  font-weight: 300;
  z-index: 22;
  -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}


.answer{
  width: 28%;
  position: absolute;
  top: 30%;  
  right: 0;
/*    height: 312px;*/
    overflow: hidden;
   -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    height: auto;
    padding: 130px 20px;
    top: -30px;
    height: 100vh;
    right: -90px;
    background-color: #f7a0a0;
}

.answer h2 {
  font-size: 53px;
  line-height: 1.2;
  font-family: "Lato";
  color: #000;
  text-align: left;
  font-weight: 600;
  -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    height: 196px;
    margin: 20px 0;
    overflow: hidden;

}

.question h4, .answer h4 {
  font-size: 26px;
  font-family: "Lato";
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 2.308;
  text-align: left;
 }

 header .carousel-indicators li{
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin: 0 15px;
   opacity: 1;
 }

  header .carousel-indicators{
  justify-content: flex-start !important;
  bottom: 0px;
  margin-left: 6%;
  width: 40%;
 }

 header .carousel-indicators .active{
  background-color: #ffa303;
}

.increase-width{
  width: 60% !important;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  height: auto;
  background-color: #ffff;
  padding: 130px 20px;
  top: -30px;
  height: 100vh;
  right: -90px;

}

.increase-width h2{
  font-size: 23px !important;
  line-height: 1.3em;
  color: #000;
  font-weight: 200;
  height: auto;
}

.increase-width .expand-class{
  display: none;  
}



  .expand-class{
  cursor: pointer;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  margin-right: 60px;
  padding: 0px;
  color: #000;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1.1em;
  display: block
}
.expand-class:hover{
  color: #fff;
}

.decrease-width{
  width: 35% !important;
  -webkit-transition: all 0.4s ease-out;
-moz-transition: all 0.4s ease-out;
-ms-transition: all 0.4s ease-out;
-o-transition: all 0.4s ease-out;
transition: all 0.4s ease-out;
}

.decrease-width h2{
  font-size: 30px !important;

}

.close-block{
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    color: #000;
    background-color: transparent;
    cursor: pointer;
    margin-top: 20px;
   color: #000;
   font-size: 25px;
   text-transform: uppercase;
   letter-spacing: 5px;
   line-height: 1.1em;
   display: none;
}

.close-block:hover{
  color: #F69D04;
}

.increase-width .close-block{
  display: block; 
}

.increase-width h4{
  color: #F69D04;
}

/**-*-*-*-*-*-*-*-*-*Element-box*-*-*-*-*-*-*-*-**/
.element-box{
  position: relative;
  height: 80px;
  margin: 0 auto;
  width: 200px;
  transform: translate(19.5rem, -9rem);
}

.ele-1{
  width: 75%;
}

#mobile-carousel .carousel-inner{
  overflow: visible;
}

#mobile-carousel  .carousel-control-next-icon, #mobile-carousel  .carousel-control-prev-icon{
  background-image: none !important;
}


/*.ele-2{
  width: 40%;
  margin-top: 20px;
  margin-left: 50px;
}

.ele-3{
  width: 40%;
  margin-top: 20px;
  margin-left: 50px;
}*/

/*
      
/**-*-*-*-*-*-*-*-*-*second-section*-*-*-*-*-*-*-*-**/

#second-section{
  height: auto;
  position: relative;
}

.section-wrapper{
  position: relative;
  top: 0;
  text-align: center;
}
.section-wrapper h3{
  color: #2e2011;
  font-weight: 400;
  font-size: 30px;
}
.section-wrapper h1{
  color: #F66163;
  font-weight: 800;
  font-size: 50px;
}
.video-bg {
  border-style: solid;
  border-width: 5px;
  border-color: rgb(255, 255, 255);
  border-radius: 18px;
  background-color: rgb(46, 32, 17);
  box-shadow: 0px 28px 65px 0px rgba(40, 40, 40, 0.22),inset 0px 0px 73.95px 13.05px rgba(0, 0, 0, 0.39);
  width: 640px;
  height: 360px;
  z-index: 29;
  overflow: hidden;
  margin: 30px auto;

}

.video-bg iframe{
  width: 100%;
  height: 360px;
} 

.side-ele-1{
  position: absolute;
  transform: translate(-50%, -50%);
  height: 50px;
  top: 43%;
  left: 0;
}

.side-ele-1 img{
  width: 70%;
}

.content-creation{
  text-align: left !important;
  padding: 100px 0;
}

.content-wrapper1{
  margin-left: 33%;
  margin-top: 60px;
}
.mobile-composition, .mobile-composition2, .mobile-composition3{
  position: relative;
  background-image: url(../images/obg-3.png);
  background-repeat: no-repeat;
  height: auto;
  width: 100%;
  height: 400px;
  text-align: center;
  background-size: contain;
  background-position: center center;
  float: right;
}
.mobile-composition img, .mobile-composition2 img, .mobile-composition3 img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-38%, -45%);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.main-image{
  height: 583px;
}

.mobile-composition2 img:nth-child(2){
    top: 220px;
    height: 160px;
    transform: translateX(-116px);
}

.mobile-composition3 img:nth-child(2){
    top: 70px;
    height: 402px;
    transform: translateX(-152px);
}

.mobile-composition img:nth-child(2){
  top: 65px;
  height: 160px;
}
.mobile-composition img:nth-child(3) {
    top: 105px;
    height: 75px;
    right: 0;
    transform: translate(-80px, 0);
}

.mobile-composition img:nth-child(4) {
    top: 155px;
    height: 65px;
    right: 0;
    transform: translate(-80px, 0);
}

.mobile-composition img:nth-child(5) {
    top: 190px;
    height: 105px;
    right: 0;
    transform: translate(-80px, 0);
}

.mobile-composition img:nth-child(6) {
    top: 275px;
    height: 150px;
    right: 0;
    transform: translate(-140px, 0);
}

/*.mobile-composition img:nth-child(2):hover{
  -moz-transform: scale(1.01);
  -webkit-transform: scale(1.01);
  -o-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);

  -webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}*/
/**-*-*-*-*-**-*-*-*-*-*-*-*Third section*-*-**-*-*-*-**-*-*/

#third{
  background-image: url(../images/bulb.png);
  background-repeat: no-repeat;
  height: auto;
  background-size: contain;
  background-position: center center;
  position: relative;
  padding-top: 5rem;
  margin-top: 80px;
}

#third .bulb-carousel .carousel-item h2, #third .bulb-carousel .carousel-item p{
  text-align: center;
  /*opacity: 0.6;*/
}


#third .bulb-carousel .carousel-inner .active h2, #third .bulb-carousel .carousel-inner .active p  {
  text-align: center;
  opacity: 1 !important;
}

#third .bulb-carousel .carousel-item p{
  max-width: 230px;
  margin: 0 auto;
  margin-top: 20px;
  font-size: 15px; 
  color: #282828;
}


#third .bulb-carousel .carousel-item{
  /*padding-top: 80px;*/
}
#third .bulb-carousel .carousel-item h2{
  max-width: 300px;
  margin: 0 auto; 
  font-size: 22px;
  color: #2e2011;
}

.blue-color{
  color: #0084f3;
}

.card-carousel{
  padding: 40px;
  margin-top: 180px; 
}
.card {
  border-style: solid;
  border-width: 5px;
  border-color: rgb(255, 255, 255);
  border-radius: 30px !important;
  opacity: 1;
  box-shadow: 0px 28px 65px 0px rgba(40, 40, 40, 0.22);
  height: 65vh;
}

.card-img-top{
  -webkit-border-radius: 30px 30px 0 0;
  border-radius: 30px 30px 0 0;
}

.card-title{
  text-align: center;
  font-size: 15px;
  margin-bottom: 0px;
}

.card-text{
  text-align: center;
}

#footer{
  /*background-image: url(../images/footer-bg.jpg);*/
  height: auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 80px;
  color: #000;
  text-align: center;
  background-color: #F66163;
}

#footer h3{
  margin: 30px;
  font-weight: 400;
}

#footer h4{
  font-weight: 600;
}

.footer-link{
  margin-top: 20px;
}
.footer-link li{
  list-style: none;
  float: left;
  margin-left: 15px;
  color: #000;
  text-transform: uppercase;

}

.footer-link li a{
  text-decoration: none;
  color: #000;
}

.footer-link li a:hover{
  color: #fff;
}

.copyright{
  text-transform: uppercase;
  margin-top: 20px;
}

#footer .btn-dark{
  border-radius: 1.5rem;

}

#engt-conversation{
  top: 120px !important;
}


  .form-wrapper-after{
    background-color: #000;
    padding: 150px 50px;
    height: 100vh;
    color: #28a745;  
    text-align: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .form-wrapper-after h2{
    font-size: 80px;
    font-weight: 200;

  }
  .fa-check-circle{
    font-size: 80px;
  }


.form-wrapper{
  /*display: none;*/
}

.hidden{
  display: none;
  -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.cmp{
    width: 200px;
    position: absolute;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile-logo{
  display: none;
}

.height{
cursor: pointer;
}

.controls-top2{
  position: absolute !important;
  top: 50% !important;
  display: inline-block  !important;
  width: 100% !important;
}

.carousel-multi-item .custom-inner{
  padding-top: 0rem !important;

}
/* .card-carousel .carousel-multi-item{
padding-bottom: 5rem;
  margin-bottom: 0px;
}*/
.content-carousel .carousel-inner{
  overflow: visible;
}

.carousel-item{
-webkit-transition: all 0.6s ease-in-out!important;
-moz-transition: all 0.6s ease-in-out!important;
-ms-transition: all 0.6s ease-in-out!important;
-o-transition: all 0.6s ease-in-out!important;
transition: all 0.6s ease-in-out!important;
-webkit-backface-visibility: hidden!important;
  backface-visibility: hidden !important;

}


.outer-menu {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 555;
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 35px;
  height: 35px;
  opacity: 0;
  background-color: transparent;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
          background-color: #000 !important;
          color: #000 !important; 
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before,
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
          background-color: #000 !important;
          color: #000 !important; 
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-duration: 0.75s;
          transition-duration: 0.75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease 0.4s;
  transition: opacity 0.4s ease 0.4s;
}
.outer-menu .checkbox-toggle:hover + .hamburger {
  /*box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);*/
}
.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.outer-menu .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 35px;
  height: 35px;
  padding: 0.5em 1em;
  border-radius: 0 0.12em 0.12em 0;
  cursor: pointer;
  -webkit-transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.outer-menu .hamburger > div {
  position: relative;
  -webkit-box-flex: 0;
          flex: none;
  width: 100%;
  height: 2px;
  background: #FEFEFE;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.outer-menu .hamburger > div:before,
.outer-menu .hamburger > div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.outer-menu .hamburger > div:after {
  top: 10px;
}
.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /*outline: 1px solid transparent;
*/  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.outer-menu .menu > div {
  width: 225vw;
  height: 225vw;
  color: #FEFEFE;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-flex: 0;
          flex: none;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.outer-menu .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  -webkit-box-flex: 0;
          flex: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.outer-menu .menu > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}
.outer-menu .menu > div > div > ul > li {
  padding: 0;
  margin: 2em;
  font-size: 24px;
  display: block;
}
.outer-menu .menu > div > div > ul > li > a {
  position: relative;
  display: inline;
  cursor: pointer;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
  text-transform: uppercase;
  color: #000;

}
.outer-menu .menu > div > div > ul > li > a:hover {
  color: #F69D04;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;


}
.outer-menu .menu > div > div > ul > li > a:hover:after {
  width: 100%;
}
.outer-menu .menu > div > div > ul > li > a:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
/*  height: 2px;*/
  background: #e5e5e5;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}


