@font-face {
    font-family: 'JF-Flat-regular';
    src: url('../fonts/JF-Flat-regular.eot'), url('../fonts/JF-Flat-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/JF-Flat-regular.woff') format('woff'), url('../fonts/JF-Flat-regular.ttf') format('truetype'), url('../fonts/JF-Flat-regular.svg#JF-Flat-regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AMassirBallpoint';
    src: url('../fonts/AMassirBallpoint.eot'), url('../fonts/AMassirBallpoint.eot?#iefix') format('embedded-opentype'), url('../fonts/AMassirBallpoint.woff') format('woff'), url('../fonts/AMassirBallpoint.ttf') format('truetype'), url('../fonts/AMassirBallpoint.svg#AMassirBallpoint') format('svg');
    font-weight: normal;
    font-style: normal;
}
/*************************************************************************************/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    font-family: 'JF-Flat-regular';
    direction: rtl;
    position: relative;
}

.clear {
    clear: both;
}

a,
a:hover,
a:focus {
    color: #458fcd;
    text-decoration: none;
    outline: 0;
}

ul {
    padding: 0;
    list-style: none;
}

.no-padding {
    padding: 0;
}

/* Start Animation */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* End Animation */

/* Start Loading */

.loading {
    height: 100%;
    left: 0;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 9999;
    overflow: hidden;
}

.right {
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    -moz-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0) !important;
    -ms-transform: scaleX(0) !important;
    -moz-transform: scaleX(0) !important;
    transform: scaleX(0) !important;
}

.left {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    -moz-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0) !important;
    -ms-transform: scaleX(0) !important;
    -moz-transform: scaleX(0) !important;
    transform: scaleX(0) !important;
}


.loader {
    width: 100%;
    height: 100%;
/*    animation: spin 10s linear infinite;*/
    position: fixed;
    left: 0px;
    right: 0px;
    margin: auto;
    top: 50%;
    
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    
    -webkit-transition: 2s;
    -ms-transition: 2s;
    -moz-transition: 2s;
    transition: 2s;
    
    -webkit-transition-duration: 0.5s;
    -ms-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
    
    -webkit-transition-delay: 0.5s;
    -ms-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    transition-delay: 0.5s;
    z-index: 99;
}

.wave-1 {
    position: fixed;
    z-index: 99;
    height: 100%;
    width: 63%;
    top: 0;
    right: 0;
    
    -webkit-transition: 9s;
    -ms-transition: 9s;
    -moz-transition: 9s;
    transition: 9s;
    
    -webkit-transition-duration: 0.9s;
    -ms-transition-duration: 0.9s;
    -moz-transition-duration: 0.9s;
    transition-duration: 0.9s;
    
    -webkit-transition-delay: 0.9s;
    -ms-transition-delay: 0.9s;
    -moz-transition-delay: 0.9s;
    transition-delay: 0.9s;
    
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1);
    
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    -moz-transform-origin: right;
    transform-origin: right;
}

.wave-2 {
    position: fixed;
    z-index: 99;
    height: 100%;
    width: 60%;
    top: 0;
    left: 0;
    
    -webkit-transition: 9s;
    -ms-transition: 9s;
    -moz-transition: 9s;
    transition: 9s;
    
    -webkit-transition-duration: 0.9s;
    -ms-transition-duration: 0.9s;
    -moz-transition-duration: 0.9s;
    transition-duration: 0.9s;
    
    -webkit-transition-delay: 0.9s;
    -ms-transition-delay: 0.9s;
    -moz-transition-delay: 0.9s;
    transition-delay: 0.9s;
    
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1);
    
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    -moz-transform-origin: left;
    transform-origin: left;
}

.ml5 {
    position: absolute;
    font-weight: 300;
    font-size: 3.5em;
    color: #fff;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
}

.ml5 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.1em;
  padding-right: 0.05em;
  padding-bottom: 0.15em;
  line-height: 3em;
}

.ml5 .line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 3px;
  width: 100%;
  background-color: #fff;
  transform-origin: 0.5 0;
}

.ml5 .ampersand {
  font-family: Baskerville, "EB Garamond", serif;
  font-style: italic;
  font-weight: 400;
  width: 1em;
  margin-right: -0.1em;
  margin-left: -0.1em;
}

.ml5 .letters {
    display: inline-block;
    opacity: 0;
}

.ml5 .letters img {
    width: 50px;
    height: 30px;
    top: -5px;
    position: relative;
}

/* End Loading */

/* Start Header */

.navbar-inverse .navbar-toggle .icon-bar:nth-child(2) {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

    .navbar-inverse .navbar-toggle .icon-bar:nth-child(2).rotate {
        -webkit-transform: rotate(-45deg) rotateY(360deg);
        -ms-transform: rotate(-45deg) rotateY(360deg);
        -moz-transform: rotate(-45deg) rotateY(360deg);
        transform: rotate(-45deg) rotateY(360deg);
        
        background-color: #fff;
        -webkit-transition: all .25s ease-in-out;
        -ms-transition: all .25s ease-in-out;
        -moz-transition: all .25s ease-in-out;
        transition: all .25s ease-in-out;
    }

.navbar-inverse .navbar-toggle .icon-bar:nth-child(3) {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 27px;
    opacity: 1;
    -webkit-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

    .navbar-inverse .navbar-toggle .icon-bar:nth-child(3).none {
        left: -100px;
        opacity: 0;
        -webkit-transition: all .25s ease-in-out;
        -ms-transition: all .25s ease-in-out;
        -moz-transition: all .25s ease-in-out;
        transition: all .25s ease-in-out;
    }

.navbar-inverse .navbar-toggle .icon-bar:nth-child(4) {
    position: absolute;
    top: 34px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

    .navbar-inverse .navbar-toggle .icon-bar:nth-child(4).rotate2 {
        -webkit-transform: rotate(45deg) rotateY(360deg);
        -ms-transform: rotate(45deg) rotateY(360deg);
        -moz-transform: rotate(45deg) rotateY(360deg);
        transform: rotate(45deg) rotateY(360deg);
        top: 20px;
        background-color: #fff;
        -webkit-transition: all .25s ease-in-out;
        -ms-transition: all .25s ease-in-out;
        -moz-transition: all .25s ease-in-out;
        transition: all .25s ease-in-out;
    }

.navbar {
    position: fixed;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    width: 100%;
    z-index: 10;
}

.navbar-nav {
    float: none;
    position: relative;
    padding: 90px 0;
    margin: 0;
    text-align: center;
}

.navbar-nav li:nth-child(3) {
    margin-left: 200px;
    
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.nav>li {
    position: relative;
    display: inline-block;
    float: none;
}

.navbar-inverse .navbar-nav>li>a {
    color: #fff;
    
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.navbar-inverse .navbar-nav>.active>a, 
.navbar-inverse .navbar-nav>.active>a:hover, 
.navbar-inverse .navbar-nav>.active>a:focus {
    background-color: transparent;
}

.navbar-inverse .navbar-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    right: 0;
    bottom: 0;
    background-color: #cc9f83;
    
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.navbar-inverse .navbar-nav a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    left: 0;
    bottom: 0;
    background-color: #cc9f83;
    
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.navbar-inverse .navbar-nav>.active>a:after,
.navbar-inverse .navbar-nav a:hover:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    right: 0;
    bottom: 0;
    background-color: #cc9f83;
}

.navbar-inverse .navbar-nav>.active>a:before,
.navbar-inverse .navbar-nav a:hover:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    left: 0;
    bottom: 0;
    background-color: #ffffff;
}

.logo {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.logo .logo-img {
    width: 140px;
    height: 120px;
    display: block;
    margin: auto;
    z-index: 2;
    
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.navbar.affix {
    background-color: #52382a;
    z-index: 10;
}

.navbar.affix .navbar-nav {
    padding: 25px 0;
}

.navbar.affix .navbar-nav li:nth-child(3) {
    margin-left: 80px;
}

.navbar.affix .logo {
    top: 15px;
}

.navbar.affix .logo .logo-img {
    width: 100px;
    height: 80px;
}

.navbar.affix .logo .logo-text {
    display: none;
}

.bg {
    position: relative;
    overflow: hidden;
}

.bg .bg-img:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 0;
    background-color: rgba(00,00,00,0.6);
}

.bg p {
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    color: #fff;
    font-size: 18px;
    
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.bg:after {
    content: '';
    position: absolute;
    width: 80%;
    height: 120px;
    bottom: 0;
    right: -20px;
    background-color: #fff;
    transform-origin: bottom right;
    transform: rotate(-7deg);
}

.bg:before {
    content: '';
    position: absolute;
    width: 30%;
    height: 120px;
    bottom: 0;
    left: -40px;
    background-color: #fff;
    transform-origin: bottom left;
    transform: rotate(17deg);
    z-index: 2;
}

/* End Header */

/* Start Who */

.who {
    position: relative;
    padding: 40px 0;
    z-index: 2;
    top: -5px;
    overflow: hidden;
}

.who:after {
    content: '';
    background-image: url(../img/wire.png);
    background-repeat: no-repeat;
    position: absolute;
    top: -150px;
    left: 345px;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.who h2 {
    position: relative;
    color: #dec291;
    display: inline-block;
    padding-right: 15px;
    margin-bottom: 40px;
}

.who h2:after {
    content: url(../img/head-after.png);
    position: absolute;
    top: 35px;
    right: 0;
}

.who h2:before {
    content: url(../img/head-before.png);
    position: absolute;
    top: -30px;
    right: -15px;
}

.who h4 {
    position: relative;
    color: #dec291;
    display: inline-block;
    padding: 10px 0;
    font-size: 20px;
}

.who h4:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    right: 0;
    bottom: 0;
    background-color: #cc9f83;
}

.who h4:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    left: 0;
    bottom: 0;
    background-color: #52382a;
}

.who p {
    color: #545353;
    line-height: 2;
    font-size: 16px;
}

.slider-bg {
    width: 350px;
    margin: auto;
    display: block;
    background-color: #52382a;
    padding: 15px;
    position: relative;
}

.slider-bg:after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: #d4b19e;
    right: -5px;
    top: -5px;
    z-index: 1;
}

.slider-bg:before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: #dec291;
    left: -5px;
    bottom: -5px;
    z-index: 1;
}

.slider-bg .slider {
    z-index: 5;
}

.slider-bg .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slider-bg .slick-dots {
    display: block;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    left: -210px;
}

.slider-bg .slick-dots li {
    width: 30px;
    height: 3px;
    margin: 0;
}

.slider-bg .slick-dots li.slick-active button:before {
    opacity: .50;
    color: #dec291;
}

.slider-bg .slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    content: '';
    text-align: center;
    opacity: 1;
    background-color: #52382a;
}

/* End Who */

/* Start Services */

.services {
    background-image: url(../img/services-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    color: #fff;
    margin: 40px 0 0;
}

.services:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    margin: 0;
    background-color: rgba(00,00,00,0.6);
}

.services-container {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.services-container:after {
    content: '';
    position: absolute;
    width: 70%;
    height: 120px;
    background-color: #fff;
    bottom: 0;
    right: -25px;
    transform-origin: bottom right;
    z-index: 2;
    transform: rotate(-10deg);
}

.services-container:before {
    content: '';
    position: absolute;
    width: 70%;
    height: 120px;
    background-color: #fff;
    bottom: 0;
    left: -25px;
    transform-origin: bottom left;
    z-index: 2;
    transform: rotate(10deg);
}

.services-content {
    overflow: hidden;
    position: relative;
    z-index: 9;
    padding: 20px 0;
}

.services h2 {
    position: relative;
    display: inline-block;
    padding: 15px 0;
}

.services h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #dec291;
    right: 0;
    bottom: 0;
}

.services h2:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #fff;
    left: 0;
    bottom: 0;
}

.services .info p {
    line-height: 3;
    margin: 20px 0;
}

.services .info .more {
    color: #dec291;
    border: 2px solid #dec291;
    border-radius: 3px;
    display: inline-block;
    padding: 8px 25px;
    
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.services .info .more:hover {
    color: #fff;
    border: 2px solid #fff;
    background-color: #dec291;
}

.services ul.service {
    text-align: center;
}

.services .service .serv {
    display: inline-block;
    margin: 0 10px 20px;
}

.services .service .serv a {
    position: relative;
    border: 2px solid #52382a;
    border-radius: 3px;
    width: 220px;
    height: 220px;
    text-align: center;
    display: block;
    color: #fff;
    
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.services .service .serv a .serv-content {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    top: 50%;
    
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.services .service a .serv p {
    margin-top: 20px;
    line-height: 2;
}

.services .service .serv a:hover {
    border: 2px solid #fff;
    background-color: #52382a;
}



/* End Services */

/* Start Statistics */

.statistics {
    padding: 80px 0 0;
    position: relative;
}

.statistics:after {
    content: url(../img/wire.png);
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: -3px;
    z-index: 2;
}

.statistics .statis {
    position: relative;
    z-index: 3;
}

.statistics .statis p {
    color: #545353;
    line-height: 2;
    font-size: 16px;
    margin-bottom: 30px;
}

.statistics .statis ul {
    margin: 0;
    padding: 0;
    text-align: center;
}

.statistics .statis ul li {
    display: inline-block;
    margin: 0 10px;
}

.statistics .statis ul li .fa {
    color: #dec291;
    font-size: 35px;
    border: 2px solid #dec291;
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin-bottom: 10px;
    
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.statistics .statis ul li:hover .fa {
    color: #fff;
    background-color: #52382a;
}

.statistics .statis ul li p,
.statistics .statis ul li h4 {
    color: #52382a;
    font-size: 14px;
    margin: 0;
}

.statistics img {
    position: relative;
    z-index: 3;
}

/* End Statistics */

/* Start Team Members */

.team {
    background-image: url(../img/team-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.team:after {
    content: '';
    position: absolute;
    background-color: #fff;
    left: -20px;
    transform-origin: top left;
    width: 73%;
    height: 170px;
    top: 0;
    z-index: 1;
    transform: rotate(-6deg);
}

.team:before {
    content: '';
    position: absolute;
    background-color: #fff;
    right: -25px;
    transform-origin: top right;
    width: 33%;
    height: 146px;
    top: 0;
    z-index: 3;
    transform: rotate(9deg);
}

.team-content:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    margin: 0;
    z-index: 0;
    background-color: rgba(00,00,00,0.6);
}

.team h2 {
    position: relative;
    display: inline-block;
    padding: 15px 0;
    color: #fff;
    right: 400px;
    top: 100px;
    z-index: 1;
}

.team h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background-color: #dec291;
    right: 0;
    bottom: 0;
}

.team h2:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background-color: #fff;
    left: 0;
    bottom: 0;
}

.team .members {
    direction: ltr;
    z-index: 1;
}

.team .members:after {
    content: url(../img/wire2.png);
    position: absolute;
    top: -135px;
    right: 327px;
    z-index: 0;
}

.team .members .item {
    padding: 40px 0;
    position: relative;
    top: -55px;
    left: 55px;
    margin: 10px 0 80px;
    -webkit-transform: rotate(45deg);
    outline: none !important;
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.team .members .item .member {
    width: 200px;
    height: 200px;
    border: 4px solid #dec291;
    border-radius: 3px;
    margin: 0;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.team .members .item .member img {
    width: 200px;
    height: 200px;
    transform: scale(1.4) rotate(-40deg);
}

.team .members .item .member h4 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    color: #fff;
    font-size: 22px;
    z-index: 2;
    -webkit-transform: scale(0) translateY(-50%) rotate(-45deg);
    -ms-transform: scale(0) translateY(-50%) rotate(-45deg);
    -moz-transform: scale(0) translateY(-50%) rotate(-45deg);
    transform: scale(0) translateY(-50%) rotate(-45deg);
    
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.team .members .item .member:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(82, 56, 42, 0.8);
    z-index: 0;
    
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.team .members .item .member:hover:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}

.team .members .item .member:hover h4 {
    -webkit-transform: scale(1) translateY(-50%) rotate(-45deg);
    -ms-transform: scale(1) translateY(-50%) rotate(-45deg);
    -moz-transform: scale(1) translateY(-50%) rotate(-45deg);
    transform: scale(1) translateY(-50%) rotate(-45deg);
}

.slick-slider .slick-track, .slick-slider .slick-list {
    min-width: 100%;
}

.team .members .item.slick-slide {
    opacity: 0;
}

.team .members .item.slick-active {
    top: -90px;
    right: 0;
    opacity: 1;
    text-align: right;
}

.team .members .item.slick-current.slick-active.slick-center + .item.slick-active ,
.team .members .item.slick-slide.slick-center {
    top: 155px;
    left: -90px;
    z-index: 9;
    opacity: 1;
    text-align: left;
}

.team .members .item.slick-slide.slick-current.slick-center {
    top: -90px;
    right: -55px;
    left: auto;
    opacity: 1;
    text-align: right;
}

.team .members .item.slick-current.slick-center.slick-active,
.team .members .item.slick-current.slick-center + .slick-slide {
    top: 105px;
    left: -90px;
    right: auto;
    opacity: 1;
    text-align: center;
}

.team .slick-dots li {
    width: 30px;
    height: 4px;
    margin: 0;
    background-color: #fff;
}

.team .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #f6c46c;
}

.team .slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    content: '';
    text-align: center;
    opacity: 0;
    background-color: #f6c46c;
}

/* End Team Members */

/* Start Our Works */

.our-works {
    position: relative;
    padding: 80px 0;
}

.our-works h2,
.our-clients h2 {
    text-align: center;
    color: #dec291;
    position: relative;
    display: block;
    width: 300px;
    margin: auto;
}

.our-works h2:after,
.our-clients h2:after {
    content: url(../img/head-after.png);
    position: absolute;
    top: 35px;
    right: 80px;
}

.our-works h2:before,
.our-clients h2:before {
    content: url(../img/head-before.png);
    position: absolute;
    top: -30px;
    right: 60px;
}

.works {
    padding: 80px 0 0;
    position: relative;
    direction: ltr;
}

.works .item {
    background-color: #fff;
    opacity: 0;
    padding: 10px;
    outline: none;
    transform: rotate(-90deg);
    transition: all .3s ease-in-out;
}

.works .item:after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #dec291;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.works .item:before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #52382a;
    left: 0;
    top: 0;
    z-index: -1;
}

.works .slick-list {
    max-height: 700px;
}

.works .slick-slide img {
    z-index: 2;
}

/*-------------------*/

/*
.team .members .item.slick-active {
    top: -90px;
    right: 0;
    opacity: 1;
    text-align: right;
}

.team .members .item.slick-current.slick-active.slick-center + .item.slick-active ,
.team .members .item.slick-slide.slick-center {
    top: 155px;
    left: -90px;
    z-index: 9;
    opacity: 1;
    text-align: left;
}

.team .members .item.slick-slide.slick-current.slick-center {
    top: -90px;
    right: -55px;
    left: auto;
    opacity: 1;
    text-align: right;
}

.team .members .item.slick-current.slick-center.slick-active,
.team .members .item.slick-current.slick-center + .slick-slide {
    top: 105px;
    left: -90px;
    right: auto;
    opacity: 1;
    text-align: center;
}
*/

/*--------------------*/

.works .item.slick-active {
    opacity: 1;
    width: 650px !important;
    height: 400px;
    z-index: 1;
    position: relative;
    top: 125px;
    left: -100px;
}

.works .item.slick-current.slick-active.slick-center + .item.slick-active {
    opacity: 1;
    width: 725px !important;
    height: 440px;
    position: relative;
    left: -900px;
    top: 90px;
    z-index: 3;
    transform: rotate(0deg);
}

.works .item.slick-current.slick-center.slick-active {
    opacity: 1;
    width: 520px !important;
    height: 360px;
    position: relative;
    z-index: 2;
    left: -550px;
}

.works .item.slick-active img ,
.works .item.slick-active.slick-center img ,
.works .item.slick-active.slick-center + .item.slick-active img {
    width: 100%;
    height: 100%;
} 

.works .slick-dots {
    bottom: 80px;
    width: auto;
    right: 300px;
    left: auto;
}

.works .slick-dots li {
    width: 30px;
    height: 4px;
    margin: 0;
    background-color: #52382a;
}

.works .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #dec291;
}

.works .slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    content: '';
    text-align: center;
    opacity: 0;
    background-color: #dec291;
}

/* End Our Works */

/* Start Our Clients */

.our-clients {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-image: url(../img/clients-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.our-clients:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    margin: 0;
    z-index: 0;
    background-color: rgba(00,00,00,0.4);
}

.our-clients h2 {
    z-index: 1;
}

.clients-content {
    padding: 80px 0 0;   
    color: #fff;
    z-index: 1;
    position: relative;
}

.clients-content p {
    max-width: 800px;
    margin: auto;
    line-height: 2;
    text-align: center;
}

.clients-content .clients {
    margin: 40px 0;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.clients-content .clients li {
    display: inline-block;
    margin: 0 20px;
    border: 2px solid #52382a;
    border-radius: 3px;
    width: 200px;
    height: 60px;
    opacity: 0.6;
    transition: all .3s ease-in-out;
}

.clients-content .clients li img {
    width: 140px;
    height: 25px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.clients-content .clients li:hover {
    opacity: 1;
}

/* End Our Clients */

/* Start Contact Us */

.contact-us {
    position: relative;
    margin: 40px 0;
}

.contact-content {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 0 40px 0 0;
}

.contact-us .contact-content:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-right: 15px solid #dec291;
    border-top: 15px solid #dec291;
    top: 0;
    right: 0;
    z-index: -1;
}

.contact-us .contact-content:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: 0;
    left: 0;
    z-index: 1;
    border-left: 15px solid #dec291;
    border-bottom: 15px solid #dec291;
}

.contact-content h2 {
    position: relative;
    display: inline-block;
    padding: 15px 0;
    color: #dec291;
    z-index: 2;
}

.contact-content h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #52382a;
    right: 0;
    bottom: 0;
}

.contact-content h2:before {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #dec291;
    left: 0;
    bottom: 0;
}

.info {
    margin: 20px 0;
}

.info .icon {
    width: 50px;
    height: 50px;
    border: 2px solid #dec291;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    float: right;
    font-size: 25px;
    color: #dec291;
    margin-left: 20px;
    
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.info .text {
    line-height: 2;
}

.info .text p {
    margin: 0;
    color: #919293;
}

.info:hover .icon {
    background-color: #52382a;
    color: #fff;
}

/* End Contact Us */

/* Start Footer */

footer {
    position: relative;
    padding: 100px 0 40px;
    background-image: url(../img/footer-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
    z-index: 1;
}

footer:after {
    content: '';
    position: absolute;
    background-color: rgba(82, 56, 42, 0.55);
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    width: 100%;
    height: 100%;
}

.footer:before {
    content: '';
    position: absolute;
    top: 4px;
    right: -25px;
    width: 70%;
    height: 150px;
    background-color: #fff;
    transform-origin: top right;
    transform: rotate(9deg);
    z-index: 2;
}

.footer:after {
    content: '';
    position: absolute;
    top: 4px;
    left: -25px;
    width: 70%;
    height: 150px;
    background-color: #fff;
    transform-origin: top left;
    transform: rotate(-9deg);
    z-index: 2;
}

.footer .square {
    background-color: #52382a;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    right: 0;
    top: 18px;
    margin: auto;
    display: inline-block;
    z-index: 3;
    border-right: 4px solid #dec291;
    border-bottom: 4px solid #dec291;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.footer .social {
    position: relative;
    z-index: 3;
    padding: 0;
    margin: 150px 0;
    text-align: center;
}

.footer .social li {
    display: inline-block;
    margin: 5px;
    height: 50px;
    width: 50px;
    border: 2px solid #dec291;
    border-radius: 2px;
    font-size: 20px;
    padding: 3px;
    position: relative;
    transform: rotateZ(45deg);
    transition: all .3s ease-in-out;
}

.footer .social li:first-child {
    top: 0px;
    left: -42px;
}

.footer .social li:first-child:after {
    content: '';
    position: absolute;
    border: 2px solid #dec291;
    border-radius: 2px;
    background-color: transparent;
    width: 50px;
    height: 50px;
    top: -3px;
    left: -57px;
}

.footer .social li:nth-child(2) {
    top: 40px;
    left: -18px;
}

.footer .social li:nth-child(2):after {
    content: '';
    position: absolute;
    border: 2px solid #dec291;
    border-radius: 2px;
    background-color: transparent;
    width: 50px;
    height: 50px;
    top: -2px;
    left: 53px;
}

.footer .social li:nth-child(3) {
    top: 1px;
    left: 7px;
}

.footer .social li:nth-child(4) {
    top: 40px;
    left: 30px;
}

.footer .social li:nth-child(4):after {
    content: '';
    position: absolute;
    border: 2px solid #dec291;
    border-radius: 2px;
    background-color: transparent;
    width: 50px;
    height: 50px;
    top: -2px;
    left: 53px;
}

.footer .social li:nth-child(4):before {
    content: '';
    position: absolute;
    border: 2px solid #dec291;
    border-radius: 2px;
    background-color: transparent;
    width: 50px;
    height: 50px;
    top: -2px;
    left: -58px;
}

.footer .social li:nth-child(5) {
    top: 79px;
    left: 54px;
}

.footer .social li:nth-child(6) {
    top: 40px;
    left: 79px;
}

.footer .social li:nth-child(6):after {
    content: '';
    position: absolute;
    border: 2px solid #dec291;
    border-radius: 2px;
    background-color: transparent;
    width: 50px;
    height: 50px;
    top: -2px;
    left: -57px;
}

.footer .social li:nth-child(6):before {
    content: '';
    position: absolute;
    border: 2px solid #dec291;
    border-radius: 2px;
    background-color: transparent;
    width: 50px;
    height: 50px;
    top: 53px;
    left: -2px;
}

.footer .social li a {
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    margin: auto;
    background-color: #dec291;
    transition: all .3s ease-in-out;
}

.footer .social li:hover a {
    transform: rotateY(360deg);
}

.footer .social li a .fa {
    color: #fff;
    line-height: 36px;
    transform: rotate(-45deg);
}

.footer p {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 18px;
    color: #fff;
}

.foot {
    background-color: #52382a;
    position: relative;
    padding: 15px 0;
}

.foot p {
    color: #fff;
    margin: 0;
}

.foot p a {
    color: #dec291;
}
    
.foot p.p-left {
    text-align: left;
}

/* End Footer */

/* Start Inside About Us */

.head-title {
    position: absolute;
    bottom: 20px;
    left: calc(50% - 325px);
    color: #dec291;
}

#about {
    padding: 100px 0;
    top: -3px;
}

#about.who:after {
    top: -185px;
}

#about.who h4:after {
    background-color: #dec291;
}

#about .about-intro {
    position: absolute;
    right: 100px;
    top: 50%;
    background-color: rgba(82, 56, 42, 0.8);
    z-index: 9;
    padding: 20px 30px;
    transform: translateY(-50%);
}

#about.who p {
    color: #fff;
}

/* End Inside About Us */

/* Start Inside Services */

#services.services {
    background-image: none;
    margin: 0;
}

#services.services:after {
    display: none;
}

/*
#services.services:before {
    content: '';
    background-image: url(../img/wire.png);
    background-repeat: no-repeat;
    position: absolute;
    top: -120px;
    left: 345px;
    z-index: -1;
    width: 100%;
    height: 100%;

}
*/

#services .services-container {
    padding: 0;
}

#services.services .info p {
    color: #565656;
    font-size: 18px;
}

#services.services .service .serv {
    display: inline-block;
}

#services.services .service .serv a {
    color: #dec291;
    border: 2px solid #dec291;
}

#services.services .service {
    position: relative;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* End Inside Services */

/* Start Inside Clients */

#clients.our-clients {
    background-image: none;
    padding: 0;
}

#clients.our-clients:after {
    display: none;
}

#clients .clients-content p {
    color: #565656;
    font-size: 16px;
}

#clients .clients-content .clients li {
    margin: 0 20px 20px;
}

/* End Inside Clients */

/* Start Inside Contact Us */

#contact.contact-us {
    margin: 40px 0 0;
} 

#contact-footer {
    overflow: initial;
}

#contact-footer .footer:before,
#contact-footer .footer:after {
    display: none;
}

#contact-footer .footer .square {
    top: -40px;
}

/* End Inside Contact Us */

/* Start Inside Works */

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
  width: 33.333%;
}

.grid-item-width2 {
    width: 66.66666667%;
}

.grid-item {
    padding: 5px;
}

.grid-item img {
    display: block;
    max-width: 100%;
    width: 100%;
}

.grid-item .gallery-block {
    position: relative;
    overflow: hidden;
}

.grid-item .gallery-block:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    height: 100%;
    width: 100%;
    background-color: rgba(82, 56, 42, 0.8);
    z-index: 1;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.grid-item .gallery-block h4 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.grid-item .gallery-block:hover:after,
.grid-item .gallery-block:hover h4 {
    opacity: 1;
}

/* End Inside Works */

/* Start Services Details */

#services.services-details .service {
    text-align: right;
}

#services.services-details .service .serv a {
    background-color: #52382a;
}

#services.services-details .details {
    background-color: #dec291;
    color: #545353;
    max-width: 800px;
    margin: auto;
    padding: 80px;
    line-height: 2.5;
    position: relative;
    top: -100px;
    z-index: -1;
    font-size: 16px;
}

/* End Services Details */


/* Start Media Query */

@media(max-width:480px) {
    
    #services.services-details .details {
        padding: 80px 20px;
        top: auto;
        margin-top: -100px;
    }
    
    #services.services-details .service {
        text-align: center;
    }

    .grid-sizer,
    .grid-item {
      width: 100%;
    }
    
    .navbar {
        background-color: #52382a;
    }
    
    .navbar-collapse {
        background-color: #52382a;
        border: 0;
    }
    
    .navbar-inverse .navbar-toggle {
        border-color: transparent;
        height: 50px;
    }
    
    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
        background-color: transparent;
    }
    
    .nav>li,
    .navbar-nav li:nth-child(3){
        display: block;
        width: 100px;
        margin: 0 auto !important;
    }
    
    .navbar.affix .logo .logo-img {
        width: 55px;
        height: 55px;
        top: -10px;
    }
    
    .logo .logo-img {
        position: absolute;
        top: -35px;
        right: 20px;
        width: 100px;
        height: 100px;
    }
    
    .logo .logo-text {
        display: none;
    }
    
    .bg p {
        padding: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .bg:after {
        display: none;
    }
    
    .bg:before {
        display: none;
    }
    
    .who {
        top: 0;
    }
    
    .who:after,
    #services.services:before  {
        left: 50px;
    }
    
    .who h2 {
        display: block;
        padding-right: 15px;
        margin: 20px auto 40px;
        text-align: center;
        width: 150px;
    }
    
    .slider-bg {
        width: 100%;
    }
    
    .services-container {
        padding: 0 0 80px;
    }
    
    .statistics:after {
        display: none;
    }
    
    .statistics {
        padding: 0 0 80px;
    }
    
    .statistics .statis ul li {
        margin: 10px 5px;
    }
    
    .statistics .statis {
        margin-bottom: 40px;
    }
    
    .statistics img {
        width: 200px;
    }
    
    .team:after {
        display: none;
    }
    
    .team:before {
        display: none;
    }
    
    .team .members:after {
        top: -145px;
        right: 125px;
    }
    
    .team h2 {
        right: 0;
        top: 0;
        margin: auto;
        left: 0;
        text-align: center;
        display: block;
        width: 180px;
    }
    
    .team .members .item {
        transform: none;
    }
    
    .team .members .item.slick-active.slick-center {
        top: 105px;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
    }
    
    .our-works {
        padding: 80px 0 0;
    }
    
    .works {
        padding: 0;
    }
    
    .works .slick-list {
        max-height: 620px;
    }
    
    .works .item.slick-active.slick-center + .item {
        opacity: 0;
        width: initial;
    }
    
    .works .item.slick-active {
        width: initial;
        opacity: 0;
    }
    
    .works .item.slick-active.slick-center {
        opacity: 1;
        width: 7% !important;
        min-width: 290px !important;
        left: 0;
        transform: rotate(0deg);
    }
    
    .works .slick-dots {
        right: 0;
        left: 0;
        margin: auto;
    }
    
    .slick-dotted.slick-slider {
        margin-bottom: 0;
    }
    
    .contact-content {
        padding: 0;
    }
    
    .contact-content h2 {
        display: block;
        width: 100px;
        text-align: center;
        margin: auto;
    }
    
    .info {
        text-align: center;
    }
    
    .info .icon {
        display: block;
        margin: auto;
        float: none;
    }
    
    .contact-us:before,
    .contact-us:after {
        display: none;
    }
    
    .footer .square {
        top: 95px;
    }
    
    .footer .social li:first-child:after,
    .footer .social li:nth-child(2):after,
    .footer .social li:nth-child(3):after,
    .footer .social li:nth-child(4):after,
    .footer .social li:nth-child(4):before,
    .footer .social li:nth-child(5):after,
    .footer .social li:nth-child(6):after,
    .footer .social li:nth-child(6):before{
        display: none;
    }
    
    .footer .social li{
        position: initial;
        margin: 8px;
    }
    
    .footer .social li:first-child {
        top: 0px;
        left: 0;
        position: initial;
        margin: 8px;
    }
    
    .footer .social li:nth-child(2) {
        top: 40px;
        left: 25px;
    }
    
    .footer .social li:nth-child(3) {
        top: 1px;
        left: 50px;
    }
    
    .footer .social li:nth-child(4) {
        top: 40px;
        left: 73px;
    }
    
    .footer .social li:nth-child(5) {
        top: 20px;
        left: -15px;
    }
    
    .footer .social li:nth-child(6) {
        top: 20px;
        left: -30px;
    }
    
    .footer .social {
        margin: 125px 0;
    }
    
    .foot p,
    .foot p.p-left {
        text-align: center;
    }

    .head-title {
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
    }
    
    #about {
        top: 0;
        padding: 100px 0 20px;
    }
    
    #about .about-intro {
        right: 0;
        left: 0;
        margin: auto;
        position: relative;
        top: 0;
        transform: none;
        margin-bottom: 20px;
        background-color: rgba(82, 56, 42, 1);
    }
    
    #about.who h4:before {
        background-color: #fff;
    }
    
}

/*Smat Phone And Tablet*/

@media(min-width:480px) and (max-width:767px) {
    
    #services.services-details .service {
        text-align: center;
    }

.grid-sizer,
.grid-item {
  width: 50%;
}
    
    .navbar {
        background-color: #52382a;
    }
    
    .navbar-collapse {
        background-color: #52382a;
        border: 0;
    }
    
    .navbar-inverse .navbar-toggle {
        border-color: transparent;
        height: 50px;
    }
    
    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
        background-color: transparent;
    }
    
    .nav>li,
    .navbar-nav li:nth-child(3){
        display: block;
        width: 100px;
        margin: 0 auto !important;
    }
    
    .navbar.affix .logo .logo-img {
        width: 55px;
        height: 55px;
        top: -10px;
    }
    
    .logo .logo-img {
        position: absolute;
        top: -35px;
        right: 20px;
        width: 100px;
        height: 100px;
    }
    
    .logo .logo-text {
        display: none;
    }
    
    .bg p {
        padding: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .bg:after {
        display: none;
    }
    
    .bg:before {
        display: none;
    }
    
    .who {
        top: 0;
    }
    
    .who:after,
    #services.services:before  {
        left: 50px;
    }
    
    .who h2 {
        display: block;
        padding-right: 15px;
        margin: 20px auto 40px;
        text-align: center;
        width: 150px;
    }
    
    .slider-bg {
        width: 350px;
    }
    
    .services-container {
        padding: 0 0 80px;
    }
    
    .statistics:after {
        display: none;
    }
    
    .statistics {
        padding: 0 0 80px;
    }
    
    .statistics .statis ul li {
        margin: 10px 5px;
    }
    
    .statistics .statis {
        margin-bottom: 40px;
    }
    
    .statistics img {
        width: 200px;
    }
    
    .team:after {
        display: none;
    }
    
    .team:before {
        display: none;
    }
    
    .team .members:after {
        display: none;
    }
    
    .team h2 {
        right: 0;
        top: 0;
        margin: auto;
        left: 0;
        text-align: center;
        display: block;
        width: 180px;
    }
    
    .team .members .item {
        transform: none;
    }
    
    .team .members .item.slick-active.slick-center {
        top: 105px;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
    }
    
    .our-works {
        padding: 80px 0 0;
    }
    
    .works {
        padding: 0;
    }
    
    .works .slick-list {
        max-height: 620px;
    }
    
    .works .item.slick-active.slick-center + .item {
        opacity: 0;
        width: initial;
    }
    
    .works .item.slick-active {
        width: initial;
        opacity: 0;
    }
    
    .works .item.slick-active.slick-center {
        opacity: 1;
        width: 7% !important;
        left: 0;
        transform: rotate(0deg);
    }
    
    .works .slick-dots {
        right: 0;
        left: 0;
        margin: auto;
    }
    
    .slick-dotted.slick-slider {
        margin-bottom: 0;
    }
    
    .contact-content {
        padding: 0;
    }
    
    .contact-content h2 {
        display: block;
        width: 100px;
        text-align: center;
        margin: auto;
    }
    
    .info {
        text-align: center;
    }
    
    .info .icon {
        display: block;
        margin: auto;
        float: none;
    }
    
    .contact-us:before,
    .contact-us:after {
        display: none;
    }
    
    .footer .square {
        top: 82px;
    }
    
    .footer .social {
        margin: 125px 0;
    }
    
    .foot p,
    .foot p.p-left {
        text-align: center;
    }

    .head-title {
        bottom: 10px;
        left: 0;
        right: 0;
        text-align: center;
    }
    
    #about {
        padding: 100px 0 0;
    }
    
    #about .about-intro {
        right: 0;
        left: 0;
        top: 0;
        margin: 0 auto 20px;
        position: relative;
        background-color: rgba(82, 56, 42, 1);
        transform: none;
    }
    
    #about.who h4:before {
        background-color: #fff;
    }

}
/*Small Screen*/

@media(min-width:768px) and (max-width:991px) {
    
    .logo .logo-text,
    .statistics:after{
        display: none;
    }
    
    .bg p {
        bottom: 200px;
        transform: none;
    }
    
    .who {
        top: -50px;
    }
    
    .who:after,
    #services.services:before  {
        left: 190px;
    }
    
    .statistics img {
        width: 250px;
        margin-top: 40px;
    }
    
    .team .members:after {
        right: -135px;
    }
    
    .team .members .item.slick-active.slick-center {
        left: -305px;
    }
    
    .team .members .item.slick-active.slick-center + .item.slick-active {
        top: 147px;
        left: -292px;
    }
    
    .works .item.slick-active.slick-center + .item {
        width: 12% !important;
    }
    
    .works .slick-dots {
        right: 30px;
    }
    
    .contact-content {
        padding: 0;
    }
    
    .contact-content h2 {
        display: block;
        width: 100px;
        text-align: center;
        margin: auto;
    }
    
    .info {
        text-align: center;
    }
    
    .info .icon {
        display: block;
        margin: auto;
        float: none;
    }
    
    .footer .square {
        top: 60px;
    }
    
    .head-title {
        bottom: 60px;
        left: calc(50% - 210px);
    }
    
    #about {
        top: -50px;
    }
    
    #about .about-intro {
        right: 20px;
    }
    
}
/*Medium Screen*/

@media(min-width:992px)and (max-width:1199px) {
    
    .bg p {
        top: 450px;
    }
    
    .who {
        top: -28px;
    }
    
    .who:after {
        top: -151px;
        left: 270px;
    }
    
    .statistics:after {
        top: -28px;
    }
    
    .team .members:after {
        top: -128px;
        right: 257px;
    }
    
    .team h2 {
        top: 60px;
        right: 350px;
    }
    
    .team .members .item.slick-active {
        top: -60px;
        left: 0;
    }
    
    .team .members .item.slick-active.slick-center {
        top: 115px;
        left: -100px;
    }
    
    .team .members .item.slick-active.slick-center + .item.slick-active {
        top: 142px;
        left: -56px;
    }
    
    .works .item.slick-active.slick-center + .item {
        width: 13% !important;
    }
    
    .works .slick-dots {
        right: 250px;
    }
    
    .clients-content .clients li {
        margin: 0 10px;
    }
    
    .contact-us:before {
        left: 25px;
    }
    .contact-us:after {
        right: 25px;
    }
    
    .info:last-child {
        margin-bottom: 0;
    }
    
    .head-title {
        bottom: 50px;
        left: calc(50% - 260px);
    }
    
    #about {
        top: -30px;
    }
    
    
}
/*Larger Screen*/


/* End Media Query */