* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}
body {
  font-size: 13px;
  font-weight: 300;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

html,
body {
  height: 100%;
}
a {
  text-decoration: none;
  -webkit-transition: all 0.4s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

img {
  width: 100%;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

p {
  line-height: 28px;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

fieldset {
  border: 0 none;
  margin: 0 auto;
  padding: 0;
}

.no-padding {
  padding: 0;
}

.section-padding {
  padding: 70px 0px;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 700;
  margin-top: 0;
}

a.read-more {
  display: inline-block;
  color: #fff;
  padding: 13px 30px;
  text-transform: capitalize;
  font-size: 14px;
  border: 1px solid #000000;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 30px;
  background: #ff9f1c;
}

a.read-more:hover {
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: transparent;
}

.scrollup {
  border-radius: 50%;
  height: 50px;
  width: 50px;
  font-size: 24px;
  color: #fff;
  text-align: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  line-height: 50px;
  cursor: pointer;
  display: none;
  z-index: 2;
  background: #ffffff;
  -webkit-animation: spineer 2s infinite;
  animation: spineer 2s infinite;
}

@-webkit-keyframes spineer {
  from {
    box-shadow: 0 0 0 0 rgba(255, 159, 28);
  }

  to {
    box-shadow: 0 0 0 45px rgb(159, 203, 34, 0.01);
  }
}

@keyframes spineer {
  from {
    box-shadow: 0 0 0 0 rgba(255, 159, 28);
  }

  to {
    box-shadow: 0 0 0 45px rgb(159, 203, 34, 0.01);
  }
}

.scrollup:hover {
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

/*
* ----------------------------------------------------------------------------------------
* 02.PRELOADER & BOUNCE CCS STYLE
* ----------------------------------------------------------------------------------------
*/

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #000000;
  top: 0;
  left: 0;
  font-size: 30px;
  vertical-align: center;
  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;
}
.loader {
  margin-left: 0;
  padding: 30px 0;
  width: 150px;
  height: 150px;
  border-radius: 100%;
}
.hide {
  display: none;
}
.loader1 {
  position: relative;
  width: 120px;
  height: 120px;
}
.loader1 span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(calc(18deg * var(--i)));
  transform: rotate(calc(18deg * var(--i)));
}
.loader1 span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: #ff7f47;
  border-radius: 50%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-animation: animate 2s linear infinite;
  animation: animate 2s linear infinite;
  -webkit-animation-delay: calc(0.1s * var(--i));
  animation-delay: calc(0.1s * var(--i));
}

@keyframes animate {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}
@-webkit-keyframes rotating {
  0% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(370deg);
    transform: rotate(370deg);
  }
}
@keyframes rotating {
  0% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(370deg);
    transform: rotate(370deg);
  }
}
/*
* ----------------------------------------------------------------------------------------
* 03.HOMEPAGE CSS STYLE
* ----------------------------------------------------------------------------------------
*/
.welcome-image-area {
  position: relative;
  height: 100%;
  background: url(../images/mainbg.jpg);
  background-size: cover;
  z-index: 1;
}
.welcome-image-area:after {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}
.display-table {
  display: table;
  width: 100%;
  height: 100%;
}
.display-table-cell {
  display: table-cell;
  vertical-align: middle;
}
.header-text h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  text-transform: capitalize;
}
.header-text h1 span {
  color: #ff9f1c;
}
.header-text p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 30px;
}
.header-search-form-area input {
  display: inline-block;
}
.header-search-form-area input[type="text"] {
  background: #fff;
  border: none;
  color: #000;
  font-weight: 400;
  padding: 15px;
  width: 40%;
}
.header-search-form-area input[type="submit"] {
  background: #ff9f1c;
  border: none;
  color: #fff;
  font-weight: 400;
  padding: 15px;
  width: 10%;
}
.header-top-area {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.logo {
  padding-top: 20px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.logo img {
  width: 150px;
}
.mainmenu .navbar-nav li {
  margin-left: 30px;
}
.mainmenu .navbar-nav li a {
  color: #fff;
  text-transform: capitalize;
  font-size: 18px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 0;
  padding-left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 400;
}
.mainmenu .navbar-nav li a:hover {
  background: none;
  color: #ff9f1c;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.nav li a:focus,
.nav li a:hover {
  background: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.navbar {
  margin: 0;
}
.menu-bg {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background: #fff;
  padding-bottom: 10px;
  box-shadow: 0 2px 10px -1px rgba(87, 97, 100, 0.35);
  background: #262339;
  border: none;
}
.menu-bg .logo {
  padding-top: 16px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.menu-bg .logo a p {
  color: #000;
}
.menu-bg .mainmenu .navbar-nav li a {
  color: #fff;
  padding-top: 22px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-bottom: 22px;
}
.menu-bg .mainmenu .navbar-nav li .whatsapp {
  font-size: 24px;
  color: #25d366;
}
.mainmenu .navbar-nav li .whatsapp {
  font-size: 24px;
  color: #25d366;
}
.menu-bg .mainmenu .navbar-nav li a:hover {
  color: #ff9f1c;
}
.header-text a {
  display: inline-block;
  color: #fff;
  padding: 15px 35px;
  text-transform: capitalize;
  font-size: 18px;
  border: 1px solid #ff9f1c;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 30px;
  background: #ff9f1c;
}
.header-text a:hover {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: transparent;
}
/*
* ----------------------------------------------------------------------------------------
* 04.AIR LINE LOGO CSS STYLE
* ----------------------------------------------------------------------------------------
*/
.boder {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 0px 2px 1px rgba(79, 72, 72, 0.75);
  -webkit-box-shadow: 0px 0px 2px 1px rgba(79, 72, 72, 0.75);
  -moz-box-shadow: 0px 0px 2px 1px rgba(79, 72, 72, 0.75);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
/*
* ----------------------------------------------------------------------------------------
* 05.ABOUT CSS STYLE
* ----------------------------------------------------------------------------------------
*/
.about-us-area {
  background: #f9f9f9;
}
.about-text h2 {
  margin-bottom: 18px;
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 400;
  margin-top: 0;
}
.about-text h2 span {
  color: #fff;
}
.about-text p {
  margin-bottom: 20px;
}
.about-image img {
  border-radius: 5px;
}
.margin-top-c {
  margin-top: 50px;
}
/*
* ----------------------------------------------------------------------------------------
* 06.SERVICE CSS STYLE
* ----------------------------------------------------------------------------------------
*/
.service-area {
  padding-top: 70px;
  padding-bottom: 40px;
}
.single-service {
  padding: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #f9f9f9;
  margin-bottom: 30px;
}
.single-service h4 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #000;
}
.service-icon i {
  font-size: 40px;
  color: #ff9f1c;
}
.single-service p {
  margin-bottom: 0;
  color: #333;
}
/*
* ----------------------------------------------------------------------------------------
* 07.VIDEO CSS STYLE
* ----------------------------------------------------------------------------------------
*/
.video-area {
  padding: 200px 0px;
  background: url(../images/youtub/video.png);
  position: relative;
  background-size: cover;
  z-index: 1;
}
.video-area:after {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  opacity: 0.7;
}
.video-area-text h2 {
  color: #fff;
  font-size: 40px;
}
.video-area-text i {
  font-size: 30px;
  border: 1px solid #fff;
  color: #ff9f1c;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  line-height: 100px;
  text-align: center;
  padding-left: 6px;
  background: #fff;
  -webkit-animation: spineer 2s infinite;
  animation: spineer 2s infinite;
}
.mfp-iframe-holder {
  padding-top: 80px;
}
/*
* ----------------------------------------------------------------------------------------
* 08.GROUP TICKET UPDATE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.ticket-area {
  padding-bottom: 40px;
}
.group-update h2 {
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 700;
  margin-top: 0;
}
.update-images{
  margin-top: 50px;
}
/*
* ----------------------------------------------------------------------------------------
* 09. GALLERY CSS STYLE
* ----------------------------------------------------------------------------------------
*/
.work .col-md-4 {
  padding: 0;
}
.project-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}
.project-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
.project-info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.project-item img {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  width: 100%;
}
.project-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.project-overlay h2 {
  color: #ffffff;
  font-size: 22px;
  margin: 0;
  text-transform: capitalize;
  font-weight: 800;
}
.project-item:hover .project-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}
.view-portfolio {
  text-align: center;
}
a.more-portfolio {
  display: inline-block;
  text-align: center;
  color: #333;
  background: #fff;
  padding: 10px 30px;
  text-transform: capitalize;
  font-size: 16px;
}

/*
* ----------------------------------------------------------------------------------------
* 12.CALL TO ACTION CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.call-to-area {
  background: url(../images/download.jpg);
  background-size: cover;
  padding: 150px 0px;
  position: relative;
  z-index: 1;
}

.call-to-area:after {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}

.call-to-area-text h2 {
  color: #fff;
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 900;
}

.call-to-area-text p {
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 30px;
}

.call-to-area-text a {
  display: inline-block;
  color: #fff;
  padding: 12px 25px;
  text-transform: capitalize;
  font-size: 14px;
  border: 1px solid #ff9f1c;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 30px;
  background: #ff9f1c;
}

.call-to-area-text a:hover {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: transparent;
}

/*
* ----------------------------------------------------------------------------------------
* 13.CONTACT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.contact-area {
  background: #f7f7f7;
}

.modal-header h2 {
  margin: 0;
}

.contact-icon {
  float: left;
  margin-bottom: 30px;
  margin-right: 15px;
}

.contact-icon i {
  font-size: 20px;
  color: #ff9f1c;
  height: 50px;
  width: 50px;
  border: 1px solid #ff9f1c;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-contact:hover .contact-icon i {
  color: #fff;
  border: 1px solid #ff9f1c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 25px;
  background: #ff9f1c;
}
.single-contact h2 {
  font-size: 18px;
  margin-top: 20px;
  text-transform: capitalize;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-form {
  margin-top: 30px;
}

.form-control {
  display: block;
  border: 0px;
  width: 100%;
  height: 50px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #000;
  background-color: transparent;
  background-image: none;
  border-radius: 0px;
  box-shadow: none;
  margin-bottom: 10px;
  padding: 10px 7px 14px 15px;
  border: 1px solid #f2f2f2;
  background: #fff;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.form-control:focus {
  border-color: #ff9f1c;
  outline: 0;
  box-shadow: none;
}

.contact-form input[type="submit"] {
  display: inline-block;
  color: #fff;
  padding: 12px 25px;
  text-transform: capitalize;
  font-size: 14px;
  border: 1px solid #ff9f1c;
  background-color: #ff9f1c;
  border-radius: 0px;
  font-weight: 600;
  border-radius: 30px;
}

.contact-form input[type="submit"]:hover {
  background: transparent;
  color: #000;
  border: 1px solid #ff9f1c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus {
  outline: none;
}

.success {
  background: #50b948 none repeat scroll 0 0;
  color: #fff;
  font-weight: 700;
  padding: 20px;
  text-align: center;
}

/*
* ----------------------------------------------------------------------------------------
* 14.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/
.footer-area {
  color: #ff7f47;
  padding-top: 40px;
  background: #262339;
}
.footer-logo img {
  width: 160px;
}
.footer-area .footer-social-icons h5 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 22px;
  line-height: 27px;
  font-weight: 700;
}
.footer-area .footer-info p {
  color: #fff;
  margin: 35px 0 20px;
}
.footer-area .footer-social-icons ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ff7f47;
  font-size: 25px;
}
.footer-area .footer-links .contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}
.footer-area .footer-links .contact-box span i {
  color: #ff7f47;
  font-size: 20px;
}
.footer-area .footer-social-icons ul li {
  margin-right: 20px;
}
.footer-area .footer-social-icons ul li a {
  color: #ff7f47;
}
.footer-area .footer-links h5 {
  text-transform: capitalize;
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 43px;
  color: #fff;
  margin-bottom: 25px;
}
.footer-area .footer-links .contact-box span {
  float: left;
  width: 34px;
  font-size: 18px;
  color: #ff7f47;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-area .footer-links .contact-box a {
  font-size: 15px;
  color: #fff;
  line-height: 22px;
  display: block;
  font-weight: 400;
}
.footer-area .footer-links .category-list ul li a {
  display: inline-block;
  font-family: work sans, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.footer-area .footer-links h5 {
  text-transform: capitalize;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 5px;
  color: #fff;
  margin-bottom: 25px;
}
.footer-area .footer-links .payment-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer-area .footer-links .payment-cards img {
  width: 65px;
  height: auto;
  margin-right: 13px;
  margin-bottom: 15px;
}
.footer-area .copyrigth-area {
  border-top: 2px solid #423f54;
  margin-top: 50px;
  padding: 30px 0;
  text-align: center;
}
.footer-area .copyrigth-area p {
  font-family: work sans, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  color: #fff;
}
/*
* ----------------------------------------------------------------------------------------
* 14.COPYRIGHT-AREA CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.copyrigth-area a {
  font-family: work sans, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  color: #ff7f47;
}
