:root {
    /*--main-color: #4c4184;*/
    --main-color: #393f9c;
}

@font-face {
    font-family: 'Oswald-Bold';
    src: url('../fonts/Oswald-Bold.ttf');
    /* IE9 Compat Modes */
}

@font-face {
    font-family: 'Oswald-Light';
    src: url('../fonts/Oswald-Light.ttf');
    /* IE9 Compat Modes */
}

@font-face {
    font-family: 'Oswald-Medium';
    src: url('../fonts/Oswald-Medium.ttf');
    /* IE9 Compat Modes */
}

@font-face {
    font-family: 'Oswald-Regular';
    src: url('../fonts/Oswald-Regular.ttf');
    /* IE9 Compat Modes */
}

@font-face {
    font-family: 'Oswald-SemiBold';
    src: url('../fonts/Oswald-SemiBold.ttf');
    /* IE9 Compat Modes */
}

@font-face {
    font-family: 'Mallory-Bold';
    src: url('../fonts/Mallory-Bold.otf');
    /* IE9 Compat Modes */
}

@font-face {
    font-family: 'Mallory-Thin';
    src: url('../fonts/Mallory-Thin.otf');
    /* IE9 Compat Modes */
}

@font-face {
    font-family: 'Mallory-Light';
    src: url('../fonts/Mallory-Light.otf');
    /* IE9 Compat Modes */
}

@font-face {
    font-family: 'Mallory-ExtraLight';
    src: url('../fonts/Mallory-ExtraLight.otf');
    /* IE9 Compat Modes */
}

@font-face {
    font-family: 'Mallory-Medium';
    src: url('../fonts/Mallory-Medium.otf');
    /* IE9 Compat Modes */
}

@font-face {
    font-family: 'Mallory-Book';
    src: url('../fonts/Mallory-Book.otf');
    /* IE9 Compat Modes */
}

@font-face {
    font-family: 'Mallory-Black';
    src: url('../fonts/Mallory-Black.otf');
    /* IE9 Compat Modes */
}

@font-face {
    font-family: 'Kalam-Regular';
    src: url('../fonts/Kalam-Regular.ttf');
    /* IE9 Compat Modes */
}

body {
    margin: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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

a {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

a {
    text-decoration: none;
    color: #fff;
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Mallory-Bold';
    color: #fff;
    text-transform: uppercase;
}

p {
    font-family: 'Mallory-ExtraLight';
    font-size: 14px;
}

.map {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}

h2 {
    font-size: 25px;
    margin-top: 0;
    font-family: 'Mallory-Bold';
    color: #333743;
}

@media only screen and (min-width: 768px) {
    h2 {
        font-size: 40px;
    }
}

h3 {
    font-size: 23px;
    font-family: 'Mallory-Bold';
    color: #fff;
    margin: 0;
}

@media only screen and (min-width: 768px) {
    h3 {
        font-size: 25px;
    }
}

@media only screen and (min-width: 1500px) {
    h3 {
        font-size: 30px;
    }
}

img {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    max-width: 100%;
}

.container {
    width: 100%;
    padding: 0 15px;
}

video {
    width: 100%;
    height: 100%;
    display: block;
    /* background: #333743; */
}

header {
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 20px 0;
    background: #fff;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(173, 173, 173, 1);
    -moz-box-shadow: 0px 1px 5px 0px rgba(173, 173, 173, 1);
    box-shadow: 0px 1px 5px 0px rgba(173, 173, 173, 1);
}

@media only screen and (min-width: 768px) {
    header {
        padding: 25px 0;
    }
}

.logo img {
    vertical-align: middle;
    height: auto;
    /* width: 30%; */
    width: 100%;
}


@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .logo img {
        width: 31%;
    }
}

@media only screen and (min-width: 1088px) {
    .logo img {
        left: 50%;
        -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
        height: auto;
        width: 20%;
    }
}

@media only screen and (max-width: 768px) {
    .logo {
        width: 55%;
    }
}

.header-none {
    box-shadow: none;
    background: transparent;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.header-visible {
    padding: 10px 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background-color: #fff;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(173, 173, 173, 1);
    -moz-box-shadow: 0px 1px 5px 0px rgba(173, 173, 173, 1);
    box-shadow: 0px 1px 5px 0px rgba(173, 173, 173, 1);
    z-index: 9999;
}

@media only screen and (min-width: 768px) {
    .header-visible {
        padding: 20px 0;
    }
}

.nav-icon {
    display: none;
    position: absolute;
    top: 15px;
    left: 15px;
}

@media only screen and (min-width: 768px) {
    .nav-icon {
        display: block;
    }
}

.mg-right {
    margin-right: 10px;
}

.mg-left {
    margin-top: 10px;
}

.show-on-mobile img {
    width: 35px;
}

@media only screen and (min-width: 1088px) {
    .show-on-mobile img {
        width: 50px;
    }
}

.show-on-mobile span {
    display: none;
    font-family: 'Mallory-Bold';
    color: #333743;
    padding-left: 10px;
}

@media only screen and (min-width: 1088px) {
    .show-on-mobile span {
        display: block;
    }
}


/* NAV BUTTON */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9;
    transition: clip-path 550ms ease-out;
    justify-content: center;
    align-items: center;
    clip-path: polygon(100% -50%, 150% 0%, 130% 0%, 150% -20%);
}

.modal-active {
    clip-path: polygon(50% -50%, 150% 50%, 50% 150%, -50% 50%);
}

.social {
    margin-top: 10px;
}

@media only screen and (min-width: 768px) {
    .social {
        margin-top: 30px;
    }
}

nav {
    display: none;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    align-items: center;
    position: absolute;
    opacity: 0.98;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    background: #3b3f4a;
}

section {
    z-index: 999;
}

nav {
    transition: opacity 100ms linear;
    padding: 35px;
    box-shadow: 0 0 30px 15px #3b3f4a;
}

nav ul {
    text-align: center;
    font-family: 'Cutive Mono', monospace;
    list-style-type: none;
}

.center-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

nav ul li {
    display: block;
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 400ms ease-in-out;
}

nav ul li:nth-child(1) {
    transition-delay: 1s;
}

nav ul li:nth-child(2) {
    transition-delay: 1.05s;
}

nav ul li:nth-child(3) {
    transition-delay: 1.10s;
}

nav ul li:nth-child(4) {
    transition-delay: 1.15s;
}

nav ul li:nth-child(5) {
    transition-delay: 1.20s;
}

nav ul li:nth-child(6) {
    transition-delay: 1.25s;
}

nav ul li:nth-child(7) {
    transition-delay: 1.30s;
}

nav ul li:nth-child(8) {
    transition-delay: 1.35s;
}


/*@media only screen and (min-width: 768px) {
nav ul li:nth-child(1) {
  transition-delay: 1s;
}

nav ul li:nth-child(2) {
  transition-delay: 1.2s;
}

nav ul li:nth-child(3) {
  transition-delay: 1.4s;
}

nav ul li:nth-child(4) {
  transition-delay: 1.6s;
}

nav ul li:nth-child(5) {
  transition-delay: 1.8s;
}


nav ul li:nth-child(6) {
  transition-delay: 2s;
}

nav ul li:nth-child(7) {
  transition-delay: 2.2s;
}

nav ul li:nth-child(8) {
  transition-delay: 2.4s;
}

}*/

nav ul li a {
    font-family: 'Oswald-Medium';
    font-size: 20px;
    text-transform: uppercase;
    padding: 7px 0;
    display: inline-block;
    text-decoration: none;
    position: relative;
    color: #fff;
}

@media only screen and (min-width: 768px) {
    nav ul li a {
        text-transform: lowercase;
        font-size: 30px;
    }

    nav ul li a:first-letter {
        text-transform: capitalize;
    }
}

nav ul li a:hover {
    color: var(--main-color);;
}

nav ul li a::before,
nav ul li a::after {
    content: '';
    display: block;
    border-radius: 1.5px;
    height: 3px;
    width: 0;
    background-color: var(--main-color);;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: width 250ms ease-in-out;
}

nav ul li a:hover::before,
nav ul li a:hover::after {
    width: 20px;
}

nav ul li a::before {
    right: calc(100% + 10px);
    transform-origin: 100% 50%;
}

nav ul li a::after {
    left: calc(100% + 10px);
    transform-origin: 0% 50%;
}

.social li a:hover::before,
.social li a:hover::after {
    display: none;
}

.nav-active ul li {
    opacity: 1;
    transform: translateY(0);
}

.menu-toggle {
    border-radius: 8px;
    z-index: 99999;
    height: 40px;
    width: 40px;
    transition: all 250ms ease-in-out;
    background: #fff;
}


/*.menu-toggle:hover {

  cursor: pointer;

  background-color: rgba(0, 0, 0, 0.4);

  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);

}*/

.active {
    transform: rotate(45deg);
    border-radius: 50%;
    background: transparent;
}

.active:hover {
    transform: rotate(45deg);
}

.active .hamburger {
    width: 0;
}

.active .hamburger::before {
    transform: translate(-11px, -10px) rotate(-90deg);
    background-color: #fff;
}

.active .hamburger::after {
    transform: translate(2px, 0px);
    background-color: #fff;
}

.hamburger {
    margin-left: 8px;
    margin-top: 18px;
    height: 3px;
    width: 25px;
    border-radius: 1px;
    background-color: black;
    transition: all 250ms ease-in-out;
    cursor: pointer;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 1px;
    background-color: black;
    transition: all 250ms ease-in-out;
    transform-origin: 100% 50%;
}

.hamburger::before {
    transform: translateY(-10px);
}

.hamburger::after {
    transform: translateY(7px);
}


/*wnd nav*/

.social li {
    margin: 0 10px;
    border-radius: 50%;
    text-align: center;
}

.social li i {
    width: 50px;
    padding: 10px;
    color: #333743;
    font-size: 30px;
    border-radius: 50%;
}

.fab {
    background: #71737c;
}

.fab:hover {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    color: var(--main-color);
}

.blog,
.location,
.product {
    padding-top: 20px;
}

@media only screen and (min-width: 768px) {
    .blog,
    .location,
    .product {
        padding-top: 50px;
    }
}


/* Section banner*/

.banner {
    position: relative;
}

.banner-links {
    position: relative;
    display: none;
}

@media only screen and (min-width: 500px) {
    .banner-links {
        display: block;
    }
}

.banner p {
    font-family: 'Mallory-Thin';
    font-size: 14px;
    color: #d6d6d8;
}

.full-height {
    height: 100%;
    width: 100%;
}

.bord-1 {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    text-align: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

@media only screen and (min-width: 500px) {
    .bord-1 {
        text-align: left;
        height: 100vh;
        align-items: flex-end;
    }
}

.bord-1:hover {
    background-size: cover;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

@media only screen and (min-width: 500px) {
    .bord-1:hover {
        text-align: left;
        height: 100vh;
        align-items: flex-end;
    }
}

.bord-1:hover #gradient {
    visibility: visible;
}

.bord-1 img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.links li a {
    font-family: 'Oswald-SemiBold';
    background-color: #333743;
    padding: 13px 15px;
    margin-right: 10px;
    position: relative;
    width: 100%;
    display: block;
}

@media only screen and (min-width: 660px) {
    .links li a {
        width: 135px;
    }
}

.links li {
    text-align: center;
}

@media only screen and (max-width: 660px) {
    .links li {
        width: 100%;
    }
}

@media only screen and (max-width: 660px) {
    .links-1 li {
        width: 100%;
    }
}

.links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 0 138px;
    border-color: transparent transparent transparent transparent;
    bottom: 50px;
    left: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.links li a:hover {
    background-color: var(--main-color);;
}

.links li a:hover::after {
    border-color: transparent transparent transparent var(--main-color);;
}

@media only screen and (min-width: 1190px) {
    .full-width {
        height: 50vh;
    }
}


/* dark links*/

.links-1 {
    background: #333743;
}

.links-1 a {
    font-family: 'Oswald-SemiBold';
    background-color: #333743;
    padding: 13px 15px;
    position: relative;
    width: 100%;
    color: #9a9b9f;
    display: block;
}

@media only screen and (min-width: 1200px) {
    .links-1 a {
        width: 230px;
    }
}

@media only screen and (min-width: 1420px) {
    .links-1 a {
        width: 280px;
    }
}

.links-1 {
    text-align: center;
}

@media only screen and (max-width: 660px) {
    .links-1 {
        width: 100%;
    }
}

@media only screen and (max-width: 1200px) {
    .links-1 li {
        width: 100%;
    }
}

.links-1 a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 0 280px;
    border-color: transparent transparent transparent transparent;
    bottom: 50px;
    left: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.links-1 a:hover {
    background-color: #454956;
    -webkit-box-shadow: -5px 0px 8px 0px rgba(38, 41, 50, 1);
    -moz-box-shadow: -5px 0px 8px 0px rgba(38, 41, 50, 1);
    box-shadow: -5px 0px 8px 0px rgba(38, 41, 50, 1);
}

.links-1 a:hover::after {
    border-color: transparent transparent transparent #454956;
}

.a-active-1 {
    background-color: #454956 !important;
    -webkit-box-shadow: -5px 0px 8px 0px rgba(38, 41, 50, 1);
    -moz-box-shadow: -5px 0px 8px 0px rgba(38, 41, 50, 1);
    box-shadow: -5px 0px 8px 0px rgba(38, 41, 50, 1);
}

.a-active-1::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 0 153px;
    border-color: transparent transparent transparent #454956 !important;
    bottom: 50px;
    left: 0;
}

.premium {
    background: url(../images/link.png);
    background-size: cover;
    position: relative;
    color: #fff !important;
}

.premium::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 0 153px;
    border-color: transparent transparent transparent transparent !important;
    bottom: 50px;
    left: 0;
}


/* end darl links*/

.a-active {
    background-color: var(--main-color);
!important;
}

.a-active::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 0 153px;
    border-color: transparent transparent transparent var(--main-color);
!important;
    bottom: 50px;
    left: 0;
}

#gradient {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.2;
}

.bord-1-content span {
    margin-bottom: 40px;
}

.bord-1-content {
    position: absolute;
    z-index: 3;
}

@media only screen and (min-width: 660px) {
    .bord-1-content {
        bottom: 30px;
    }
}

.bord-1-content h1 {
    font-size: 40px;
    margin: 0;
}

@media only screen and (min-width: 768px) {
    .bord-1-content h1 {
        font-size: 70px;
    }
}

.bord-1-content span {
    text-transform: uppercase;
    font-size: 15px;
    color: #fff;
    font-family: 'Mallory-Bold';
    margin-bottom: 30px;
    display: block;
}

@media only screen and (min-width: 768px) {
    .bord-1-content span {
        font-size: 25px;
    }
}

.bgd-1,
.bgd-2 {
    background: #333743;
    padding: 15px 30px;
    position: relative;
}

@media only screen and (min-width: 768px) {
    .bgd-1,
    .bgd-2 {
        padding: 0 30px;
    }
}

.bgd-1::before {
    position: absolute;
    content: '';
    background: url(../images/triangle.png);
    height: 160px;
    width: 45px;
    background-size: 100% 100%;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
}

@media only screen and (min-width: 768px) {
    .bgd-1::after {
        position: absolute;
        content: '';
        background: url(../images/left-0.png);
        height: 30px;
        width: 13px;
        /* background-size: 100% 100%; */
        left: -20px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media only screen and (min-width: 768px) {
    .bgd-2::before {
        position: absolute;
        content: '';
        background: url(../images/triangle-1.png);
        height: 160px;
        width: 45px;
        background-size: 100% 100%;
        right: -44px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
    }
}

@media only screen and (min-width: 768px) {
    .bgd-2::after {
        position: absolute;
        content: '';
        background: url(../images/right-0.png);
        height: 30px;
        width: 13px;
        background-size: 100% 100%;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
    }
}

.bord-2 img {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    height: 50vh;
    object-fit: cover;
    width: 100%;
    display: block;
}

@media only screen and (min-width: 768px) {
    .gray-img {
        /* Firefox 10+, Firefox on Android */
        filter: gray;
        /* IE6-9 */
        -webkit-filter: grayscale(100%) !important;
        /* Chrome 19+, Safari 6+, Safari 6+ iOS */
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    }

    .gray-img:hover {
        -webkit-filter: grayscale(0%) !important;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    }
}

.more {
    font-family: 'Oswald-SemiBold';
    background-color: var(--main-color);;
    padding: 13px 15px;
    margin-right: 10px;
    position: relative;
    width: 153px;
    display: block;
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.more:hover {
    background: #fff;
    color: var(--main-color);;
}

.more:hover img {
    transform: scale(1.1);
}

.more::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 0 153px;
    border-color: transparent transparent transparent var(--main-color);;
    bottom: 49px;
    left: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

@media only screen and (min-width: 768px) {
    .more::after {
        bottom: 50px;
    }
}

.more:hover::after {
    border-color: transparent transparent transparent #fff;
}

.fa-plus {
    margin-right: 10px;
    font-size: 10px;
}


/* LOCATION*/

.location {
    text-align: center;
    margin-bottom: 25px;
}

.product-wrap {
    margin: 0 15px;
}

.box {
    margin-bottom: 20px;
    padding: 0 15px;
}

@media only screen and (min-width: 1020px) {
    .box {
        margin-bottom: 0;
        width: 33.333%;
    }
}

.box img {
    display: block;
    max-height: 440px;
}

.box-1 img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

@media only screen and (min-width: 1200px) {
    .box-1 img {
        height: 350px;
    }
}

.box-1 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.box-more {
    background: #333743;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-more span {
    margin: auto;
    text-align: center;
    font-size: 15px;
    padding: 0 5px;
    color: #fff;
    font-family: 'Mallory-Medium';
}

@media only screen and (min-width: 1200px) {
    .box-more span {
        margin: 0;
        font-size: 20px;
        padding: 0 20px;
        color: #fff;
        font-family: 'Mallory-Medium';
        white-space: nowrap;
        overflow: hidden;
        max-width: 284px;
    }
}

@media only screen and (min-width: 1500px) {
    .box-more span {
        font-size: 25px;
    }
}

.box-more span::-webkit-scrollbar {
    width: 0px;
}

.box-more span::-webkit-scrollbar-track {
    background: transparent;
}

.box-more span::-webkit-scrollbar-thumb {
    background: none;
}

.box-more span::-webkit-scrollbar-thumb:hover {
    background: none;
}

.more-1 {
    font-family: 'Oswald-SemiBold';
    background-color: var(--main-color);;
    padding: 13px 15px;
    position: relative;
    width: 140px;
    display: block;
    display: flex;
    align-items: center;
    font-size: 14px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

@media only screen and (min-width: 768px) {
    .more-1 {
        width: 153px;
        font-size: 16px;
    }
}

.more-1:hover {
    background: #fff;
    color: var(--main-color);;
}

.more-1:hover img {
    transform: scale(1.1);
}

.more-1::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 0 130px;
    border-color: transparent transparent transparent var(--main-color);;
    bottom: 46px;
    left: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

@media only screen and (min-width: 768px) {
    .more-1::after {
        border-width: 11px 0 0 153px;
        bottom: 49px;
    }
}

.more-1:hover::after {
    border-color: transparent transparent transparent #fff;
}

.blog {
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .blog img {
        filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
        /* Firefox 10+, Firefox on Android */
        filter: gray;
        /* IE6-9 */
        -webkit-filter: grayscale(100%) !important;
        /* Chrome 19+, Safari 6+, Safari 6+ iOS */
    }

    .blog img:hover {
        filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
        -webkit-filter: grayscale(0%) !important;
    }
}

.blog-content {
    padding: 79px 30px;
    position: relative;
}

.blog-content::before {
    position: absolute;
    content: '';
    background: url(../images/triangle-white-1.png);
    height: 160px;
    width: 45px;
    background-size: 100% 100%;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
}

.blog-content::after {
    position: absolute;
    content: '';
    background: url(../images/left-0.png);
    height: 30px;
    width: 13px;
    /* background-size: 100% 100%; */
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.blog-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

@media only screen and (min-width: 768px) {
    .blog-img img {
        height: 480px;
    }
}

.blog-content {
    padding: 30px 15px;
    text-align: left;
}

@media only screen and (min-width: 768px) {
    .blog-content {
        padding: 0 30px;
    }
}

.blog-img {
    margin-bottom: 0px;
}

@media only screen and (min-width: 768px) {
    .blog-img {
        margin-bottom: 40px;
    }
}

.date {
    font-family: 'Mallory-Medium';
    font-size: 16px;
    color: #adadad;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media only screen and (min-width: 768px) {
    .date {
        margin-top: 50px;
        margin-bottom: 100px;
    }
}

.blog-more {
    display: block;
    width: 220px;
    height: 70px;
    z-index: 1;
}

.blog-more:after {
    content: '';
    /*background: linear-gradient(120deg, #6559ae, #ff7159, #6559ae);*/
    background-size: 400% 400%;
    border: 3px solid #6559ae;
    /* -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 4px, 216px 4px, 216px 66px, 4px 66px, 4px 100%, 100% 100%, 100% 0%, 0% 0%);*/
    /*-moz-animation: gradient 3s ease-in-out infinite, border 1s forwards ease-in-out reverse;
  -webkit-animation: gradient 3s ease-in-out infinite, border 1s forwards ease-in-out reverse;
  animation: gradient 3s ease-in-out infinite, border 1s forwards ease-in-out reverse;*/
}

.blog-more > span {
    display: block;
    background: linear-gradient(120deg, #6559ae, #ff7159, #6559ae);
    background: -webkit-linear-gradient(120deg, #6559ae, #ff7159, #6559ae);
    background: -o-linear-gradient(120deg, #6559ae, #ff7159, #6559ae);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-animation: gradient 3s ease-in-out infinite;
    -webkit-animation: gradient 3s ease-in-out infinite;
    animation: gradient 3s ease-in-out infinite;
    font-size: 17px;
}


/* helpers */

body:after,
.blog-more,
.blog-more:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
}

.blog-more {
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    letter-spacing: 2px;
    line-height: 70px;
    font-family: 'Oswald-SemiBold';
    position: relative;
    font-size: 28px;
}


/* motion */

@-moz-keyframes gradient {
    0% {
        background-position: 14% 0%;
    }
    50% {
        background-position: 87% 100%;
    }
    100% {
        background-position: 14% 0%;
    }
}

@-webkit-keyframes gradient {
    0% {
        background-position: 14% 0%;
    }
    50% {
        background-position: 87% 100%;
    }
    100% {
        background-position: 14% 0%;
    }
}

@keyframes gradient {
    0% {
        background-position: 14% 0%;
    }
    50% {
        background-position: 87% 100%;
    }
    100% {
        background-position: 14% 0%;
    }
}

@-moz-keyframes border {
    0% {
        -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 4px, 216px 4px, 216px 66px, 4px 66px, 4px 100%, 100% 100%, 100% 0%, 0% 0%);
    }
    25% {
        -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 4px, 216px 4px, 216px 66px, 216px 66px, 216px 100%, 100% 100%, 100% 0%, 0% 0%);
    }
    50% {
        -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 4px, 216px 4px, 216px 4px, 216px 4px, 216px 4px, 216px 4px, 100% 0%, 0% 0%);
    }
    75% {
        -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 4px, 4px 4px, 4px 4px, 4px 4px, 4px 4px, 4px 4px, 4px 0%, 0% 0%);
    }
    100% {
        -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 100%, 4px 100%, 4px 100%, 4px 100%, 4px 100%, 4px 100%, 4px 100%, 0% 100%);
    }
}

@-webkit-keyframes border {
    0% {
        -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 4px, 216px 4px, 216px 66px, 4px 66px, 4px 100%, 100% 100%, 100% 0%, 0% 0%);
    }
    25% {
        -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 4px, 216px 4px, 216px 66px, 216px 66px, 216px 100%, 100% 100%, 100% 0%, 0% 0%);
    }
    50% {
        -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 4px, 216px 4px, 216px 4px, 216px 4px, 216px 4px, 216px 4px, 100% 0%, 0% 0%);
    }
    75% {
        -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 4px, 4px 4px, 4px 4px, 4px 4px, 4px 4px, 4px 4px, 4px 0%, 0% 0%);
    }
    100% {
        -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 100%, 4px 100%, 4px 100%, 4px 100%, 4px 100%, 4px 100%, 4px 100%, 0% 100%);
    }
}

@keyframes border {
    0% {
        -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 4px, 216px 4px, 216px 66px, 4px 66px, 4px 100%, 100% 100%, 100% 0%, 0% 0%);
    }
    25% {
        -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 4px, 216px 4px, 216px 66px, 216px 66px, 216px 100%, 100% 100%, 100% 0%, 0% 0%);
    }
    50% {
        -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 4px, 216px 4px, 216px 4px, 216px 4px, 216px 4px, 216px 4px, 100% 0%, 0% 0%);
    }
    75% {
        -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 4px, 4px 4px, 4px 4px, 4px 4px, 4px 4px, 4px 4px, 4px 0%, 0% 0%);
    }
    100% {
        -webkit-clip-path: polygon(0% 100%, 4px 100%, 4px 100%, 4px 100%, 4px 100%, 4px 100%, 4px 100%, 4px 100%, 4px 100%, 0% 100%);
    }
}

.blog-content h3 {
    color: #333743;
    font-size: 16px;
}

@media only screen and (min-width: 480px) {
    .blog-content h3 {
        font-size: 20px;
    }
}


/*NEW*/

.new {
    text-align: center;
    padding-top: 115px;
}

@media only screen and (min-width: 768px) {
    .new {
        padding-top: 145px;
    }
}

.new h2 {
    font-size: 20px;
}

@media only screen and (min-width: 768px) {
    .new h2 {
        font-size: 40px;
    }
}

.new img {
    display: block;
}


/* ABOUT US*/

.ab-img {
    width: 100%;
}

@media only screen and (min-width: 1000px) {
    .ab-img {
        width: 33.333%;
    }
}

.ab-text {
    width: 100%;
}

@media only screen and (min-width: 1000px) {
    .ab-text {
        width: 66.666%;
    }
}

.about-us {
    background: #333743;
    overflow: hidden;
}

.about-us-img {
    position: relative;
    /*background: url(../images/about-us.jpg);*/
    background-size: cover;
    height: 450px;
}

@media only screen and (min-width: 768px) {
    .about-us-img {
        height: 650px;
    }
}

.about-logo {
    position: absolute;
    display: none;
    top: 50%;
    left: 68%;
    transform: translateY(-50%);
}

@media only screen and (min-width: 1220px) {
    .about-logo {
        display: block;
    }
}

.about-text {
    color: #b1b1b1;
    padding: 20px 10px;
    width: 100%;
}

@media only screen and (min-width: 1220px) {
    .about-text {
        padding-left: 40px;
        width: 75%;
    }
}

.about-text span {
    color: #fff;
    font-family: 'Mallory-Medium';
    font-size: 20px;
}

.about-text h2 {
    text-align: center;
    color: #fff;
}

@media only screen and (min-width: 1000px) {
    .about-text h2 {
        text-align: left;
    }
}

.list-img {
    margin-right: 30px;
    text-align: right;
}

.about-list li {
    margin: 30px 0;
}


/*owl slider*/

.owl-stage {
    display: flex;
}

.owl-item {
    display: flex;
    align-items: center;
}

.owl-carousel .owl-item img {
    width: 45%;
    margin: auto;
}


/* REFERENCE-NEWS*/

.reference-news {
    padding: 50px 15px;
}

.vision {
    padding: 50px 15px;
}

@media only screen and (min-width: 768px) {
    .reference-news {
        padding: 50px;
    }

    .vision {
        padding: 50px;
    }

}

@media only screen and (min-width: 768px) {
    .newslatter {
        padding: 0 100px;
    }
}

.newslatter p {
    color: #b1b1b1;
}

.gform_wrapper form {
    text-align: center !important;
}

#input_1_1 {
    font-size: 14px;
    text-align: center !important;
    font-family: 'Mallory-Light';
    width: 100%;
    font-style: italic;
    opacity: 0.9;
}

@media only screen and (min-width: 768px) {
    #input_1_1 {
        width: 51%;
    }
}

.gform_wrapper input {
    padding: 10px 5px !important;
    -webkit-appearance: none;
    border: 1px solid #b6bbc8;
}

.gform_wrapper input.button {
    width: 100% !important;
    background: var(--main-color);;
    border: none !important;
    padding: 13px !important;
    color: #fff;
    font-family: 'Oswald-SemiBold';
    font-size: 16px;
}

@media only screen and (min-width: 768px) {
    .gform_wrapper input.button {
        width: 50% !important;
    }
}

.newslatter {
    margin: auto;
    width: 100%;
    padding: 0 15px;
}

@media only screen and (min-width: 1200px) {
    .newslatter {
        width: 1000px;
    }
}

.reference-news .newslatter {
    width: 100%;
}


/* FOOTER*/

footer {
    background: #333743;
    padding-top: 50px;
    border-top: 4px solid #fff;
}

footer span {
    font-family: 'Mallory-ExtraLight';
}

footer h2,
span {
    color: #fff;
}

.f-contact span a,
p {
    display: block;
    color: #fff;
    font-family: 'Mallory-Light';
    font-size: 15px;
    margin: 0;
}

.f-contact span {
    /* margin-top: 20px; */
    display: block;
}

.f-contact li {
    width: 300px;
    padding: 30px 50px;
}

@media only screen and (max-width: 768px) {
    .f-contact li {
        padding: 10px 50px;
        width: 100%;
    }

    .menu-toggle {
        width: 40px;
    }
}

footer .social {
    padding: 30px 0 100px;
    margin: 0;
}

@media only screen and (min-width: 768px) {
    footer .social {
        padding: 50px 0 100px;
    }
}

.fotter-middle {
    background: #272b37;
    position: relative;
}

.fotter-middle {
    padding: 20px 0;
}

.fotter-bottom {
    background: #272b37;
    padding: 20px 0;
}

.top {
    position: relative;
}

.top::before {
    content: '';
    background: url(../images/top.png);
    height: 50px;
    width: 190px;
    background-size: 100% 100%;
    right: -44px;
    top: -66px;
    z-index: 3;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top::after {
    position: absolute;
    content: '';
    background: url(../images/top-arrow.png);
    height: 16px;
    width: 30px;
    background-size: 100% 100%;
    transform: translate(-50%, -50%);
    z-index: 3;
    left: 50%;
    bottom: 40px;
}

.under-footer {
    padding: 10px 0;
}

@media only screen and (min-width: 768px) {
    .under-footer {
        padding: 15px 0;
    }
}

.under-footer p {
    color: #333743;
    font-size: 13px
}


/* CONTACT US*/

.contact {
    padding-top: 80px;
}

@media only screen and (min-width: 768px) {
    .contact {
        padding-top: 100px;
    }
}

.contact-wrap {
    background: #272b37;
}

.contact-wrap p {
    color: #8a90a4;
}

.contact-wrap h2 {
    color: #fff;
    margin-bottom: 0;
}

.contact-us {
    padding: 50px 0;
}

@media only screen and (min-width: 768px) {
    .contact-us {
        padding: 80px 0;
    }
}

#input_2_1,
#input_2_6,
#input_4 {
    background: #333743 !important;
    border: none;
    font-family: Mallory-Light;
    color: #fff !important;
    width: 95% !important;
}

@media only screen and (min-width: 768px) {
    #input_2_1,
    #input_2_6 {
        width: 51% !important;
    }
}

.gform_wrapper textarea {
    background: transparent;
    border-bottom: 1px solid #333743 !important;
    font-family: Mallory-Light !important;
    border: none;
    width: 51% !important;
    color: #8a90a4 !important;
}

.gform_wrapper textarea.medium {
    height: 50px !important;
}

@media only screen and (max-width: 768px) {
    .gform_wrapper textarea.medium {
        width: 95% !important;
    }
}

#gform_submit_button_2 {
    width: 95% !important;
}

@media only screen and (min-width: 768px) {
    #gform_submit_button_2 {
        width: 50% !important;
    }
}

#gform_confirmation_message_2 {
    font-family: 'Mallory-Light';
    color: #8a90a4 !important;
    margin: 10px 0;
    text-transform: uppercase;
}

#gform_confirmation_message_1 {
    font-family: 'Mallory-Light';
    color: #8a90a4 !important;
}

.gform_wrapper div.validation_error {
    font-family: 'Mallory-Light';
    color: #8a90a4 !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gform_wrapper li.gfield.gfield_error,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background: transparent !important;
    margin: 0 !important;
    border: none !important;
}

.gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper li.gfield_error textarea {
    border: none !important;
}

.gform_wrapper .validation_message {
    font-family: 'Mallory-Light';
    color: #8a90a4 !important;
}

.contact-us span {
    font-family: 'Mallory-Medium';
    color: #fff;
    margin-right: 10px;
}

.contact-us ul li {
    color: #dfe0e1;
    margin-bottom: 20px;
    font-family: 'Mallory-Light';
}

.newslatter-1 {
    margin: auto;
    width: 100%;
    padding: 50px 0;
}


/* Interesting-location*/

.interesting-location-img {
    background: url(../images/bus.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
}

@media only screen and (min-width: 768px) {
    .interesting-location-img {
        height: 700px;
    }
}

.main-banner {
    background: url(../img/home/home-back.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    padding-top: 150px;
}

.main-banner-projekti {
    background: url(../img/raska/kompas_24.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    padding-top: 150px;
}

@media only screen and (min-width: 768px) {
    .main-banner {
        height: 500px;
    }

    .main-banner-projekti {
        height: 500px;
    }
}

.main-banner h2 {
    margin-bottom: 0;
}

.main-banner-projekti {
    margin-bottom: 0;
}

.baner-text {
    font-family: 'Kalam-Regular';
    width: 100%;
    color: #e0dfdf;
}

@media only screen and (min-width: 768px) {
    .baner-text {
        font-size: 30px;
        width: 700px;
    }
}

.main-banner h2 {
    color: #fff;
}

.main-banner-projekti {
    color: #fff;
}


/* OGLASi */

.blog_wrap {
    padding-right: 0;
}

@media only screen and (min-width: 768px) {
    .blog_wrap {
        padding-right: 50px;
    }
}

.blog_wrap p {
    color: #333743;
    font-size: 17px;
    font-family: 'Mallory-light';
}

.blog_wrap h3 {
    font-size: 17px;
    margin-bottom: 20px;
    font-family: 'Mallory-light';
    color: #333743 !important;
}

@media only screen and (min-width: 768px) {
    .blog_wrap h3 {
        font-size: 20px;
    }
}

.blog_link {
    color: #333743;
}

.date-1 {
    margin-bottom: 20px;
    font-family: 'Mallory-Medium';
    font-size: 16px;
    color: #adadad
}

.blog_link {
    font-family: 'Mallory-Medium';
    margin-top: 20px;
    display: block;
}

.blog_img img {
    display: block;
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.blog_wrap .blog-more {
    margin: 50px 0;
}

.blog-content-1 {
    padding: 20px 15px 0;
}

@media only screen and (min-width: 768px) {
    .blog-content-1 {
        padding: 50px;
        border-bottom: 1px solid #d9d9d9;
    }
}

.single-blog img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

@media only screen and (min-width: 768px) {
    .single-blog img {
        object-fit: contain;
        height: 300px;
    }
}

@media only screen and (min-width: 1200px) {
    .single-blog img {
        height: 400px;
        object-fit: contain;
    }
}

.blog-single h3 {
    margin-bottom: 20px;
    font-size: 17px;
}

@media only screen and (min-width: 768px) {
    .blog-single h3 {
        font-size: 20px;
    }
}

.blog-single p {
    font-family: 'Mallory-light';
    color: #333743 !important;
}

.blog-single h3 {
    font-family: 'Mallory-light';
    color: #333743 !important;
}

.blog-single {
    margin-bottom: 20px;
}

.arL span,
.arR span {
    font-family: 'Oswald-Medium';
    color: #adadad;
    padding: 10px;
    display: inline-block;
    font-weight: normal !important;
}

.prev_next {
    margin: 0 50px;
}

@media only screen and (min-width: 768px) {
    .prev_next {
        position: relative;
        top: -50px;
    }
}

@media only screen and (max-width: 768px) {
    .prev_next {
        justify-content: center;
    }
}

.arL a,
.arR a {
    color: #adadad;
}


/* Interesting-location*/

.interesting-location {
    padding-top: 80px;
}

@media only screen and (max-width: 768px) {
    /*.interesting-location {*/
    /*    padding-top: 140px;*/
    /*}*/
}

@media only screen and (min-width: 1100px) {
    /*.interesting-location {*/
    /*    padding-top: 200px;*/
    /*}*/
}

.interesting-location .owl-carousel .owl-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

@media only screen and (min-width: 768px) {
    .interesting-location .owl-carousel .owl-item img {
        height: 700px;
    }
}

.interesting-location .owl-dots,
.interesting-location .owl-nav {
    display: none;
}

.interesting-location .owl-stage {
    display: block;
}

.interesting-location p {
    font-family: 'Mallory-Light';
    color: #c2c2c2;
    margin-top: 20px;
}

@media only screen and (min-width: 768px) {
    .interesting-location p {
        width: 90%;
    }
    .interesting-location h3 {
        margin: 10px 0 0 0;
    }
}


/* AUTOBUSI*/

.autobusi {
    padding-top: 80px;
}

@media only screen and (min-width: 768px) {
    .autobusi {
        padding-top: 100px;
    }
}

.bus-wrap {
    padding: 40px 0;
}

.autobusi .owl-carousel .owl-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.autobusi .owl-dots,
.autobusi .owl-nav {
    display: none;
}

.autobusi .owl-stage {
    display: block;
}

.bus-img {
    background: url(../images/bus.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
}

@media only screen and (min-width: 768px) {
    .bus-img {
        height: 700px;
    }
}

@media only screen and (min-width: 768px) {
    .bus-bgd {
        padding: 0 50px;
    }
}

.bus-single {
    text-align: center;
}

@media only screen and (min-width: 1200px) {
    .bus-single img {
        width: 28%;
    }
}

.bus-single p {
    width: 100%;
    color: #333743;
    margin: auto;
    padding-bottom: 50px;
}

@media only screen and (min-width: 768px) {
    .bus-single p {
        width: 80%;
    }
}

.autobusi span {
    margin-bottom: 20px;
    display: block;
    color: #fff;
    font-size: 23px;
    font-family: 'Mallory-Bold';
    text-transform: uppercase;
}

.autobusi p {
    font-family: 'Mallory-Light';
    color: #c2c2c2;
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    .autobusi p {
        width: 500px;
    }
}

.autobusi ul li {
    font-family: 'Mallory-Light';
    color: #c2c2c2;
    font-size: 15px;
    margin-bottom: 15px;
}

.autobusi ul {
    padding-right: 0;
}

@media only screen and (min-width: 768px) {
    .autobusi ul {
        padding-right: 100px
    }
}

.links-bgd {
    background: #333743;
}

.links-bgd li a {
    margin: 0;
}

.bord-nav-1 .links-1 a {
    width: 150px;
    color: #fff;
}

.bord-nav-1 .links-1 a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 0 153px;
    border-color: transparent transparent transparent transparent;
    bottom: 50px;
    left: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.bord-nav-1 .links-1 a:hover {
    background-color: var(--main-color);;
}

.bord-nav-1 .links-1 a:hover::after {
    border-color: transparent transparent transparent var(--main-color);;
}

.bord-nav-1 .links-1 a:hover {
    box-shadow: none;
}


/* SINGLE PAGE*/

.single-padding {
    padding: 20px 15px 20px;
}

@media only screen and (min-width: 768px) {
    .single-padding {
        padding: 50px 30px;
    }
}

.single-wrap img {
    display: block;
}

@media only screen and (min-width: 768px) {
    .single-right-wrap {
        padding: 20px;
    }
}

.baner-full {
    position: relative;
    padding-top: 100px;
    background: #333743;
}

@media only screen and (max-width: 768px) {
    .baner-full {
        display: none !important;
    }
}

.baner-full img {
    object-fit: contain;
    display: block;
    width: 100%;
}

.single_left {
    text-align: center;
    background: #333743;
}

.baner-full h1 {
    padding: 0 15px;
    margin-bottom: 0;
}

.plus-minus-toggle {
    cursor: pointer;
    height: 21px;
    position: relative;
    width: 100px;
}

.plus-minus-toggle:before,
.plus-minus-toggle:after {
    background: #333743;
    content: "";
    height: 3px;
    left: 85px;
    position: absolute;
    top: 8px;
    width: 11px;
    transition: transform 500ms ease;
}

.plus-minus-toggle:after {
    transform-origin: center;
}

.plus-minus-toggle.collapsed:after {
    transform: rotate(90deg);
}

.plus-minus-toggle.collapsed:before {
    transform: rotate(180deg);
}


/*.baner-full div {
  position: absolute;
  top: 55%;
  left: 5%;
  -webkit-transform: translate(-50%,-55%);
  -ms-transform: translate(-50%,-55%);
  transform: translate(-50%,-55%);
  text-align: center;
}*/

.baner-full span {
    color: #fff;
    font-family: 'Mallory-Medium';
    text-transform: uppercase;
}

.single-right-wrap {
    color: #333743;
}

.single-right-wrap h1 {
    color: #333743;
    font-size: 1.5em;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
    .single-right-wrap h1 {
        font-size: 2em;
    }
}

.single-right-wrap {
    color: #aaaaaa;
    font-family: 'Oswald-SemiBold';
}

.single-category {
    color: #333743;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.show-more {
    display: none;
}

.opsirnije {
    margin-top: 10px;
    display: block;
    position: relative;
}

.single-list span {
    font-family: 'Mallory-Medium';
    color: #333743;
}

.single-list li {
    margin-bottom: 20px;
}

.single-list p {
    color: #a1a1a1;
}


/* GALERIJA*/

.ref_gallery {
    margin-left: -15px;
    margin-right: -15px;
    text-align: center;
    padding: 107px 0 25px;
    background: #333743;
    margin-top: 0;
}

@media only screen and (min-width: 768px) {
    .ref_gallery {
        padding: 30px 0;
    }
}

@media only screen and (max-width: 768px) {
    .ref_gallery {
        padding: 37px 0 25px;
    }
}


.ref_gallery-1 {
    padding: 25px 0 !important;
}

@media only screen and (min-width: 768px) {
    .ref_gallery-1 {
        padding: 50px 0 !important;
    }
}

.ref_gallery-1 h2 {
    display: block !important;
}

.ref_gallery h2 {
    display: none;
    color: #fff;
}

.ref_gallery h3 {
    padding-bottom: 10px;
}

@media only screen and (min-width: 768px) {
    .ref_gallery h2 {
        display: block;
    }
}

#galerija-slider {
    width: 70%;
    margin: auto;
    background: #272b37;
}

.slick-slide img {
    display: block;
    height: 200px;
    width: 100%;
    object-fit: cover;
    padding: 10px;
}

.slick-list {
    z-index: 55;
}

.gallery-wrap {
    overflow: hidden;
}

.mb-gallery .ref_gallery {
    background: transparent;
}

.fancybox-1 {
    width: 50%;
}

.newslatter-line {
    width: 100%;
    padding: 30px 0;
    background: #333743;
}


/* ABOUT US*/

.about_us {
    padding-top: 80px;
}

@media only screen and (min-width: 1024px) {
    .about_us {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 1440px) {
    .about_us {
        padding-top: 80px;
    }
}

@media screen and (min-width: 1900px) {
    .about_us {
        padding-top: 120px;
    }
}




/*.about_us_img {
  background: url(../images/banner-img-1.jpg);
  background-size: cover;
}*/

.about_us ul {
    margin: 10px 0;
}

.about_us ul li {
    font-family: 'Mallory-Light';
    color: #c2c2c2;
    margin: 5px 0;
    position: relative;
    padding-left: 20px;
}

.about_us ul li::before {
    content: '*';
    position: absolute;
    left: 0;
    top: 3px;
}

.about_us h2 {
    color: #fff;
}

.about_us_wrap {
    background: #333743;
    padding: 0 20px;
}

.about_us_wrap p {
    font-family: 'Mallory-Light';
    color: #c2c2c2;
}

.tabs-wrap {
    width: 100%;
    margin: auto;
}


/* CUSTOM GRID CSS*/

@media only screen and (max-width: 768px) {
    .order-1 {
        order: 1;
    }

    .order-2 {
        order: 2;
    }
}

.text-center {
    text-align: center;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.space-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.align-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-end {
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
}

.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.center-all {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .center-all-1 {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.u-full {
    width: 100%;
}

.u-1of2 {
    width: 50%;
}

.u-1of3 {
    width: 33.3333%;
}

@media (min-width: 768px) {
    .u-med-full {
        width: 100%;
    }

    .u-med-2of3 {
        width: 66.6667%;
    }

    .u-med-1of2 {
        width: 50%;
    }

    .reference-news .flex-wrap .u-med-1of2 {
        width: 50%;
        margin: 0 auto;
    }

    .vision .flex-wrap .u-med-1of2 {
        width: 50%;
        margin: 0 auto;
    }

    .u-med-1of3 {
        width: 33.3333%;
    }

    .u-med-1of4 {
        width: 25%;
    }

    .reference-news .flex-wrap .wrapper img {
        width: 55%;
    }

    #logo-sk-show {
        width: 80%;
    }
}

@media (min-width: 1190px) {
    .u-large-full {
        width: 100%;
    }

    .u-large-1of2 {
        width: 50%;
    }

    .u-large-1of3 {
        width: 33.3333%;
    }

    .u-large-2of3 {
        width: 66.6667%;
    }

    .u-large-1of4 {
        width: 25%;
    }

    .u-large-3of4 {
        width: 75%;
    }

    .u-large-1of5 {
        width: 20%;
    }

    .u-large-4of5 {
        width: 80%;
    }
}


/*  Poslednje izmene */

.video {
    width: 90%;
    margin: 0px auto;
}

.desktop-video {
    display: none;
}

.mobile-video {
    display: none;
}

@media only screen and (max-width: 768px) {
    .desktop-video {
        display: none !important;
    }

    .mobile-video {
        display: block;
    }
}

.mobile-video-drugi {
    display: none;
}

.postid-1061 video {
    /*max-width: 400px;*/
    width: 100%;
    margin: 0px auto;
}

@media only screen and (max-width: 768px) {
    .desktop-video-drugi {
        display: none !important;
    }

    .mobile-video-drugi {
        display: block;
    }
}

small {
    font-size: 15px;
}


/* Kari */

.reference-news .wrapper > p {
    color: #000;
    font-size: 22px;
}

.vision .wrapper > p {
    color: #000;
    font-size: 22px;
}

.about_us .flex-wrap .center-all {
    border-bottom: 2px solid var(--main-color);
}

.about_us .about_us_img {
    background-color: #333743;
    border-bottom: 2px solid var(--main-color);
    padding: 30px 0;
}
@media only screen and (min-width: 1024px) {
    .about_us .about_us_img {
        padding: 50px 0;
    }

    .about_us .flex-wrap {
        padding: 100px 0 0 0;
    }

}

.about_us .flex-wrap {
    padding: 120px 0 0 0;
}

@media only screen and (max-width: 768px) {
    .about_us .flex-wrap {
        padding: 60px 0 0 0;
    }

    .about_us .about_us_img {
        padding: 70px 0 50px 0;
    }
}

.about-us-sesction {
    padding: 30px 0 30px 0;
}

#menu-social-menu {
    display: flex;
    justify-content: center;
}

.contact {
    padding-top: 202px;
}

@media only screen and (max-width: 768px) {
    .contact {
        padding-top: 137px;
    }
}

@media only screen and (min-width: 1024px) {
    .contact {
        padding-top: 182px;
    }
}

@media only screen and (min-width: 1440px) {
    .contact {
        padding-top: 166px;
    }
}


.gform_wrapper.gravity-theme .gform_footer {
    justify-content: center;
}

.contact form {
    margin: 30px 0
}


/* Pagination */

.pagination .prev:hover,
.pagination .next:hover {
    color: transparent;
    transition: all 0.3s ease-in-out;
}

.pagination .page-numbers {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    margin: 0 5px;
}

.pagination .page-numbers.current {
    color: var(--main-color);
    font-weight: 900;
    padding: 5px;
    font-size: 18px;
}

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 25px 0px;
}

.pagination i {
    color: var(--main-color);
}

/* Hvala vam */

.thank-you .thank-you-box {
    text-align: center;
    padding: 15% 0 0 0;
    width: 100%;
}

.thank-you .thank-you-box > p {
    color: var(--main-color);
    font-family: 'Mallory-Light';
    font-size: 36px;
    padding: 10px 0;
}

@media only screen and (max-width: 768px) {
    .thank-you .thank-you-box {
        padding: 50% 0 0 0;
    }

    .thank-you .thank-you-box > p {
        font-size: 24px;
    }

}

.lokacije-text-wrap {
    display: flex;
    justify-content: center;
    padding: 0 50px;
    background: #333743;
}

