/*  main color */

/* main-color #ec1839
background light #f2f2fc
background dark #fdf9ff
heading #302e4d
text #504e70
border dark #d4d4e3 /*

/*  main color */

/* Main Roles */


body {
  direction: rtl;
  box-sizing: border-box;
  background-color: #f2f2fc;
  font-family: Almarai;
}

/* Main Roles */

/* Start Navbar */

.bg-light {
  background: #f2f2fc !important;
  height: 100px;
  margin-right: -25px;
  box-shadow: 0 0 15px rgb(230, 230, 230);

}

.navbar-collapse ul 
{
  background-color: #f2f2fc;
  padding: 15px;
  border-radius: 5px;
  margin-right: 100px;
}

.dropdown-menu {
  text-align: right;
  left: unset;
}

.navbar-brand {
  margin-left: 2rem;
  margin-right: 0;
}

.navbar-brand
{
  width: 200px;
  height: 100px;
}



.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #ec1839;
  font-weight: bold;
}

.navbar-light .navbar-nav .nav-link {
  color: #302e4d;
  font-size: 13px;
  font-weight: bold;
}
.navbar-light .navbar-nav .nav-link:hover
{
  color: #ec1839;
}

.dropdown-item {
  color: #504e70;
}

/* after scroll*/
.scrolling {
  background-color: #f2f2fc !important;
  box-shadow: 0 3px 1rem #d4d4e3;
  height: 80px;
  transition: 0.3s ease-in-out;
}

.scrolling .navbar-brand img {
  height: 75px;
}

/* after scroll end*/

@media (max-width: 768px)
{
  .navbar-brand h3
  {
    font-size: 20px;
  }

  .navbar-brand h3 span
  {
    font-size: 17px;
  }

  .navbar-light .navbar-toggler
  {
    margin-left: 20px;
  }
}


/* End Navbar */

/* Strart Slider */

.carousel-control-next, .carousel-control-prev
{
  z-index: 3;
}

.carousel .carousel-inner .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.carousel .carousel-inner img {
  height: 90vh;
  width: 100%;
}
.carousel-caption {
  bottom: 0;
  top: 350px;
}

.carousel-caption h3 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
}

.carousel-caption p {
  font-size: 25px;
  letter-spacing: 2px;
  font-weight: 500;
}

.carousel-caption button {
  font-size: 20px;
  padding: 10px 55px;
}

.carousel-indicators {
  z-index: 999;
  position: absolute;
}
/* End Slider */

/* start our client */

.our-client {
  background-color: #fdf9ff;
  padding-top: 20px;
}

.our-client ul li {
  list-style: none;
  display: inline-block;
  margin-right: 80px;
}

.our-client ul li:first-child {
  margin-right: 0;
}

.our-client img {
  opacity: 0.6;
  margin: 20px auto;
  transition: all 0.3s ease-in-out;
  max-width: 126px;
}

.our-client img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .our-client ul li {
    display: block;
    margin-right: 0;
  }

  .our-client img {
    margin: 20px;
  }
}

/* end our client */

/* Start Services */

.head {
  margin-top: 20px;
  margin-bottom: 0;
  position: relative;
  display: block;
}

.head h2 {
  font-weight: bold;
  color: #302e4d;
  font-size: 40px;
  margin-top: 40px;
  z-index: 2;
}

.head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 56%;
  width: 10%;
  bottom: 50%;
  border-bottom: 3px solid #ec1839;
  z-index: 1;
}

.head h2::before {
  content: "";
  position: absolute;
  left: 50%;
  right: 34%;
  width: 10%;
  bottom: 50%;
  border-bottom: 3px solid #ec1839;
  z-index: 1;
}
.services {
  position: relative;
  width: 1000px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 20px;
}
.services .cart {
  position: relative;
  height: 250px;
  background: #fdf9ff;
  display: flex;
  width: 45%;
  margin: 30px 0;
  font-size: 10px;
}

.services .cart .imgbx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fdf9ff;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s ease-in-out;
  box-shadow: 0 0 15px #d4d4e3;
}

.services .cart:hover .imgbx {
  width: 150px;
  height: 150px;
  left: -75px;
  top: calc(50% - 75px);
  transition: 0.5 ease-in-out;
  background: #a7a4d3;
  color: #fff;
  font-size: 5px;
}

.services .cart .imgbx::before {
  content: attr(data-text);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 6em;
  color: rgba(77, 0, 0, 0.2);
  font-weight: bold;
}

.services .cart .imgbx i {
  font-size: 70px;
  max-width: 100px;
  transition: 0.5s ease-in-out;
  color: #504e70;
}

.services .cart .imgbx i:hover {
  color: #fff;
}

.services .cart .content {
  position: absolute;
  right: 0;
  width: calc(100% - 75px);
  height: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services .cart .content h3 {
  margin-bottom: 150px;
  font-size: 24px;
  text-align: right;
  margin-left: 20px;
  color: #302e4d;
}

.services .cart .content p {
  text-align: right;
  color: #504e70;
  font-size: 16px;
}

.services .cart .content a {
  display: block;
  text-decoration: none;
  color: #ec1839;
  position: absolute;
  position: absolute;
  bottom: 57%;
  right: 5%;
  font-size: 14px;
}

@media (max-width: 992px) {
  .services {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .services .cart {
    width: 400px;
  }

  .head h2::after {
    display: none;
  }

  .head h2::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .services .cart {
    max-width: 300px;
    flex-direction: column;
    height: auto;
  }
  .services .cart .imgbx {
    position: relative;
  }

  .services .cart .imgbx,
  .services .cart:hover .imgbx {
    width: 100%;
    height: 200px;
    left: 0;
    overflow: hidden;
  }

  .services .cart .imgbx img,
  .services .cart:hover .imgbx img {
    max-width: 100px;
  }

  .services .cart .content {
    position: relative;
    width: 100%;
  }
}

/* Start Services */

/* start subscribe */

.subscribe .form-inline {
  display: block;
}

.subscribe {
  padding-top: 40px;
  padding-bottom: 70px;
  background-color: #fdf9ff;
}

.subscribe h1 {
  color: #302e4d;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.subscribe p {
  color: #504e70;
}

.subscribe .form-control {
  border-radius: 0;
  margin-right: -5px;
  width: 300px;
  height: 45px;
}

.subscribe button {
  border-radius: 0;
}

@media (max-width: 768px) {
  .subscribe .form-control {
    width: 100%;
    text-align: center;
  }
}

/* end subscribe */

/* Start Testimonial */

.test {
  text-align: right;
}

.test h2 {
  color: #504e70;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  margin: 30px 0 60px;
}
.test h2::after {
  content: "";
  width: 140px;
  position: absolute;
  margin: 0 auto;
  height: 3px;
  background: #db584e;
  left: 0;
  right: 0;
  bottom: -10px;
  opacity: 0.8;
}
.test .col-center {
  margin: 0 auto;
  float: none !important;
}
.test .carousel {
  margin: 50px auto;
  padding: 0 70px;
}
.test .carousel-item {
  color: #999;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  min-height: 290px;
}
.test .carousel .item .img-box {
  width: 135px;
  height: 135px;
  margin: 0 auto;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 50%;
}
.test .carousel .img-box img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}
.test .carousel .testimonial {
  padding: 30px 0 10px;
}
.test .carousel .overview {
  font-style: italic;
}
.carousel .overview b {
  text-transform: uppercase;
  color: #db584e;
}
.test .carousel .carousel-control {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  top: 50%;
  background: none;
}
.test .carousel-control i {
  font-size: 68px;
  line-height: 42px;
  position: absolute;
  display: inline-block;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 0 3px 3px #e6e6e6, 0 0 0 #000;
}
.carousel .carousel-indicators {
  
}
.test .carousel-indicators li,
.carousel-indicators li.active {

}
.test .carousel-indicators li {
  background: #999;
  border-color: transparent;
  box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
}
.test .carousel-indicators li.active {
  background: #555;
  box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
}

/* Start Testimonial */

/* start stats */

.stats {
  background: url(../image/55.jpg) no-repeat center center fixed;
  background-size: cover;
  min-height: 300px;
}

.stats .data {
  background-color: rgba(2, 2, 2, 0.7);
  color: #e6e6e6;
  min-height: 300px;
  padding-bottom: 40px;
  padding-bottom: 60px;
}

.stats .stat {
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}

.stats .stat:hover {
  color: #ec1839;
}

.stats .data h1 {
  margin-bottom: 40px;
  padding-top: 25px;
}

.stats .data p {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 0;
}

.stats .data {
  font-size: 18px;
}

/* End stats */

/* Start Footer */

.footer {
  background-color: #f2f2fc;
  color: #504e70;
}

.footer a {
  color: #504e70;
}
.footer a:hover {
  color: #504e70;
}

.footer h3 {
  color: #ec1839;
  letter-spacing: 1px;
  margin: 30px 0 20px;
}

.footer p {
  font-weight: bold;
}

.footer a {
  display: block;
  margin-bottom: 7px;
  color: #504e70;
  font-size: 15px;
}

.footer .column {
  overflow: hidden;
}

.footer .column li {
  padding: 5px 0;
}

.footer .social {
  overflow: hidden;
  margin: 20px -40px 10px;
}

.footer .social li {
  float: right;
  margin-left: 20px;
  color: #504e70;
  font-size: 20px;
  color: #504e70;
}

.footer .social li a:hover {
  color: #ec1839;
}

.footer .img-thumbnail {
  background: rgba(0, 0, 0, 4);
  border: 1px solid #444;
  margin-bottom: 5px;
}

.footer .copy {
  background: #504e70;
  color: #fff;
  padding: 10px 0;
  font-size: 18px;
  border-top: 1px solid #fff;
  position: absolute;
  width: 100%;
  left: 0;
}

.footer .copy span {
  color: #fff;
}

/* End Footer */

/* Start Portflio */

/* Start Gallery */
.gallery {
  padding-top: 150px;
  padding-bottom: 50px;
  text-align: center;
}
.gallery h2 {
  font-weight: bold;
  font-size: 30px;
  color: #302e4d;
  border-left: 4px solid #ec1839;
  border-right: 4px solid #ec1839;
  margin: 20px auto;
  text-align: center;
  background: #f2f2fc;
  box-shadow: 0 0 15px #d4d4e3;
  padding: 10px;
  
}
.gallery h3 {
  font-weight: bold;
  font-size: 18px;
  color: #504e70;
  margin: 0 0 40px;
  text-align: center;
}
.gallery .images-b
ox {
  text-align: center;
}
.gallery .images-box img {
  width: 250px;
  height: 200px;
  padding: 3px;
  background-color: #F6F6F6;
  border: 1px solid #CCC;
  margin: 5px;
  cursor: pointer;
}
.popup-overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, .7);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.popup-box {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFF;
  border: 1px solid #CCC;
  padding: 20px;
  z-index: 1001;
}
.popup-box h3 {
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
  color: #ec1839;
}
.popup-box img {
  max-width: 100%;
}
.close-button {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #ec1839;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  color: #FFF;
  cursor: pointer;
  font-weight: bold;
  font-family: Arial, Tahoma;
  border-radius: 50%;
}
/* End Gallery */


/* End Portflio */

/* Start Video */

.content
{
    padding-top: 80px;
}

.content h4
{
  color: #504e70;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}

.section-header {
  text-align: center;
  margin: 60px auto 20px auto;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  color: #302e4d;
}

.section-header-underline {
  border: 1px solid #ec1839;
  width: 3rem;
  margin: 0 auto;
  margin-bottom: 30px;
}

.video-gallery {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}

.video-gallery .gallery-item {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 320px;
  max-width: 580px;
  max-height: 360px;
  width: 48%;
  background: #302e4d;
  cursor: pointer;
}

.video-gallery .gallery-item img {
  position: relative;
  display: block;
  opacity: 0.45;
  width: 105%;
  height: 300px;
  transition: opacity 0.35s, transform 0.35s;
  transform: translate3d(-23px, 0, 0);
  backface-visibility: hidden;
}

.video-gallery .gallery-item .gallery-item-caption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
}

.video-gallery .gallery-item .gallery-item-caption,
.video-gallery .gallery-item .gallery-item-caption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-gallery .gallery-item h2 {
  font-weight: 300;
  overflow: hidden;
  padding: 0.5em 0;
}

.video-gallery .gallery-item h2,
.video-gallery .gallery-item p {
  position: relative;
  margin: 0;
  z-index: 10;
}

.video-gallery .gallery-item p {
  letter-spacing: 1px;
  font-size: 68%;

  padding: 1em 0;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  transform: translate3d(10%, 0, 0);
}

.video-gallery .gallery-item:hover img {
  opacity: 0.3;
  transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item .gallery-item-caption {
  text-align: left;
}

.video-gallery .gallery-item h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15%;
  height: 1px;
  background: #fff;

  transition: transform 0.3s;
  transform: translate3d(-100%, 0, 0);
}

.video-gallery .gallery-item:hover h2::after {
  transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item:hover p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 50em) {
  .video-gallery .gallery-item {
    display: inline-block;
    float: none;
    margin: 10px auto;
    width: 100%;
  }
}
/* End Video */

/* Start Contact-Us */

.jumbotron {
  /*background: #358CCE;*/
  
  background-color: #504e70;
  color: #FFF;
  border-radius: 0px;
  text-align: right;
}

.jumbotron-sm {
  padding-top: 54px;
  padding-bottom: 24px;
  margin-top: 100px;
}

.jumbotron small {
  color: #FFF;
}

.header {
  height: 150px;
}

.card {
  position: relative;
  top: -185px;
  margin-bottom: 50px;
}

.cardStyle {
  position: relative;
  background-color: #fff;
  border: 1px solid rgb(221, 221, 221);
  margin-top: 20px;
  padding: 20px;
}

.cardStyle:before {
  position: absolute;
  height: 100%;
  width: 30px;
  top: 0;
  left: -30px;
  content: " ";
  display: block;
  /* z-index: 200; */
  
  background: url("http://al2015.gatesnotesazure.com/assets/media/images/top-shadow-left.png") no-repeat;
}

.cardStyle:after {
  position: absolute;
  height: 100%;
  width: 30px;
  top: 0;
  right: -30px;
  content: " ";
  display: block;
  /* z-index: 200; */
  
  background: url("http://al2015.gatesnotesazure.com/assets/media/images/top-shadow-right.png") no-repeat;
}

.h1 {
  color: #ec1839;
  font-size: 50px;
  text-align: right;
}

.h1 small {
  color: #ddd;
  font-size: 25px;
}

.h1,
.h3,
small,
label,
.modal-title {
  font-weight: 300;
  text-align: right;
}

label {
  color: #504e70;
  font-weight: bold;
  text-align: right;
  float: right;
}

.h1 .fa-envelope {
  font-size: 35px;
  color: #504e70;
}

.btn-danger {
  padding: 10px 45px;
}

.box 
{
  height: 100px;
  width: 200px;
  background-color: #fff;
  box-shadow: 0 0  10px #eee;
  margin-left: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
  margin-right: 15px;
}

.box i
{
  color: #ec1839;
  font-size: 28px;
  padding: 5px;
}

.box p
{
  font-weight: bold;
  color: #302e4d;
  margin: 0;
}

.box span
{
  color: #504e70;
}

/* End Contact-Us */

/* Start S-M-S Page */
.heading h1:after {
  content: '';
  display: block;
  width: 8px;
  height: 2px;
  background: #BABABA;
  margin-top: 4px;
  
}

.clear-fix {
  clear: both;
}

.hidden {
  visibility: hidden !important;
}

/* end global */

/* start of our service section */

#our-service {
  background: #fdf9ff;
  min-height: 50vh;
  padding-top: 20vh;
}

/* OUR SEERVICES LEFT SIDE */

#our-service .desc {
  width: 33%;
  float: left;
  margin-right: 35px;
}

#our-service .desc .heading h1 {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1.4px;
  margin-bottom: 30px;
}

#our-service .desc .text {
  color: #BABABA;
}

/* OUR service RIGHT SIDE */

#our-service .service {
  width: 60%;
  float: left;
  display: flex;
}

#our-service .service .column {
  float: left;
  margin-right: 60px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

#our-service .service .column .service {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: #FFFFFF;
  box-shadow: 0 0 15px #d4d4e3;
  transition: all 0.1s ease;
  margin-bottom: 7px;
}

#our-service .service .column .service:hover {
  background: #504e70;
  color: #fff;
}

#our-service .service .column .service:hover .service-icon {
  color: #fff;
}

#our-service .service .column .service .service-desc {
  transform: rotate(-45deg);
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

#our-service .service .column .service .service-desc .service-icon  {
  font-size: 20px;
  margin-bottom: 5px;
  color: #ec1839;
}

/* end of our service section */

/* media query */

@media all and (max-width: 967px) {
  
  #our-service .desc {
      width: 100%;
      margin-bottom: 30px;
  }
  
  #our-service .service {
      width: 100%;
  }
  
  #our-service .service .column {
      transform: rotate(0deg);
      margin-right: 10px;
  }
  
  #our-service .service .column .service .service-desc {
      transform: rotate(0deg);
  }
}

/* Start alternate */

.alternate
{
  background-color: #f2f2fc;
  padding: 20px;
  margin-top: 40px;
}

.alternate header h2
{
  font-size: 30px;
  font-weight: bold;
  color: #302e4d;
  margin-bottom: 0px;
}

.alternate i
{
  font-size: 35px;
  background-color: #111111;
  padding: 30px;
  border-radius: 50%;
  color: #fff;
  margin-top: 40px;
  margin-bottom: 15px;
  opacity: 0.4;
  transition: 0.3s ease-in-out;
  transition-duration: 0.6s;
}

.alternate i:hover
{
  opacity: 1;
  transform: scale(1.2,1.2) rotate(360deg);
}

.alternate h4
{
  color: #504e70;
  font-weight: bold;
  font-size: 16px;
}

/* End alternate */

/* End S-M-S Page */

/* Start Social Page */

/* Start T/Head */

.thead
{
  margin-top: 150px;
  margin-bottom: 50px;
}

.thead img
{
  width: 600px;
  height: 400px;
}

.thead h2
{
  font-weight: bold;
  margin-top: 70px;
  color: #302e4d;
}

.thead p
{
  color: #504e70;
  margin-top: 10px;
  font-weight: 700;
}

.thead h3
{
  color: #ec1839;
  background-color: #ffffff;
  padding: 15px;
  border: 1px solid #ec1839;
  border-radius: 100vh;
}

/* End T/Head */

/* Start Timeline */
.timeline {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #f2f2fc; 
}
.timeline .timeline-content {
  position: relative;
  overflow: hidden;
}
.timeline .timeline-content:before {
  content: '';
  width: 2px;
  height: 100%;
  background-color: #ec1839;
  position: absolute;
  left: 50%;
  margin-left: -1px;
  top: 0;
}
.timeline .timeline-content .year {
  margin: 20px auto;
  width: 50px;
  background-color: #ec1839;
  position: relative;
  z-index: 2;
  border-radius: 4px;
  text-align: center;
  color: #FFF;
  padding: 2px 5px;
  font-weight: bold;
}
.timeline .timeline-content .left,
.timeline .timeline-content .right {
  width: calc(50% - 25px);
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 767px) {
  .timeline .timeline-content .left, 
  .timeline .timeline-content .right {
    width: 100%;
    margin-bottom: 20px;
  }
  .timeline .timeline-content .left:before, 
  .timeline .timeline-content .right:before {
    display: none;
  }
  .timeline .timeline-content .left .content:before,
  .timeline .timeline-content .right .content:before {
    display: none;
  }
}
.timeline .timeline-content .left {
  float: left;
}
.timeline .timeline-content .left:before {
  right: -35px;
}
.timeline .timeline-content .right {
  float: right;
}
.timeline .timeline-content .right:before {
  left: -35px;
}
.timeline .timeline-content .left:before,
.timeline .timeline-content .right:before {
  content: '';
  width: 18px;
  height: 18px;
  background-color: #FFF;
  border: 3px solid #ec1839;
  position: absolute;
  border-radius: 50%;
  top: 20px;
}
.timeline .timeline-content .content {
  padding: 20px;
  background-color: #FFF;
}
.timeline .timeline-content .content h3 {
  font-weight: bold;
  color: #302e4d;
  margin: 0 0 10px;
}
.timeline .timeline-content .content p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.clearfix {
  clear: both;
}
.timeline .timeline-content .left .content:before {
  content: '';
  border-style: solid;
  border-width: 10px;
  border-color: transparent transparent transparent #FFF;
  height: 0;
  width: 0;
  position: absolute;
  right: -20px;
  top: 20px;
}
.timeline .timeline-content .right .content:before {
  content: '';
  border-style: solid;
  border-width: 10px;
  border-color: transparent #FFF transparent transparent ;
  height: 0;
  width: 0;
  position: absolute;
  left: -20px;
  top: 20px;
}
/* End Timeline */


/* Start Price-Box */
@media (min-width: 768px){
  .lead{
    font-size: 21px;
  }
  .dl-horizontal dt{
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd{
    margin-left: 180px;
  }
  .container{
    width: 750px;
  }
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{
    float: left;
  }
  .col-sm-1{
    width: 8.33333%;
  }
  .col-sm-2{
    width: 16.66667%;
  }
  .col-sm-3{
    width: 25%;
  }
  .col-sm-4{
    width: 33.33333%;
  }
  .col-sm-5{
    width: 41.66667%;
  }
  .col-sm-6{
    width: 50%;
  }
  .col-sm-7{
    width: 58.33333%;
  }
  .col-sm-8{
    width: 66.66667%;
  }
  .col-sm-9{
    width: 75%;
  }
  .col-sm-10{
    width: 83.33333%;
  }
  .col-sm-11{
    width: 91.66667%;
  }
  .col-sm-12{
    width: 100%;
  }
  .col-sm-pull-0{
    right: auto;
  }
  .col-sm-pull-1{
    right: 8.33333%;
  }
  .col-sm-pull-2{
    right: 16.66667%;
  }
  .col-sm-pull-3{
    right: 25%;
  }
  .col-sm-pull-4{
    right: 33.33333%;
  }
  .col-sm-pull-5{
    right: 41.66667%;
  }
  .col-sm-pull-6{
    right: 50%;
  }
  .col-sm-pull-7{
    right: 58.33333%;
  }
  .col-sm-pull-8{
    right: 66.66667%;
  }
  .col-sm-pull-9{
    right: 75%;
  }
  .col-sm-pull-10{
    right: 83.33333%;
  }
  .col-sm-pull-11{
    right: 91.66667%;
  }
  .col-sm-pull-12{
    right: 100%;
  }
  .col-sm-push-0{
    left: auto;
  }
  .col-sm-push-1{
    left: 8.33333%;
  }
  .col-sm-push-2{
    left: 16.66667%;
  }
  .col-sm-push-3{
    left: 25%;
  }
  .col-sm-push-4{
    left: 33.33333%;
  }
  .col-sm-push-5{
    left: 41.66667%;
  }
  .col-sm-push-6{
    left: 50%;
  }
  .col-sm-push-7{
    left: 58.33333%;
  }
  .col-sm-push-8{
    left: 66.66667%;
  }
  .col-sm-push-9{
    left: 75%;
  }
  .col-sm-push-10{
    left: 83.33333%;
  }
  .col-sm-push-11{
    left: 91.66667%;
  }
  .col-sm-push-12{
    left: 100%;
  }
  .col-sm-offset-0{
    margin-left: 0%;
  }
  .col-sm-offset-1{
    margin-left: 8.33333%;
  }
  .col-sm-offset-2{
    margin-left: 16.66667%;
  }
  .col-sm-offset-3{
    margin-left: 25%;
  }
  .col-sm-offset-4{
    margin-left: 33.33333%;
  }
  .col-sm-offset-5{
    margin-left: 41.66667%;
  }
  .col-sm-offset-6{
    margin-left: 50%;
  }
  .col-sm-offset-7{
    margin-left: 58.33333%;
  }
  .col-sm-offset-8{
    margin-left: 66.66667%;
  }
  .col-sm-offset-9{
    margin-left: 75%;
  }
  .col-sm-offset-10{
    margin-left: 83.33333%;
  }
  .col-sm-offset-11{
    margin-left: 91.66667%;
  }
  .col-sm-offset-12{
    margin-left: 100%;
  }
}

@media screen and (min-width: 768px){
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next{
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev{
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next{
    margin-right: -15px;
  }
  .carousel-caption{
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators{
    bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px){
  .visible-sm{
    display: block !important;
  }
  table.visible-sm{
    display: table !important;
  }
  tr.visible-sm{
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm{
    display: table-cell !important;
  }
  .visible-sm-block{
    display: block !important;
  }
  .visible-sm-inline{
    display: inline !important;
  }
  .visible-sm-inline-block{
    display: inline-block !important;
  }
  .hidden-sm{
    display: none !important;
  }
}

@media (min-width: 992px){
  .container{
    width: 970px;
  }
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{
    float: left;
  }
  .col-md-1{
    width: 8.33333%;
  }
  .col-md-2{
    width: 16.66667%;
  }
  .col-md-3{
    width: 25%;
  }
  .col-md-4{
    width: 33.33333%;
  }
  .col-md-5{
    width: 41.66667%;
  }
  .col-md-6{
    width: 50%;
  }
  .col-md-7{
    width: 58.33333%;
  }
  .col-md-8{
    width: 66.66667%;
  }
  .col-md-9{
    width: 75%;
  }
  .col-md-10{
    width: 83.33333%;
  }
  .col-md-11{
    width: 91.66667%;
  }
  .col-md-12{
    width: 100%;
  }
  .col-md-pull-0{
    right: auto;
  }
  .col-md-pull-1{
    right: 8.33333%;
  }
  .col-md-pull-2{
    right: 16.66667%;
  }
  .col-md-pull-3{
    right: 25%;
  }
  .col-md-pull-4{
    right: 33.33333%;
  }
  .col-md-pull-5{
    right: 41.66667%;
  }
  .col-md-pull-6{
    right: 50%;
  }
  .col-md-pull-7{
    right: 58.33333%;
  }
  .col-md-pull-8{
    right: 66.66667%;
  }
  .col-md-pull-9{
    right: 75%;
  }
  .col-md-pull-10{
    right: 83.33333%;
  }
  .col-md-pull-11{
    right: 91.66667%;
  }
  .col-md-pull-12{
    right: 100%;
  }
  .col-md-push-0{
    left: auto;
  }
  .col-md-push-1{
    left: 8.33333%;
  }
  .col-md-push-2{
    left: 16.66667%;
  }
  .col-md-push-3{
    left: 25%;
  }
  .col-md-push-4{
    left: 33.33333%;
  }
  .col-md-push-5{
    left: 41.66667%;
  }
  .col-md-push-6{
    left: 50%;
  }
  .col-md-push-7{
    left: 58.33333%;
  }
  .col-md-push-8{
    left: 66.66667%;
  }
  .col-md-push-9{
    left: 75%;
  }
  .col-md-push-10{
    left: 83.33333%;
  }
  .col-md-push-11{
    left: 91.66667%;
  }
  .col-md-push-12{
    left: 100%;
  }
  .col-md-offset-0{
    margin-left: 0%;
  }
  .col-md-offset-1{
    margin-left: 8.33333%;
  }
  .col-md-offset-2{
    margin-left: 16.66667%;
  }
  .col-md-offset-3{
    margin-left: 25%;
  }
  .col-md-offset-4{
    margin-left: 33.33333%;
  }
  .col-md-offset-5{
    margin-left: 41.66667%;
  }
  .col-md-offset-6{
    margin-left: 50%;
  }
  .col-md-offset-7{
    margin-left: 58.33333%;
  }
  .col-md-offset-8{
    margin-left: 66.66667%;
  }
  .col-md-offset-9{
    margin-left: 75%;
  }
  .col-md-offset-10{
    margin-left: 83.33333%;
  }
  .col-md-offset-11{
    margin-left: 91.66667%;
  }
  .col-md-offset-12{
    margin-left: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px){
  .visible-md{
    display: block !important;
  }
  table.visible-md{
    display: table !important;
  }
  tr.visible-md{
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md{
    display: table-cell !important;
  }
  .visible-md-block{
    display: block !important;
  }
  .visible-md-inline{
    display: inline !important;
  }
  .visible-md-inline-block{
    display: inline-block !important;
  }
  .hidden-md{
    display: none !important;
  }
}

@media (min-width: 1200px){
  .container{
    width: 1170px;
  }
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{
    float: left;
  }
  .col-lg-1{
    width: 8.33333%;
  }
  .col-lg-2{
    width: 16.66667%;
  }
  .col-lg-3{
    width: 25%;
  }
  .col-lg-4{
    width: 33.33333%;
  }
  .col-lg-5{
    width: 41.66667%;
  }
  .col-lg-6{
    width: 50%;
  }
  .col-lg-7{
    width: 58.33333%;
  }
  .col-lg-8{
    width: 66.66667%;
  }
  .col-lg-9{
    width: 75%;
  }
  .col-lg-10{
    width: 83.33333%;
  }
  .col-lg-11{
    width: 91.66667%;
  }
  .col-lg-12{
    width: 100%;
  }
  .col-lg-pull-0{
    right: auto;
  }
  .col-lg-pull-1{
    right: 8.33333%;
  }
  .col-lg-pull-2{
    right: 16.66667%;
  }
  .col-lg-pull-3{
    right: 25%;
  }
  .col-lg-pull-4{
    right: 33.33333%;
  }
  .col-lg-pull-5{
    right: 41.66667%;
  }
  .col-lg-pull-6{
    right: 50%;
  }
  .col-lg-pull-7{
    right: 58.33333%;
  }
  .col-lg-pull-8{
    right: 66.66667%;
  }
  .col-lg-pull-9{
    right: 75%;
  }
  .col-lg-pull-10{
    right: 83.33333%;
  }
  .col-lg-pull-11{
    right: 91.66667%;
  }
  .col-lg-pull-12{
    right: 100%;
  }
  .col-lg-push-0{
    left: auto;
  }
  .col-lg-push-1{
    left: 8.33333%;
  }
  .col-lg-push-2{
    left: 16.66667%;
  }
  .col-lg-push-3{
    left: 25%;
  }
  .col-lg-push-4{
    left: 33.33333%;
  }
  .col-lg-push-5{
    left: 41.66667%;
  }
  .col-lg-push-6{
    left: 50%;
  }
  .col-lg-push-7{
    left: 58.33333%;
  }
  .col-lg-push-8{
    left: 66.66667%;
  }
  .col-lg-push-9{
    left: 75%;
  }
  .col-lg-push-10{
    left: 83.33333%;
  }
  .col-lg-push-11{
    left: 91.66667%;
  }
  .col-lg-push-12{
    left: 100%;
  }
  .col-lg-offset-0{
    margin-left: 0%;
  }
  .col-lg-offset-1{
    margin-left: 8.33333%;
  }
  .col-lg-offset-2{
    margin-left: 16.66667%;
  }
  .col-lg-offset-3{
    margin-left: 25%;
  }
  .col-lg-offset-4{
    margin-left: 33.33333%;
  }
  .col-lg-offset-5{
    margin-left: 41.66667%;
  }
  .col-lg-offset-6{
    margin-left: 50%;
  }
  .col-lg-offset-7{
    margin-left: 58.33333%;
  }
  .col-lg-offset-8{
    margin-left: 66.66667%;
  }
  .col-lg-offset-9{
    margin-left: 75%;
  }
  .col-lg-offset-10{
    margin-left: 83.33333%;
  }
  .col-lg-offset-11{
    margin-left: 91.66667%;
  }
  .col-lg-offset-12{
    margin-left: 100%;
  }
  .visible-lg{
    display: block !important;
  }
  table.visible-lg{
    display: table !important;
  }
  tr.visible-lg{
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg{
    display: table-cell !important;
  }
  .visible-lg-block{
    display: block !important;
  }
  .visible-lg-inline{
    display: inline !important;
  }
  .visible-lg-inline-block{
    display: inline-block !important;
  }
  .hidden-lg{
    display: none !important;
  }
}

@media print{
  *,
  *:before,
  *:after{
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited{
    text-decoration: underline;
  }
  a[href]:after{
    content: " (" attr(href) ")";
  }
  abbr[title]:after{
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after{
    content: "";
  }
  pre,
  blockquote{
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead{
    display: table-header-group;
  }
  tr,
  img{
    page-break-inside: avoid;
  }
  img{
    max-width: 100% !important;
  }
  p,
  h2,
  h3{
    orphans: 3;
    widows: 3;
  }
  h2,
  h3{
    page-break-after: avoid;
  }
  .navbar{
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret{
    border-top-color: #000 !important;
  }
  .label{
    border: 1px solid #000;
  }
  .table{
    border-collapse: collapse !important;
  }
  .table td,
  .table th{
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td{
    border: 1px solid #ddd !important;
  }
  .visible-print{
    display: block !important;
  }
  table.visible-print{
    display: table !important;
  }
  tr.visible-print{
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print{
    display: table-cell !important;
  }
  .visible-print-block{
    display: block !important;
  }
  .visible-print-inline{
    display: inline !important;
  }
  .visible-print-inline-block{
    display: inline-block !important;
  }
  .hidden-print{
    display: none !important;
  }
}

@media all and (transform-3d), (-webkit-transform-3d){
  .carousel-inner > .item{
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right{
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left{
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}

@media (max-width: 767px){
  .visible-xs{
    display: block !important;
  }
  table.visible-xs{
    display: table !important;
  }
  tr.visible-xs{
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs{
    display: table-cell !important;
  }
  .visible-xs-block{
    display: block !important;
  }
  .visible-xs-inline{
    display: inline !important;
  }
  .visible-xs-inline-block{
    display: inline-block !important;
  }
  .hidden-xs{
    display: none !important;
  }
}

@media only screen and (max-width: 768px){
  h1{
    font-size: 1.728rem;
    line-height: 2.57143rem;
  }
  h2{
    font-size: 1.44rem;
    line-height: 2.57143rem;
  }
  h3{
    font-size: 1.2rem;
    line-height: 1.71429rem;
  }
  h4{
    font-size: 1.12924rem;
    line-height: 1.71429rem;
  }
  h5{
    font-size: 1.06266rem;
    line-height: 1.71429rem;
  }
  h6{
    font-size: 1rem;
    line-height: 1.71429rem;
  }
}
/* =================== */
/*   Pricing Wrapper   */
/* =================== */
.pricing-wrapper {
}

.pricing-wrapper:hover .current {
  top: 0;
  padding-bottom: 20px;
  padding-top: 20px;
}

.pricing-wrapper:hover .current .pricing-card {
  -webkit-transition: all 0.2s linear 0s;
          transition: all 0.2s linear 0s;
  box-shadow: none;
}

.pricing-wrapper:hover .current .pricing-footer {
  height: 80px;
}

.pricing-wrapper:hover .current .pricing-footer a {
  bottom: 0;
  position: relative;
}

.pricing-wrapper:hover .current:hover {
  top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.pricing-wrapper:hover .current:hover .pricing-card {
  box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.25);
}

.pricing-wrapper:hover .current:hover .pricing-footer {
  height: 120px;
}

.pricing-wrapper:hover .current:hover .pricing-footer a {
  bottom: -20px;
  position: relative;
}

.stripped-table [class*=col-] {
  padding: 0;
  margin: -1px;
}

.stripped-table .pricing-col {
  padding: 20px 0;
}

.stripped-table.current {
  padding-left: 0;
  padding-right: 0;
}

.stripped-table .ribbon {
  left: calc(100% - 124px);
}

/* =================== */
/*   Pricing Cards     */
/* =================== */
.pricing-card {
  position: relative;
  border: 1px solid #ddd;
  width: 100%;
  top: 0;
  -webkit-transition: all 0.2s linear 0s;
          transition: all 0.2s linear 0s;
  z-index: 99;
}

/* =================== */
/*   Pricing Header    */
/* =================== */
.pricing-header {
  background: #fff;
  position: relative;
  height: 200px;
  border-bottom: 1px solid #1976d2;
  margin: -1px;
  margin-bottom: 0;
  text-align: center;
}

.pricing-header h5 {
  background: #2196f3;
  color: #fff;
  font-size: 16px;
  line-height: normal;
  margin: 0 auto;
  padding: 15px 20px;
  text-transform: uppercase;
}

.pricing-header p {
  margin: 0 auto;
  color: #fff;
  display: inline-block;
  font-style: italic;
}

/* =================== */
/*   Pricing Box       */
/* =================== */
.price-box {
  border-radius: 100px;
  display: block;
  margin: 25px auto;
  position: relative;
  line-height: 100px;
  height: 100px;
  width: 100px;
}

.price-box:before {
  border-radius: 50%;
  box-shadow: 0 0 0 5px white inset, 0 1px 2px transparent;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.price-box .price {
  color: #fff;
  display: inline-block;
  font-size: 34px;
  font-weight: 600;
  position: relative;
  letter-spacing: -2px;
}

.price-box .currency {
  font-size: 50%;
  font-weight: 600;
  left: -10px;
  line-height: inherit;
  position: absolute;
  top: -6px;
  letter-spacing: 0;
}

.price-box .plan {
  bottom: -26px;
  font-size: 36%;
  font-weight: 400;
  left: 0;
  letter-spacing: 0px !important;
  margin: 0 auto;
  position: absolute;
  right: 0;
  text-transform: capitalize;
}

/* ============================ */
/*   Pricing Feature(Content)   */
/* ============================ */
.pricing-feature {
  position: relative;
  text-align: left;
}

.pricing-feature li {
  list-style: none;
  padding: 13px 0;
  border-bottom: 1px solid #ddd;
  background: #eee;
}

.pricing-feature li:last-child {
  border-bottom: none;
}

.pricing-feature li span {
  text-transform: capitalize;
  font-weight: bold;
}

.pricing-feature li span, .pricing-feature li i {
  float: right;
}

.pricing-feature li p {
  margin: 0;
  font-size: 13.5px;
  text-transform: capitalize;
  padding: 0 20px;
  line-height: normal;
}

/* ============================ */
/*   Pricing Footer             */
/* ============================ */
.pricing-footer {
  border-top: 1px solid #ddd;
  padding: 0 20px;
  height: 80px;
  -webkit-transition: height 0.2s linear 0s;
          transition: height 0.2s linear 0s;
  text-align: center;
}

.pricing-footer a {
  bottom: 0;
  margin-top: 20px;
  position: relative;
}

/* =================== */
/*   Pricing Ribbons     */
/* =================== */
.ribbon {
  background: #222;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.23), 0 1px 5px rgba(0, 0, 0, 0.16);
  height: 35px;
  line-height: 35px;
  margin: 0 auto;
  position: absolute;
  left: calc(100% - 110px);
  top: 70px;
  width: 35px;
  z-index: 10;
  -webkit-transition: all 0.2s linear;
          transition: all 0.2s linear;
  border-radius: 100px;
  float: right;
  cursor: pointer;
}

.ribbon:hover {
  width: 90px;
}

.ribbon:hover span {
  visibility: visible;
  -webkit-transition: all 0.2s linear 0.18s;
          transition: all 0.2s linear 0.18s;
}

.ribbon span {
  top: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  float: left;
  visibility: hidden;
}

.ribbon i {
  color: #FFC61B;
  font-weight: 800;
  font-size: 14px;
  margin: 11px;
  z-index: 10;
  float: left;
}

/* ======================= */
/*   Pricing Comparison    */
/* ======================= */
.comparison-table [class*=col-] {
  padding: 0;
  margin: -1px;
}

.comparison-table .pricing-col {
  padding: 20px 0;
}

.comparison-table.current {
  padding-left: 0;
  padding-right: 0;
}

.comparison-table [class*=col-]:first-child {
  margin: 0;
}

.comparison-table [class*=col-]:first-child:hover {
  top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.comparison-table [class*=col-]:first-child:hover .pricing-card {
  margin: 0;
  box-shadow: none;
}

.comparison-table .pricing-feature li {
  background: #fff;
  text-align: center;
}

.comparison-table .pricing-feature li i {
  line-height: normal;
}

.comparison-table .pricing-feature li span, .comparison-table .pricing-feature li i {
  float: none;
}

.comparison-table .pricing-feature li:nth-child(2n+1) {
  background: #eee;
}

.comparison-table .ribbon {
  left: calc(100% - 124px);
}

.list-feature {
  z-index: 0;
}

.list-feature .pricing-header {
  background: #fff !important;
  padding: 30px 15px;
  border-bottom-color: #ddd !important;
  text-align: center;
  margin-top: -2px;
}

.list-feature .pricing-header h5 {
  background: #fff !important;
  color: #424242;
  font-weight: 500;
  font-size: 39px;
  padding: 0;
  margin-top: 30px;
}

.list-feature .pricing-header p {
  color: #504e70;
  margin-top: 5px;
}

.list-feature .pricing-feature {
  text-align: left;
}

.pricing-col {
  -webkit-transition: all 0.2s linear 0s;
          transition: all 0.2s linear 0s;
  padding-top: 20px;
  padding-bottom: 20px;
}

.pricing-col:hover {
  padding-bottom: 0;
  padding-top: 0;
}

.pricing-col:hover > .pricing-card {
  top: 0px;
  box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s linear 0s;
          transition: all 0.2s linear 0s;
  z-index: 101;
}

.pricing-col:hover > .pricing-card .pricing-footer {
  height: 120px;
}

.pricing-col:hover > .pricing-card .pricing-footer a {
  bottom: -20px;
  position: relative;
}

.pricing-col.current {
  padding-top: 0;
  padding-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.current {
  top: 0;
}

.current .pricing-card {
  z-index: 100;
  -webkit-transition: all 0.2s linear 0s;
          transition: all 0.2s linear 0s;
  box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.25);
}

.current .pricing-footer {
  height: 120px;
}

.current .pricing-footer a {
  bottom: -20px;
  position: relative;
}

.current:hover {
  -webkit-transition: all 0.2s linear 0s;
          transition: all 0.2s linear 0s;
  top: -20px;
}

.current:hover .pricing-footer {
  height: 120px;
}

.current:hover .pricing-footer a {
  bottom: -20px;
  position: relative;
}

/* ======================== */
/*   Tooltips               */
/* ======================== */
.tooltip {
  outline: none;
  color: inherit;
  position: relative;
  -webkit-font-smoothing: antialiased;
  /* webkit text rendering fix */
  cursor: help;
  border-bottom: 1px dotted;
  font-weight: normal !important;
}

.tooltip .tooltip-content {
  border-radius: 4px;
  position: absolute;
  color: #111;
  border: 1px solid #ddd;
  background: #f9f9f9;
  line-height: 1.6;
  font-weight: normal;
  font-size: 12px;
  padding: 15px;
  bottom: 36px;
  left: -10px;
  margin: 0 auto;
  z-index: 9999;
  width: 200px;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.25s ease-in;
          transition: all 0.25s ease-in;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  visibility: hidden;
  opacity: 0;
  display: block;
}

.tooltip .tooltip-content:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 20px;
  height: 20px;
  background: #f9f9f9;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 0;
}

.tooltip:hover span {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

/* ======================== */
/*   Button Color       */
/* ======================== */
.btn-act {
  line-height: normal;
  padding: 9px 26px;
  border: 2px solid;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: #666;
  vertical-align: middle;
  will-change: opacity, transform;
  -webkit-transition: all 0.2s linear 0s;
          transition: all 0.2s linear 0s;
}

.btn-act.rounded {
  border-radius: 50px;
}

.btn-act.boxed {
  border-radius: 0;
}

.btn-act.btn-uppercase {
  text-transform: uppercase;
  font-size: 13px;
}

.btn-act.btn-capitalize {
  text-transform: capitalize;
}

.btn-act span {
  position: relative;
  left: 0;
  -webkit-transition: left 0.2s linear;
          transition: left 0.2s linear;
}

.btn-act i {
  -webkit-transition: margin-left 0.2s linear;
          transition: margin-left 0.2s linear;
  opacity: 0;
  margin-left: 0;
  position: absolute;
  line-height: inherit;
}

.btn-act:hover {
  border-color: initial;
  background: initial;
}

.btn-act:hover span {
  left: -0.3em;
}

.btn-act:hover i {
  opacity: 1;
  margin-left: 0.25em;
}

.btn-act.btn-line {
  background: #fff;
  border-color: #616161;
  color: #616161;
}

.btn-act.btn-line:hover {
  border-color: #212121;
  background: #212121;
  color: #fff;
}

.btn-act.btn-bg {
  background: #616161;
  border-color: #616161;
  color: #fff;
}

.btn-act.btn-bg:hover {
  background: #212121;
  border-color: #212121;
}

.title-page{
  margin-bottom:60px; 
  color: #484848;
  font-size:30px;
}

.content{
  padding: 60px;
  padding-bottom: 200px;
}

/*=====================================================================
    MENU
======================================================================*/
  .matraz_menu { width:100%; padding: 15px 0; z-index:999; display:block; float:left; background: #eee; border-bottom:1px solid #dedede;margin-bottom: 120px;}
  .matraz_mainmenu { float:right; display:block; margin-top:10px; margin-bottom: 10px;}
  .matraz_mainmenu li {
    float: left;
    margin: 0 5px 0 auto;
    overflow: hidden;
    padding: 15px 0;
  }
  .matraz_mainmenu li a {
    border-radius: 2px 2px 2px 2px;
    color: #2c3e50;
    padding: 10px;
    font-weight:600;
  }
  .matraz_mainmenu li:hover a,
  .matraz_mainmenu li.active a{
    background: #1abc9c;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .matraz_mainmenu li.active:hover a{
    background: #424242;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

/*=====================================================================
    MOBILE MENU
======================================================================*/
  .matraz_menu .logo {
    margin-left: auto;
    margin-top: 5px;
    width: 150px;
  }
  .trac_mobtrac_menu { text-align:center; display:none; }
  .trac_mobtrac_menu li { padding:10px 0; }
  .trac_mobilelink_button  { display:none; margin-right:10px; cursor:pointer; margin-top:10px; }

  .logo{
    float: left;
  }
  .logo h1{
    margin-bottom: 0;
    margin-top: 10px;
  }
.style-2 .pricing-card,
.style-2 .pricing-footer {
  border: none;
}

.style-2 .pricing-header {
  margin: 0;
  border: none;
  height: 160px;
}

.style-2 .pricing-feature li {
  background: none;
  border-color: #42a5f5;
}

.style-2 .pricing-feature li p {
  color: #e3f2fd;
}

.style-2 .pricing-feature li p span, .style-2 .pricing-feature li p i {
  float: right;
  color: #fff;
}

.style-2 .pricing-feature li p .tooltip-content {
  color: #444;
}

.style-2 .pricing-feature li:last-child {
  border-bottom: 1px solid transparent;
}

.style-2 .price-box {
  margin: 20px auto;
  border-radius: 0;
  width: auto;
  height: auto;
  line-height: normal;
}

.style-2 .price-box:before {
  display: none;
  position: relative;
}

.style-2 .plan {
  bottom: 12px;
  left: auto;
  margin: 0;
  left: calc(100% + 5px);
  font-weight: 400;
  font-size: 12px;
  width: 50px;
  text-align: left;
}

.style-2 .currency {
  top: auto;
  font-size: 30px;
  left: -20px;
  line-height: inherit;
  position: absolute;
  bottom: 10px;
  letter-spacing: 0;
  font-weight: 300;
}

.style-2 .price {
  font-size: 60px;
  font-weight: 400;
}

.style-2 .ribbon {
  top: 35%;
  right: -10px;
  left: auto;
  border-radius: 0;
}

.style-2 .ribbon:after {
  border-right: 10px solid transparent;
  border-top: 7px solid rgba(0, 0, 0, 0.5);
  bottom: -7px;
  content: "";
  position: absolute;
  right: 0;
}

.style-2 .pricing-footer a:before {
  background: inherit;
}

.style-2.comparison-table .pricing-feature li:nth-child(2n+1) {
  background: inherit;
}

.style-2.comparison-table .pricing-feature li p {
  color: #fff;
}

.style-2.comparison-table .pricing-feature li p span, .style-2.comparison-table .pricing-feature li p i {
  float: none;
}

.style-2.comparison-table .list-feature .pricing-header {
  margin: 0;
  margin-bottom: -1px;
}

.style-2.comparison-table .list-feature .pricing-header h5 {
  margin-top: 0;
  font-size: 38px;
}

.style-2 .btn-act.btn-line {
  background: none;
  border-color: #fff;
  color: #fff;
}

.style-2 .btn-act.btn-bg:hover {
  background: #212121;
  border-color: #212121;
}

.style-3 .pricing-card {
  border: 1px solid #ddd;
}

.style-3 .pricing-header {
  border-bottom: none;
  margin: 0;
  height: 160px;
}

.style-3 .pricing-header h5 {
  background: #fff;
  color: #302e4d;
  border-bottom: 1px solid #ddd;
}

.style-3 .price-box {
  border-radius: 0;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
}

.style-3 .price {
  color: #616161;
  font-size: 60px;
  font-weight: 400;
  line-height: normal;
}

.style-3 .currency {
    top: -5px;
    font-size: 15px;
    left: -28px;
  font-weight: 300;
}

.style-3 .plan {
  bottom: 12px;
  left: auto;
  margin: 0;
  left: calc(100% + 5px);
  font-weight: 400;
  font-size: 12px;
  width: 50px;
  text-align: left;
  line-height: normal;
}

.style-3 .pricing-feature li {
  background: #f5f5f5;
}

.style-3 .pricing-feature li:first-child {
  border-top: 1px solid #ddd;
}

.style-3 .pricing-feature li span, .style-3 .pricing-feature li i {
  float: right;
}

.style-3 .pricing-feature li:nth-child(2n+1) {
  background: #eee;
}

.style-3 .ribbon {
  top: 35%;
  right: -10px;
  left: auto;
  border-radius: 0;
}

.style-3 .ribbon:after {
  border-right: 10px solid transparent;
  border-top: 7px solid rgba(0, 0, 0, 0.5);
  bottom: -7px;
  content: "";
  position: absolute;
  right: 0;
}

.style-3 .person .price {
  color: #2196f3;
}

.style-3 .person .plan {
  color: #757575;
}

.style-3 .corp .price {
  color: #4caf50;
}

.style-3 .corp .plan {
  color: #757575;
}

.style-3 .unlim .price {
  color: #f44336;
}

.style-3 .unlim .plan {
  color: #757575;
}

.style-3 .business .price {
  color: #ffc107;
}

.style-3 .business .plan {
  color: #757575;
}

.style-3 .pricing-footer {
  background: #fff;
}

.style-3.comparison-table [class*=col-]:first-child {
  margin: -1px;
}

.style-3.comparison-table .list-feature .pricing-header h5 {
  margin-top: 0;
  border-bottom: none;
}

.style-3.comparison-table .pricing-feature li p, .style-3.comparison-table .pricing-feature li i, .style-3.comparison-table .pricing-feature li span {
  float: none;
}

.style-3 .pricing-footer .btn-act.btn-line {
  background: none;
  border-color: #ec1839;
  color: #ec1839;
}

.style-3 .pricing-footer .btn-act.btn-line:hover {
  background: #ec1839;
  border-color: #ec1839;
  color: #fff;
}

.style-3 .pricing-footer .btn-act.btn-bg {
  background-color: #ec1839;
  border-color: #ec1839;
}

.style-3 .pricing-footer .btn-act.btn-bg:hover {
  background: #212121;
  border-color: #212121;
}
section.footer {
    background: #F5F5F5;
    text-align: center;
    font-size: 20px;
}

/* Start Price-Box */

/* Start Social Page */

/* Start Programing Page */


/* Start Web */
.web
{
  background-color: #fff;
}

.web img
{
  width: 100%;
  height: auto;
}

.web .web-data
{
  padding: 30px;
}

.web .web-data h2
{
  color: #302e4d;
  font-weight: bold;
  margin-bottom: 20px;
}

.web .web-data p
{
  font-weight: 500;
  color: #504e70;
  line-height: 2.5;
}
/* End Web */

/* Start Why Us */

.khdmat{
  background: #f2f2fc;
  text-align: center;
}
.khdmat h1{
  display: inline-block;
  text-transform: uppercase;
  border-bottom: 4px solid #ec1839;
  font-size: 20px;
  padding-bottom: 10px;
  margin-top: 40px;
  color: #302e4d;
}
.cen{
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 20px;
}
.khdma{
  display: inline-block;
  width: calc(100% / 3);
  margin: 0 -2px;
  padding: 20px;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.4s;
}
.khdma:hover{
  background: #d4d4e3;
}
.khdma i{
  color: #ec1839;
  font-size: 34px;
  margin-bottom: 30px;
}
.khdma h2{
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
  color: #302e4d;
}
.khdma p{
  color: #504e70;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .khdma{
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .khdma{
    width: 100%;
  }
}
/* End Why Us */

/* Start Our Work */

.our-work
{
  margin-top: 250px;
}

/* End Our Work */
/* End Programing Page */

/* Start Ads */

.ads
{
  padding: 20px;
  background-color: #fdf9ff;
}

.ads .content
{
  padding-bottom: 0;
}

.ads .content h3
{
  font-weight: bold;
  color: #302e4d;
}

.ads .content hr
{
  margin-bottom: 40px;
  border: 2px solid #ec1839;
  width: 20%;

}

.ads img
{
  width: 500px;
  height: 600px;
  padding: 20px;
  box-shadow: 0 0 15px rgb(207, 207, 207);
  margin: auto;
}

/* End Ads */

/* start el 7mlat page */
/* start info-box */
.info-box
{
  margin-top: 80px;
  margin-bottom: 80px;
}


.info-box .content
{
  padding-bottom: 20px;
}

.info-box .content h1
{
  color: #302e4d;
  background-color: #f2f2fc;
  box-shadow: 0 0 15px rgb(218, 218, 218);
  padding: 10px;
  border-left: 6px solid #ec1839;
  border-right: 6px solid #ec1839;
}

.info-box .bx
{
  padding: 20px;
  border: 1px solid #a7a7a7;
  box-shadow: 0 0 15px rgb(224, 224, 224);
  margin: 10px;
}

.info-box .bx:hover
{
  border-color: #111111;
}


.info-box .bx i
{
  padding: 15px;
  font-size: 28px;
  color: #ec1839;
  background-color: #fff;
  border-radius: 50%;
}

.info-box .bx h2
{
  font-weight: bold;
  color: #302e4d;
}

.info-box .bx hr
{
  border: 2px solid #ec1839;
  width: 25%;
}

.info-box .bx p
{
  color: #504e70;
  margin-top: 10px;
}
/* end info-box */

/* Start Price Table */

.price-table
{
  padding-left: 50px;
  padding-right: 50px;
}

.price-table .price
{
  background: #f2f2fc;
  box-shadow: 0 0 15px #bacedd;
  margin: 10px;
  padding: 15px;
}

.price-table .price h1
{
  color: #ec1839;
}

.price-table .price h2
{
  color: #302e4d;
}

.price-table .price h4
{
  color: #504e70;
}

.price-table .price p
{
  color: #504e70;
  margin: 5px;
}

.price-table .price span
{
  color: #ec1839;
  text-decoration: line-through;
}

.price-table .price hr
{
  border: 2px solid #302e4d;
}

/* End Price Table */
/* End el 7mlat page */

/* Start Whatsapp */

.whatsapp
{
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  transition: 0.3s ease-in-out;
}
/* End Whatsapp */

/* Start Cam1 Page */
/* Start Section 1 */
.section1
{
  margin-top: 100px;
  background: linear-gradient(
    #302e4d,
    #504e70 60%,
    #f2f2fc 50%,
    #f2f2fc 100%
  );
}
.section1 .data
{
  position: relative;
}
.section1 .data h2
{
  position: absolute;
  top: 10px;
  right: 0;
  color: #fff;
  font-size: 140px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.section1 .data p
{
  position: absolute;
  top: 180px;
  right: 0;
  color: #fff;
  font-size: 40px;
}
.section1 .data a
{
  position: absolute;
  top: 240px;
  right: 0;
  color: #fff;
  font-size: 20px;
  text-decoration: underline;
}
.section1 .img img
{
  display: block;
  height: auto;
  width: auto;
  margin: 40px auto auto;
  max-width: 100%;
  text-align: center;
}

@media (max-width: 768px){
  .section1 .data h2
  {
    font-size: 80px;
    top: 50px;
  }
  .section1 .data p
  {
    font-size: 20px;
    top: 120px;
  }
  .section1 .data a
  {
    top: 160px;
  }
}
/* End Section 1 */

/* Start Section 2 */
.section2
{
  margin-top: 50px;
}

.section2 .data h3
{
  font-weight: bold;
  color: #302e4d;
  margin-bottom: 10px;
}
.section2 .data p
{
  color: #504e70;
  font-size: 18px;
}
.section2 .specs
{
  margin-top: 30px;
  padding: 20px;
}

.section2 .specs .col
{
  margin: 0 10px;
  padding: 10px;
}
.section2 .specs .col:hover
{
  border: 1px solid #272727;
}
.section2 .specs i
{
  font-size: 56px;
  margin-bottom: 15px;
  color: #302e4d;
}
.section2 .specs p
{
  color: #504e70;
  font-weight: bold;
}
/* End Section 2 */
/* Start Section 3 */
.vision
{
  background: url(../image/home.jpg)center fixed;
  z-index: 2;
  position: relative;
}
.vision .overlay
{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 64, 148, 0.7);
  z-index: 3;
}
.vision .data,.vision .img
{
  z-index: 4;
}
.vision .data h3
{
  color: #fff;
  font-weight: bold;
  padding-top: 25px;
  font-size: 32px;
}
.vision .data p
{
  color: rgb(207, 207, 207);
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: normal;
}
.vision .img img
{
  display: block;
  height: auto;
  width: auto;
  margin: 40px auto auto;
  max-width: 40%;
  text-align: center;
  padding-bottom: 25px;
}
/* End Section 3 */
/* Start Section 4 */
.move
{
  padding: 20px;
  background: #fff;
}
.move .data h3
{
  font-weight: bold;
  color: #302e4d;
  font-size: 32px;
}
.move .data p
{
  color: #504e70;
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: normal;
}
.move .img img
{
  margin-bottom: 50px;
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
}
/* End Section 4 */
/* Start Section 5 */
.priv
{
  padding: 20px;
  background: #067BCB;
}
.priv .data h3
{
  font-weight: bold;
  color: #fff;
  font-size: 32px;
}
.priv .data p
{
  color: rgb(206, 206, 206);
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: normal;
}
.priv .img img
{
  display: block;
  height: auto;
  width: auto;
  margin: 40px auto auto;
  max-width: 100%;
  text-align: center;
  padding-bottom: 25px;
}
/* End Section 5 */
/* Start Section 6 */
.night
{
  padding: 20px;
  background: url(../image/home1.jpg);
  height: 700px;
  width: 100%;
  object-fit: cover;
}
.night .data h3
{
  font-weight: bold;
  color: #fff;
  font-size: 32px;
  margin-top: 15%;
}
.night .data p
{
  color: rgb(206, 206, 206);
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: normal;
}
/* End Section 6 */
/* Start Section 7 */
.sensor
{
  padding: 20px;
  background: #fff;
}
.sensor .data h3
{
  font-weight: bold;
  color: #302e4d;
  font-size: 32px;
}
.sensor .data p
{
  color: #504e70;
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: normal;
}
.sensor .img img
{
  display: block;
  height: auto;
  width: auto;
  margin: 40px auto auto;
  max-width: 80%;
  text-align: center;
  padding-bottom: 25px;
}
/* End Section 7 */
/* Start Section 8 */
.mobile 
{
  padding: 20px;
  background: #fff;
  position: relative;
}
.mobile .data
{
  padding-top: 50px;
}
.mobile .img img
{
  display: block;
  height: auto;
  width: auto;
  margin: 40px auto auto;
  max-width: 80%;
  text-align: center;
  padding-bottom: 25px;
}
.mobile .itm
{
  margin-bottom: 25px;
}
.mobile .itm .p
{
  display: inline-block;
}
.mobile .itm .p p
{
  font-size: 18px;
}
.mobile .itm .i
{
  display: inline-block;
  margin-right: 100px;
}
.mobile .itm .i i
{
  font-size: 24px;
}
.mobile .imgg img
{
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
  text-align: center;
  padding-bottom: 25px;
}
.mobile .datam h3
{
  margin-top: 20%;
  color: #302e4d;
}
.mobile .datam p
{
  color: #504e70;
}
/* End Section 8 */
/* Start Section 9 */
.sotrage
{
  padding: 20px;
  background: #fff;
}
.sotrage .data h3
{
  font-weight: bold;
  color: #302e4d;
  font-size: 32px;
}
.sotrage .data p
{
  color: #504e70;
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: normal;
}
.sotrage .img img
{
  margin-bottom: 50px;
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
}
/* End Section 9 */
/* End Cam1 Page */

/* Start Cam Table 1 Page */

/* Start Table */

.table
{
  padding: 10px;
  margin-top: 40px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* End Table */

/* End Cam Table 1 Page */

/* Start Cam2 Page */
/* Start Section 3 */
.visioon
{
  padding: 20px;
  background: url(../image/ca13.jpg) center;
  height: 700px;
  width: 100%;
  object-fit: cover;
}
.visioon .data h3
{
  font-weight: bold;
  color: #fff;
  font-size: 32px;
  margin-top: 5%;
}
.visioon .data p
{
  color: #fff;
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: normal;
}
/* End Section 3 */
/* Start Section 4 */
.smart
{
  padding: 20px;
  background: url(../image/ca9.jpg) center;
  height: 700px;
  width: 100%;
  object-fit: cover;
}
.smart .data h3
{
  font-weight: bold;
  color: #111;
  font-size: 32px;
  margin-top: 5%;
}
.smart .data p
{
  color: #111;
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: normal;
}
/* End Section 4 */
/* Start Section 5 */
.privacy
{
  padding: 20px;
  background: url(../image/ca10.jpg) center;
  height: 700px;
  width: 100%;
  object-fit: cover;
}
.privacy .data h3
{
  font-weight: bold;
  color: #111;
  font-size: 32px;
  margin-top: 5%;
}
.privacy .data p
{
  color: #111;
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: normal;
}
/* End Section 5 */
/* Start Section 6 */
.set
{
  padding: 20px;
  background: url(../image/ca11.jpg) center;
  height: 700px;
  width: 100%;
  object-fit: cover;
}
.set .data h3
{
  font-weight: bold;
  color: #111;
  font-size: 32px;
  margin-top: 5%;
}
.set .data p
{
  color: #111;
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: normal;
}
/* End Section 6 */
/* Start Section 7 */
.conect
{
  padding: 20px;
  background: url(../image/ca12.jpg) center;
  height: 700px;
  width: 100%;
  object-fit: cover;
}
.conect .data h3
{
  font-weight: bold;
  color: #fff;
  font-size: 32px;
  margin-top: 5%;
}
.conect .data p
{
  color: #fff;
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: normal;
}
/* End Section 7 */
/* End Cam2 Page */
/* Start Services Page */

.logo-header
{
  background-color: #fff;
  padding: 20px;
  margin-top: 150px;
  width: auto;
  height: 400px;
  border-radius: 10px;
}

.logo-header img
{
  display: block;
  height: 350px;
  width: auto;
  margin: auto auto;
  max-width: 100%;
  text-align: center;
}


.item
{
  background-color: #fff;
  padding: 20px;
  margin-top: 20px;
  width: auto;
  height: 600px;
  border-radius: 10px;
}

.item img
{
  display: block;
  height: auto;
  width: auto;
  margin: auto auto;
  max-width: 100%;
  text-align: center;
}

.item .order 
{
  background: #fff;
  border-left: 4px solid #ec1839;
  border-right: 4px solid #ec1839;
}
.item .order a
{
  font-size: 20px;
  color: #302e4d;
}

.item .order a i
{
  color: #4CAF50;
  padding-left: 10px;
  font-size: 24px;
}

/* End Services Page */