
/* ------------------------------------- */
/* TABLE OF CONTENTS
/* -------------------------------------
  1. IMPORT GOOGLE FONTS
  2. GENERAL
    -2.1 SECTION TITLE
    -2.2 BUTTONS
    -2.3 SOCIAL ICON
    -2.4 PRE LOADER
    -2.5 SCROLL TO UP
  3. HERO AREA 
  4. NAVBAR
  5. SERVICES SECTION
  6. FEATURES SECTION
  7. VIDEO PROMO SECTION
  8. PORTFOLIO SECTION
  9. PRICING TABLE 
  10. COUNTER SECTION
  11. TESTIMONIAL AREA
  12. TEAM SECTION
  13. BLOG SECTION
  14. CONTACT SECTION
  15. FOOTER SECTION
    -15.1 COMING SOON PAGE
  ------------------------------------- */
/* ==========================================================================
   1. IMPORT GOOGLE FONTS
   ========================================================================== */
@import url("https://fonts.googleapis.com/css?family=Poppins:400,700");
/* ==========================================================================
   2. GENERAL
   ========================================================================== */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  background: #fff;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

p {
  font-size: 14px;
  line-height: 26px;
}

a:hover, a:focus {
  color: #fb8600;
}

a {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

a:not([href]):not([tabindex]) {
  color: #fff;
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: #fb8600;
}

/* ==========================================================================
   2.1 Section Title
   ========================================================================== */
.section {
  padding: 25px 0;
}

.section-header {
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.section-header2 {
    color: #fff;
    margin-bottom: 40px;
}
.section-header .section-title {
  font-family: Alata;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #444;
}

.subHeading {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
  color: #444;
}

.section-header .section-title span {
  color: #fb8600;
}

.section-header .section-subtitle {
  color: #444;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 192.857% */
  text-transform: capitalize;
}

.pad_lft_rgt {
  padding-right: 50px;
  padding-left: 50px;
}

.section-header .lines {
    margin: auto;
    width: 140px;
    position: relative;
    border-top: 3px solid #FB8600;
}

.lines2 {
    margin: auto;
    width: 145px;
    position: relative;
    border-top: 3px solid #FB8600;
    float: left;
}

.about-section {
  position: relative;
}

.about-section::after {
    background-image: url(../img/image37.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 135px;
    left: 150px;
    width: 250px;
    height: 250px;
    content: "";
}

.about-section::before
 {
    background-image: url(../img/image37.png);
    background-repeat: no-repeat;
    background-position: right;
    position: absolute;
    top: 140px;
    right: 80px;
    width: 450px;
    height: 383px;
    content: "";
}

/* ==========================================================================
   2.2 Buttons
   ========================================================================== */
.btn {
  font-size: 14px;
  padding: 11px 40px;
  border-radius: 0px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: inline-block;
}

.btn:focus,
.btn:active {
  box-shadow: none;
  outline: none;
  color: #fff;
}


.btn-border {
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 4px;
}

.btn-border:hover {
  border: 2px solid #fff;
  color: #fff;
  background-color: #fb8600;
}

.btn-lg {
  padding: 14px 33px;
  text-transform: uppercase;
  font-size: 16px;
}

.btn-rm {
  padding: 7px 0px;
  color: #999;
  text-transform: capitalize;
}

.btn-rm i {
  vertical-align: middle;
}

button:focus {
  outline: none !important;
}

.clear {
  clear: both;
}

/* ==========================================================================
   2.3 Social Iocns
   ========================================================================== */
.social-icons {
  margin-top: 40px;
}

.social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons ul li {
  display: inline;
}

.social-icons ul li a {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 15px;
  border-radius: 50%;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #ddd;
  font-size: 16px;
}

.social-icons ul li a:hover {
  color: #fff;
}

.facebook a {
  color: #4867AA;
}

.facebook a:hover {
  background: #4867AA;
}

.twitter a {
  color: #1DA1F2;
}

.twitter a:hover {
  background: #1DA1F2;
}

.google-plus a {
  color: #DD4D42;
}

.google-plus a:hover {
  background: #DD4D42;
}

.youtube a {
  color: #DF2926;
}

.youtube a:hover {
  background: #DF2926;
}

.linkedin a {
  color: #007BB6;
}

.linkedin a:hover {
  background: #007BB6;
}

.pinterest a {
  color: #BD081C;
}

.pinterest a:hover {
  background: #BD081C;
}

.dribbble a {
  color: #EA4C89;
}

.dribbble a:hover {
  background: #EA4C89;
}

.behance a {
  color: #0B7CFF;
}

.behance a:hover {
  background: #0B7CFF;
}

/* ==========================================================================
	 2.4  Pre Loader
	 ========================================================================== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 9999999999;
}

.spinner {
  width: 40px;
  height: 40px;
  top: 45%;
  position: relative;
  margin: 0px auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fb8600;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* ========================================================================== 
  -2.5 Scroll To Up 
   ========================================================================== */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 15px;
}

.back-to-top i {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  background-color: #fb8600;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}


/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

.main-banner {
  position: relative;
}

#bg-video {
    min-width: 100%;
    max-width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

#bg-video::-webkit-media-controls {
    display: none !important;
}

.video-overlay {
    position: absolute;
    background: rgb(0 0 0 / 40%);
    top: 0;
    left: 0;
    bottom: 7px;
    width: 100%;
}

.main-banner .caption {
  text-align: center;
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.main-banner .caption h6 {
  font-family: Heebo;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  text-align: center;
  vertical-align: middle;
}

.main-banner .caption h2 {
  color: #FFF;
  text-align: center;
  font-family: Heebo;
  font-size: 26px;
  font-style: normal;
  font-weight:300;
  line-height: normal;
  text-transform: capitalize;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #ed563b;
  font-weight: 900;
}

.navbar-brand img {
  display: block;
  margin: 0px auto;
}

/* ==========================================================================
   3. Hero Area
   ========================================================================== */
#hero-area {
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* ==========================================================================
   4. Navbar Style
   ========================================================================== */
.navbar-brand {
    position: relative;
    padding: 0px;
    text-align: center;
    color: #fff;
}

.top-nav-collapse {
  background: #191919;
  z-index: 999999;
  top: 0px !important;
  padding: 0;
  box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  padding-bottom: 15px;
  padding-top: 10px;
}

.top-nav-collapse .navbar-brand {
  top: 3px;
}

.top-nav-collapse .navbar-nav .nav-link {
  color: #333 !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.top-nav-collapse .navbar-nav .nav-link:hover {
  color: #fb8600 !important;
}

.top-nav-collapse .navbar-nav .nav-link.active {
  color: #fff !important;
}

.indigo {
  background: #191919;
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: #fff;
  padding: 0 22px;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 40px;
  border-radius: 30px;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-expand-lg .navbar-nav li a:hover,
.navbar-expand-lg .navbar-nav li .active > a,
.navbar-expand-lg .navbar-nav li a:focus {
  color: #fb8600;
}

.navbar .nav-link.active {
  color: #fff !important;
  background: #fb8600;
}

.dropdown-toggle::after {
  display: none;
}

.slicknav_btn {
  border-color: #fb8600;
}

.slicknav_menu .slicknav_icon-bar {
  background: #fb8600;
}

/* only small tablets */
@media (min-width: 768px) and (max-width: 991px) {
  #nav-main li a.nav-link {
    padding-top: 18px;
  }
}

.navbar-toggler {
  display: none;
}

.mobile-menu {
  display: none;
}

.slicknav_menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .navbar-header {
    width: 100%;
  }
  #mobile-menu {
    display: none;
  }
  .slicknav_menu {
    display: block;
  }
  .slicknav_nav .active a {
    background: #fb8600;
    color: #fff;
  }
  .slicknav_nav a:hover, .slicknav_nav .active {
    color: #fb8600;
    background: #f8f9fa;
  }
  .slicknav_nav .dropdown li a.active {
    background: #f8f9fa;
    color: #fb8600;
  }
  .main-banner .caption h6 {
    font-size: 30px;
    margin-top: 95px;
 }
 #bg-video {
    height: 320px;
 }
 .section {
    padding: 15px 0;
 }
 .section-header .lines {
    width: 100px;
  }
  .pad_set {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  #portfolios h4 {
    margin-top: 0px !important;
    font-size: 18px !important;
  }
  .img_1 {
    height: 300px !important;
    background-repeat: no-repeat !important;
  }
  .img_2 {
    height: 300px !important;
    background-repeat: no-repeat !important;
  }
  .img-t {
    margin-top: 15px;
  }

  .Legal_section {
    padding: 0px 0px 20px 0px !important;
  }
  .footer_logo {
    float: inherit !important;
    margin: 0px auto;
    display: block;
  }
  .centerDiv {
    justify-content: flex-start;
  }
}

.Legal_section ul {
  padding-left: 15px;
}


.Legal_section ul li {
    list-style: disc;
    line-height: 28px;
}

/* ==========================================================================
  5. Services section
   ========================================================================== */
  .about-section h5 {
    color: #444;
    text-align: center;
    font-family: Alata;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
  }

  .about-section h2 {
    text-align: center;
    font-family: Alata;
    line-height: normal;
}

.item-boxes {
  text-align: center;
  padding: 25px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 4px;
  background: #FFF;
  box-shadow: 0px 0px 13px 0px rgba(159, 159, 159, 0.25);
}

.item-boxes h4 {
  color: #444;
  text-align: center;
  font-family: Alata;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}

.item-boxes p {
  color: #444;
  text-align: center;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 176.923% */
  text-transform: capitalize;
}

.item-boxes:hover .icon {
  background: #fb8600;
}

.item-boxes:hover .icon i {
  color: #fff;
}

.item-boxes2 {
  text-align: center;
  padding: 25px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 4px;
  background: #FFF;
  box-shadow: 0px 0px 13px 0px rgba(159, 159, 159, 0.25);
  height: 235px;
}

.item-boxes2 h4 {
  color: #444;
  text-align: center;
  font-family: Alata;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}

.item-boxes2 p {
  color: #444;
  text-align: center;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px; /* 176.923% */
  text-transform: capitalize;
}

.item-boxes2:hover .icon {
  background: #fb8600;
}

.item-boxes2:hover .icon i {
  color: #fff;
}

/* ==========================================================================
  6. Features Section Style
   ========================================================================== */
#features {
  background: url(../img/bg-1.png) fixed no-repeat;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 50px 0;
  text-align: center;
}

#features .section-title {
  color: #FFF;
  font-family: Alata;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

#features p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 175% */
}

#features .section-subtitle {
  color: #fff;
}

/* ==========================================================================
  8. Portfolio Section
   ========================================================================== */

   #portfolios h4 {
    color: #444;
    font-family: Montserrat;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 163.636% */
    letter-spacing: 1.54px;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 0;
   }

    #portfolios h6 {
    color: #444;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px; /* 156.25% */
   }

    #portfolios p {
    color: #444;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 200% */
  }

  /* .img_1 {
    background: url(../img/img_1.jpg) fixed;
    position: relative;
    height: 400px;
  }

  .img_2 {
    background: url(../img/img_2.jpg) fixed;
    position: relative;
    height: 400px;
  } */

  .pad_set {
    padding-left: 65px;
    padding-right: 65px;
  }
  
  .topPAdding {
    padding-top: 25px;
  }

  .topPAdding2 {
    padding-top: 60px;
  }

  .Legal_section {
    padding: 25px;
  }

  .Legal_section h5 {
    font-family: Montserrat;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    line-height: 36px;
  }

  .Legal_section p {
    font-family: Montserrat;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 24px;
  }

/* ==========================================================================
	9. Pricing Table
	========================================================================== */
.pricing-section {
    background-color: #191919;
    padding-left: 25px;
    padding-right: 25px;
}
.pricing-table {
  padding: 40px;
  border-radius: 6px;
  background: #FFF;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  height: 400px;
  position: relative;
}

.pricing-table:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.pricing-table .pricing-details h2 {
  color: #444;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px; /* 156.25% */
}

.pricing-table .pricing-details span {
  color: #444;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 180% */
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pricing-table .pricing-details p {
  color: #444;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 200% */
}

.plan-button a {
  color: var(--Primary-2-500, #FF450D);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  position: absolute;
  bottom: 30px;
}

.table-left {
  margin-top: 20px;
}

.mt-set {
  margin-top: 35px;
}

.line-hr {
    border-left: 1px solid;
    height: 30px;
}
/* ==========================================================================
15. Footer Style
 ========================================================================== */
footer {
  padding: 25px 0 0 0;
  background-color: #191919;
  color: #fff;
}

footer a {
  color: #fff;
}

.copyright {
  margin-top: 10px;
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  line-height: 24px; /* 171.429% */
  text-transform: capitalize;
}

.box3 {
  background: rgba(255, 255, 255, 0.8);
  height: 140px;
  border-radius: 4px;
  opacity: 1;
  padding: 15px 0px;
  color: #444;
  margin-bottom: 15px;
}

.box3 h6 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
}

.box3 p {
  text-align: center;
  color: #444 !important;
  font-size: 13px !important;
  padding: 0px 15px;
  line-height: 20px !important;
}

.contant_section {
  padding: 50px 0px;
}

.contant_section h3 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

.contant_section p {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
}

.contant_section ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.contant_section ul li {
  list-style: disc;
  font-weight: 500;
  line-height: 30px;
}
.footer-block {
  display: inline-flex;
  justify-content: center;
  padding-top: 20px;
}
.footer-block li {
  margin-right: 10px;
  margin-bottom: 15px;
}
.lineSet {
  font-size: 17px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .item-boxes h4 {
    font-size: 18px;
  }
}

/* mobile or only mobile */
@media (min-width: 340px) and (max-width: 768px) {
  
  .main-banner .caption h2 {
    font-size: 15px;
  }
  .section-header .section-title {
    font-size: 20px;
  }
  .pricing-table {
    margin-bottom: 35px;
    padding: 14px;
    height: auto;
  }
  .pricing-section {
    padding-left: 15px;
    padding-right: 15px;
 }
 .pricing-table .pricing-details span {
    font-size: 15px;
  }
  .plan-button a {
    bottom: 0px;
  }
  .mt-set {
    margin-top: 0px;
  }

  .contant_section {
    padding: 50px 0px 0px 0px;
  }
  .topPAdding {
    padding-top: 0px;
  }
  .section-header .section-title {
    line-height: 35px;
  }
  #first {
		order: 2;
	}
	#second {
		order: 1;
	}
  .topPAdding2 {
    padding-top: 25px;
  }
  .footer-block {
    display: block;
  }
  .lineSet {
    display: none;
  }
  .jus {
  justify-content:flex-start;
  }
  .section-header .section-subtitle {
    font-size: 13px;
  }
}

