
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: #1dc8cd;
  transition: 0.5s;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: linear-gradient(45deg, #4f88bd, #595da1);
  color: #fff;
  padding: 2px 20px 8px 20px;
  font-size: 16px;
  border-radius: 4px 4px 0 0;
  right: 15px;
  bottom: 0;
  transition: none;
}

.back-to-top:focus {
  background: linear-gradient(45deg, #4f88bd, #595da1);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #595da1;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 30px 0;
  height: 92px;

  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 36px;
  margin: -4px 0 0 0;
  padding: 0;
  line-height: 1;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
#header #logo h1 span {
  color: #de986b;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
    margin-top: 0;
  }
  #header #logo img {
    max-height: 40px;
  }
}

#header.header-fixed {
  background: linear-gradient(45deg, #4f88bd, #595da1);
  padding: 20px 0;
  height: 72px;
  transition: all 0.5s;
}
@media (max-width: 375px) {
  #header.header-fixed {
    width: 375px;
  }
  #header {
    width: 375px;
  }
}
@media (max-width: 320px) {
  #header.header-fixed {
    width: 320px;
  }
}
@media (max-width: 375px) {
  #header #logo h1 {
  font-size: 20px;
  }
 #mobile-nav-toggle {
  margin-left: -100px;
 }
}
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, #4f88bd, #595da1);
  position: relative;
}

#intro .intro-text {
  position: absolute;
  left: 0;
  top: 60px;
  right: 0;
  height: calc(50% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  z-index: 999;
}

#intro h2 {
  margin: 30px 0 10px 0;
  padding: 0 15px;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  color: #fff;
}
#intro h2 span {
  color: #de986b;
}

@media (max-width: 768px) {
  #intro h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

#intro p {
  color: #fff;
  margin-bottom: 20px;
  padding: 0 15px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #intro p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  padding: 8px 38px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#intro .btn-get-started:hover {
  color: #de986b;
  background: #fff;
}

#intro .product-screens {
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 100%;
}

#intro .product-screens img {
  width: 50%;
}

#intro .product-screens .product-screen-1 {
  position: absolute;
  z-index: 20;
  left: calc(35% + 54px);
  bottom: 0;
  top: 300px;
}

#intro .product-screens .product-screen-2 {
  position: absolute;
  z-index: 30;
  left: calc(35% - 154px);
  bottom: 0;
  top: 470px;
}
@media (max-width: 2000px) {
  #intro .product-screens .product-screen-1 {
  top: 400px;
  left: calc(40% + 54px);
}
#intro .product-screens .product-screen-2 {
  top: 570px;
  left: calc(40% - 154px);
}
}
@media (max-width: 1700px) {
  #intro {
   height: 110vh;
 }
}
@media (max-width: 1500px) {
  #intro {
   height: 120vh;
 }
}
@media (max-width: 1400px) {
  #intro .product-screens .product-screen-1 {
  top: 350px;
  left: calc(40% + 54px);
}
#intro .product-screens .product-screen-2 {
  top: 520px;
  left: calc(40% - 154px);
}
}

@media (max-width: 767px) {
  #intro .product-screens .product-screen-1 {
    padding-top: 30px;
    left: calc(30% + 54px);
  }
  #intro .product-screens .product-screen-2, #intro .product-screens .product-screen-3 {
    left: calc(30% - 154px);
  }
}
@media (max-width: 375px) {
  #intro .product-screens .product-screen-1 {
    width: 70%;
    left: calc(20% + 54px);
    top: 350px;
  }
  #intro .product-screens .product-screen-2, #intro .product-screens .product-screen-3 {
    left: calc(55% - 154px);
    width: 70%;
  }
  
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}
.nav-menu > li a {
  text-transform: uppercase;
}
.nav-menu > li a:hover {
  color: #de986b;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}
@media (max-width: 992px) {
  .nav-menu > li a {
    
    text-transform: none;
}
}
@media (max-width: 1024px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  outline: none;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #1dc8cd;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 30px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 1024px) {
  #mobile-nav-toggle {
    display: inline;
  }
}
@media (max-width: 375px) {
  #mobile-nav-toggle {
    margin: 20px 20px 0 0;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #1dc8cd;
}

#mobile-nav ul .menu-item-active {
  color: #1dc8cd;
}

#mobile-body-overly {
  width: 80%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 400;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #777;
  font-style: italic;
}

.section-header .section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: #de986b;
  
  margin: 0 auto;
  margin-bottom: 20px;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #eff5f5;
}

/* About Us Section
--------------------------------*/
#about {
  padding: 60px 0;
}

#about .about-img {
  height: 100%;
  overflow: hidden;
}

#about .about-img img {
  margin-right: -15px;
  max-width: 100%;
}
#about .about-img2 img{
  margin-left: -15px;
  max-width: 100%;
}

@media (max-width: 768px) {
  #about .about-img {
    width: 50%;
  }
  #about .about-img2 {
    width: 50%;
  }
  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about .content .h2 {
  color: #333;
  font-weight: 300;
  font-size: 24px;
}

#about .content h3 {
  color: #777;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}

#about .content p {
  line-height: 26px;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #1dc8cd;
}

#about .content ul {
  list-style: none;
  padding: 0;
}

#about .content ul li {
  padding-bottom: 10px;
}

/* Product Featuress Section
--------------------------------*/
#features {
  background: #fff;
  padding: 60px 0 0 0;
}

#features .features-img {
  text-align: center;
  padding-top: 20px;
}

@media (min-width: 769px) {
  #features .features-img {
    padding-top: 120px;
    margin-top: -200px;
  }
}

#features .features-img img {
  max-width: 100%;
  margin-top: 100px;
}

#features .box {
  margin-bottom: 15px;
  text-align: center;
}

#features .icon {
  margin-bottom: 10px;
}
#features .icon img {
  width: 30%;
  border: 1px solid #de986b;
}

#features .icon i {
  color: #666666;
  font-size: 40px;
  transition: 0.5s;
}

#features .icon i:before {
  background: #1dc8cd;
  background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#features .title {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 22px;
}

#features .title a {
  color: #4f88bd;
}

#features .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
}

#features .section-description {
  padding-bottom: 10px;
}


/* Product Advanced Featuress Section
--------------------------------*/
#advanced-features .features-row {
  padding: 60px 0 30px 0;
}

#advanced-features h2 {
  font-size: 26px;
  font-weight: 500;
  color: #000;
}

#advanced-features h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-style: italic;
  color: #999;
}

#advanced-features p {
  line-height: 24px;
  color: #777;
  margin-bottom: 30px;
}

#advanced-features i {
  color: #666666;
  font-size: 64px;
  transition: 0.5s;
  float: left;
  padding: 0 15px 0px 0;
  line-height: 1;
}

#advanced-features i:before {
  background: #1dc8cd;
  background: linear-gradient(45deg, #1dc8cd 0%, #55fabe 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#advanced-features .advanced-feature-img-right {
  max-width: 100%;
  float: right;
  padding: 0 0 30px 30px;
}

#advanced-features .advanced-feature-img-left {
  max-width: 100%;
  float: left;
  padding: 0 30px 30px 0;
}

@media (max-width: 768px) {
  #advanced-features .advanced-feature-img-right, #advanced-features .advanced-feature-img-left {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  #advanced-features .advanced-feature-img-right, #advanced-features .advanced-feature-img-left {
    max-width: 100%;
    float: none;
    padding: 0 0 30px 0;
  }
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  font-style: normal;
  margin-top: 8%;
}

#call-to-action .cta-text {
  color: #fff;
  font-size: 24px;
}
#call-to-action img {
  width: 80%;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}


@media (max-width: 768px) {
  #call-to-action img {
  width: 40%;
  margin-left: 30%;
  }
}
@media (max-width: 576px) {
  #call-to-action img {
  width: 40%;
  margin-left: 30%;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 25px;
  transition: background 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #1dc8cd;
  border: 2px solid #1dc8cd;
}

/* More Features Section
--------------------------------*/
#more-features {
  padding: 60px 0 60px 0;
  background: #fff;
}



#more-features .icon {
  float: left;
}

#more-features i {
  color: #666666;
  font-size: 30px;
  transition: 0.5s;
  line-height: 0;
  padding: 30px 5px 30px 0px;
}

#more-features i:before {
  background: #1dc8cd;
  background: linear-gradient(45deg, #1dc8cd 0%, #1788c5 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#more-features img {
  width: 70%;
}


#more-features p {
  font-size: 16px;
  margin-left: 30px;
  margin-bottom: 0;
  line-height: 24px;
}

@media (max-width: 767px) {
  #more-features .box {
    margin-bottom: 20px;
  }
  #more-features .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }
  #more-features h4, #more-features p {
    margin-left: 0;
    text-align: center;
  }
}
@media (max-width: 768px) {
  #more-features img {
    width: 50%;
    margin-left: 30%;
  }
}


/* Contact Section
--------------------------------*/
#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  background: linear-gradient(45deg, #4f88bd, #595da1);
}

#contact .info {
  color: #333333;
}

#contact .info i {
  font-size: 32px;
  color: #fff;
  float: left;
  line-height: 1;
}

#contact .info p {
  padding: 0 0 0px 42px;
  line-height: 28px;
  font-size: 14px;
  color: #fff;
}

#contact-form{
  margin-bottom:10px;
}

input.contact-input{
  width:45%;
  height:35px;
    padding-left:2%;
    padding-right:2%;
  margin-bottom:23px;
  color: #111;
  background-color: #f6f7f8;
    font-size:14px;
  display: inline-block;
  margin-right: 20px;

}

textarea{
  height:100px;
  margin-bottom:20px;
  width:95%;
    padding-left:2%;
    padding-right:2%;
    padding-top:10px;
    padding-bottom:10px;
  color: #111;
  background-color: #f6f7f8;
        font-size:14px;

}

input.contact-submit{
  color: #fff;
  background: transparent;  
    border: 1px solid #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
  font-weight:600;
    padding: 15px 34px;
    position: relative;
    text-transform: uppercase;
  -webkit-border-radius: 50px 50px;
    -moz-border-radius: 50px 50px;
    border-radius: 50px 50px;
  transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
  margin-left: 30%;
}

input.contact-submit:hover{
  color: #4f88bd;
  background: #fff;
  
}

input.white-input::-webkit-input-placeholder,
textarea.white-input::-webkit-input-placeholder { /* WebKit browsers */
    color:#aaa;
}
input.white-input:-moz-placeholder,
textarea.white-input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:#aaa;
}
input.white-input::-moz-placeholder,
textarea.white-input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:#aaa;
}
input.white-input:-ms-input-placeholder,
textarea.white-input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:#aaa;
}

#contact-form input.contact-input:focus, #contact-form textarea.contact-commnent:focus {
  border-color:#fff;
  outline: none;
}

p.contact_success_box{
  display:inline-block;
  color:#454545;
  font-size:21px;
  font-style:italic;
}
.copyright {
    font-size: 36px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -2px;
  -moz-transform: scale(1, 3);
    -webkit-transform: scale(1, 3);
    -ms-transform: scale(1, 3);
  font-weight: 400;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .copyright {
    font-size: 30px;
  }
  .pharmacy-item img {
    width: 70%;
   }

}
@media (max-width: 768px) {
  .copyright {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #333;
  font-size: 14px;
}

#footer .credits {
  font-size: 13px;
  color: #888;
}

#footer .footer-links a {
  color: #666;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #1dc8cd;
}

.instruction{
  margin-top: 20px;
}

.instruction h3 {
  color: #1788c5;
  font-weight: 500;
  text-align: center;
}

.instruction h3 span {
  color: #de986b;
}
.instruction h4 {
  text-align: center;
}
.instruction img {
  width: 50%;
  margin-left: 25%;
}
#instruction {
 background: linear-gradient(45deg, #4f88bd, #595da1) fixed center center;
  background-size: cover;
  padding: 40px 0;
}

.buy-section {
  position: relative;
  z-index: 999;
  overflow: hidden;
  position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
    background-color: transparent;
}


.buy-section p {
  font-size: 36px;
  color: #4f88bd;
  text-transform: uppercase;
  letter-spacing: -2px;
  -moz-transform: scale(1, 3);
    -webkit-transform: scale(1, 3);
    -ms-transform: scale(1, 3);
  font-weight: 400;
  
}
.width-100 {
  width: 100%;
}
.buy-section h3 {
  color: #111;
}
.buy-section h4 {
  color: #111;
  font-weight: 400;
  margin-top: 50px;
}
.buy-section hr {
  height: 1px;
  width: 85%;
  background-color: #4f88bd;
  float: left;
  margin: 0px;
}
.pharmacy-wrapper{
  display: flex;
 
}
.pharmacy-item {
    color: #fff;
    position: relative;
    border: 1px solid #4f88bd;
    padding: 35px 15px;
    margin: 5px;
    background: rgb(79, 136, 189, 0.50);
   }
   .pharmacy-item__link {
    top: 0;
    right: 0;
    padding: 15px;
    position: absolute;
    text-transform: uppercase;
    background-color: #4f88bd;
    font-size: -webkit-calc(8px + .35vw);
    font-size: calc(8px + .35vw);
}
  .pharmacy-item__image1 img{
    width: 110%;
    padding: 20px 80px 0 80px;
  }
  @media (max-width: 1140px) {
    .pharmacy-item__image1 img{
    width: 150%;
    padding: 20px 170px 0 80px;
  }
    .copyright {
      line-height: 34px;
      margin-top: 80px;
      margin-bottom: 40px;
    }
  }
  @media (max-width: 992px) {
    .pharmacy-item__image img {
      width: 100%;
      padding-top: 20px;
    }
  }
  @media (max-width: 960px) {
    .pharmacy-item__image1 img {
      padding: 30px 140px 0 40px;
    }
  }

@media (max-width: 768px) {
  .width-100 {
    width: 100%;
  }
  .copyright {
    font-size: 24px;
    line-height: 24px;
  }
  .pharmacy-item__image {
    padding: 0px 15px 0px 0px;
  }
}
@media (max-width: 720px) {
  .width-100 {
    width: 60%;
    margin-left: 25%;
  }
}
@media (max-width: 425px) {
  .pharmacy-item__image1 img {
      padding: 20px 130px 0 30px;
    }
}
@media (max-width: 375px) {
  .pharmacy-item__image1 img {
      padding: 25px 110px 0 20px;
    }
}
@media (max-width: 320px) {
  .pharmacy-item__image1 img {
      padding: 20px 90px 0 20px;
    }
  .pharmacy-item__image {
      width: 100%;
    }
}

.blog {
  box-shadow: 0 10px 20px rgba(85, 85, 85, 0.2);
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  margin-top: 30px;
  margin-bottom: 50px;
}

.blog-thumb {
  overflow: hidden;
  position: relative;
}
.blog-content {
    background: linear-gradient(125deg, #4f88bd, #595da1);
    opacity: 0.8;
  height: 220px;
  padding: 25px;
  position: absolute;
  top: 0;
  width: 300px;
}
  .blog-thumb a {
    display: block;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s; }
    .blog-thumb a img {
      max-width: 100%; }

.blog-content {
  padding: 25px; }
  .blog-content .blog-meta {
    margin-bottom: 7px; }
    .blog-content .blog-meta span {
      font-size: 14px;
      color: #777;
      line-height: 30px;
      padding-right: 25px;
      font-weight: 500; }
      .blog-content .blog-meta span:last-child {
        padding-right: 0; }
    .blog-content .blog-meta a {
      color: #777; }
      .blog-content .blog-meta a:hover {
        color: #20c9c7; }
   
  .blog-content > h3 {
    color: #ffffff;
    font-family: "Montserrat";
    font-size: 24px;
    font-weight: 500;
  }

    .blog-content h3 a {
      color: #fff; }
      .blog-content h3 a:hover {
        color: #de986b; }
  }
  .blog-content p {
    margin-bottom: 10px; }
    .blog-content p:first-letter {
      text-transform: capitalize; }

.blog:hover .blog-thumb a {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1); }
}

.blog-details-content table {
 margin-bottom: 30px;
}

.article .article_img img{
  position: absolute;
  width: 100%;
}

.page-content {
  margin-top: 50px;

}

.blog-details-thumbing {
  margin-bottom: 35px;
  position: relative;
}
.date-formate {
  background: #20c9c7 none repeat scroll 0 0;
  bottom: 20px;
  color: #ffffff;
  height: 95px;
  left: 20px;
  padding: 20px 0;
  position: absolute;
  text-align: center;
  width: 90px;
}
.date-formate > h2 {
  line-height: 35px;
  margin: 0;
}
.blog-details-video {
  margin-bottom: 50px; }

h2.blog-details-title {
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  font-family: "Roboto", sans-serif; }

.blog-details-meta {
  margin-bottom: 30px;
  padding-left: 0;
}
  .blog-details-meta li {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 0.5px; }
    .blog-details-meta li:after {
      content: "-";
      padding: 0 10px; }
    .blog-details-meta li:last-child:after {
      display: none; }
    .blog-details-meta li a {
      color: #333333; }
      .blog-details-meta li a:hover {
        color: #20c9c7; }

.blog-details-content {
  padding-bottom: 50px;
  border-bottom: 1px solid #e1e1e1; }
  .blog-details-content p {
  color:#333333;
    margin-bottom: 30px; }
  .blog-details-content blockquote {
    margin-bottom: 30px;
    font-size: 14px; }
  .blog-details-content blockquote ol {
    list-style: decimal;
  }
  .blog-details-content ol {
    margin-top: 20px;
  color: #333333;
    margin-bottom: 20px;
    list-style: lower-alpha;
    list-style-position: inside; }
    .blog-details-content ol li {
      margin-bottom: 10px; }
  .blog-details-content img {
    margin-bottom: 20px; }

.blog-details-block {
  margin-top: 70px; }

.blog-details-authorbox {
  padding: 40px;
  background: #f7f7f7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between; }

.blog-details-authoriamge {
  border-radius: 100px;
  display: block;
  height: 95px;
  margin-right: 25px;
  overflow: hidden;
  width: 95px;
}
  .blog-details-authoriamge img {
    width: 100%; }

.blog-details-authordes {
  color:#333333;
  -webkit-flex-shrink: 100;
  -moz-flex-shrink: 100;
  -ms-flex-negative: 100;
  flex-shrink: 100; }
  .blog-details-authordes h6 {
    line-height: 28px;
    font-size: 16px;
    color: #333;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px; }
  .blog-details-authordes p {
  color: #333;
  margin-bottom: 0;
}

.blog-details-social {
  border: 1px solid #e9e9e9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 5px 20px; }
  .blog-details-social h6 {
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  margin-right: 10px;
}

.blog-details-social-icons {
  margin-right: 30px; }

.blog-details-social-icons,
.blog-details-tags {
  padding: 5px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }
.blog-details-tags ul {
  margin-bottom: 4px;
  padding-left: 0;
}
  .blog-details-tags ul li {
    display: inline-block;
    font-size: 16px;
    color: #808080;
    font-weight: 300; }
    .blog-details-tags ul li:after {
      content: ","; }
    .blog-details-tags ul li:last-child:after {
      display: none; }
    .blog-details-tags ul li a {
  color: #333333;
  display: inline-block;
  font-size: 14px;
}
      .blog-details-tags ul li a:hover {
        color: #20c9c7; }

.blog-details-block.commentbox form {
  margin-top: -10px; }
  .blog-details-block.commentbox form .single-input {
    margin-top: 30px; }
    .blog-details-block.commentbox form .single-input button {
      margin-top: 10px; }
.widget-recent-post-content a{
  list-style-type: none!important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-thumbing img {
    width: 100%;
    float: none;
    padding-left: 0; }

  h2.blog-details-title {
    font-size: 32px; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-thumbing img {
    width: 90%;
    float: none;
    padding-left: 0; }
  .blog-details-content img.alignright {
    float: none;
    padding-left: 0; }

.pg-portfolio-infos {
  margin-top: 0px;
}
  h2.blog-details-title {
    font-size: 32px; } }
@media only screen and (max-width: 767px) {
  .blog-details-thumbing img {
    width: 100%;
    float: none;
    padding-left: 0; }
.pg-portfolio-infos {
  margin-top: 0px;
}
.blog-details-content ol {
  padding: 0;
}
.blog-details-content img {
    margin-top: 20px; }

.col-lg-6.col-md-6:last-child article.blog {
  margin: 0;
}
article.blog {
  margin-bottom: 30px;
}
  h2.blog-details-title {
    font-size: 28px; } }
@media only screen and (max-width: 575px) {
  .blog-details-thumbing img {
    width: 100%;
    float: none;
    padding-left: 0; }
.pg-portfolio-infos {
  margin-top: 0px;
}
.blog-details-content img {
    margin-bottom: 20px; }
.blog-details-content ol {
  padding: 0;
}
  h2.blog-details-title {
    font-size: 26px; }

  .blog-details-authorbox {
    padding: 30px;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
.col-lg-6.col-md-6:last-child article.blog {
  margin: 0;
}
article.blog {
  margin-bottom: 30px;
}
  .blog-details-authordes {
    margin-top: 20px; } }
@media only screen and (max-width: 425px) {
  .blog-details-thumbing img {
    width: 100%;
    float: none;
    padding-left: 0; }
  .blog-details-content table {
    font-size: 9px!important;
  }
}
@media only screen and (max-width: 425px) {
  .blog-details-content table {
    font-size: 7px!important;
  }
}
@media only screen and (max-width: 375px) {
  .blog-details-content table {
    font-size: 6px!important;
  }
}
@media only screen and (max-width: 320px) {
  .blog-details-content table {
    font-size: 4px!important;
    padding: 0;
  }
}

.cr-breadcrumb {
  color: #ffffff;
  
  list-style-type: none;
}