.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}


/* -------------------------------- 

Adding fonts

-------------------------------- */

@font-face {
    font-family: "yekan";
    src: url(fonts/yekan.eot);
    src: url(fonts/yekan.eot?#iefix) format("embedded-opentype"), url(fonts/yekan.woff) format("woff"), url(fonts/Yekan.ttf) format("truetype"), url(fonts/yekan.svg#BYekan) format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "iransans";
    src: url(fonts/irSans.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "aref";
    src: url(fonts/aref.ttf);
    font-weight: normal;
    font-style: normal;
}

h1,
h2,
h3,
h4 {
    font-family: yekan !important;
}


/* -------------------------------- 

Primary style

-------------------------------- */

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: rtl;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 100%;
    /*font-family: "PT Sans", sans-serif;*/
    font-family: iransans !important;
    color: #31353d;
    background-color: #11999e !important;
    overflow-x: hidden;
}

body.overflow-hidden {
    /* prevent 2 vertical scrollbars on ie and firefox when the cart is visible */
    overflow: hidden;
}

a {
    color: #435779;
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */

.cd-container {
    /* this class is used to horizontally align the gallery of items */
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.cd-container::after {
    /* clearfix */
    content: '';
    display: table;
    clear: both;
}

.cd-img-replace {
    /* replace text with a background-image */
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}


/* -------------------------------- 

xheader 

-------------------------------- */

header {
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    background: #31353d;
    text-align: center;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
    z-index: 4;
}

@media only screen and (min-width: 1200px) {
    header {
        height: 80px;
    }
}

#logo {
    padding-top: 5px;
    /* delete this property if you don't want your logo to scale down on mobile devices */
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

@media only screen and (min-width: 1200px) {
    #logo {
        padding-top: 20px;
        position: absolute;
        /* logo left margin on Dekstop */
        right: 2.4em;
        top: 0;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

#cd-hamburger-menu,
#cd-cart-trigger {
    position: absolute;
    top: 0;
    height: 100%;
}

#cd-hamburger-menu a,
#cd-cart-trigger a {
    width: 60px;
    height: 100%;
}

#cd-hamburger-menu {
    right: 0;
}

#cd-hamburger-menu a {
    background: #26292f url("../img/cd-hamburger-menu.svg") no-repeat center center;
}

@media only screen and (min-width: 1200px) {
    #cd-hamburger-menu {
        display: none;
    }
}

#cd-cart-trigger {
    left: 0;
}

#cd-cart-trigger a {
    background: #26292f url("../img/cd-cart.svg") no-repeat center center;
}

@media only screen and (min-width: 1200px) {
    #cd-cart-trigger {
        /* cart right margin on desktop */
        left: 0;
    }
    #cd-cart-trigger a {
        position: relative;
        width: 100px;
        border-left: none;
        background-color: #26292f;
    }
}

#main-nav,
#cd-cart {
    position: fixed;
    top: 0;
    height: 100%;
    width: 260px;
    /* header height */
    padding-top: 50px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

@media only screen and (min-width: 768px) {
    #main-nav,
    #cd-cart {
        width: 350px;
    }
}

@media only screen and (min-width: 1200px) {
    #main-nav,
    #cd-cart {
        width: 30%;
        /* header height has changed */
        padding-top: 80px;
    }
}

#main-nav {
    left: -100%;
    background: #FFF;
    -webkit-transition: left 0.3s;
    -moz-transition: left 0.3s;
    transition: left 0.3s;
}

#main-nav.speed-in {
    right: 0;
}

#main-nav ul a {
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0 1em;
    border-bottom: 1px solid #e0e6ef;
}

#main-nav ul .current {
    box-shadow: inset -3px 0 #435779;
}

@media only screen and (min-width: 1200px) {
    #main-nav {
        /* reset main nav style */
        position: absolute;
        height: auto;
        width: auto;
        left: auto;
        right: 8em;
        padding-top: 0;
        top: 0;
        background: transparent;
        box-shadow: none;
        /* header height */
        line-height: 80px;
        z-index: 4;
    }
    #main-nav li {
        display: inline-block;
        margin-left: 1em;
    }
    #main-nav ul a {
        display: inline-block;
        height: auto;
        line-height: 1;
        padding: 1em 1.4em;
        border-bottom: none;
        color: rgba(255, 255, 255, 0.8);
        border-radius: 0.25em;
    }
    #main-nav ul a.current {
        box-shadow: none;
        background: #435779;
        color: #FFF;
    }
    .no-touch #main-nav ul a:hover {
        background: #435779;
        color: #FFF;
    }
}

.no-js #main-nav {
    position: fixed;
}

#cd-cart {
    right: -100%;
    background: #FFF;
    -webkit-transition: right 0.3s;
    -moz-transition: right 0.3s;
    transition: right 0.3s;
}

#cd-cart.speed-in {
    right: 0;
}

#cd-cart>* {
    padding: 0 1em;
}

#cd-cart h2 {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 1em 0;
}

#cd-cart .cd-cart-items {
    padding: 0;
}

#cd-cart .cd-cart-items li {
    position: relative;
    padding: 1em;
    border-top: 1px solid #e0e6ef;
}

#cd-cart .cd-cart-items li:last-child {
    border-bottom: 1px solid #e0e6ef;
}

#cd-cart .cd-qty,
#cd-cart .cd-price {
    color: #a5aebc;
}

#cd-cart .cd-price {
    margin-top: .4em;
}

#cd-cart .cd-item-remove {
    position: absolute;
    right: 1em;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: url("../img/cd-remove-item.svg") no-repeat center center;
}

.no-touch #cd-cart .cd-item-remove:hover {
    background-color: #e0e6ef;
}

#cd-cart .cd-cart-total {
    padding-top: 1em;
    padding-bottom: 1em;
}

#cd-cart .cd-cart-total span {
    float: right;
}

#cd-cart .cd-cart-total::after {
    /* clearfix */
    content: '';
    display: table;
    clear: both;
}

#cd-cart .checkout-btn {
    display: block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: #7dcf85;
    color: #FFF;
    text-align: center;
}

.no-touch #cd-cart .checkout-btn:hover {
    background: #a2dda8;
}

#cd-cart .cd-go-to-cart {
    text-align: center;
    margin: 1em 0;
}

#cd-cart .cd-go-to-cart a {
    text-decoration: underline;
}

@media only screen and (min-width: 1200px) {
    #cd-cart>* {
        padding: 0 2em;
    }
    #cd-cart .cd-cart-items li {
        padding: 1em 2em;
    }
    #cd-cart .cd-item-remove {
        right: 2em;
    }
}


/* -------------------------------- 

xgallery 

-------------------------------- */

main {
    position: relative;
    min-height: 100%;
    background: #eeeff7;
    padding-top: 70px;
    z-index: 1;
}

@media only screen and (min-width: 768px) {
    main {
        padding-top: 90px;
    }
}

@media only screen and (min-width: 1200px) {
    main {
        padding-top: 120px;
    }
}

#cd-gallery-items li {
    margin-bottom: 1.5em;
}

#cd-gallery-items li img {
    width: 100%;
    display: block;
    border-radius: 0.25em;
}

@media only screen and (min-width: 768px) {
    #cd-gallery-items li {
        width: 48%;
        float: left;
        margin-bottom: 2em;
        margin-right: 4%;
    }
    #cd-gallery-items li:nth-child(2n) {
        margin-right: 0;
    }
}

@media only screen and (min-width: 1200px) {
    #cd-gallery-items li {
        width: 31%;
        float: left;
        margin-bottom: 2.5em;
        margin-right: 3.5%;
    }
    #cd-gallery-items li:nth-child(2n) {
        margin-right: 3.5%;
    }
    #cd-gallery-items li:nth-child(3n) {
        margin-right: 0;
    }
}

#cd-shadow-layer {
    position: fixed;
    min-height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(67, 87, 121, 0.6);
    cursor: pointer;
    z-index: 2;
    display: none;
}

#cd-shadow-layer.is-visible {
    display: block;
    -webkit-animation: cd-fade-in 0.3s;
    -moz-animation: cd-fade-in 0.3s;
    animation: cd-fade-in 0.3s;
}


/* -------------------------------- 

xkeyframes 

-------------------------------- */

@-webkit-keyframes cd-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes cd-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes cd-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* Carousel 100% Fullscreen */

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.carousel,
.item,
.active {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-caption {
    z-index: 10;
}

.carousel .item {
    background-color: #777;
}

.carousel .carousel-inner .bg {
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel .carousel-inner .bg1 {
    background-image: url('../img/slide1.jpg');
    background-position: center top;
}

.carousel .carousel-inner .bg2 {
    background-image: url('../img/slide2.jpg');
    background-position: center center;
}

.carousel .carousel-inner .bg3 {
    background-image: url('../img/slide3.jpg');
    background-position: center bottom;
}
.carousel .carousel-inner .bg4 {
    background-image: url('../img/slide4.jpg');
    background-position: center bottom;
}
.carousel .carousel-inner .bg5 {
    background-image: url('../img/slide5.jpg');
    background-position: center bottom;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.3);
}


/*********************/


/*****Customize*******/


/*********************/

.containerfull {
    width: 100%;
}

.container {
    direction: rtl;
}

.center {
    text-align: center;
}

.pjustify {
    text-align: justify;
    font-size: 1.25em;
    line-height: 2em;
}

@media (min-width: 992px) {
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9 {
        float: right !important;
    }
}

.nopadding {
    padding: 0 !important;
}

.about {
    padding: 25px 0px;
    color: #e4f9f5;
}

.ourservices {
    background: #fff;
    color: #40514e;
}

.headabout {
    margin-bottom: 20px;
}

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

.counting {
    color: #e4f9f5;
}

.video-details {
    color: #e4f9f5;
}

.video-details .longdetail {
    line-height: 4rem;
}

.video-details p {
    line-height: 5rem;
}

.divider {
    border-top: 10px solid #eee;
    border-style: dashed;
}

.introlink {
    text-decoration: none;
    color: #26292f;
}

.introlink:hover {
    text-decoration: none;
    color: #26292f;
}
/* -------------------------------- 

timeline 

-------------------------------- */
* {
    box-sizing: border-box;
  }
  
  body {
    background-color: #474e5d;
    font-family: Helvetica, sans-serif;
  }
  
  /* The actual timeline (the vertical ruler) */
  .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    direction: initial;
  }
  
  /* The actual timeline (the vertical ruler) */
  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }
  
  /* Container around content */
  .timecontainer {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
  }
  
  /* The circles on the timeline */
  .timecontainer::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid #FF9F55;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }
  
  /* Place the container to the left */
  .left {
    left: 0;
    direction: initial;
  }
  
  /* Place the container to the right */
  .right {
    left: 50%;
    direction: initial;
  }
  
  /* Add arrows to the left container (pointing right) */
  .left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
  }
  
  /* Add arrows to the right container (pointing left) */
  .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }
  
  /* Fix the circle for containers on the right side */
  .right::after {
    left: -16px;
  }
  
  /* The actual content */
  .content {
    padding: 20px 30px;
    background-color: white;
    color: #11999e;
    position: relative;
    border-radius: 6px;
  }
  
  /* Media queries - Responsive timeline on screens less than 600px wide */
  @media screen and (max-width: 600px) {
    /* Place the timelime to the left */
    .timeline::after {
    left: 31px;
    }
    
    /* Full-width containers */
    .timecontainer {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    }
    
    /* Make sure that all arrows are pointing leftwards */
    .timecontainer::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
    }
  
    /* Make sure all circles are at the same spot */
    .left::after, .right::after {
    left: 15px;
    }
    
    /* Make all right containers behave like the left ones */
    .right {
    left: 0%;
    }
  }