/* Preloader */

* {
  margin:0px;
  padding:0px;
  border:none;
  outline:none;
}

body {
  
  color:#fff;
  line-height:27px;

   background-color: #000000;
  font-family: 'Open Sans', sans-serif;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  -webkit-font-smoothing: antialiased;
}

/* Preloader */

.preloader{
  min-height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(15, 15, 15);
  position: fixed;
  z-index: 1999999999;
  width: 100%;
}
	.center {
			position: relative;
			width: 300px;
			height: 300px;
			border-radius: 50%;
			border-top: 6px solid #FFC70A;
			animation: anim 2s linear infinite;
			animation-direction: all;
		}
		.center:before {
			content: "";
			position: absolute;
			top: 110px;
			right: -10px;
			width: 30px;
			height: 30px;
			border-radius: 50%;
			background: #FFC70A;
		}
		@keyframes anim {
			0% {
				transform: rotate(0deg);
			}
			25% {
				transform: rotate(90deg);
			}
			50% {
				transform: rotate(180deg);
			}
			75% {
				transform: rotate(270deg);
			}
			100% {
				transform: rotate(360deg);
			}
		}
.containerload{
    position: absolute;
    top: 50%;  left: 50%;
    transform: translate(-50%,-50%);
    width: 230px;   height: 230px; 
  
}
.containerload .center{
    position: relative;
    top: 0px;    left: 0px;
    width: 100%;   height: 100%;
   
    animation : animate 2s infinite linear;
}
.containerload img{
    position: absolute;
    top: 50%;  left: 50%;
    transform: translate(-50%,-50%);
    font-size:20px;
}
@keyframes animate{
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}

/** header-top **/

.top-header{
  position: relative;
  
  display: block;
  width: 100%;
  background: #FFC70A;
  padding: 7px 0px 6px 0px;
}

.main-header.style-one .header-top .info li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-right: 5px;
}

.main-header.style-one .header-top .info li:last-child{
  margin-right: 0px;
}

.main-header.style-one .header-top .info li i{
  margin-right: 5px;
  font-size: 16px;
}

.main-header.style-one .header-top .info li a{
  color: #fff;
}

.main-header.style-one .header-top .top-right li{
  position: relative;
  display: inline-block;
}

.main-header.style-one .header-top .top-right li.work-time{
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-right: 5px;
}

.main-header.style-one .header-top .top-right li.work-time i{
  margin-right: 10px;
 
}

.main-header.style-one .header-top .top-right li.social-links ul li{
  margin-right: 25px;
}

.main-header.style-one .header-top .top-right li.social-links ul li:last-child{
  margin-right: 0px;
}

.main-header.style-one .header-top .top-right li.social-links ul li a{
  font-size: 16px;
  color: #fff;
}
/*****Navbar menu*****/
header{
    position: sticky;
    top: 0px;
    background-color: #000000;
    width: 100%;
    z-index: 1000;
}
/*
section{
    position: relative;
    height: calc(100vh - 3rem);
    width: 100%;
   
    overflow: hidden;
}
*/

.container-fluid{
      max-width:1200px;
    padding: 0 1rem;
    margin: 0 auto;
    display: flex;
    position: relative;
   
}

.logo-container{
 width: 100px;
 height: 100px;
    display: flex;
    align-items: center;
}

.nav-btn{
    flex: 3;
    display: flex;
}

.nav-links{
    flex: 2;
    padding-top: 0px;
    
    height: 50px;
}

.log-sign{
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.logo{
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 3rem;
}

.logo span{
    font-weight: 300;
}

.nav-links > ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link{
    position: relative;
}

.nav-link > a{
    line-height: 2rem;
    color: #fff;
    padding: 0 .3rem;
    letter-spacing: 1px;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
}

.nav-link > a > i{
    margin-left: .2rem;
}

.nav-link:hover > a{
    transform: scale(1.1);
    color:rgba(255, 78, 65, 0.8);
}



/* Underline From Center */

.nav-link a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #FFC70A;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.nav-link a:hover:before, .nav-link a:focus:before, .nav-link a:active:before {
  left: 0;
  right: 0;
}


.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 10rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.dropdown ul{
    position: relative;
}

.dropdown-link > a{
    display: flex;
    background-color: #fff;
    color: #000c;
    padding: .5rem 1rem;
    font-size: .9rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropdown-link:hover > a{
    background-color: #FFC70A;
    color: #fff;
}

.dropdown-link:not(:nth-last-child(2)){
    border-bottom: 1px solid #efefef;
}

.dropdown-link i{
    transform: rotate(-90deg);
}

.arrow{
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow{
    background-color: #FFC70A;
}

.dropdown-link{
    position: relative;
}

.dropdown.second{
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow{
    top: 10px;
    left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container{
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div{
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #fff;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
    
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}

@keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 920px){
    .hamburger-menu-container{
        display: flex;
    }

    #check{
        display: block;
    }
/* Underline From Center */

.nav-link a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #000000;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.nav-link a:hover:before, .nav-link a:focus:before, .nav-link a:active:before {
  left: 0;
  right: 0;
}

    .nav-btn{
        position: fixed;
        height: calc(100vh - 3rem);
        top: 3rem;
        left: 0;
        width: 100%;
        background-color: #000000;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }

    #check:checked ~ .nav-btn{
        transform: translateX(0);
    }

    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn .log-sign{
        animation: animation .5s ease forwards var(--i);
    }

    .nav-links{
        flex: initial;
        width: 100%;
    }

    .nav-links > ul{
        flex-direction: column;
    }

    .nav-link{
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }

    .nav-link > a{
        line-height: 1;
        padding: 1.6rem 2rem;
    }

    .nav-link:hover > a{
        transform: scale(1);
       background-color: #ffe268;
           background-color: rgb(253,123,95);
           color: white;
    }

    .dropdown, .dropdown.second{
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: #000000;
        display: none;
    }
    
    .nav-link:hover > .dropdown,
    .dropdown-link:hover > .dropdown{
        display: block;
    }

    .nav-link:hover > a > i,
    .dropdown-link:hover > a > i{
        transform: rotate(360deg);
    }

    .dropdown-link > a{
        background-color: transparent;
        color: #fff;
        padding: 1.2rem 2rem;
        line-height: 1;
    }

    .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 3rem;
    }

    .dropdown.second .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 4rem;
    }

    .dropdown-link:not(:nth-last-child(2)){
        border-bottom: none;
    }

    .arrow{
        z-index: 1;
        background-color: #000000;
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }

    .nav-link:hover .arrow{
        background-color: #000000;
    }

    .dropdown .dropdown .arrow{
        display: none;
    }

    .dropdown-link:hover > a{
        background-color: #afafae;
    }

    .dropdown-link:first-child:hover ~ .arrow{
         background-color: #afafae;
    }

    .nav-link > a > i{
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }

    .dropdown i{
        font-size: 1rem;
        transition: .7s;
    }

   
}
p{
  position: relative;
  font-size: 15px;
  line-height: 27px;
   font-family: 'Shippori Mincho B1', serif;
  color: #fff;
  margin: 0px;
  transition: all 500ms ease;
}

h1,h2,h3,h4,h5,h6{
  position:relative;
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 800;
  color: #fff;
  margin: 0px;
  transition: all 500ms ease;
}


/*** 

====================================================================
                        Home-Page-One
====================================================================

***/

.section1 {
  position: relative;
 
  /*
  background-color: #f8dd30;
  */
  display: flex;
  justify-content: center;
  align-items: center;
 padding-bottom: 30px;
}

.section1 .container {
  position: relative;
  width: 800px;
  height: 500px;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.section1 .container .user {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}

.section1 .container .user .imgBx {
  position: relative;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}

.section1 .container .user .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section1 .container .user .formBx {
  position: relative;
  width: 50%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  transition: 0.5s;
}

.section1 .container .user .formBx form h2 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
  color: #555;
}

.section1 .container .user .formBx form input {
  position: relative;
  width: 100%;
  padding: 10px;
  background: #f5f5f5;
  color: #333;
  border: none;
  outline: none;
  box-shadow: none;
  margin: 8px 0;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 300;
}

.section1 .container .user .formBx form input[type='submit'] {
  max-width: 100px;
  background: #677eff;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.5s;
}

.section1 .container .user .formBx form .signup {
  position: relative;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #555;
  text-transform: uppercase;
  font-weight: 300;
}

.section1 .container .user .formBx form .signup a {
  font-weight: 600;
  text-decoration: none;
  color: #677eff;
}

.section1 .container .signupBx {
  pointer-events: none;
}

.section1 .container.active .signupBx {
  pointer-events: initial;
}

.section1 .container .signupBx .formBx {
  left: 100%;
}

.section1 .container.active .signupBx .formBx {
  left: 0;
}

.section1 .container .signupBx .imgBx {
  left: -100%;
}

.section1 .container.active .signupBx .imgBx {
  left: 0%;
}

.section1 .container .signinBx .formBx {
  left: 0%;
}

.section1 .container.active .signinBx .formBx {
  left: 100%;
}

.section1 .container .signinBx .imgBx {
  left: 0%;
}

.section1 .container.active .signinBx .imgBx {
  left: -100%;
}

@media (max-width: 991px) {
  .section1 .container {
    max-width: 400px;
  }

  .section1 .container .imgBx {
    display: none;
  }

  .section1 .container .user .formBx {
    width: 100%;
  }
}


/*****LMS *****/

.side-hover .side .hover-content

{
  position: absolute;
  top: 5%;
    left: 90%;
    color:#000000;
    bottom: 0px;
    width: 300px;
  background-color: rgb(233, 221, 220);
    padding: 20px;
    box-sizing: border-box;
    border-radius: 4px;
    visibility: hidden;
    opacity: 0;
    transform: 0.5s;
    transform: translateX(-50%) translateY(-50px);
    z-index: 20;
}


.side-hover .side .hover-content::before
{
 content: '';
   position: absolute;
   width: 30px;
   height: 30px;
  background-color: rgb(233, 221, 220);
   left: -15px;
   top: 50%;
   //left: 194px;
   transform: rotate(45deg);
}

.side-hover .side:hover .hover-content
{
 visibility: visible;
    opacity: 1;
  transform: translateX(-50%) translateY(0px);
}
.side-hover .side .hover-content h4{
  color: #000000;
}
.check
{
  background: linear-gradient(to right bottom , rgb(163, 210, 202),rgb(94, 170, 168));
}
.explore-icons i
{
  position:absolute;
  top: 25%;
  left: 35%;
  color:  rgba(255, 78, 65, 0.8);
}
@media only screen and (max-device-width : 992px) {
  .explore-icons i
{
  position:absolute;
  top: 40%;
  left: 40%;
  color:  rgba(255, 78, 65, 0.8);
}
}
.hm-gradient {
    background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
}
.darken-grey-text {
    color: #2E2E2E;
}
/****End LMS****/

 .contact-form {
    margin-top: 30px;
}

.contact-form .input-block {
    background-color: rgba(255, 255, 255, 0.8);
    border: solid 1px #FF512F;
    width: 100%;
    height: 40px;
    padding: 25px;
    position: relative;
    margin-bottom: 20px;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.contact-form .input-block.focus {
    background-color: #fff;
     border: solid 1px #064420;
     border-radius: 10px;
}

.contact-form .input-block.textarea {
    height: auto;
}

.contact-form .input-block.textarea .form-control {
    height: auto;
    resize: none;
}
.search-flight
{
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  margin: 0 auto 100px;
  padding: 45px;
  border-radius: 1rem !important;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.contact-form .input-block label {
    padding: 0 10px;
    background: #fff;
    position: absolute;
    left: 8px;
    top: 20px;
    display: block;
    margin: 0;
    font-weight: 300;
    z-index: 1;
    color: #999;
    font-size: 18px;
    line-height: 10px;
}
.search-flight button {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
 background: linear-gradient(to right, rgba(153, 38, 240, 0.95), rgba(209, 34, 227, 0.95));
  color: #fff;
  width: 100%;
  border: 0;
  padding: 15px;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}

.contact-form .input-block .form-control {
    background-color: transparent;
    border: medium none;
    border-radius: 0;
    box-shadow: none;
    color: #333;
    font-size: 18px;
    height: 40px;
    padding: 0;
    position: relative;
    top: -20px;
    z-index: 2;
}

.contact-form .input-block .form-control:focus label {
    top: 0;
}
