/* 
=====================================================
TABLE OF CONTENTS
=====================================================
1. Font Imports
2. CSS Reset
3. Global Styles
4. Buttons
5. Section Headings
6. Header & Navigation
7. Banner/Slider
8. About/Core/Service/Work Sections
9. Features
10. Banners (Subscribe & Promotional)
11. Testimonials
12. Contact
13. Footer
14. Preloader
15. Search Overlay
16. Portfolio/Projects
17. Media Queries
=====================================================
*/


/* =====================================================
   1. FONT IMPORTS
   ===================================================== */
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Ruda&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pathway+Extreme:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');


/* =====================================================
   2. CSS RESET
   ===================================================== */
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, font, img, ins, kbd, q, s, samp, 
small, strike, strong, sub, sup, tt, var, b, u, i, 
center, dl, dt, dd, ol, ul, li, figure, header, 
nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

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

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

ul {
  margin-bottom: 0;
}


/* =====================================================
   3. GLOBAL STYLES
   ===================================================== */
html, body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  background-color: #fff;
  color: #1D293D;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  font-size: 14px;
  line-height: 25px;
  color: #1D293D;
}

::selection {
  background: #979a9a;
  color: #fff;
}

::-moz-selection {
  background: #979a9a;
  color: #fff;
}

/* Image Fill Utility */
.img-fill {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.img-fill img {
  min-height: 100%;
  min-width: 100%;
  position: relative;
  display: inline-block;
  max-width: none;
}

/* Grid Container */
.Grid1k {
  padding: 0 15px;
  max-width: 1200px;
  margin: auto;
}

/* Cookie Policy List */
.cpolicy {
  padding-left: 20px;
}

.cpolicy li {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  list-style-type: square;
}

/* Horizontal Line */
.hl {
  display: block;
  border-style: inset;
  width: 90%;
}

/* Download Link */
.dl p {
  font-size: 11px;
  font-family: 'Roboto', sans-serif;
  vertical-align: center;
  padding-left: 5px;
  padding-right: 5px;
}

.text-center h1 {
  font-size: 30px;
}


/* =====================================================
   4. BUTTONS
   ===================================================== */

/* Stroked Button */
a.main-stroked-button {
  font-size: 13px;
  border-radius: 25px;
  padding: 11px 25px;
  background-color: transparent;
  border: 2px solid #fff;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

a.main-stroked-button:hover {
  background-color: #fff;
  color: #5fb759;
}

/* Filled Button */
a.main-filled-button {
  font-size: 13px;
  border-radius: 25px;
  padding: 13px 25px;
  background-color: #fff;
  text-transform: uppercase;
  color: #5fb759;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

a.main-filled-button:hover {
  color: #fff;
  background-color: #17202a;
}

/* Button with Icon (Anchor) */
a.main-button-icon {
  font-size: 13px;
  border-radius: 25px;
  padding: 13px 25px;
  background-color: #17202a;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

a.main-button-icon i {
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
}

a.main-button-icon:hover i {
  padding-left: 5px;
}

/* Main Button (Button Element) */
button.main-button {
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  border-radius: 25px;
  padding: 10px 25px;
  background-color: #fff;
  text-transform: uppercase;
  color: #5fb759;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

button.main-button:hover {
  color: #fff;
  background-color: #5fb759;
}

/* Button with Icon (Button Element) */
button.main-button-icon {
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 13px;
  border-radius: 25px;
  padding: 13px 25px;
  background-color: #3F3E63;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

button.main-button-icon i {
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
}

button.main-button-icon:hover i {
  padding-left: 5px;
}

/* Text Button with Icon */
a.text-button-icon {
  text-transform: uppercase;
  color: #1e1e1e;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

a.text-button-icon i {
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
}

a.text-button-icon:hover {
  color: #943126;
}

a.text-button-icon:hover i {
  padding-left: 5px;
}

/* Bootstrap Button Overrides */
.btn-outline-success {
  color: #000;
}

a.btn-outline-success:hover {
  color: #fff;
  outline: none;
  background-color: #34495E;
}

.success:hover {
  color: #fff;
}


/* =====================================================
   5. SECTION HEADINGS
   ===================================================== */
.section-heading h6 {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  margin-top: 0;
  margin-bottom: 0;
}

.section-heading h2 {
  font-family: 'Lato', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 20px;
  margin-bottom: 0;
}


/* =====================================================
   6. HEADER & NAVIGATION
   ===================================================== */
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 100px;
  transition: all 0.5s ease;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  line-height: 80px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  transition: all 0.3s ease;
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 27px;
  margin-right: 0;
  background-color: transparent;
  transition: all 0.3s ease;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 20px;
  padding-right: 20px;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.3s ease;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #fff !important;
  opacity: 0.5;
}

/* Search Icon */
.header-area .main-nav .nav .search-icon {
  float: right;
  margin-left: 15px;
}

.header-area .main-nav .nav .search-icon a {
  background-color: #fff;
  color: #17202a;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
}

.header-area .main-nav .nav .search-icon a:hover {
  opacity: 1;
  color: #5fb759 !important;
}

/* Submenu */
.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 35px;
}

.header-area .main-nav .nav li.submenu:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #fff;
  position: absolute;
  right: 18px;
  top: 12px;
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 40px;
  opacity: 0;
  transform: translateY(2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}

.header-area .main-nav .nav li.submenu ul li a {
  opacity: 1;
  display: block;
  background: #fff;
  color: #17202a !important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 13px;
  border-bottom: 1px solid #f5f5f5;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
  background: #fff;
  color: #17202a !important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0.3s;
}

/* Background Header (Sticky) */
.background-header {
  background-color: #fff;
  height: 80px !important;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15) !important;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #373E48 !important;
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
}

.background-header .main-nav .nav li:hover a {
  color: #17202a !important;
}

.background-header .nav li a.active {
  color: #17202a !important;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #17202a !important;
  opacity: 1;
}

.background-header .main-nav .nav li.submenu:after {
  color: #17202a;
}

/* Mobile Menu Trigger */
.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: none;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
  width: 75%;
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area.header-sticky .nav {
  margin-top: 20px !important;
}

.header-area.header-sticky .nav li a.active {
  color: #5fb759;
}

/* Language Selector */
.lang {
  float: right;
  margin-left: 50px;
  color: #17202a;
}


/* =====================================================
   7. BANNER/SLIDER
   ===================================================== */

/* Slick Slider Base */
.blocks-box,
.slick-slider {
  margin: 0;
  padding: 0 !important;
}

.slick-slide {
  float: left;
  padding: 0;
}

.slick-slider {
  position: relative;
  display: block;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Modern Slider Styles */
.Modern-Slider {
  background: #000;
}

.Modern-Slider .item .img-fill {
  height: 95vh;
  background: #000;
}

.Modern-Slider-c .item .img-fill {
  height: 25vh;
  background: #000;
}

.Modern-Slider .item .info > div {
  display: inline-block !important;
  vertical-align: middle;
}

.Modern-Slider .text-content {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.Modern-Slider .item h3 {
  margin-bottom: 25px;
  font-size: 34px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  color: #FFF;
}

.Modern-Slider .item h5 {
  margin-bottom: 50px;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  color: #FFF;
  overflow: hidden;
}

.Modern-Slider .item a {
  margin: 0 5px;
}

/* Slider Animations */
.Modern-Slider .item.slick-active h3 {
  animation: fadeInDown 1s both 1s;
}

.Modern-Slider .item.slick-active h5 {
  animation: fadeInLeft 1s both 1.5s;
}

.Modern-Slider .item.slick-active {
  animation: Slick-FastSwipeIn 1s both;
}

/* Slider Arrows */
.Modern-Slider .NextArrow {
  position: absolute;
  top: 50%;
  right: 30px;
  border: 0 none;
  background-color: transparent;
  text-align: center;
  font-size: 36px;
  font-family: 'FontAwesome';
  color: #FFF;
  z-index: 5;
  outline: none;
  cursor: pointer;
}

.Modern-Slider .NextArrow:before {
  content: '\f105';
}

.Modern-Slider .PrevArrow {
  position: absolute;
  top: 50%;
  left: 30px;
  border: 0 none;
  background-color: transparent;
  text-align: center;
  font-size: 36px;
  font-family: 'FontAwesome';
  color: #FFF;
  z-index: 5;
  outline: none;
  cursor: pointer;
}

.Modern-Slider .PrevArrow:before {
  content: '\f104';
}

.Modern-Slider .buttons {
  position: relative;
}

/* Scroll Down Button */
.scroll-down {
  position: absolute;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  z-index: 10;
}

.scroll-down a {
  display: inline-block;
  background-color: #7f869e;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

ul.slick-dots {
  display: none !important;
}


/* =====================================================
   8. ABOUT/CORE/SERVICE/WORK SECTIONS
   ===================================================== */

/* Common Section Styles */
#about,
#core,
#service,
#work {
  padding: 120px 0 0 0;
  position: relative;
  z-index: 9;
}

#about .container,
#core .container,
#service .container,
#work .container {
  border-bottom: 5px solid #f7f7f7;
  padding-bottom: 80px;
}

#about .section-heading,
#core .section-heading,
#service .section-heading,
#work .section-heading {
  margin-bottom: 10px;
}

/* About Section */
#about .left-text-content .section-heading h6 {
  color: #323257;
  font-size: 24px;
}

#about .section-heading h2 {
  color: #323257;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
}

#about .service-item {
  margin-top: 30px;
}

#about .service-item img {
  float: left;
  margin-right: 15px;
  width: 46px;
  height: 46px;
}

#about .service-item h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  line-height: 46px;
}

#about .service-item p {
  font-size: 12px;
  line-height: 20px;
  font-weight: 300;
  text-align: left;
  color: #1D293D;
}

#about a.main-button-icon {
  display: inline-block;
  margin-top: 60px;
}

#about .right-text-content {
  margin-top: 40px;
}

#about .right-text-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 23px;
  font-weight: 300;
  color: #1D293D;
}

/* Core Section */
#core .section-heading h6 {
  color: #9a9d9f;
}

#core .section-heading h2 {
  font-size: 26px;
  font-family: 'Lato', sans-serif;
  color: #9a9d9f;
  text-transform: uppercase;
}

#core .service-item {
  margin-top: 30px;
}

#core .service-item img {
  float: left;
  margin-right: 15px;
  width: 46px;
  height: 46px;
}

#core .service-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  line-height: 46px;
}

#core a.main-button-icon {
  display: inline-block;
  margin-top: 60px;
}

#core .right-text-content {
  margin-top: 40px;
}

#core .right-text-content p {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 27px;
  color: #777;
}

/* Service Section */
#service .section-heading h6 {
  color: #323257;
}

#service .section-heading h2 {
  font-size: 26px;
  font-family: 'Lato', sans-serif;
  color: #323257;
  text-transform: uppercase;
}

#service .service-item {
  margin-top: 30px;
}

#service .service-item img {
  float: left;
  margin-right: 15px;
  width: 46px;
  height: 46px;
}

#service .service-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  line-height: 46px;
}

#service .service-item p {
  font-size: 12px;
  line-height: 20px;
  font-weight: 300;
  text-align: left;
  color: #1D293D;
}

#service a.main-button-icon {
  display: inline-block;
  margin-top: 60px;
}

#service .right-text-content {
  margin-top: 40px;
}

#service .right-text-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 23px;
  font-weight: 300;
  color: #1D293D;
}

/* Work Section */
#work .section-heading h6 {
  color: #323257;
}

#work .section-heading h2 {
  font-size: 26px;
  font-family: 'Lato', sans-serif;
  color: #323257;
  text-transform: uppercase;
}

#work .service-item {
  margin-top: 30px;
}

#work .service-item img {
  float: left;
  margin-right: 15px;
  width: 46px;
  height: 46px;
}

#work .service-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  line-height: 46px;
}

#work .service-item p {
  font-size: 12px;
  line-height: 20px;
  font-weight: 300;
  text-align: left;
  color: #1D293D;
}

#work a.main-button-icon {
  display: inline-block;
  margin-top: 60px;
}

#work .right-text-content {
  margin-top: 40px;
}

#work .right-text-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 23px;
  font-weight: 300;
  color: #1D293D;
}

/* Custom Right Text Content */
.right-text-content-c h3 {
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 13px;
  font-weight: bolder;
  line-height: 27px;
  color: #777;
}

.right-text-content-c p {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: normal;
  color: #777;
}


/* =====================================================
   9. FEATURES
   ===================================================== */
#features {
  padding-top: 80px;
  padding-bottom: 70px;
}

#features .features-item {
  margin-bottom: 50px;
}

.features-item .features-icon {
  float: left;
}

#features .features-content {
  margin-left: 75px;
}

.features-item .features-content h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  margin-bottom: 15px;
}

.features-item .features-content p {
  margin-bottom: 15px;
}

.features-content-c h4 {
  font-family: 'Pathway Extreme', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25px;
  margin-bottom: 15px;
}

.features-content-c p {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 15px;
}

.features-content p {
  font-size: 12px;
  line-height: 20px;
  font-weight: 300;
  text-align: left;
  color: #1D293D;
}


/* =====================================================
   10. BANNERS (SUBSCRIBE & PROMOTIONAL)
   ===================================================== */

/* Subscribe Banner */
#subscribe {
  padding: 80px 0;
  background-image: url(../images/slide-05.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#subscribe .section-heading {
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}

#subscribe .section-heading h2 {
  text-transform: uppercase;
}

#subscribe p {
  text-align: center;
  font-size: 16px;
  line-height: 27px;
  color: #fff;
  margin-bottom: 40px;
}

#subscribe input {
  width: 100%;
  height: 38px;
  border-radius: 19px;
  border: 1px solid #fff;
  background-color: transparent;
  padding: 0 20px;
  font-size: 13px;
  color: #fff;
  outline: none;
}

.subscribe-form ::-webkit-input-placeholder {
  color: #fff;
}

.subscribe-form :-ms-input-placeholder {
  color: #fff;
}

.subscribe-form ::placeholder {
  color: #fff;
}

/* Banner 01 - Education */
#banner01 {
  padding: 80px 0;
  background-image: url(../images/edu.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#banner01 .section-heading {
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}

#banner01 .section-heading h2 {
  text-transform: uppercase;
}

#banner01 .section-heading h6 {
  text-transform: uppercase;
  font-size: 33px;
}

#banner01 p {
  text-align: center;
  font-size: 16px;
  line-height: 27px;
  color: #fff;
  margin-bottom: 40px;
}

#banner01 input {
  width: 100%;
  height: 38px;
  border-radius: 19px;
  border: 1px solid #fff;
  background-color: transparent;
  padding: 0 20px;
  font-size: 13px;
  color: #fff;
  outline: none;
}

.banner01-form ::-webkit-input-placeholder {
  color: #fff;
}

.banner01-form :-ms-input-placeholder {
  color: #fff;
}

.banner01-form ::placeholder {
  color: #fff;
}

/* Banner 02 - Wellness */
#banner02 {
  padding: 80px 0;
  height: auto;
  background-image: url(../images/wellness.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#banner02 .section-heading {
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}

#banner02 .section-heading h2 {
  text-transform: uppercase;
}

#banner02 .section-heading h6 {
  text-transform: uppercase;
  font-size: 33px;
}

#banner02 p {
  text-align: center;
  font-size: 16px;
  line-height: 27px;
  color: #fff;
  margin-bottom: 40px;
}

#banner02 input {
  width: 100%;
  height: 38px;
  border-radius: 19px;
  border: 1px solid #fff;
  background-color: transparent;
  padding: 0 20px;
  font-size: 13px;
  color: #fff;
  outline: none;
}

.banner02-form ::-webkit-input-placeholder {
  color: #fff;
}

.banner02-form :-ms-input-placeholder {
  color: #fff;
}

.banner02-form ::placeholder {
  color: #fff;
}

/* Banner 03 - Community Safety */
#banner03 {
  padding: 80px 0;
  background-image: url(../images/comsafe.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#banner03 .section-heading {
  text-align: center;
  color: #fff;
  margin-bottom: 25px;
}

#banner03 .section-heading h2 {
  text-transform: uppercase;
}

#banner03 .section-heading h6 {
  text-transform: uppercase;
  font-size: 33px;
}

#banner03 p {
  text-align: center;
  font-size: 16px;
  line-height: 27px;
  color: #fff;
  margin-bottom: 40px;
}

#banner03 input {
  width: 100%;
  height: 38px;
  border-radius: 19px;
  border: 1px solid #fff;
  background-color: transparent;
  padding: 0 20px;
  font-size: 13px;
  color: #fff;
  outline: none;
}

.banner03-form ::-webkit-input-placeholder {
  color: #fff;
}

.banner03-form :-ms-input-placeholder {
  color: #fff;
}

.banner03-form ::placeholder {
  color: #fff;
}


/* =====================================================
   11. TESTIMONIALS
   ===================================================== */
#testimonials {
  margin-top: 120px;
  padding: 120px 0;
  background-image: url(../images/slide-03.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#testimonials .section-heading {
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}

#testimonials .item {
  position: relative;
  text-align: center;
}

#testimonials .item h4 {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  margin-top: 22px;
  margin-bottom: 7px;
}

#testimonials .item span {
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#testimonials .item .member-thumb {
  position: relative;
}

#testimonials .item .hover-effect {
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

#testimonials .item .hover-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

#testimonials .item:hover .hover-effect {
  opacity: 1;
  visibility: visible;
}

#testimonials .item .hover-effect ul li {
  display: inline-block;
  margin: 0 5px;
}

#testimonials .item .hover-effect ul li a {
  width: 32px;
  height: 32px;
  display: inline-block;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
  background-color: #fff;
  border-radius: 50%;
  color: #5fb759;
  transition: all 0.3s ease;
}

#testimonials .item .hover-effect ul li a:hover {
  color: #fff;
  background-color: #5fb759;
}

#testimonials .owl-carousel {
  padding-bottom: 60px;
}

/* Owl Carousel Dots */
.owl-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.owl-dots .owl-dot {
  outline: none;
  height: 10px;
}

.owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  outline: none;
  transition: all 0.2s ease;
}

.owl-dots .active span {
  width: 10px;
  height: 10px;
  margin-bottom: -1px;
}


/* =====================================================
   12. CONTACT
   ===================================================== */
#contact-us {
  padding: 120px 0;
  background-position: center center;
  background-repeat: no-repeat;
}

#contact-us .section-heading {
  margin-bottom: 50px;
}

#contact-us .section-heading h6 {
  color: #3F3E63;
}

#contact-us .section-heading h2 {
  color: #17202a;
  font-size: 14px;
  font-weight: 300;
}

#contact-us .left-text-content ul li {
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

#contact-us .left-text-content ul li img {
  margin-right: 15px;
}

#contact {
  margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
  color: #7a7a7a;
  font-size: 15px;
  border: 1px solid #ddd;
  background-color: #fff;
  width: 100%;
  height: 46px;
  outline: none;
  padding-top: 3px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 30px;
}

.contact-form textarea {
  height: 150px;
  resize: none;
  padding: 20px;
}

.contact-form ::-webkit-input-placeholder {
  color: #7a7a7a;
}

.contact-form :-ms-input-placeholder {
  color: #7a7a7a;
}

.contact-form ::placeholder {
  color: #7a7a7a;
}


/* =====================================================
   13. FOOTER
   ===================================================== */
footer {
  padding: 80px 0;
  background: #445970;
}

footer .left-text-content p {
  color: #fff;
  font-size: 10px;
}

footer .left-text-content a {
  color: #fff;
}

footer .right-text-content {
  float: right;
}

footer .right-text-content p {
  color: #fff;
  font-size: 10px;
  margin-right: 15px;
  text-transform: uppercase;
}

footer .right-text-content ul li {
  display: inline-block;
}

footer .right-text-content ul li a {
  display: inline-block;
  text-align: center;
  line-height: 32px;
  font-size: 10px;
  color: #fff;
}

footer .right-text-content ul li a:hover {
  color: #5fb759;
}


/* =====================================================
   14. PRELOADER
   ===================================================== */
#preloader {
  overflow: hidden;
  background-image: linear-gradient(145deg, #5D6D7E 0%, #17202a 100%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 99999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  animation-delay: 0.66666s;
}

@keyframes jumper {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}


/* =====================================================
   15. SEARCH OVERLAY
   ===================================================== */
#search {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  transition: all 0.5s ease-in-out;
  transform: translate(0, -100%) scale(0, 0);
  opacity: 0;
}

#search input {
  position: absolute;
  top: 50%;
  width: 100%;
  color: white;
  background: rgba(0, 0, 0, 0);
  font-size: 60px;
  font-weight: 300;
  text-align: center;
  border: 0;
  margin: 0 auto;
  margin-top: -51px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
}

#search .main-button {
  color: #fff;
  position: absolute;
  text-transform: uppercase;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 25px;
  letter-spacing: 1px;
  transform: translateX(-50%);
  top: 50%;
  left: 50%;
  margin-top: 61px;
  background-color: #5fb759;
  border: none;
  cursor: pointer;
}

#search .close {
  border-radius: 50%;
  position: fixed;
  top: 15px;
  right: 15px;
  color: #fff;
  background-color: #5fb759;
  outline: none;
  opacity: 1;
  display: inline-block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 28px;
  cursor: pointer;
  border: none;
}

#search.open {
  transform: translate(0, 0) scale(1, 1);
  opacity: 1;
}


/* =====================================================
   16. PORTFOLIO/PROJECTS
   ===================================================== */
#projects {
  padding-top: 120px;
}

#projects .container {
  border-bottom: 5px solid #f7f7f7;
  padding-bottom: 180px;
}

#projects .section-heading {
  margin-bottom: 60px;
}

#projects .section-heading h6 {
  color: #5fb759;
}

#projects .filters {
  margin-top: 50px;
}

#projects .filters ul {
  padding: 0;
}

#projects .filters ul li {
  list-style: none;
  display: block;
  padding: 15px 0;
  cursor: pointer;
  position: relative;
  font-size: 13px;
  font-weight: 700;
  color: #9a9a9a;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

#projects .filters ul li.active,
#projects .filters ul li:hover {
  color: #5fb759;
}

#projects .filters-content {
  margin-top: 50px;
}

#projects .filters-content .show {
  opacity: 1;
  visibility: visible;
  transition: all 350ms;
}

#projects .filters-content .hide {
  opacity: 0;
  visibility: hidden;
  transition: all 350ms;
}

#projects .filters-content .all {
  margin-bottom: 30px;
}

#projects .filters-content .item {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#projects .filters-content .item:hover {
  opacity: 0.75;
}

#projects .filters-content .item .p-inner {
  padding: 20px 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

#projects .filters-content .item .p-inner h5 {
  font-size: 15px;
}

#projects .filters-content .item .p-inner .cat {
  font-size: 13px;
}

#projects .filters-content .item img {
  width: 100%;
}


/* =====================================================
   17. MEDIA QUERIES
   ===================================================== */

@media (max-width: 992px) {
  /* Header */
  .header-area .main-nav .menu-trigger {
    display: block;
  }
  
  /* Footer */
  footer .left-text-content p {
    text-align: center;
    margin-bottom: 30px;
  }
  
  footer .right-text-content {
    float: none;
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Slider text adjustments */
  .Modern-Slider .item h3 {
    font-size: 24px;
  }
  
  .Modern-Slider .item h5 {
    font-size: 26px;
  }
  
  /* Section headings */
  .section-heading h2 {
    font-size: 24px;
  }
  
  /* Banner headings */
  #banner01 .section-heading h6,
  #banner02 .section-heading h6,
  #banner03 .section-heading h6 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  /* Logo */
  .header-area .main-nav .logo {
    font-size: 22px;
  }
  
  /* Slider text */
  .Modern-Slider .item h3 {
    font-size: 20px;
  }
  
  .Modern-Slider .item h5 {
    font-size: 22px;
  }
  
  /* Section padding */
  #about,
  #core,
  #service,
  #work,
  #contact-us {
    padding: 80px 0 0 0;
  }
  
  /* Search input */
  #search input {
    font-size: 36px;
  }
}