@import url("//hello.myfonts.net/count/3c3bf5");
  
@font-face {
  font-family: 'SilverSouthScript';
  src: url('webFonts/SilverSouthScript/font.woff2') format('woff2'), url('webFonts/SilverSouthScript/font.woff') format('woff');
}


body {
  font-family: 'Montserrat', sans-serif;
  color: #000;
}

a {
  color: #ffc107;
}

a:hover {
  color: #ffce3a;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rufina', serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #ffc107;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #ffce3a;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  background: rgba(55, 64, 85, 0.9);
}

#header.header-transparent {
  background: transparent;
}
#header.header-fill {
  background: #fff;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 0; box-shadow: 0 0 10px #e6e6e6;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 2px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 54px;
}

img.certified{width:50%}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex; margin-top: -15px;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 56px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #000;
  transition: 0.3s;
  font-size: 13px;
  text-transform:uppercase;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #e85a45;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #414c64;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #ffc107;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background:transparent;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right; padding: 5px;
}

.mobile-nav-toggle i {
  color:#f16655;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #414c64;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #e85a45;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(45, 53, 69, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(45, 53, 69, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  text-align: center;
  padding-top: 50px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 0;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin: 15px 0 0 0;
  font-size: 22px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 35px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 40px;
  border: 2px solid #ffc107;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #ffc107;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0; clear:both;
}

.section-bg {
  background-color: #f7f8fa;
}

.section-title {
  text-align: center;
  padding-bottom: 0px;
}

/* .section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-bottom: 0px;
  position: relative;
} */

/* .section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ffc107;
  bottom: 0;
  left: calc(50% - 25px);
} */

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #aab3c7;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafafc;
  min-height: 40px;
  margin-top: 82px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
}

.clients img:hover {
  -webkit-filter: none;
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.container {max-width: 1170px;}
.about .container {max-width: 970px; padding-right: 70px;}
.about h3 { font-weight: 700; font-size: 38px; color: #000; line-height: 1.1; margin: 0; }

.about h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about i {
  font-size: 48px;
  margin-top: 15px;
  color: #8b97b3;
}

.about p {
  font-size: 14px;
  color: #000; line-height: 20px;
}
.about p:last-child {margin-bottom:0}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 40px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #414c64;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
  background: #f5f5f5;
  border-radius: 50px;
}

.services .icon-box .icon i {
  font-size: 32px;
  transition: 0.5s;
  line-height: 1;
  position: relative;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #414c64;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon {
  background: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon {
  background: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon {
  background: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon {
  background: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon {
  background: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon {
  background: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #414c64;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ffc107;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ffc107;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #ffe7a0;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #fafafc;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #ffc107 !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 18px 10px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #fafafc;
  border-radius: 50px;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #414c64;
  background: #ffc107;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #ffc107;
  padding: 15px 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: rgba(255, 255, 255, 0.7);
  transition: ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #fff;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

.portfolio .portfolio-item:hover img {
  top: -30px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(65, 76, 100, 0.06);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}

.team .member .social a {
  transition: color 0.3s;
  color: #414c64;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #ffc107;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #414c64;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #ffc107;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #ffc107;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #c8cedc;
  color: #6c7c9f;
}

.pricing .btn-buy:hover {
  background: #fff;
}

.pricing .featured h3 {
  color: #fff;
  background: #ffc107;
}

.pricing .featured .btn-buy {
  background: #ffc107;
  color: #fff;
  border: 2px solid #ffc107;
}

.pricing .featured .btn-buy:hover {
  background: #ffce3a;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #ffc107;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #ffce3a;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #ffc107;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 20px rgba(65, 76, 100, 0.05);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #ffc107;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #ffeeba;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 20px rgba(65, 76, 100, 0.05);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #ffc107;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #ffc107;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ffce3a;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding: 40px 0;
}

.portfolio-details .portfolio-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #ffc107 !important;
}

.portfolio-details .portfolio-info {
  padding-top: 45px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-info p {
  font-size: 15px;
  padding: 15px 0 0 0;
}

@media (max-width: 992px) {
  .portfolio-details .portfolio-info {
    padding-top: 20px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #414c64;
  font-size: 13px;
  background: #f4f5f8;
}

#footer .footer-top {
  padding: 20px 0;
  background: #c77659;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 0px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ffc107;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 4px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1; font-size: 13px;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #000;
}

#footer .footer-newsletter {
  font-size: 15px; align-self: end;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e1e4ec;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffc107;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #ffce3a;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #c77659;
  line-height: 1;
  padding: 8px 0;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  width: 33px;
  height: 33px;
  transition: 0.3s;
}
#footer .social-links a.linkedin { margin-right: 0; }
#footer .social-links a:hover {
  background: #ffce3a;
  text-decoration: none;
}
.main-part { padding-top: 20px; }
.fancy-text { font-family: 'SilverSouthScript'; font-size: 53px; line-height: 1; color: #000; padding: 20px 0 30px; width: 100%; display: inline-block; letter-spacing: 1px; }
section#services { background: #f2bebf; padding: 20px 0 150px; /* max-width: 1360px; */max-width: 100%; margin: auto;}
.fancy-ttl { font-family: 'SilverSouthScript'; font-size: 53px; line-height: 1; color: #fff; padding: 0px; width: 100%; display: inline-block; letter-spacing: 1px; text-align:center}
#about { position: relative; padding: 60px 0 38px; background: url("../img/about-bg.png") no-repeat scroll bottom center; background-size: unset; }
#about::before {content:""; position:absolute; width:156px; height:100%; background:transparent url("../img/about-bg-left.png") no-repeat scroll left bottom; left:0; bottom:0; display:none;}
#about::after {content:""; position:absolute; width:156px; height:100%; background:transparent url("../img/about-bg-right.png") no-repeat scroll right bottom; right:0; bottom:0; display:none;}
.practices-box { width: 30%; text-align: center; float: left; position: relative; top: -15px; }
.practices-box:nth-child(2) { margin: 0 5%; top: 30px; }
.practices-img { width: 100%; text-align: center; margin-top: 5px; margin-top: 5px; }
.practices-box:nth-child(3) .practices-img { margin-top: 0;  margin-bottom: 5px;}

.production .container {max-width: 970px; padding-right: 70px;}
.production {background:#fcdee6; padding:30px 0; /**max-width: 1360px;**/ margin: auto;}
.production .fancy-text {padding-top:0;padding-bottom: 20px;}
.section-ttl { font-weight: 700; font-size: 38px; color: #000; line-height: 1.1; margin: 0; }
.why-part .container {max-width:970px;}
.why-list-part { background: #d7e1ee; padding: 26px 30px; position: relative; width: 672px; float: none; display: inline-block; margin: 0 auto; text-align: left; margin-top: -198px;  }
.why-list-ttl { font-weight: 700; font-size: 35px; color: #000; line-height: 1.1; margin: 0 0 9px; }
.why-list-box { width: 50%; float: left; }
.why-list-box.left { padding-right: 30px; border-right: 1px solid #000;}
.why-list-box.right { padding-left: 43px; }
.why-list ul { margin: 0; padding: 0; list-style: none; }
.why-list ul li {font-size: 13px; color: #000; width: 100%; line-height: 1.6; padding-left: 12px; margin: 0; position: relative; line-height: 23px; margin-bottom: 2px; }
.why-list ul li::before { content: "";position: absolute;left: 0;top: 10px;width: 3px; height: 3px;background: #000; border-radius: 100%; }
#why { background: #fffdee; padding: 30px 0 25px; position:relative; background:#fffdee url("../img/why-us-bg.png") no-repeat scroll top center; background-size: unset; }
#why::before {content:""; position:absolute; width:131px; height:100%; background:transparent url("../img/why-bg-left.png") no-repeat scroll left top; left:0; top:0; display:none;}
#why::after {content:""; position:absolute; width:182px; height:100%; background:transparent url("../img/why-bg-right.png") no-repeat scroll right top; right:0; top:0; display:none;}
.why-part { width: 100%; position: relative; display: inline-block; margin-top: -185px;}
.why-part-2 { width: 100%; position: relative; /* background: url("../img/why.jpg") no-repeat scroll top center; height: 625px; float: left; */ display: inline-block;}
.offset-1-5 {margin-left:12%;}
.why-list-btn { float: left; width: 100%; text-align: center; margin-top: 12px; }
.why-list-btn a { background: #c77659;  display: inline-block; color:#fff; text-transform:uppercase; font-size:13px; padding:7px 14px; letter-spacing: 1px; }
.round-full { width: 100%; float: left; text-align: center; }
.round-1 { display: inline-block; width: 180px; height: 180px; background: #e85a46; border-radius: 100%; position: relative; left: -20px; top: 10px; }
.why-img { float: left; width: 100%; }
.why-blue { width: 100%; float: left; text-align: center; }
.why-list-btn2 { float: left; width: 100%; text-align: center; margin-top: 22px; }
/* .why-list-btn2 a { background: #c77659; display: inline-block; color: #fff; text-transform: uppercase; font-size: 13px; padding: 7px 16px; font-weight: 300; letter-spacing: 1px; } */
.why-list-btn2 a { background: #c77659; display: inline-block; color: #fff; text-transform: uppercase; font-size: 13px; padding: 7px 14px; letter-spacing: 1px; }
.round-ttl { width: 100%; font-family: 'Ultra', serif; font-size: 52px; line-height: 1.05; color: #fff; text-align: center; line-height: 1; }
.round-1 .round-ttl { height: 180px; display: table-cell; width: 180px; vertical-align: middle; font-family: 'Ultra', serif; font-size: 52px; line-height: 1.05; color: white; }
.round-full-2 { float: left; width: 100%; }
.round-2 { width: 255px; height: 255px; background:url("../img/round-2.png") no-repeat scroll left center; margin-top: -154px; margin-left: 17px; text-align: center; padding:36px 15px 15px; float: left;}
.round-txt { font-size: 39px; color: #000; font-family: 'Rufina', serif; font-weight: 800; line-height: 1; margin-top: 11px; }
.round-fancy { font-family: 'SilverSouthScript'; font-size: 53px; line-height: 1.1; color: #000; padding: 0px; width: 100%; display: inline-block; letter-spacing: 1px; text-align: center; }
.round-3 { width: 304px; height: 305px; background:url("../img/round-3.png") no-repeat scroll left center; margin-top: 5px; margin-left: -62px; text-align: center; padding:10px; float: left;}
.round-3 .round-ttl {color: #f08f94;}
.round-3 .round-txt {margin-top: -4px; margin-bottom: 5px;}
.round-4 { width: 357px; height: 357px; background: url("../img/round-4.png") no-repeat scroll center; margin-top: 9px; margin-left: 8px; text-align: center; padding: 17px 35px 10px; float: left; }
.round-4 .round-ttl {color: #c87759;}
.round-4 .round-txt {margin-top: 9px; margin-bottom: 5px; line-height: 40px;}
.round-4 .round-fancy {line-height: 44px;}
.round-5 { width: 331px; height: 331px; background: url("../img/round-5.png") no-repeat scroll center; margin-top: -179px; margin-left: -70px; text-align: center; padding: 17px 15px 10px; float: left; position: relative; right: -12px; }
.round-5 .round-ttl {color: #e85a45;}
.round-5 .round-txt {margin-top: 0; margin-bottom: 15px; line-height: 41px;}
.round-small { font-size: 14px; font-weight: 300; line-height: 1; margin-top: 9px; letter-spacing: 0px; }
.copyright { font-size: 9px; color: #fff; line-height: 12px; /* margin-top: 19px; */margin-top: 0; }
.copyright a {color: #fff;}
#footer .container {max-width: 970px;}
#header .container {max-width: 970px;}
#contact .container {max-width: 970px;}
.inside-main-part {padding-top:74px;}
.inside-header { height: 301px; width: 100%;}
.header-how-to { background:transparent url("../img/header-how-to.jpg") no-repeat scroll bottom center; }
#how-to { padding: 16px 0; background: #eddcde; /* url("../img/how-to.jpg") no-repeat scroll top center; */ /* max-width: 1360px; */max-width: 100%; margin: auto; }
.how-to-part .container {max-width: 930px;}
.how-boxes { display: inline-block; width: 100%; margin-top: 13px; }
.how-box { float: left; width: 196px; height: 196px; border-radius: 100%; }
.how-box-1 { background: #f4b896; margin-top: 0; margin-left: 16px;}
.how-box-2 { background: #e5a28d; margin-top: 0; margin-left: 32px;}
.how-box-3 { background: #ed6f59; margin-top: 0; margin-left: 33px;}
.how-box-4 { background: #e85a45; margin-top: 0; margin-left: 32px;}
.how-box-5 { background: #f6bdb8; margin-top: -30px; margin-left: 142px;}
.how-box-6 { background: #f19b94; margin-top: -30px; margin-left: 22px;}
.how-box-7 { background: #ee8e99; margin-top: -30px; margin-left: 32px;}
.how-box-3 .how-ttl {left: -4px;position: relative;}
.how-box-3 .how-text, .how-box-4 .how-text {padding-top:5px;}
.how-box-4 .how-ttl {left: -4px;position: relative;}
.how-box-5 .how-ttl {left: -6px;top: 9px;position: relative;}
.how-box-6 .how-ttl {left: -6px;top: 9px;position: relative;}
.how-box-7 .how-ttl {left: -6px;top: 9px;position: relative;}
.how-ttl { width: 100%; font-family: 'Ultra', serif; font-size: 52px; color: #fff; text-align: left; line-height: 1.1; }
/* .how-text { font-size: 16px; text-align: center; height: 110px; display: flex; align-items: center; padding: 0px 60px; } */
.how-text { font-size: 16px; text-align: center; padding: 20px 15px 0; line-height: 21px; width:100% }
.how-boxes-para { clear: both; max-width: 440px; margin: 15px auto 0; text-align: center; font-size: 13px; line-height: 20px; }

#clients { /* padding: 74px 0 0; */ padding:0; /* background: transparent url("../img/clients-bg.png") no-repeat scroll bottom right; */ /* max-width: 1360px; */max-width: 100%; margin: auto; }
.clients-pad {padding: 74px 0 0;max-width: 46.5%;}
.clients-bg-1 { min-height: 633px; padding-top: 150px; background: transparent url("../img/clients-bg.png") no-repeat scroll -5px top; }
.clients-bg-1 {flex: 0 0 53.5%; max-width: 100%; }
.main-part.inside-main-part-2 { padding-top: 0; }
.clients-bg { padding-left: 40px; }
/* .clients-bg {position:relative;height: 562px;}
.clients-bg::before { content: ""; position: absolute; left:0; top:0; background: transparent url("../img/clients-bg.png") no-repeat scroll bottom left;} */
.clients-img-part img {width:100%;}
.clients-bg-part { max-width: 460px; text-align: center; /* height:410px; */ font-size: 14px; }
.clients-bg-part .section-ttl {margin-top:10px;}
.clients-bg-part .fancy-text { padding:10px 0; }
.content-list { margin: 0; padding: 0; list-style: none; width: auto; display: inline-block; }
.content-list li { margin: 0; padding: 0; list-style:none; position:relative; }
.content-list li::before { content: ""; position: relative; left: -6px; top: -4px; width: 3px; height: 3px; background: #000; border-radius: 100%; display: inline-block; }
#footer .footer-top .footer-links ul li a {text-transform: uppercase; font-size:11px;}
.copyr-box { float: right; margin-bottom: 4px;}

#contact { padding: 74px 0 0; background: transparent url("../img/contact-bg.png") no-repeat scroll top left; }
.cont-text { font-size: 14px; display: inline-block; width: 100%; padding-bottom: 32px; padding-top: 0px; line-height: 26px; }
.contact-bg-part { padding-top: 35px; }

#capabilities .container {max-width: 984px;}
.capabilities-part-2 .container {max-width: 970px;}
#capabilities { background: #fffdee url("../img/capabilities-bg.png") no-repeat scroll top center; padding: 0 0 165px; position: relative; /* max-width: 1360px; margin: auto; */}
.capabilities-bg-part { position: relative; }
.capabilities-bg-part .owl-dots {display:none;}
.capabilities-bg-part .owl-nav { position: absolute; left: 0; top: 50%; width: 100%; background: none; z-index: 99999; }
.capabilities-bg-part .owl-nav button {height:61px; width:24px;margin:0 5px; outline: none;}
.capabilities-bg-part .owl-nav button.owl-prev {background: transparent url("../img/arrow-left.png") no-repeat scroll top center; float:left;}
.capabilities-bg-part .owl-nav button.owl-next {background: transparent url("../img/arrow-right.png") no-repeat scroll top center; float:right;}
.capabilities-bg-part .owl-nav button span {display:none;}
.capabilities-inner { width: 100%; max-width: 1360px; margin: 0 auto; display: inline-block; text-align: left;padding-bottom: 62px; position:relative; }
#capabilities::before { content: ""; position: absolute; width: 128px; height: 100%; background: transparent url("../img/capabilities-bg-left.png") no-repeat scroll left top; left: 0; top: 0; display:none; }
#capabilities::after { content: ""; position: absolute; width: 136px; height: 100%; background: transparent url("../img/capabilities-bg-right.png") no-repeat scroll right top; right: 0; top: 0; display:none; }
.capabilities-blue { width: 100%; /* float: left; */ text-align: center; }
.capabilities-list-part { background: #d7e1ee; padding: 27px 30px 34px; position: relative; width: 672px; float: none; display: inline-block; margin: 0 auto; text-align: left; margin-top: -311px; z-index: 9; }
.capabilities-list-box { width: 50%; float: left; }
.capabilities-list-box.left { padding-right: 30px; border-right: 1px solid #000;}
.capabilities-list-box.right { padding-left: 30px; }
.capabilities-list ul { margin: 0; padding: 0; list-style: none; }
.capabilities-list ul li {font-size: 13px; color: #000; width: 100%; line-height: 1.6; padding-left: 12px; margin: 0 0 4px; position: relative; }
.capabilities-list ul li::before { content: "";position: absolute;left: 0;top: 10px;width: 3px; height: 3px;background: #000; border-radius: 100%; }
.capabilities-list-ttl { font-weight: 700; font-size: 35px; color: #000; line-height: 1.1; margin: 0 0; }
.capabilities-ttl2 { font-family: 'SilverSouthScript'; font-size: 53px; line-height: 1; color: #000; padding: 0px; width: 100%; display: inline-block; letter-spacing: 1px; margin-bottom: 14px; }
.capabilities-part-2 { background: #f7b8bf; padding: 70px 0 65px; /* max-width: 1360px; */ max-width: 100%; margin: auto;}
.capabilities-cont { text-align: center; padding: 60px 15px 0; }
.capabilities-fancy-text { font-family: 'SilverSouthScript'; font-size: 53px; line-height: 1; color: #000; padding: 0px 0 19px; width: 100%; display: inline-block; letter-spacing: 1px; }
.capabilities-para { font-size: 13px; display: inline-block; max-width: 550px; }
.factory-part { background: #f8dad5; padding: 33px 0 25px; /* max-width: 1360px; */ max-width: 100%; margin: auto;}
.factory-part .section-ttl { margin-bottom: 40px; }
.factory-part .owl-nav { position: absolute; left: 0; top: 50%; width: 100%; background: none; z-index: 99999; transform: translateY(-60px);}
.factory-part .owl-nav button {height:61px; width:24px;margin:0; outline: none; }
.factory-part .owl-nav button.owl-prev {background: transparent url("../img/black-arrow-left.png") no-repeat scroll top center; float:left;}
.factory-part .owl-nav button.owl-next {background: transparent url("../img/black-arrow-right.png") no-repeat scroll top center; float:right;}
.factory-part .owl-nav button span {display:none;}
.factory-part .owl-dots { text-align: center; margin-top: 30px; }
.factory-part .owl-dot {outline:none;}
.factory-part .owl-dot span { background: #e1b19d; width: 10px; height: 10px; display: inline-block; border-radius: 100%; margin: 0 4px; }
.factory-part .owl-dot.active span { background: #c77659; }
.factory-carousel { padding: 0 30px; }


.why-1-ttl { display: inline-block; width: 100%; margin-bottom: 15px; }
.why-2-img { float: right; width: 53.5%; }
.why-2-content { float: right; width: 420px; padding: 15px 20px 20px 35px; background: #feeeeb; position: relative; }
.why-1-content .number-ttl {color: #f9ccdb; }
.why-1-content .fancy-text, .why-1-content .section-ttl { display: inline-block; width: auto; margin: 0; padding: 0; }
.number-ttl { width: 100%; font-family: 'Ultra', serif; font-size: 52px; color: #f09095; text-align: left; line-height: 1; }
.why-2-content .fancy-text { padding-top:10px; padding-bottom:7px; }
.why-2-content .section-ttl { line-height: 1; }
.why-2-content p, .why-1-content p { font-size: 14px; line-height: 1.3; margin-bottom: 12px; }
.why-1-content p { margin-bottom: 25px; }
.why-3-img { float: left; width: 46.5%;text-align: right;}
.why-3-img img {width: 100%; max-height: 730px; object-fit: cover; object-position: top center;}
.why-2-content.why-3-content { float: left; width: 590px; background: #cddae9; margin-top: 35px; margin-top: 35px; padding: 15px 100px 16px 31px; }
.why-3-content .number-ttl {color:#c77659}
.why-3-content .fancy-text { padding-top: 2px; padding-bottom: 10px; }
.why-3-content .section-ttl {margin-top: 7px; line-height: 1.1;}
.why-2 { display: inline-block; width: 100%;position: relative; text-align:center;overflow: hidden; }
.why-2-inner { width: 100%; max-width: 1360px; margin: 0 auto; display: inline-block; text-align: left;padding-bottom: 62px; position:relative; }
.why-2-inner::before {content:""; position: absolute; left:-40px; top:-1px; width:176px; height:100%; background:url("../img/why-2-bg.png") no-repeat scroll top center;}
.why-3 { display: inline-block; width: 100%; position: relative;text-align:center;overflow: hidden;}
.why-3-inner { width: 100%; /* max-width: 1360px; */ max-width: 100%; margin: 0 auto; display: inline-block; text-align: left;padding-bottom: 37px; position:relative;}
/* .why-3-inner::after {content:""; position: absolute; right:-52px; top:-5px; width:245px; height:100%; background:url("../img/why-3-bg.png") no-repeat scroll top center;}  */
.why-2-content.why-3-content {position:relative;}
.why-2-content.why-3-content::after { content: ""; position: absolute; right: -181px; top: -40px; width: 245px; height: 743px; background: url("../img/why-3-bg.png") no-repeat scroll top center; }
.why-3-content p { margin-bottom: 13px; }
.why-3-content p.first { margin-bottom: 25px; }
.why-4 { display: inline-block; width: 100%; padding: 0px 0; text-align: center; /* margin-top: 45px; */ }
.why-4-inner { background: #fcdee6; width: 100%; /* max-width: 1360px; */max-width: 100%; margin: 0 auto; display: inline-block; position:relative;padding: 40px 0;}
.why-4-content {display: inline-block;margin: auto;max-width: 900px;}
.why-4-content .fancy-text {display: inline-block;margin: auto;padding: 0px 0 15px; width: 100%;}
.why-4-ttl .number-ttl { float: left; width: auto; color: #e85a45; }
.why-4-ttl .section-ttl { float: left; width: auto; max-width: 85%; text-align: left; padding-left: 14px; padding-top: 6px;}
.why-4-ttl { width: 640px; display: inline-block;max-width: 100%; }
.why-4-part { width: 16.66%; float: left; font-size: 13px; text-align: left; padding: 0 15px; line-height: 1.4; }
.why-5 {text-align: center;}
.why-5-inner { width: 100%; max-width: 1360px; margin: 0 auto; /* display: inline-block; */ position:relative;}
.why-5-content { padding: 0 30px; width:100%; }
.why-5-part { float: left; width: 25%; padding: 0 15px; }
.why-5-part img {width:100%}
.why-us-img-part { width: 45%; float: left; margin-top: 27px; padding-left: 2px; }
.why-us-img-part img { max-width: 413px; }
.wy-us-bg { width: 55%; float: left; padding-left: 32px; position: relative; }
.wy-us-bg .fancy-text { text-align: center; padding: 0 0; max-width: 400px; line-height: 44px; }
.section-ttl .red { color: #e76135; }
.why-us-bg-part { padding-top: 10px; }
.why-1 { background: url("../img/why-1-bg.png") no-repeat scroll top center; padding: 60px 0 12px; display: inline-block; width: 100%; position: relative;}
.why-1::before { content: ""; position: absolute; left: 0; top: 0; width: 117px; height: 100%; background: url("../img/why-left-dot.png") no-repeat scroll top left; display:none; }
.why-1::after { content: ""; position: absolute; right: 0; top: 0; width: 172px; height: 100%; background: url("../img/why-right-dot.png") no-repeat scroll top right;  display:none;}
#why-us { padding: 0; }
.why-1 .container {max-width:970px;}
.about p.para-mar-b {margin-bottom: 15px;}
.terms-part .container {max-width:970px;}
.terms-txt { height: 300px; padding-top: 50px; font-size: 14px; }

#footer { clear: both; /* max-width: 1360px; */ max-width: 100%; margin: auto;}
.mobile-nav-active .mobile-nav {height: 240px;}


/*--New css --*/
.fixed-top {position:absolute;}

.header-fill-1 { background: #fffdee !important; box-shadow: none !important; }

@media (min-width: 2560px) {
.clients-bg-1 {min-height: 655px;}
.why-2-content {padding-bottom:20px;}
#contact { background: transparent url("../img/contact-bg-big.png") no-repeat scroll top center; background-position: 58% 0; background-size: 1360px; }
#clients, .page-client #footer {max-width: 1400px; margin: auto; }
}


@media (min-width: 1361px) {
.header-how-to {background-position:center center; background-size:cover;}
}


@media (width: 1360px) {
.why-2-content {padding-bottom:16px;}
}


@media (width: 1024px) {
.clients-bg-1 {min-height: 529px;padding-top: 135px;}
}

@media (max-width: 767px) {
.how-boxes {text-align: center;margin-top:0;}
.how-box { margin-left: 0 !important; margin-top: 10px !important; float: none; display: block; margin: 10px auto !important; } 
.why-blue {padding:0 15px;}
.why-list-ttl {font-size: 25px;}
.capabilities-list-part, .why-list-part {width: 100%;margin-top: -55px;}
.capabilities-list-box, .why-list-box {width: 100%;}
.capabilities-list-box.left, .why-list-box.left {padding-right: 0; padding-bottom: 15px; border-right: 0; border-bottom: 1px solid #000;}
.capabilities-list-box.right, .why-list-box.right {padding-left: 0; padding-top: 15px;}
.section-ttl, .capabilities-list-ttl, .about h3 {font-size: 26px;}
.capabilities-fancy-text, .capabilities-ttl2, .fancy-text {font-size: 35px;}
.why-list-btn {text-align: left;}
.about .container {padding-right:15px;}
.practices-box {top: 0;width: 100%;margin: 20px 0 0;}
.practices-box:nth-child(2) { margin: 20px 0 0; top: 0; position: static; }
.why-part {margin-top:0;}
section#services{padding-bottom:30px;}
.fancy-ttl, .round-fancy {font-size: 35px;}
.why-img {margin-bottom: 15px;}
.round-1 {left: 0; top: 0;}
.round-2, .round-3, .round-4, .round-5 {float: none; margin: 0 auto;right:auto;left: auto;padding: 20px 25px;}
.round-4 {width: 320px; height: 320px; background-size:100%;}
.round-1 .round-ttl {font-size: 40px;}
.round-txt {font-size: 32px;line-height: 35px !important;}
.clients-img-part img { width: 100%; }
.clients-bg-part {margin: 0 auto;padding-bottom: 20px;}
#contact {background: transparent url("../img/contact-bg-mob.png") no-repeat scroll;background-position: 163px 100%; background-size:100%}
.copyr-box { float: left; width: 100%; margin-top: 10px; }
#capabilities {padding-bottom:15px;}
.capabilities-blue {padding: 0 20px;}
.capabilities-bg-part .owl-nav button {background-size: 15px !important;}
.why-2, .why-3 {padding-bottom: 30px;}
.why-2-inner, .why-3-inner {padding-bottom: 0px;}
.why-2-content, .why-2-content.why-3-content {width: 100%; padding: 15px;}
.why-4-content {width: 100%; padding:0 15px;}
.why-2-img, .why-3-img {width: 100%;}
.why-2-content .number-ttl, .why-3-content .number-ttl, .why-4-content .number-ttl {font-size: 40px;}
.why-4-ttl .section-ttl{font-size: 20px;}
.why-4-ttl {max-width:100%;}
.why-4-part {width:100%;padding: 15px 0;}
.why-5-content {padding: 0 7px 14px;float: left;}
.why-5-part {width: 50%; padding: 15px 8px 0;}
.why-5-part img {width: 100%;}
.wy-us-bg {width: 100%; padding-left: 0;}
.why-us-img-part{width: 100%;text-align: center;}
.why-us-bg-part .section-ttl {text-align:center}
.why-us-img-part img { max-width: 415px; width:100%}
.wy-us-bg .fancy-text {max-width: 100%;}
#about::before { width: 75px; background-size: 100%; background-position: 0px 60px; }
#about::after { width: 75px; background-size: 100%; background-position: 0px 60px; z-index: -1; }
#why::before {background-size: 100%;width: 80px; display:block}
#why::after {display:none;}
.clients-bg {padding-left: 0;}
.clients-bg-1 {min-height: auto; padding-top: 15px; background-position: 50% -80px;background-size: 660px;flex: 0 0 100%;}
.clients-pad {max-width:100%;}
.inside-header { height: 100px; width: 100%; padding: 0; background-size: cover; background-position: top center; }
.copyr-box {margin-top: 0;}
#footer .footer-newsletter { width: 50%; }
#footer .footer-top .footer-links { width: 50%; }
.wy-us-bg {position:relative;}
.wy-us-bg::after { content: ""; position: absolute; width: 100%; height: 340px; background: url("../img/why-1-bg-mob.png") no-repeat top center; top: -130px; left: 0; z-index:-1 }
.why-3-inner::after, .why-2-inner::before, .why-1::before, .why-1::after {z-index: -1;}
.why-1 {background:none;}
.capabilities-part-2 {padding: 0px 0 30px;}
.capabilities-cont {padding-top:30px;}
.contact-bg-part .section-ttl {max-width: 98%;}
}

@media (min-width: 640px) and (max-width: 767px) {
#contact {background-position: 340px 100%;}	
.inside-header {height: 150px;}
}

@media (min-width: 768px) and (max-width: 1023px) {
/* .fancy-ttl, .round-fancy {font-size: 35px;} */
.section-ttl {font-size: 35px;}
.why-img {margin-bottom: 15px;}
.round-1 {left: 0; top: 0;}
.round-2, .round-3, .round-4, .round-5 {float: none; margin: 0 auto;right:auto;left: auto;padding: 20px 25px;}
.round-4 {width: 320px; height: 320px; background-size:100%;}
.round-1 .round-ttl {font-size: 40px;}
.round-txt {font-size: 32px;line-height: 35px !important;}
.fancy-text {font-size: 40px;padding-bottom: 10px;}
.about h3 {font-size: 30px;}
.fancy-ttl {font-size: 40px;}
.practices-box {top: 0;}
.practices-img img { max-width: 100%; }
.why-part {margin-top: -175px;}
.how-box { width: 167px; height: 167px;margin-left: 17px !important; }
.how-box-5 {margin-left: 110px !important;}
.how-text {padding-top:10px;font-size: 15px;}
.clients-img-part img { width: 100%; }
.clients-bg-part {margin: 0 auto;padding-bottom: 20px;}
.why-2-img, .why-2-content {width: 50%;}
.why-2-content.why-3-content, .why-3-img {width: 50%;margin: 0;}
.why-3 {float:left;background: #cddae9;padding: 0;}
.why-2 {float:left;background: #feeeeb;padding: 0;}

#about::before { width: 75px; background-size: 100%; background-position: 0px 60px; }
#about::after { width: 75px; background-size: 100%; background-position: 0px 60px; }
#why::after {display:none;}
.clients-bg {padding-left: 0px;}
.clients-bg-1 {min-height: 550px; padding-top: 130px; background-position: 100% center; flex: 0 0 100%;}
.clients-pad {max-width:100%;}
}