  @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
  background: #ebebe0;
}

a {
  color: #2dc997;
}

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

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


  /*---------------------------------------
     TYPOGRAPHY
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: 300;
    line-height: normal;
  }

  h1 {
    font-size: 3em;
  }

  h2 {
    color: #353535;
    font-size: 2em;
  }

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #2dc997;
  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: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#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: 26px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

#header.header-fixed {
  background: rgba(52, 59, 64, 0.9);
  padding: 20px 0;
  height: 72px;
  transition: all 0.5s;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.navbar-brand {
  color: #ffffff;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -1px;
  padding: 0;
}

.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: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: 768px) {
  #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: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
  outline: none;
}

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

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #2dc997;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .menu-active > a:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-menu ul {
  margin: 4px 0 0 0;
  border: 1px solid #e7e7e7;
}

.nav-menu ul li {
  background: #fff;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

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

.nav-menu ul li a:hover {
  background: #2dc997;
  color: #fff;
}

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

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 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: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  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: #2dc997;
}

#mobile-nav ul .menu-item-active {
  color: #2dc997;
}

#mobile-body-overly {
  width: 100%;
  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;
}

/*---------------------------------------
   HOME MENU
-----------------------------------------*/

.section-title {
  padding-bottom: 20px;
}

section {
  position: relative;

}

.container{}
#comments input[type="reset"]{margin-top:5px;}
.pagination li{display:inline-block; margin:0 5px 5px 0;}


.overlay {
  background: #536976;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #292E49, #536976);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #292E49, #536976); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  opacity: 0.8;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#home {
  background: url('../images/home-bg1.jpg') no-repeat center center;
  background-size: cover;
  vertical-align: middle;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  padding-top: 12em;
  text-align: center;
}

#home .home-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#home h1 {
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 40px;
}

.home-info {
  margin-top: 0em;
}

.home-info h3 {
  font-family: 'Open Sans', sans-serif;
  color: #f0f0f0;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 10px 0;

}

.teffect {
  /* height: 100vh;*/
  display: flex;
  justify-content: center;
  align-items: center;

}

.teffect h1 {
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  letter-spacing: 0.1rem;
  text-align: center;
  overflow: hidden;
  font-size: 50px;

}
.teffect h1 span.typed-text {
  font-weight: normal;
  color: #dd7732;
}
.teffect h1 span.cursor {
  display: inline-block;
  background-color: #ccc;
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
}
.teffect h1 span.cursor.typing {
  animation: none;
}
@keyframes blink {
  0%  { background-color: #ccc; }
  49% { background-color: #ccc; }
  50% { background-color: transparent; }
  99% { background-color: transparent; }
  100%  { background-color: #ccc; }
}

/* BUTTON */

.margin-top {
  margin-top: 20px;
}

.button1 {
  background: ;
  border-style: solid;
  border-width: 1px;
  color: #202020;
  font-size: 12px;
  font-weight: normal;
  padding: 10px 30px;
  transition: 0.5s 0.2s;
  text-align: center;
  align : center;

}

.button1:hover {
  background: #202020;
  color: #ffffff;
}

.button2 {
  background: #66b3ff ;
  border-style: solid;
  /* border-color: black; */
  border-width: 1px;
  border-radius: 5px;
  color: #202020;
  font-size: 12px;
  font-weight: normal;
  padding: 10px 30px;
  transition: 0.5s 0.2s;
  text-align: center;
  align : center;

}

.button2:hover {
  background: #202020;
  color: #ffffff;
}

.button{
  border-color: rgba(255, 255, 255, 0.4) rgba(255, 255, 255, 0) rgba(0, 0, 0, 0.3);
  border-style: solid;
  border-width: 1px;
  color: white;
  display: inline-block;
  /* padding: 0.625rem 1.25rem; */
  padding: 8px 70px;
  text-align: center;
  transition: all 0.20s linear 0s !important;
  -o-transition: all 0.20s linear 0s !important;
  -ms-transition: all 0.20s linear 0s !important;
  -moz-transition: all 0.20s linear 0s !important;
  -webkit-transition: all 0.20s linear 0s !important;
}

.button:hover{
  box-shadow: 0 0 100px 100px rgba(255, 255, 255, 0.25) inset;
}
/* Stroke Buttons */
.button.button-white-stroke, a.button.button-white-stroke, a.button.button-white-stroke:link, a.button.button-white-stroke:visited
{
  background: none;
  border: 1px solid #fff;
  box-shadow: none;
  font-size: 15px;
}

.button.button-white-stroke:hover, a.button.button-white-stroke:hover{
  background: #fff none repeat scroll 0 0;
  color: #002633;
}


/*---------------------------------------
   ABOUT US
-----------------------------------------*/
#about_us {
  background: #ffffff;
}

 #about_us .section-title2{
   margin-top: 70px;
 }

#about_us .tab-content {
  margin-top: 50px;
}


.tab-pane-item {
  margin: 20px 0;
}

.tab-pane-item p {
  color: #757575;
  font-size: 17px;
  font-weight: normal;
  line-height: 26px;
  text-align:justify;
  text-justify:auto;
  margin-right: 30px;
}

.about_us-image {
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
  pointer-events: none;
}

/*---------------------------------------
   SERVICES
-----------------------------------------*/

#services{
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

div .ex1 {

  width: 100%;
  height: 430px;
  margin: 10px 10px 0px 10px;
}

div .ex2 {

  width: 100%;
  height: 330px;
}

td i {
    text-align:center;
}

.box-shadow,
.paralax-mf,
.service-box,
.work-box,
.card {
  box-shadow: 0 13px 8px -10px rgba(0, 0, 0, 0.1);
}

.box-shadow-a,
.button:hover {
  box-shadow: 0 0 0 4px #bbf5df;
}


.service-box {
  background-color: #fff;
  padding: 2.5rem 1.3rem;
  border-radius: 1rem;
/*  margin-bottom: 3rem; */
}

.service-box:hover .ico-circle {
  transition: all 500ms ease;
  color: #fff;
  background-color: #24b67e;
  box-shadow: 0 0 0 10px #bbf5df;
}

.service-box .service-ico {
  margin-bottom: rem;
  color: #1e1e1e;
  text-align: center;
}

.service-box .ico-circle {
  transition: all 500ms ease;
  font-size: 4rem;
}

.service-box .s-title {
  font-size: 2.0rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: .4rem 0;
  margin-top: 0;
  margin-bottom: 20px;
}

.service-box .s-description {
  color: #4e4e4e;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-left: 20px;
  margin-right: 20px;
  /*
  text-align:justify;
  text-justify:auto;
  */
}

.section-title {
  padding-bottom: 20px;
}

.box-shadow,
.paralax-mf,
.service-box,
.work-box,
.card-blog {
  box-shadow: 0 13px 8px -10px rgba(0, 0, 0, 0.1);
}

.service-box {
  background-color: #fff;
  padding: 2.5rem 1.3rem;
  border-radius: 1rem;
/*  margin-bottom: 3rem; */
}

.service-box:hover .ico-circle {
  transition: all 500ms ease;
  color: #fff;
  background-color: #24b67e;
  box-shadow: 0 0 0 10px #bbf5df;
}

.service-box .service-ico {
  margin-bottom: rem;
  color: #1e1e1e;
  text-align: center;
}

.service-box .ico-circle {
  transition: all 500ms ease;
  font-size: 4rem;
}

.service-box .s-title {
  font-size: 2.0rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: .4rem 0;
  margin-top: 0;
  margin-bottom: 20px;
}

.service-box .s-description {
  color: #4e4e4e;
  font-size: 1.4rem;
  margin-left: 20px;
  margin-right: 20px;
  /*
  text-align:justify;
  text-justify:auto;
  */
}


.resize{
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

.margin-top {
  margin-top: 20px;
}

.button1 {
  background: ;
  border-style: solid;
  border-width: 1px;
  color: #202020;
  font-size: 12px;
  font-weight: normal;
  padding: 10px 30px;
  transition: 0.5s 0.2s;
  text-align: center;
  align : center;

}

.button1:hover {
  background: #202020;
  color: #ffffff;
}

/*---------------------------------------
   SERVICES
-----------------------------------------*/

#carter{
  background: #ffff;
  text-align: center;
}

div .ex3 {

  width: 100%;
  height: 250px;
}

.carter-box {
  background-color: #fff;
  text-align: center;
  padding: .4rem 0;
  margin-left: 10px;
  margin-right: 10px;
/*  margin-bottom: 3rem; */
}

.carter-box:hover .ico-circle {
  transition: all 500ms ease;
  color: #fff;
  background-color: #24b67e;
  box-shadow: 0 0 0 10px #bbf5df;
}

.carter-box .carter-ico {
  margin-bottom: rem;
  color: #1e1e1e;
  text-align: center;
}

.carter-box .ico-circle {
  transition: all 500ms ease;
  font-size: 4rem;
}


.carter-box .s-title {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: .4rem 0;
  margin-top: 0;
  margin-bottom: 20px;
}

.carter-box .s-description {
  color: #4e4e4e;
  font-size: 1.4rem;
  margin-left: 20px;
  margin-right: 20px;
  /*
  text-align:justify;
  text-justify:auto;
  */
}

.section-title3 {
  padding-bottom: 0px;
  padding-top: 0px;
}


  /*---------------------------------------
      TESTIMONIAL
  -----------------------------------------*/

  #testimonial {
    background:;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  #testimonial .col-md-6 {
    margin: 0;
    padding: 0;
  }


  #testimonial h1 {
    color: #ffffff;
  }

  .testimonial-image {
    background: url('../images/testimony.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 70vh;
  }

  .testimonial-info {
    background: #202020;
    padding: 30px 30px 10px 30px;
    height:70vh;
  }

  .testimonial-info h3 {
    color: #d9d9d9;
    font-size: 20px;
    text-align: justify;
    font-style:;
    margin-top: 5px;
    cursor: grab;
  }

  .testimonial-info .item {
    display: block;
    width: 100%;
  }

  .testimonial-item {
    margin: 20px 0;
  }

  .item {
    height:40vh;
  }

  .testimonial-item {
    margin: 10px 0;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img,
  .testimonial-item .text,
  .testimonial-item .text h4,
  .testimonial-item .text p {
    color: #d9d9d9;
    display: inline-block;
    vertical-align: top;
  }

  .text h4{
    font-size: 18px;
  }

  .text p{
    font-size: 13px;
    font-style: italic;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img {
    border: 3px solid #ffffff;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    margin-top: 10px;
    margin-right: 10px;
    pointer-events: none;
  }


  /*---------------------------------------
      CONTACT
  -----------------------------------------*/

  #contact {
    background: #ffff;
    text-align: center;
  }

  #contact-form .col-md-12,
  #contact-form .col-md-4 {
    padding-left: 0;
  }

  #contact-form .form-control {
    background: transparent;
    border: 0;
    border-bottom: 3px solid #f0f0f0;
    border-radius: 0;
    box-shadow: none;
    margin: 10px 0;
  }

  #contact-form .form-control:focus {
    border-bottom-color: #202020;
  }

  #contact-form input {
    height: 50px;
  }

  #contact-form input[type='submit'] {
    background: #202020;
    border-radius: 50px;
    border: 0;
    color: #ffffff;
  }

  #contact-form input[type='submit']:hover {
    background: #29ca8e;
    color: #ffffff;
  }

  /*---------------------------------------
      CLIENT
  -----------------------------------------*/
  /* Slider */
  #client {
    margin-top: 50px;
  }
  .slick-slide {
    background: transparent;
    height: 150px;
    padding-top: 20px;
    padding-bottom: 40px;
  }


  .customer-logos {
    overflow: inherit;
    border-top: 1px solid #353535;
    border-bottom: 0px solid #353535;
  }


  .slick-slide img {
    width: 100%;
    padding: 10px;
  }

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

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

  .slick-track {
    padding: 0rem 0;
  }

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

  .slick-slide.slick-loading img {
    display: none;
  }

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

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

  .slick-arrow {
    position: absolute;
    top: 50%;
    background: url(https://raw.githubusercontent.com/solodev/infinite-logo-carousel/master/images/arrow.svg?sanitize=true) center no-repeat;
    color: #fff;
    filter: invert(77%) sepia(32%) saturate(1%) hue-rotate(344deg) brightness(105%) contrast(103%);
    border: none;
    width: 2rem;
    height: 1.5rem;
    text-indent: -10000px;
    margin-top: -16px;
    z-index: 99;
  }

  .slick-arrow.slick-next {
    right: -40px;
    transform: rotate(180deg);
  }

  .slick-arrow.slick-prev {
    left: -40px;
  }

  /* Media Queries */

  @media (max-width: 500px) {
    .slick-arrow {
      width: 1rem;
      height: 1rem;
    }
  }

  .row {
    overflow: hidden;
  }

  .space{
    width: 20px;
  }

  /*---------------------------------------
     FOOTER
  -----------------------------------------*/

  footer {
    margin-top:;
    padding-bottom: 50px;
    background: #343b40;
  }

  .copyright-text p {
    margin: 5px;
    color: white;
  }


  /*---------------------------------------
     SOCIAL ICON
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    border-radius: 50px;
    color: #ffffff;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    position: relative;
    margin: 0px 0px 0px 0;
  }

  .social-icon li a:hover {
    background: #536976;
    color: #ffffff;
  }


  /*---------------------------------------
     SERVICES TAB
  -----------------------------------------*/

  /* HEADER*/

    #headerpread {
      background: url('../images/proofread4.jpg') no-repeat center center;
      background-size: cover;
      vertical-align: middle;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      min-height: 60vh;
      width: 100%;
      position: relative;
      /* padding-top: 12em; */
      text-align: center;
      margin-bottom: 20px;
    }

    #headerpread h1 {
      color: #ffffff;
      margin-top: 10px;
      margin-bottom: 20px;
    }

    #headeredit {
      background: url('../images/unsplash.jpg') no-repeat center center;
      background-size: cover;
      vertical-align: middle;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      min-height: 60vh;
      position: relative;
      /* padding-top: 12em; */
      text-align: center;
    }

    #headeredit h1 {
      color: #ffffff;
      margin-top: 10px;
      margin-bottom: 20px;
    }

    #headertrans {
      background: url('../images/proofread.jpg') no-repeat center center;
      background-size: cover;
      vertical-align: middle;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      min-height: 60vh;
      position: relative;
      /* padding-top: 12em; */
      text-align: center;
    }

    #headertrans h1 {
      color: #ffffff;
      margin-top: 10px;
      margin-bottom: 20px;
    }

    #headerformat {
      background: url('../images/formatting.jpg') no-repeat center center;
      background-size: cover;
      vertical-align: middle;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      min-height: 60vh;
      position: relative;
      /* padding-top: 12em; */
      text-align: center;
    }

    #headerformat h1 {
      color: #ffffff;
      margin-top: 10px;
      margin-bottom: 20px;
    }

    #headerscript {
      background: url('../images/script7.jpg') no-repeat center center;
      background-size: cover;
      vertical-align: middle;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      min-height: 60vh;
      position: relative;
      /* padding-top: 12em; */
      text-align: center;
    }

    #headerscript h1 {
      color: #ffffff;
      margin-top: 10px;
      margin-bottom: 20px;
    }

    .header-info {
      margin-top: 0em;
    }

    .header-info h3 {
      color: #ffffff;
      font-size: 40px;
      font-weight: bold;
      /* font-style: italic; */
      letter-spacing: 4px;
      text-transform: uppercase;
      text-align: center;
      margin-top: 150px;

    }

    .header-info p {
      color: #bfbfbf;
      font-size: 15px;
      font-weight: normal;
      letter-spacing: 1px;
      text-align: center;
      margin-top: 5px;

    }

    .overlay1 {
      background: #536976;  /* fallback for old browsers */
      background: -webkit-linear-gradient(to right, #1a1a1a, #536976);  /* Chrome 10-25, Safari 5.1-6 */
      background: linear-gradient(to right, #1a1a1a, #666666); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
      opacity: 0.8;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .overlay2 {
      background: #536976;  /* fallback for old browsers */
      background: -webkit-linear-gradient(to right, #1a1a1a, #536976);  /* Chrome 10-25, Safari 5.1-6 */
      background: linear-gradient(to right, #1a1a1a, #666666); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
      opacity: 0.3;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

  #body-column {
    align: center;
    width: 96%;
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: 2%;
    margin-right: 2%;
    overflow: hidden;
  }

  .left-column {
    background: white;
    padding: 30px 20px 30px;
    margin-bottom: 20px;
  }

  .left-column h2 {
    color: #66b3ff;
    font-size: 20px;
    font-weight: bold;
    /* font-style: italic; */
    letter-spacing: 3px;
    text-transform: inherit;
    text-align: center;
  }

  .left-column p {
    color: black;
    font-size: 15px;
    font-weight: normal;
    font-family: arial;
    letter-spacing: 2px;
    text-transform: inherit;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 20px;
  }

  .middle-column {
    background: white;
    padding: 30px 20px 30px 20px;
    padding-bottom: 100%;
    margin-bottom: -100%;

  }


  .middle-column h1 {
    color: black;
    font-size: 15px;
    font-weight: bold;
    /* font-style: italic; */
    letter-spacing: 2px;
    text-transform: inherit;
    text-align: left;
    margin-top: 20px;
    margin-left: 20px;
  }

  .middle-column p {
    font-size: 15px;
    font-weight: normal;
    font-family: arial;
    color: black;
    /*font-style: italic; */
    letter-spacing: 2px;
    text-transform: inherit;
    text-align: left;
    margin-top: 10px;
    margin-left: 20px;

  }

  .middle-column ul>li {
    list-style: square;
    color: black;
    font-size: 15px;
    font-weight: normal;
    font-family: arial;
    /* font-style: italic; */
    letter-spacing: 2px;
    text-transform: inherit;
    text-align: left;
    margin-top: 10px;
    margin-left: 20px;
    text-indent: inherit;
  }

  .right-column {
    background: white;
    padding: 30px 20px 30px;
    padding-bottom: 100%;
    margin-bottom: -100%;
  }

  .right-column h2 {
    color: #66b3ff;
    font-size: 20px;
    font-weight: bold;
    /* font-style: italic; */
    letter-spacing: 3px;
    text-transform: capitalize;
    text-align: center;

  }

  .img-ex>img {
    width: 100%;
    border: 1px solid #e7e7e7;
    margin-bottom: 10px;
    cursor: zoom-in;
  }

  /*---------------------------------------
     FEEDBACK FORM
  -----------------------------------------*/

  #headerfeedback {
    background: url('../images/feedback5.jpg') no-repeat center center;
    background-size: cover;
    vertical-align: middle;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-akign-item: center;
    -ms-flex-align: center;
    min-height: 60vh;
    position: relative;
    text-align: center;
  }

  /*{
    background: url('../images/p1.jpg') no-repeat center center;
    background-size: cover;
    vertical-align: middle;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 60vh;
    width: 100%;
    position: relative;
     padding-top: 12em;
    text-align: center;
    margin-bottom: 20px;
  }
*/


  .hidden {
    display: none;
  }

  #body-column-feedback{
    align: center;
    width: 96%;
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: 2%;
    margin-right: 2%;
    overflow: hidden;
  }

  .middle-column-feedback p, {
    font-family: arial;
  }

  .line {
    border-top: 1px solid #c3c3a2;
  }

  .middle-column-feedback {
    background: white;
    padding: 30px 50px 30px 50px;
  }

  .scale {
    text-align: center;
    font-size: 12px;
    width: 100px;
    height: 30px;
    padding: 0;
  }

  .con {
    background-color: #e6f5ff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    min-height: 50px;
    height: inherit;
    }

  .con2 {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    min-height: 50px;
    height: inherit;
    }

  .con3 {
    background-color: #e6f5ff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    height: inherit;
    }

  .con4 {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    height: inherit;
    }

  .con p, .con2 p, .con3 p, .con4 p{
    font-family: sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    margin: 0px;
  }

  .radiobox_q1 {
    text-align: left;
    width: 100px;
  }

  .radiobox_q {
    text-align: left;
    width: 100%;
  }

  .radiobox_q > label, .radiobox_q1 > label{
    font-family: ;
    font-size: 13px;
    font-style: normal;
    font-weight: normal;
  }


  .radiobox {
    text-align: center;
    width: 100px;
  }

  /*---------------------------------------
     BLOG PAGE
  -----------------------------------------*/

  @media screen and (min-width: 1200px) {

  .container-blog {
    width: 90%;
    margin: 0 5%;
  }

  .blog-box {
    background-color: #fff;
    width: 100%;
    margin: 20px 20px;
  }

  .blog-box:hover .ico-circle {
    transition: all 500ms ease;
    color: #fff;
    background-color: #24b67e;
    box-shadow: 0 0 0 10px #bbf5df;
  }

  .blog-box .service-ico {
    margin-bottom: rem;
    color: #1e1e1e;
    text-align: center;
  }

  .blog-box .ico-circle {
    transition: all 500ms ease;
    font-size: 4rem;
  }

  .blog-box .s-title {
    font-size: 2.0rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: .4rem 0;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .blog-box .s-description {
    color: #4e4e4e;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-left: 20px;
    margin-right: 20px;
    /*
    text-align:justify;
    text-justify:auto;
    */
  }

  div .blog-ex1 {

    width: 100%;
    height: 700px;

  }

  div .blog-ex2 {

    width: 100%;
    height: 650px;
  }

  .blog-title h1{
    padding: 0 10px;
    text-align: left;
  }

  div .writer-date {
    margin-bottom: 3em;
  }

  .blog-images{

  }

  .blog-logo{
    width: 1em;
    height: 1em;
    font-size: 1em;
  }

  .resize-blog {
    width: 100%;
  }

  .writer-date p {

  }



}
