.home-title {
  font-size: 64px;
  line-height: 1.2;
  color: white;
  text-shadow: 2px 2px #555555;
  text-transform: uppercase;
  text-align: center;
  font-family: "Arial Verdana", Sans-serif;
  font-weight: bold;
}

.home-text-title {
  font-size: 24px;
  line-height: 1.2;
  color: white;
  text-transform: uppercase;
  text-shadow: 2px 2px #555555;
  text-align: left;
  font-family: "Arial Verdana", Sans-serif;
  font-weight: bold;
}

.home-text {
  font-size: 20px;
  line-height: 1.2;
  color: white;
  text-shadow: 2px 2px #555555;
  text-align: left;
  font-family: "Arial Verdana", Sans-serif;
}

/* Custom, iPhone Retina */
@media only screen and (min-width : 220px) {
  .home-title {
    font-size: 34px;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
  .home-title {
    font-size: 34px;
  }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
  .home-title {
    font-size: 64px;
  }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
  .home-title {
    font-size: 64px;
  }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
  .home-title {
    font-size: 64px;
  }
}


.article-box {
  cursor: pointer;
  text-align: left;
  vertical-align: text-top;
  min-width: 150px;
  max-width: 260px;
  padding-top: 10px;
  color: #575756;
  padding: 5px;
  box-sizing: border-box;
  min-height: 240px;
  display: inline-block;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.30);
  margin-right: 1%;
  margin-top: 1%;
  margin-bottom: 4%;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
}

.article-box a {
  text-decoration: none;
  color: #575756;
}

.article-box img {
  display: inline-block;
  width: 100%;
  position: relative;
  border-width: 0px;
  text-align: center;
  vertical-align: middle;
  height: 195px;
}

.article-box div {
  font-size: 14px;
  height: 70px;
  overflow: hidden;

}

.article-box p {
  padding-top: 10px;
  font-weight: bold;
  font-size: 14px;
  color: #de4c01;
}

.article-box:hover {
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2), 0 18px 44px 0 rgba(0, 0, 0, 0.40);
}


.bg-grey {
  background-color: #f6f6f6;
}

.img-background {
  /*background: url(../img/bg.jpg) no-repeat center center fixed;*/
  background-color: #f6f6f6;
}

li {
  list-style: none;
}

.green {
  color: green;
}

body {
  background-color: #f6f6f6;
  font-size: 16px;
}

td {
  vertical-align: top;
  padding-right: 5px;
}

.frame {
  padding: 0 80px 0 80px;
  width: 80%;
}

.frame2 {
  padding: 0 100px 0 100px;
}

@media screen and (max-width: 1600px) {
  .frame {
    width: unset;
  }
}

@media screen and (max-width: 755px) {
  .frame {
    padding: 0 20px 0 20px;
    width: unset;
  }

  .frame2 {
    padding: 0;
  }
}


/* About Section
  --------------------------------*/
#about {
  padding: 60px 0 30px 0;
}

#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;
  }
}

.content h2 {
  color: var(--home-blue);
  font-weight: 700;
  font-size: 36px;
  font-family: "Raleway", sans-serif;
  margin-top: 0px;
}

.content h3 {
  color: #555;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}

.content p {
  line-height: 26px;
}

.content p:last-child {
  margin-bottom: 0;
}

.content i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--home-green);
}

.content ul {
  list-style: none;
  padding: 0;
}

.content ul li {
  padding-bottom: 10px;
}

/* Sections Header
  --------------------------------*/
.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  color: var(--home-blue);
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.section-header h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--home-green), var(--home-hover));
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.section-header p {
  padding: 0;
  margin: 0;
}

/* Services Section
  --------------------------------*/
#services {
  padding: 30px 0 0 0;
}

#services .box {
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 20px rgba(73, 78, 92, 0.08);
  background: #fff;
  transition: 0.4s;
  border-radius: 12px;
}

#services .box:hover {
  box-shadow: 0 8px 30px rgba(73, 78, 92, 0.18);
  transform: translateY(-6px);
  -webkit-transform: translateY(-6px);
  -moz-transform: translateY(-6px);
}

#services .box .icon {
  float: left;
}

#services .box .icon i {
  color: #444;
  font-size: 64px;
  transition: 0.5s;
  line-height: 0;
  margin-top: 34px;
}

#services .box .icon i:before {
  background: var(--home-blue);
  background: linear-gradient(45deg, var(--home-green) 0%, #ec4807 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;
  }
}

.products .content {
  margin-top: 40px;
}

.fuss {
  color: #ccc;
}

.fuss a {
  color: #ccc;
}

/* Contact Section
--------------------------------*/
#contact {
  padding: 30px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--home-green);
}

#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: var(--home-green);
}

#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 .form #sendmessage {
  color: var(--home-green);
  border: 1px solid var(--home-green);
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form input[type="button"] {
  background: var(--home-green);
  border: 0;
  border-radius: 3px;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .form input[type="button"]:hover {
  background: var(--home-hover);
}

.form-group {
  padding: 0;
}

.contactForm .row {
  margin: 0;
}

.contactForm select {
  width: 99%;
}

/* pricing*/
@import url("https://fonts.googleapis.com/css?family=Montserrat");

.pricing-table {
  font-family: 'Montserrat', sans-serif;
  padding: 0;
}

.pricing-table .block-heading {
  padding-top: 10px;
  margin-bottom: 40px;
  text-align: center;
}

.pricing-table .block-heading h2 {
  color: var(--home-blue);
  font-weight: 600;
}

.pricing-table .block-heading p {
  text-align: center;
  max-width: 420px;
  margin: auto;
  opacity: 0.7;
}

.pricing-table .heading {
  text-align: center;
  color: var(--home-blue);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-table .item {
  background-color: #ffffff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
  border-top: 2px solid #5ea4f3;
  padding: 30px;
  overflow: hidden;
  position: relative;
}

.pricing-table .item:hover {
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2), 0 18px 44px 0 rgba(0, 0, 0, 0.40);
}

.pricing-table .col-md-5:not(:last-child) .item {
  margin-bottom: 30px;
}

.pricing-table .item button {
  font-weight: 600;
}

.pricing-table .ribbon {
  width: 160px;
  height: 32px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  box-shadow: 0px 2px 3px rgba(136, 136, 136, 0.25);
  background: #4dbe3b;
  transform: rotate(45deg);
  position: absolute;
  right: -42px;
  top: 20px;
  padding-top: 7px;
}

.pricing-table .item p {
  text-align: center;
  margin-top: 20px;
  opacity: 0.7;
}

.pricing-table .features .feature {
  font-weight: 600;
}

.pricing-table .features h4 {
  text-align: center;
  font-size: 18px;
  padding: 5px;
}

.pricing-table .price h4 {
  margin: 15px 0;
  font-size: 45px;
  text-align: center;
  color: var(--home-green);
}

.pricing-table .buy-now button {
  text-align: center;
  margin: auto;
  font-weight: 600;
  padding: 9px 0;
}

/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 30px 0;
}

#testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 150px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;
}

@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 .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;
}

#testimonials .owl-dot.active {
  background-color: #50d8af;
}

.d-none {
  display: none;
}

.block-heading h2 {
  font-size: 30px;
}

/* Featurette Divider Modern
  --------------------------------*/
.featurette-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
  margin: 50px 0;
}

/* Video Showcase Sections
  --------------------------------*/
.video-showcase {
  padding: 40px 0 20px 0;
}

.video-showcase .section-header {
  margin-bottom: 30px;
}

.video-showcase .video-thumb {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-showcase .video-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.video-showcase .video-thumb img {
  width: 100%;
  display: block;
}

.video-showcase .video-thumb::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: rgba(222, 76, 1, 0.85);
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}

.video-showcase .video-thumb::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #fff;
}

.video-showcase .video-thumb:hover::after {
  background: rgba(222, 76, 1, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-showcase .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.video-showcase .content h3 {
  color: #555;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .video-showcase .video-thumb {
    margin-bottom: 30px;
  }
}

.article-selct {
  width: auto;
  padding: 0;
  display: unset;
  margin: 0 5px;
}

#intro img {
  width: 100%;
}

.red {
  color: red;
}