@import url("all.css"); /* Font Awesome */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
  background: url("../images/mainbg.jpg") left top repeat;
}

a {
  color: #ed3d47;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #ed3d47;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  /*font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", "sans serif";*/
  font-family: 'Bebas Neue', cursive;
  font-weight: 600;
  font-weight: 400;
  /*margin: 0 0 20px 0;*/
  padding: 0;
}

ul, ol {
  list-style-type: none;
}

/*--------------------------------------------------------------
# Order button
--------------------------------------------------------------*/
.place-order {
  width: 200px;
  position: absolute;
  top: 50px !important;
  right: 50px !important;
  z-index: 10000;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #50d8af;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #71dfbe;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #1c5990;
  font-size: 14px;
  padding: 10px 0 0;
  margin-bottom: 0;
}
#topbar p {
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
  width: 100%;
}

#discountholder {
  text-align: center;
  float: left;
  width: 100%;
  line-height: 50px;
  border-bottom: white dashed 4px;
  font-size: 18px;
  font-weight: bold;
  color: white;
}
.red-bar {
  padding: 11px 5px;
  text-align: center;
}
.red-bar p {
  color: white;
  font-size: 18px;
  font-weight: bold;
}
.red-bar p i {
  font-size: 24px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
  -webkit-box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}
#header #logo h1 {
  font-size: 42px;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
#header #logo h1 a {
  color: #0c2e8a;
}
#header #logo h1 a span {
  color: #50d8af;
}
#header #logo img {
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  #header {
    height: 60px;
  }
  #header #logo h1 {
    font-size: 34px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #50d8af;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
          box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #50d8af;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }

  #hero {
    background-size: cover;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0c2e8a;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(8, 30, 91, 0.9);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0c2e8a;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #50d8af;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
          box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #50d8af;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 600px;
  position: relative;
  background: url("../images/bg.jpg") center center no-repeat;
  background-size: 1920px;
  padding: 0;
}
#hero.order-header {
  width: 100%;
  height: 40vh;
  position: relative;
  background: url("../img/place-order-hero.jpg") center center no-repeat;
  background-size: cover;
  padding: 0;
  margin-bottom: 0px;
}
#hero .hero-content {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.block_1 .title {
  margin-top: 50px;
  z-index: 10;
  position: relative;
}
.block_1 .title p{
  padding-right: 15px;
  font-size: 24px;
  font-family: 'Bebas Neue', cursive;
  font-weight: 600;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.2;
}
.red {
  color: #ed3d47;
}
.green {
  color: #BCD021;
}
.blue {
  color: #1c5990;
}
.big{
  font-size: 36px;
}
.medium {
  font-size: 32px;
}
.block_1 ul {
  margin: 55px 0 25px 260px;
  width: 45%;
  z-index: 10;
  position: relative;
}
.block_1 ul li {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 5px;
  margin-bottom: 5px;
  background: #1c5990;
}
.block_1 ul li span {
  color: #f59bad;
}

.block_1 ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  background: #ed3d47;
  display: inline-block;
  margin-left: -20px;
  padding: 5px;
}
.product {
  position: absolute;
  bottom: 0;
}
.product img {
  position: relative;
  z-index: 5;
}
.product div::after {
  background: url(../img/glucocil-bottle.png) center no-repeat;
  width: 329px;
  height: 201px;
  z-index: 7;
  bottom: -110px;
  right: 50px;
}
.block_1 .bottom {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
}
/*.block_1 .bottom .container::before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 695px;
  height: 695px;
  bottom: 0;
  left: -150px;
  display: block;
  background: #fff;
}*/
.block_1 .bottom p {
  margin-left: 180px;
  color: #123216;
  font-size: 22px;
  font-family: 'Bebas Neue', cursive;
  font-style: italic;
  font-weight: 600;
  padding: 23px 20px 23px 20px;
  text-align: right;
  line-height: 1;
  position: relative;
  width: 65%;
  text-shadow:1px 1px #f26d6e;
  z-index: 1;
  
}
.block_1 .bottom p span {
  font-size: 32px;
  
}
.block_1 .bottom:before {
  content: "";
  background: url("../img/hero-cta-bg.svg") left center no-repeat;
  position: absolute;
  width: 100%;
  height: 200px;
  margin-top: -50px;
  margin-left: 160px;
  z-index: -1;
}
/*.block_1 .bottom p:before {
  content: "";
  position: absolute;
  right: -55px;
  bottom: 0;
  width: 55px;
  height: 55px;
  border-left: 55px solid #BCD021;
  border-top: 55px solid transparent;
  border-bottom: 55px solid transparent;
}*/
#hero .hero-content h2 {
  color: #0c2e8a;
  margin-bottom: 30px;
  font-size: 64px;
  font-weight: 700;
}
#hero .hero-content h2 span {
  color: #50d8af;
  text-decoration: underline;
}
@media (max-width: 767px) {
  
  #hero .hero-content h2 {
    font-size: 34px;
  }
  .block_1 ul {
    margin: 25px 0;
    width: 100%;
  }
  .block_1 .bottom {
    position: relative;
    z-index: 1;
    bottom: 0;
    width: 100%;
  }
  
  .block_1 .bottom:before {
    content: "";
    background: url("../img/hero-cta-bg.svg") left center no-repeat;
    position: absolute;
    width: 100%;
    height: 200px;
    margin-top: 0px;
    margin-left: 0px;
    z-index: -1;
  }
  #banner .banner-bg .banner-inner {
    display: block !important;
  }
  #banner .banner-bg .banner-inner > * {
    display: block !important;
  }
  #banner .banner-bg .banner-inner img {
    margin-bottom: 30px !important;
    width: 100%;
  }
  #formulation .title {
    font-size: 42px !important;
    margin-top: -45px !important;
    margin-bottom: 30px !important;
  }
  #formulation .formulation-content {
    display: block !important;
  }
  .formula-img, .ingredients {
    display: block !important;  
  }
}
#hero .hero-content .btn-get-started, #hero .hero-content .btn-projects {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
}
#hero .hero-content .btn-get-started {
  background: #0c2e8a;
  border: 2px solid #0c2e8a;
}
#hero .hero-content .btn-get-started:hover {
  background: none;
  color: #0c2e8a;
}
#hero .hero-content .btn-projects {
  background: #50d8af;
  border: 2px solid #50d8af;
}
#hero .hero-content .btn-projects:hover {
  background: none;
  color: #50d8af;
}
#hero .hero-slider {
  z-index: 8;
  height: 60vh;
}
#hero .hero-slider::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 7;
}
#hero .hero-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

#banner {
  margin-bottom: 0;
}

#banner .banner-bg {
  background: #fff;
  padding: 5px !important;
}
#banner .banner-bg .banner-inner {
  background: #f6f6f6;
  border: 1px solid;
  padding: 10px;
  display: table;
  z-index: 10;
  position: relative;
}
#banner .banner-bg .banner-inner > * {
  display: table-cell;
  vertical-align: middle;
}
#banner .banner-bg .banner-inner .banner-txt {
  padding: 10px 20px;
}
#banner .banner-bg .banner-inner .banner-txt h3 {
  font-family: 'Bebas Neue', cursive;
  font-weight: 600;
}
#banner .banner-bg .banner-inner .banner-txt p {
  margin: 0;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
  margin-bottom: 70px;
}

/* Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 30px;
}
.section-header h2 {
  font-size: 32px;
  color: #0c2e8a;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}
.section-header h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #50d8af;
  bottom: 0;
  left: 0;
}
.section-header p {
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafafa;
  min-height: 40px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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;
  }
}

/* About Section
--------------------------------*/
#about {
  padding: 60px 0 30px 0;
  background: url("../images/bg-about.jpg") center center no-repeat;
  background-size: cover;
  border-radius: 10px;
  border-bottom: 10px solid #1369C0;
}
#about .about-content {
  padding: 20px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid #fff;
  border-radius: 10px;
}
#about .about-img {
  overflow: hidden;
}
#about .about-img img {
  margin-left: -15px;
  max-width: 100%;
}
@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }
  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}
#about .content h2 {
  font-weight: 700;
  /*font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", "sans serif";*/
  font-family: 'Bebas Neue', cursive;
  font-weight: 600;
  font-size: 54px;
  margin-top: 20px;
  margin-bottom: 20px;
}
#about .content h3 {
  color: #555;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}
.bdtwotxt{
  font-size:16px;
}
#about .content p {
  line-height: 26px;
}
#about .content p:last-child {
  margin-bottom: 0;
}
#about .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #50d8af;
}
#about .content ul {
  list-style: none;
  padding: 0;
}
#about .content ul li {
  padding-bottom: 10px;
}

/* Formulation Section
--------------------------------*/
#formulation {
  padding: 40px 0;
  background: url("../img/formulation-bg.jpg") center center no-repeat;
  background-size: cover;
  margin-bottom: 30px;
  border-radius: 10px;
  border-bottom: 10px solid #1369C0;
  z-index: -2;
}
.shape {
  height: 50px;
  width: 150px;
  border-bottom: 3px solid red;
  border-left: 3px solid red;
  -webkit-transform: skew(60deg);
  transform: skew(60deg);
  position: absolute;
  margin-left: 250px;
  /*margin-top: -100px;*/
  z-index: 3;
}

#formulation:before {
  content: "";
  background: url("../images/title-bg.svg") center center no-repeat;
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 200px;
  margin-top: -120px;
  margin-left: -10px;
  z-index: 0;
}
#formulation .content {
  z-index: 1;
}
/*#formulation .formulation-content {
  display: table;
}

.formula-img, .ingredients {
    float: none;
  display: table-cell;
    vertical-align: middle; 
}*/
#formulation .title {
  font-size: 54px;
  text-shadow:1px 1px #f26d6e;
  margin-top: -50px;
  margin-bottom: 50px;
}
#formulation .box {
  padding: 20px;
  -webkit-box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
          box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
  background: rgba(255, 255, 255, .65);
  border: 1px solid #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-bottom: 5px;
}
#formulation .box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}
#formulation .box h4 a {
  color: #444;
}
#formulation .box p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 24px;
}

/* Formulation1 Section
--------------------------------*/
#formulation1 {
  padding: 40px 0;
  margin-bottom: 0px;
}
.formulationInner {
  background: rgba(255, 255, 255, .75);
  padding: 20px;
  border: 1px solid #fff;
  border-radius: 10px;
  position: relative;
}

.place-order3 {
  width: 200px;
  position: absolute;
  top: 20px !important;
  right: 30px !important;
  z-index: 10000;
}

#formulation1 .title {
  text-shadow: 1px 1px #fff;
}


/* Benefits Section
--------------------------------*/
#benefits {
  padding: 40px 0;
  background: #333;
  border-radius: 10px;
  border-bottom: 10px solid #1369C0;
  background: url("../images/bg-benefits.jpg") left center no-repeat;
  background-size: cover;
}

#benefits:before {
  content: "";
  background: url("../images/title-bg1.svg") left center no-repeat;
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100px;
  /*margin-top: -120px;*/
  margin-left: -50px;
  z-index: 0;
}
#benefits .content {
  z-index: 1;
}
#benefits .title {
  font-size: 54px;
  text-shadow:1px 1px #f26d6e;
  margin-top: 20px;
  margin-bottom: 50px;
}
#benefits .title2 {
  font-size: 54px;
  margin-top: 20px;
  margin-bottom: 50px;
}
.sixlfttxt {
  font-size:16px;
  color:#000;
  padding:20px;
  line-height:24px;
  border: 1px solid #fff;
  border-radius: 10px;
  background: rgba(255, 255, 255, .75);
}
.benefits-list ul {
  padding:0;
  margin: 0;
}
.benefits-list ul li {
  font-size:16px;
  color:#fff;
  /*text-shadow:1px 1px #39c;*/
  margin-bottom:25px;
  margin-top:10px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(3, 90, 162)), to(rgba(3, 90, 162)));
  background: linear-gradient(to right, rgba(3, 90, 162), rgba(3, 90, 162));
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 15px 15px 15px 88px;
}

.benefits-list ul li:before {
  content: "";
  background: url("../images/tick-benefits.png") center center no-repeat;
  display: inline-block;
  position: absolute;
  width: 60px;
  height: 68px;
  margin-top: -25px;
  margin-left: -70px;
}

/* Formulation Section
--------------------------------*/
#testimonials {
  padding: 40px 0;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 10px;
  border-bottom: 10px solid #1369C0;
  z-index: -2;
}

#testimonials:before {
  content: "";
  background: url("../images/title-bg.svg") center center no-repeat;
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 200px;
  margin-top: -110px;
  margin-left: -145px;
  z-index: 0;
}
#testimonials .content {
  z-index: 1;
}

#testimonials .title {
  font-size: 54px;
  position: absolute;
  text-shadow:1px 1px #f26d6e;
  margin-top: -40px;
}

/**  Custom  **/
.title-container {
  margin-bottom: 70px;  
}

.single-testimonial {
  display: table;
}

/*.testimonialtxt:before {
  content: "";
  position: relative;
  width: 100px;
  height: 40px;
  bottom: 0;
  margin-left: -100px;
  border-bottom: 37px solid #ED3D47;
  border-left: 100px solid transparent;
}*/
.testimonialtxt div {
  background: #eae9e9;
  border-radius: 10px;
  display: table-cell;
}
.testimonialimg {
  width: 100px;
  float: left;
}

.sevenhding {
  font-size:18px;
  color:#fff;
  text-align:center;
  line-height:2;
  font-weight:700;  
  background: #ed3d47;
  margin: 0 0 0px 0;
  border-radius: 10px 10px 0 0px;
}
.seventxt {
  font-size:14px;
  color:#330;
  text-align:left;
  padding:10px 6px 10px 6px;
  height:100px;
}
.sevenftr {
  font-size:12px;
  color:#09c;
  font-weight:700;
  font-style:italic;
  text-align:left;
  line-height:30px;
  height:47px;
  padding:0 6px 0 110px;
}
/* Services Section
--------------------------------*/
#sec8 {
  padding: 0px 0;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
}

.place-order2 {
  width: 200px;
  position: absolute;
  bottom: 30px !important;
  right: 70px !important;
  z-index: 10000;
}
/* order Section
--------------------------------*/
#order {
  position: relative;
  margin-bottom: 0px;
  margin-top: -70px;
  z-index: 3;
}
#order .container {
  background: rgba(255, 255, 255, .9);
  padding: 50px 30px;
  border: 1px solid #fff;
  border-radius: 10px;
}


/* Services Section
--------------------------------*/
#services {
  padding: 40px 0;
}
#services .box {
  padding: 40px;
  -webkit-box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
          box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
  background: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 100%;
}
#services .box:hover {
  -webkit-box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
          box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
}
#services .box .icon {
  float: left;
}
#services .box .icon i {
  color: #444;
  font-size: 64px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 0;
  margin-top: 34px;
}
#services .box .icon i:before {
  background: #0c2e8a;
  background: linear-gradient(45deg, #50d8af 0%, #a3ebd5 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#services .box h4 {
  margin-left: 100px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}
#services .box h4 a {
  color: #444;
}
#services .box p {
  font-size: 14px;
  margin-left: 100px;
  margin-bottom: 0;
  line-height: 24px;
}
@media (max-width: 767px) {
  #services .box .box {
    margin-bottom: 20px;
  }
  #services .box .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }
  #services .box h4, #services .box p {
    margin-left: 0;
    text-align: center;
  }
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 30px 0;
}
#clients img {
  max-width: 100%;
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 15px 0;
}
#clients img:hover {
  opacity: 1;
}
#clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
#clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #50d8af;
}
#clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #50d8af;
}

/* Our Portfolio Section
--------------------------------*/
#portfolio {
  background: #fff;
  padding: 30px 0;
}
#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: 10px 18px 12px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444;
  margin: 0 3px 10px 3px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  background: #f7f7f7;
  border-radius: 4px;
}
#portfolio #portfolio-flters li:hover, #portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #50d8af;
}
#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;
  -webkit-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -50px;
  z-index: 3;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  background: #50d8af;
  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.6);
  -webkit-transition: ease-in-out 0.3s;
  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;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #50d8af;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #50d8af;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  -webkit-box-shadow: 0px 0 30px rgba(12, 46, 138, 0.08);
          box-shadow: 0px 0 30px rgba(12, 46, 138, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.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-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 30px 0;
}
#testimonials .testimonials-carousel, #testimonials .testimonials-slider {
  overflow: hidden;
}
#testimonials .testimonial-item {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  -webkit-box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  #testimonials .testimonial-item {
    margin: 30px 10px;
  }
}
#testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}
#testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}
#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}
#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
#testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #50d8af;
}
#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #50d8af;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: #081e5b;
  background-size: cover;
  padding: 40px 0;
}
#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
#call-to-action .cta-text {
  color: #fff;
}
@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}
#call-to-action .cta-btn:hover {
  background: #50d8af;
  border: 3px solid #50d8af;
}

/* Our Team Section
--------------------------------*/
#team {
  background: #fff;
  padding: 30px 0 0 0;
}
#team .member {
  text-align: center;
  margin-bottom: 20px;
}
#team .member .pic {
  overflow: hidden;
  text-align: center;
}
#team .member .pic img {
  max-width: 100%;
}
#team .member .details {
  background: #50d8af;
  color: #fff;
  padding: 15px;
  border-radius: 0 0 3px 3px;
}
#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}
#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
#team .member .social {
  margin-top: 5px;
}
#team .member .social a {
  color: #fff;
}
#team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/* Contact Section
--------------------------------*/
#contact {
  padding: 30px 0;
}
#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}
#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #50d8af;
}
#contact .contact-info address, #contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}
#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}
#contact .contact-info a {
  color: #000;
}
#contact .contact-info a:hover {
  color: #50d8af;
}
#contact .contact-address, #contact .contact-phone, #contact .contact-email {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #contact .contact-address, #contact .contact-phone, #contact .contact-email {
    padding: 20px 0;
  }
}
@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}
#contact #google-map {
  height: 290px;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  #contact #google-map {
    margin-top: 20px;
  }
}
#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 {
  padding: 10px 14px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 15px;
}
#contact .php-email-form input::focus, #contact .php-email-form textarea::focus {
  background-color: #50d8af;
}
#contact .php-email-form button[type=submit] {
  background: #50d8af;
  border: 0;
  border-radius: 3px;
  padding: 10px 30px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}
#contact .php-email-form button[type=submit]:hover {
  background: #2dc899;
}
@-webkit-keyframes animate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

#terra-wrapper {
  font-family: "Roboto", Arial, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 15px 5px;
  color: #000;

}

  #terra-wrapper .spin-wrapper {
    border: 3px solid red;
    -webkit-box-shadow: 0 0 10px;
    box-shadow: 0 0 10px;
    padding: 30px 10px 20px;
    margin: 0 auto;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
  }

    #terra-wrapper .spin-wrapper + .spin-result-wrapper + .order-wrapper {
      display: none;
    }

    #terra-wrapper .spin-wrapper b {
      font-size: 21px;
      line-height: 1.2;
      display: inline-block;
      margin: 0;
      padding: 0;
    }

    #terra-wrapper .spin-wrapper p {
      font-size: 21px;
      line-height: 1.2;
      margin: 0 0 15px;
      padding: 0;
      text-align: center !important;
    }

  #terra-wrapper .wheel {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  #terra-wrapper .wheel-img {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  #terra-wrapper .wheel-cursor {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: #fff;
    -webkit-box-shadow: 0 0 11px;
    box-shadow: 0 0 11px;
  }

    #terra-wrapper .wheel-cursor:before {
      content: "";
      position: absolute;
      top: -8%;
      right: 50%;
      -webkit-transform: translate(50%, -50%);
      transform: translate(50%, -50%);
      width: 0;
      height: 0;
      border-left: 9.5px solid transparent;
      border-right: 9.5px solid transparent;
      border-bottom: 17px solid #fff;
    }

  #terra-wrapper .cursor-text {
    font: 400 16px/18px "Times New Roman";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 1px solid #ccc;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-shadow: rgba(255, 255, 255, 1) 0 -2px 0 inset, rgba(255, 255, 255, 1) 0 2px 0 inset, rgba(0, 0, 0, .4) 0 0 5px;
    box-shadow: rgba(255, 255, 255, 1) 0 -2px 0 inset, rgba(255, 255, 255, 1) 0 2px 0 inset, rgba(0, 0, 0, .4) 0 0 5px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
  }

    #terra-wrapper .cursor-text:active {
      -webkit-box-shadow: rgba(0, 0, 0, .4) 0 0 5px inset;
      box-shadow: rgba(0, 0, 0, .4) 0 0 5px inset
    }

  #terra-wrapper .spin-result-wrapper {
    display: none;
    background-color: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  #terra-wrapper .popup-window {
    max-width: 400px;
    width: 93%;
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    margin: 0 auto;
    background: #fff;
    padding: 40px 10px 20px;
    border-radius: 10px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: .7s ease 0s normal none 1 running terra-popup-appear;
    animation: .7s ease 0s normal none 1 running terra-popup-appear
  }

@-webkit-keyframes terra-popup-appear {
  0% {
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
  }

  30% {
    -webkit-transform: translate(50%, 100px);
    transform: translate(50%, 100px)
  }

  100% {
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
  }
}

@keyframes terra-popup-appear {
  0% {
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
  }

  30% {
    -webkit-transform: translate(50%, 100px);
    transform: translate(50%, 100px)
  }

  100% {
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
  }
}

#terra-wrapper .popup-window::before {
  content: "";
  position: absolute;
  top: -38px;
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  width: 76px;
  height: 76px;
  background-color: #71c341;
  border-radius: 50%;
  -webkit-animation: .5s ease .6s normal backwards 1 running terra-popup-appear-before;
  animation: .5s ease .6s normal backwards 1 running terra-popup-appear-before
}

@-webkit-keyframes terra-popup-appear-before {
  0% {
    -webkit-transform: translateX(50%) scale(0);
    transform: translateX(50%) scale(0)
  }

  100% {
    -webkit-transform: translateX(50%) scale(1);
    transform: translateX(50%) scale(1)
  }
}

@keyframes terra-popup-appear-before {
  0% {
    -webkit-transform: translateX(50%) scale(0);
    transform: translateX(50%) scale(0)
  }

  100% {
    -webkit-transform: translateX(50%) scale(1);
    transform: translateX(50%) scale(1)
  }
}

#terra-wrapper .popup-window::after {
  content: "";
  position: absolute;
  top: -14px;
  right: 50%;
  -webkit-transform: translateX(50%) rotate(-45deg);
  transform: translateX(50%) rotate(-45deg);
  margin: 0 auto;
  width: 43px;
  height: 15px;
  border-width: medium medium 4px 4px;
  border-style: none none solid solid;
  border-color: currentcolor currentcolor #fff #fff;
  -o-border-image: none;
  border-image: none;
  -webkit-transition: opacity 1s ease 0s;
  transition: opacity 1s ease 0s;
  -webkit-animation: .5s ease .6s normal backwards 1 running terra-popup-appear-after;
  animation: .5s ease .6s normal backwards 1 running terra-popup-appear-after
}

@-webkit-keyframes terra-popup-appear-after {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes terra-popup-appear-after {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

#terra-wrapper .close-popup {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-animation: .5s ease .6s normal backwards 1 running terra-popup-close;
  animation: .5s ease .6s normal backwards 1 running terra-popup-close;
}

@-webkit-keyframes terra-popup-close {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 0;
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 1;
  }
}

@keyframes terra-popup-close {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 0;
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 1;
  }
}

#terra-wrapper .close-popup:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%) rotate(135deg);
  transform: translate(50%, -50%) rotate(135deg);
  width: 3px;
  height: 25px;
  background: #000;
}

#terra-wrapper .close-popup:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%) rotate(-135deg);
  transform: translate(50%, -50%) rotate(-135deg);
  width: 3px;
  height: 25px;
  background: #000;
}

#terra-wrapper .popup-heading {
  display: inline-block;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
  padding: 0 !important
}

#terra-wrapper .popup-text {
  color: #414141;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  text-align: center !important;
  margin: 15px 0 20px;
  padding: 0;
}

#terra-wrapper .popup-button {
  color: #fff !important;
  display: inline-block;
  background-color: #71c341;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  outline: 0;
  text-decoration: none;
  padding: 10px 75px;
  margin: 0;
}

#terra-wrapper .super-rotation {
  -webkit-animation-name: terra-super-rotation;
  animation-name: terra-super-rotation;
  -webkit-animation-duration: 7s;
  animation-duration: 7s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out
}

@-webkit-keyframes terra-super-rotation {
  70% {
    -webkit-transform: rotate(1783deg);
    transform: rotate(1783deg)
  }

  100% {
    -webkit-transform: rotate(1774deg);
    transform: rotate(1774deg)
  }
}

@keyframes terra-super-rotation {
  70% {
    -webkit-transform: rotate(1783deg);
    transform: rotate(1783deg)
  }

  100% {
    -webkit-transform: rotate(1774deg);
    transform: rotate(1774deg)
  }
}

#terra-wrapper .order-wrapper {
  padding:5px;
  background: #1C5990;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

#terra-wrapper .dir {
  direction: rtl;
}

#terra-wrapper .prod-wrapper {
  max-width: 300px;
  width: 100%;
  margin: 0 auto 15px;
  position: relative;
  text-align: center;
}

  #terra-wrapper .prod-wrapper img {
    display: inline-block;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
  }

#terra-wrapper .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font: 700 19px/1.3 "Arial", sans-serif;
  text-align: center;
  width: 165px;
  height: 110px;
  position: absolute;
  right: 50%;
  bottom: -93px;
  top: inherit;
  left: inherit;
  color: #000;
  -webkit-box-shadow: rgba(0, 0, 0, 50%) 0px 3px 16px;
  box-shadow: rgba(0, 0, 0, 50%) 0px 3px 16px;
  -webkit-transform: rotateZ(-7deg) translateX(50%);
  transform: rotateZ(-7deg) translateX(50%);
  margin: 0 auto;
  padding: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(238, 165, 19)), to(rgb(253, 237, 19)));
  background: linear-gradient(to right, rgb(238, 165, 19) 0%, rgb(253, 237, 19) 100%);
  border-width: 2px;
  border-style: solid;
  border-color: rgb(255, 255, 255);
  -o-border-image: initial;
  border-image: initial;
  border-radius: 19%;
}

  #terra-wrapper .price span {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: 700;
    color: #000;
  }

#terra-wrapper .discount {
  display: inline-block;
  width: 100%;
  height: auto;
  border: none;
  border-radius: 0;
  font-size: 18px !important;
  line-height: 1.3 !important;
  text-transform: none;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  color: #000;
}

#terra-wrapper .al-cost-promo, #terra-wrapper .al-cost-promo-test, #terra-wrapper .al-cost-promo-null {
  text-decoration: line-through;
}

#terra-wrapper .price .al-cost, #terra-wrapper .price .al-cost-test {
  font-size: 24px;
  color: red;
  border-bottom: 2px solid #d31812;
  margin: 0 auto;
  padding: 0;
}

#terra-wrapper .offer-wrapper div {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  letter-spacing: normal;
  color: inherit;
  margin: 0 0 3px;
  padding: 0 10px;
  background: transparent;
}

#terra-wrapper .offer-wrapper .timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 5px 0 0;
  direction: ltr;
}

#terra-wrapper .timer span {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  font-family: inherit;
  margin: 0 5px;
  color: red;
}

#terra-wrapper .offer-wrapper {
  margin-top: 110px;
}

  #terra-wrapper .offer-wrapper div:last-child {
    margin-bottom: 15px;
  }

#terra-wrapper .al-form {
  display: inline-block;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

  #terra-wrapper .al-form .label {
    background: transparent;
    color:white;
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    width: auto;
    height: auto;
    border-radius: 0;
    cursor: text;
    border: none;
    margin: 0;
    padding: 0;
  }

  

  #terra-wrapper .al-form .input-wrapper {
    width: 100%;
    position: relative;
    margin: 0 auto 20px;
  }

#terra-wrapper .order-wrapper .phone-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  direction: ltr;
}

  #terra-wrapper .order-wrapper .phone-code input[name=areacode] {
    max-width: 55px;
    margin-right: 10px;
    padding: 5px;
    text-align: center;
    background: #fff;
  }

#terra-wrapper .al-form input,
#terra-wrapper .al-form select {
  display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  width: 100% !important;
  height: 45px;
  border: 2px solid grey;
  border-radius: 5px;
  margin: 0;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000;
}

#terra-wrapper .dir .al-form input,
#terra-wrapper .dir .al-form select {
  direction: ltr;
  text-align: right;
}

#terra-wrapper .al-form input::-webkit-input-placeholder {
  color: grey;
}

#terra-wrapper .al-form input:-ms-input-placeholder {
  color: grey;
}

#terra-wrapper .al-form input::-ms-input-placeholder {
  color: grey;
}

#terra-wrapper .al-form input::-moz-placeholder {
  color: grey;
}

#terra-wrapper .al-form input::placeholder {
  color: grey;
}

#terra-wrapper .al-form .input-wrapper .error {
  border: 1px solid red;
  padding-top: 6px;
}

#terra-wrapper .al-form .input-wrapper .validator__tooltip + .error {
  border: 2px solid grey;
  padding-top: 0;
}

#terra-wrapper .al-form .input-wrapper label {
  display: none;
  pointer-events: none;
  z-index: 1;
}

#terra-wrapper .al-form .input-wrapper .error + label {
  display: block;
  width: 100%;
  height: 100%;
  color: red;
  font-size: 11px;
  line-height: 17px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  padding-left: 10px;
  overflow: hidden;
}

#terra-wrapper .dir .al-form .input-wrapper .error + label {
  left: initial;
  right: 10px;
  text-align: right;
}

#terra-wrapper .al-form .input-wrapper .validator__tooltip + .error + label {
  display: none;
}

#terra-wrapper .al-form .input-wrapper .error + label:before,
#terra-wrapper .al-form .input-wrapper .error + label:after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 3px;
  height: 21px;
  background-color: red
}

#terra-wrapper .dir .al-form .input-wrapper .error + label:before,
#terra-wrapper .dir .al-form .input-wrapper .error + label:after {
  right: initial;
  left: 30px;
}

#terra-wrapper .al-form .input-wrapper .error + label:before {
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg)
}

#terra-wrapper .al-form .input-wrapper .error + label:after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg)
}

.btn-wrapper {
  text-align: center;
}

  #terra-wrapper .order-wrapper .terra-btn, .btn-wrapper .terra-btn {
    display: inline-block;
    margin: 10px auto 30px;
    padding: 15px;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    color: #fff !important;
    background: #8eb81e ;
    border-radius: 4px;
    border: none;
    cursor: pointer;
  }

    #terra-wrapper .order-wrapper .terra-btn:hover, .terra-btn:hover {
      opacity: 0.8;
    }

#terra-wrapper .time-remains {
  margin-top: 15px;
}

  #terra-wrapper .time-remains p {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center !important;
    text-transform: inherit;
    padding: 0;
    margin: 0;
    color: inherit;
    border: none;
  }

  #terra-wrapper .time-remains span {
    color: red;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    font-family: inherit;
  }

#terra-wrapper .med {
  background-image: url(../img/formbg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 30px 20px 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

  #terra-wrapper .med img {
    max-width: 100px;
    width: 100%;
  }

  #terra-wrapper .med h2 {
    color: #333;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    padding: 0;
    margin: 5px 0 0 0;
  }

  #terra-wrapper .med span {
    display: inline-block;
    color: blue;
    font-size: 14px;
    line-height: 1.2;
    margin: 3px auto;
    background: transparent;
  }

  #terra-wrapper .med p {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #000;
  }

    #terra-wrapper .med p a {
      color: blue;
      text-decoration: none !important;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
    }

    #terra-wrapper .med p .al-cost-promo {
      color: inherit;
      text-decoration: none;
      border: none;
      text-decoration: line-through;
    }

    #terra-wrapper .med p .al-cost {
      color: red;
      text-decoration: none;
      border: none;
    }

  #terra-wrapper .med .frame {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    margin: 7px 10px 15px;
    padding: 10px;
    border: 2px solid #0299ff;
  }

  #terra-wrapper .med .al-form {
    max-width: 300px;
  }

    #terra-wrapper .med .al-form .label {
      font-size: 16px;
      font-weight: 700;
    }

    #terra-wrapper .med .al-form input, #terra-wrapper .med .al-form select {
      border: 2px solid #e9d7dc;
      border-radius: 3px;
    }

  #terra-wrapper .med .terra-btn {
    background: #0299ff !important;
    font-size: 20px;
    font-weight: 700;
    border-radius: 5px;
    margin: 10px 0 20px;
    -webkit-box-shadow: 0 4px 15px 0 rgb(129 150 160 / 45%);
    box-shadow: 0 4px 15px 0 rgb(129 150 160 / 45%);
  }

  #terra-wrapper .med .additional {
    max-width: 440px;
    font-size: 14px;
    margin: 0 auto;
  }

.price-form span {
  
  font-size:40px;
}
.al-cost-promo {
  text-decoration: line-through;
  color: white;
}
.al-cost {
color:red;
}
.footer {
background-color:transparent!important;
}

@media (max-width:900px) {
  
  .place-order {
    position: relative;
    top:auto!important;
    right:auto!important;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    width:100%;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
  }
  .product {
    width:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    position: relative;
  }
  section {
    margin-bottom:10px;
  }
  .place-order3 {
    display:none;
  }
  .title2 {
    color:white;
  }
  .blue {
/*    color:white;*/
  }
  .seventxt {
    height:auto;
  }
  #testimonials .title {
    font-size:30px;
  }
  #about .about-img {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;

  }


  .block_1 ul {
     margin: 25px 0;
        width: 100%;
      }
}


/*@media (max-width: 767px) {
    .block_1 ul {
        margin: 25px 0;
        width: 100%;
    }
}*/
