@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@300;400;500;700&display=swap&subset=latin-ext');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap&subset=latin-ext');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap&subset=latin-ext');
@import url('https://fonts.googleapis.com/css2?family=Yellowtail&display=swap');

body {
    margin: 0px;
    padding: 0px;
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #0D0D0D;
    color: #fff;
}

h1 {
    font-size: 64px;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
    padding: 0px;
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    /* line-height: 46px; */
}

h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4;
}

h4 {
    font-size: 18px;
    line-height: 1.4;
}

p {
    line-height: 1.7;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

a, a:hover {
    text-decoration: none;
}

.logo {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}


.logo img {
    margin-top: 25px;
    height: 110px;
}

.logo .sticky-logo {
    display: none;
}

.logo svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.logo span {
    font-weight: 500;
    padding-left: 50px;
    font-size: 20px;
}

.logo span::before {
    position: absolute;
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    left: 55px;
    top: calc( 50% + 1px);
    background: #fff;
}

::-moz-selection {
    color: #fff;
    background: #1d71b8;
}

::selection {
    color: #fff;
    background: #1d71b8;
}

.container_min {
    width: 900px;
    margin: 0 auto;
}

.container_full_width {
    margin: 0 auto;
    margin-left: 150px;
    margin-right: 50px;
}

.nav_pages {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
}

.nav_pages span {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    background: #222222;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer;
    color: #fff;
}

.nav_pages span:hover {
    background: #15558c;
}

.nav_pages span.active {
    background: #1d71b8;
    color: #fff;
}

/*	----------------------------------------------------
	------ 2. MENU
	---------------------------------------------------- */
/*------ 2.1 MAIN_MENU */
.navbar-toggler span {
    color: #fff;
}

.social a {
    padding: 0px 15px;
    font-size: 16px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.social a:first-child {
    padding-left: 0px;
}

.w_menu, .full_menu {
    position: absolute;
    z-index: 100;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    padding: 0px;
    height: 100px;
    position: relative;
    z-index: 5;
}




.navbar .menu_b {
    -webkit-box-flex: inherit;
    flex-grow: inherit;
    height: 100%;
}

.navbar .menu_b .navbar-nav {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 0px;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}


body.other .navbar {
    height: 127px;
}

body.other .logo img {
    margin-top: 0px;
    height: 90px;
}

.navbar li {
    list-style: none;
    padding: 0px 15px;
    height: 100%;
}

.navbar li:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
}

.navbar li:hover .dropdown-menu:before {
    background: #222222;
    -webkit-animation: anm 0.5s cubic-bezier(0.8, 0, 0.18, 1) both;
    animation: anm 0.5s cubic-bezier(0.8, 0, 0.18, 1) both;
    z-index: -1;
}

.navbar li:hover .dropdown-menu:after {
    background: #151515;
    -webkit-animation: anm 1s cubic-bezier(0.8, 0, 0.18, 1) both;
    animation: anm 1s cubic-bezier(0.8, 0, 0.18, 1) both;
    z-index: -1;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.navbar li:hover .full_menu {
    -webkit-animation: anm2 0.7s ease-in-out;
    animation: anm2 0.7s ease-in-out;
    opacity: 1;
}

.navbar li:hover span, .navbar li:hover * > a {
    -webkit-animation: anm 0.5s ease-in-out;
    animation: anm 0.5s ease-in-out;
}

.navbar li.active > a:after {
    content: "";
    position: absolute;
    bottom: 0;
    background-color: #1d71b8;
    display: block;
    height: 2px;
    width: 100%;
    -webkit-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
}

.navbar a {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    position: relative;
    height: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    /* border-right: 1px solid rgba(255, 255, 255, 0.1); */
}

.navbar a i {
    padding-left: 10px;
    font-size: 10px;
}

.navbar a:hover {
    color: #1d71b8;
}

.navbar .dropdown-menu a, footer a {
    color: #838383;
    margin-bottom: 15px;
    font-size: 15px;
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
}

.navbar .dropdown-menu li:last-child a, footer a:last-child {
    margin-bottom: 0px;
}

.navbar .dropdown-menu a:hover, footer a:hover {
    color: #fff;
    padding-left: 15px;
}

.navbar .dropdown-menu a:hover::before, footer a:hover::before {
    opacity: 1;
    width: 10px;
}

.navbar .dropdown-menu a:before, footer a:before {
    content: '';
    display: block;
    width: 0px;
    height: 1px;
    background: #1d71b8;
    position: absolute;
    top: calc( 50% - 1px);
    left: 0;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
}

/*------ 2.2 DROPDOWN */
.dropdown-menu {
    position: absolute;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    padding: 40px;
    overflow: hidden;
}

.dropdown-menu a {
    font-size: 15px;
    font-family: 'roboto';
    text-transform: none;
    display: block;
}

.dropdown-menu::after, .dropdown-menu::before {
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    right: 0px;
    width: 100%;
    z-index: 1;
}

/*------ 2.3 DROPDOWN_BIG */
.w_dropdown {
    left: 0;
    right: 0;
    width: 100%;
    padding: 0px;
    display: -webkit-box;
    display: flex;
    width: auto;
    flex-wrap: wrap;
}

.w_dropdown h3 {
    color: #fff;
}

.w_dropdown span {
    padding: 30px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    flex-wrap: wrap;
    width: calc( 100% / 4);
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.w_dropdown span:last-child {
    border-right: 0px;
}

.w_dropdown span h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    padding-bottom: 20px;
}

.w_dropdown span a {
    height: auto;
    font-size: 14px;
}

.w_dropdown .banner {
    padding: 0px;
    height: 280px;
}

.w_dropdown .banner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*------ 2.4 LEFT_MENU */
.left_menu {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100px;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    background: #0D0D0D;
    box-sizing: border-box;
}

.left_menu .logo {
    position: absolute;
    top: 50px;
}

.left_menu .menu_b .navbar-nav {
    height: auto;
    display: -webkit-box;
    box-sizing: border-box;
    -webkit-transform: rotate(-90deg) translate3d(200px, 0, 0);
    webkit-backface-visibility: hidden;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    position: absolute;
    right: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    padding-right: 200px;
    top: 200px;
    height: auto;
    display: flex;
}

.left_menu .menu_b .navbar-nav .navbar-nav {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
}

.left_menu .menu_b .navbar-nav li {
    display: -webkit-box;
    display: flex;
    height: 100px;
}

.left_menu .menu_b .navbar-nav li:hover .dropdown-menu:before {
    -webkit-animation: anm_left 0.5s cubic-bezier(0.8, 0, 0.18, 1) both;
    animation: anm_left 0.5s cubic-bezier(0.8, 0, 0.18, 1) both;
}

.left_menu .menu_b .navbar-nav li:hover .dropdown-menu:after {
    -webkit-animation: anm_left 1s cubic-bezier(0.8, 0, 0.18, 1) both;
    animation: anm_left 1s cubic-bezier(0.8, 0, 0.18, 1) both;
}

.left_menu .menu_b .navbar-nav li:hover .full_menu {
    -webkit-animation: anm2_left 0.7s ease-in-out;
    animation: anm2_left 0.7s ease-in-out;
    opacity: 1;
}

.left_menu .menu_b .navbar-nav li:hover span, .left_menu .menu_b .navbar-nav li:hover * > a {
    -webkit-animation: anm_left 0.9s ease-in-out;
    animation: anm_left 0.9s ease-in-out;
}

.left_menu .menu_b .navbar-nav li:hover .w_dropdown * > a {
    -webkit-animation: none !important;
    animation: none !important;
}

.left_menu .other-nav {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100px;
    height: auto;
    display: block;
}

.left_menu .other-nav .other_nav {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0px;
    margin: 0px;
    border: 0;
}

.left_menu .other-nav .other_nav a {
    margin: 0 auto;
    margin-bottom: 30px;
}

.left_menu .other-nav .other_nav a:last-child {
    margin-bottom: 0;
}

.left_menu .phone_num {
    display: none;
}

.left_menu .social_menu_left {
    position: absolute;
    bottom: 50px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    height: auto;
    box-sizing: border-box;
    -webkit-transform: rotate(-90deg) translate3d(12px, 0, 0);
    webkit-backface-visibility: hidden;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    position: absolute;
    right: 100px;
    flex-direction: row-reverse;
}

.left_menu .social_menu_left a {
    position: relative;
    display: -webkit-box;
    display: flex;
    height: 100px;
    padding: 0px 20px;
    cursor: pointer;
    width: 20px;
    opacity: 0.3;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.left_menu .social_menu_left a:hover {
    opacity: 1;
}

.left_menu .social_menu_left a:after {
    content: "";
    height: 2px;
    width: 0%;
    display: block;
    background: #1d71b8;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.left_menu .social_menu_left a:hover:after {
    content: "";
    height: 2px;
    width: 100%;
    display: block;
    background: #1d71b8;
    position: absolute;
    bottom: 0;
    left: 0;
}

.left_menu a, .left_menu li {
    height: auto;
}

.left_menu .dropdown-menu {
    position: fixed;
    z-index: 998;
    width: 300px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    background: none;
    box-shadow: none;
    padding: 40px;
    box-sizing: border-box;
    -webkit-transform: rotate(90deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    top: 100px;
    margin-left: 60px;
}

.left_menu .dropdown-menu a {
    font-size: 15px;
}

.left_menu .dropdown-menu a:hover {
    color: white !important;
}

.left_menu .dropdown-menu span {
    width: 100%;
    box-sizing: border-box;
    border-right: none;
    padding: 0px;
    padding-bottom: 40px;
}

.left_menu .dropdown-menu .full_menu {
    right: 0;
    bottom: 0;
    top: auto;
    height: 300px;
    width: 100%;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.left_menu .w_dropdown {
    left: 100%;
    height: 100vh;
    margin-left: 0px;
}

/*------ 2.5 OTHER */
.call_block {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 0px 30px;
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    position: relative;
}

.call_block .phone_num {
    padding-top: 5px;
    font-size: 18px;
    font-weight: 500;
}

.other-nav {
    height: 100%;
    display: -webkit-box;
    display: flex;
}

.other_nav {
    display: -webkit-box;
    display: flex;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0px;
    padding: 0 23px !important;
}

.other_nav:hover span {
    -webkit-animation: none !important;
    animation: none !important;
}

.other_nav a {
    margin-right: 30px;
}

.other_nav a i {
    padding-left: 0px;
}

.other_nav a i::before {
    font-size: 15px;
}

.other_nav a:last-child {
    margin-right: 0px;
}

.other_nav .shop_icon {
    position: relative;
}

.other_nav .shop_icon span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #1d71b8;
    color: #000;
    display: -webkit-box;
    display: flex;
    font-size: 10px;
    font-weight: bold;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: absolute;
    right: -10px;
    margin-top: -10px;
}

.phone_num {
    height: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    margin-left: 20px;
}

.full_menu {
    padding-left: 50px;
    padding-right: 50px;
    border: 0;
}

.full_menu .other_nav {
    border: 0;
}

/*------ 2.6 STYCKY */
.menu_sticky {
    position: fixed !important;
    top: -100px;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    background: #0D0D0D;
    border-bottom: none;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.menu_sticky .navbar {
    height: 80px;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.menu_sticky .navbar img {
    height: 40px;
}

.menu_sticky .navbar li.active::after, .menu_sticky .navbar li::after {
    margin-top: 28px;
}

.headroom {
    will-change: transform;
    -webkit-transition: -webkit-transform 200ms linear;
    transition: -webkit-transform 200ms linear;
    transition: transform 200ms linear;
    transition: transform 200ms linear, -webkit-transform 200ms linear;
}

.headroom--pinned {
    display: block;
    top: -1px;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.headroom--unpinned {
    top: -1px;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0);
}

.headroom--top {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

/*------ 2.7 KEYFRAMES */
@-webkit-keyframes anm {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}
@keyframes anm {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@-webkit-keyframes anm2 {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        opacity: 1;
    }
}

@keyframes anm2 {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        opacity: 1;
    }
}

@-webkit-keyframes anm_left {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes anm_left {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes anm2_left {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes anm2_left {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        opacity: 1;
    }
}

/*	----------------------------------------------------
	------ 3. LOAD_IMAGES
	---------------------------------------------------- */
.rn_surface {
    position: relative;
    overflow: hidden;
}

.rn_surface::after, .rn_surface::before {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.rn_surface::after {
    background: #222222;
    z-index: 1;
}

.touch .rn_surface::after, .touch .rn_surface::before {
    visibility: hidden;
}

.rn_surface.animated::before {
    background: #303030;
    -webkit-animation: rn_surface 1.5s cubic-bezier(0.8, 0, 0.18, 1) both;
    animation: rn_surface 1.5s cubic-bezier(0.8, 0, 0.18, 1) both;
    z-index: 2;
}

.rn_surface.animated::after {
    -webkit-animation: rn_surfaceBack 1.5s cubic-bezier(0.8, 0, 0.18, 1) both;
    animation: rn_surfaceBack 1.5s cubic-bezier(0.8, 0, 0.18, 1) both;
}

@-webkit-keyframes rn_surface {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes rn_surface {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@-webkit-keyframes rn_surfaceBack {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes rn_surfaceBack {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@-webkit-keyframes rn_surface-vertical {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes rn_surface-vertical {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    50% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

/*	----------------------------------------------------
	------ 4. LOADING_PAGE
	---------------------------------------------------- */
#rn-preloader-wrap {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    display: -webkit-box;
    display: flex;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

#rn-preloader-wrap:before, #rn-preloader-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    background-color: #000000;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

#rn-preloader-wrap:after {
    left: auto;
    right: 0;
}

.icon_load {
    height: 30px;
    width: 24px;
    text-align: center;
    display: block;
    margin-bottom: 20px;
}

.icon_load svg path,
.icon_load svg rect {
    fill: #1d71b8;
}

.rn-preloaded:before, .rn-preloaded:after {
    -webkit-animation: rnPreloaderShatter 300ms ease-in-out 500ms forwards;
    animation: rnPreloaderShatter 300ms ease-in-out 500ms forwards;
}

.rn-preloader-cont {
    -webkit-transition: 0.7s !important;
    transition: 0.7s !important;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-animation: rnPreloaderZoomInOut 1s infinite;
    animation: rnPreloaderZoomInOut 1s infinite;
}

.rn-preloaded .rn-preloader-cont {
    opacity: 0;
}

@-webkit-keyframes rnPreloaderShatter {
    0% {
        width: 50%;
    }
    100% {
        width: 0%;
    }
}

@keyframes rnPreloaderShatter {
    0% {
        width: 50%;
    }
    100% {
        width: 0%;
    }
}

@-webkit-keyframes rnPreloaderZoomInOut {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50% {
        -webkit-transform: scale(1.3, 1.3);
        transform: scale(1.3, 1.3);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes rnPreloaderZoomInOut {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50% {
        -webkit-transform: scale(1.3, 1.3);
        transform: scale(1.3, 1.3);
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

/*	----------------------------------------------------
	------ 5. HEAD_TITLE
	---------------------------------------------------- */
.head_t .w_menu {
    position: relative;
    background: #000;
}

.title_head {
    background: url(../img/bg_head.jpg) center;
    background-size: cover;
    width: 100%;
    height: 440px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.title_head.jarallax {
}

.title_head h2 {
    font-size: 64px;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    z-index: 99;
}

.title_head p {
    max-width: 450px;
    padding-top: 10px;
    margin-bottom: 20px;
    z-index: 99;
    font-family: "Great Vibes", sans-serif;
    font-size: 34px;
    color: #fff;
    display: inline-block;
    padding: 15px;
    background: rgba(29, 113, 184, .5);
}

.title_head:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
}

/*	----------------------------------------------------
	------ 6. DIVIDERS
	---------------------------------------------------- */
.line_title {
    margin: 0 auto;
    width: 20px;
    fill: #fff;
    background-size: cover;
    display: block;
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
}

.line_title svg {
    width: 100%;
    height: 20px;
}

.line_title:before, .line_title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #1d71b8;
    display: block;
    top: 10px;
    -webkit-animation: line_animation  1s infinite ease;
    animation: line_animation  1s infinite ease;
}

.line_title:after {
    left: 30px;
}

.line_title:before {
    right: 30px;
}

@-webkit-keyframes line_animation {
    0% {
        width: 40px;
    }
    50% {
        width: 30px;
    }
    100% {
        width: 40px;
    }
}

@keyframes line_animation {
    0% {
        width: 40px;
    }
    50% {
        width: 30px;
    }
    100% {
        width: 40px;
    }
}

/*	----------------------------------------------------
	------ 7. BUTTONS
	---------------------------------------------------- */
.button_large, .button_medium, .button_small {
    font-family: "Roboto", sans-serif;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 35px;
    text-transform: capitalize;
    position: relative;
    border: 2px solid #1d71b8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    z-index: 4;
    font-weight: 500;
}

.button_large:after, .button_medium:after, .button_small:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    outline: 0px solid #1d71b8;
    z-index: -1;
    left: 0;
    top: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.button_large:before, .button_medium:before, .button_small:before {
    color: #fff;
    opacity: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    font-size: 10px;
    position: absolute;
    display: block;
    right: 0px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.button_large:hover, .button_medium:hover, .button_small:hover {
    /* padding-right: 40px; */
    /* padding-left: 20px; */
    color: #fff !important;
    text-decoration: none;
}

.button_large:hover:after, .button_medium:hover:after, .button_small:hover:after {
    outline: 35px solid #1d71b8;
    outline-offset: -35px;
}

.button_large:hover:before, .button_medium:hover:before, .button_small:hover:before {
    opacity: 1;
    right: 15px;
}

.button_large {
    padding: 20px 50px;
}

.button_large:hover {
    padding-left: 25px;
}

.button_large:before {
    font-size: 12px;
    top: 25px;
}

.button_medium {
    padding: 10px 35px;
    font-size: 14px;
    font-weight: 400;
}

.button_medium:hover {
    /* padding-left: 25px; */
}

.button_medium:before {
    font-size: 12px;
    top: 12px;
}

.button_small {
    padding: 10px 35px;
    font-size: 13px;
}

.button_small:hover {
    padding-left: 25px;
}

.button_small:before {
    font-size: 12px;
    top: 11px;
}

@-webkit-keyframes button_a {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes button_a {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@-webkit-keyframes hover_call {
    0% {
        left: 0px;
    }
    69% {
        left: -2px;
    }
    70% {
        left: 2px;
    }
    100% {
        left: 0px;
    }
}

@keyframes hover_call {
    0% {
        left: 0px;
    }
    69% {
        left: -2px;
    }
    70% {
        left: 2px;
    }
    100% {
        left: 0px;
    }
}

#button_scroll {
    position: fixed;
    bottom: 10px;
    right: 20px;
    height: 50px;
    width: 50px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    font-size: 14px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

#button_scroll:hover {
    border-top: 2px solid #1d71b8;
    cursor: pointer;
}

#button_scroll:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f062";
    color: #fff;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    position: absolute;
}

#button_scroll.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

#button_scroll.show:after {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

/*	----------------------------------------------------
	------ 8. SLIDER
	---------------------------------------------------- */
/*------ 8.1 MAIN_SLIDER */
.slider_f {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: flex;
}

.slider_f .video_block iframe {
    opacity: .35;
}

.slider {
    background-size: cover !important;
    background-position: bottom center !important;
    height: calc(100vh);
    color: #fff;
    text-align: center;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 150%;
    opacity: 0;
}

.slider:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    -webkit-transition: 1.5s;
    transition: 1.5s;
    background: black;
}

.sld_f_s {
    width: 100%;
    height: 100%;
}

.slider_f .slide_t {
    color: #fff;
    position: relative;
    display: -webkit-box;
    display: flex;
    width: 100%;
    text-align: center;
}

.img_parallax {
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.sld_f {
    height: calc(100vh - 150px);
    height: 100vh;
    top: 0px;
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: absolute;
    opacity: 1;
    -webkit-animation: sld_f 0.3s 1 ease-in-out;
    animation: sld_f 0.3s 1 ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.sld_f.active .slider {
    opacity: 1;
}

.sld_f.active .slider:after {
    background: rgba(0, 0, 0, 0.5);
}

.sld_f.active .sld_f_s {
    z-index: 2;
    opacity: 1;
    -webkit-animation: slide_anim 1.5s 1 ease-in-out;
    animation: slide_anim 1.5s 1 ease-in-out;
}

.sld_f.active {
    opacity: 1;
    -webkit-animation: none;
    animation: none;
}

.animation_bg {
    -webkit-animation: slide_anim_scale 20s infinite linear !important;
    animation: slide_anim_scale 20s infinite linear !important;
}

.slider_f .slide_t .text_s {
    margin-bottom: 150px;
    position: absolute;
    z-index: 99;
}

.slider_f .slide_t .text_s h2 {
    font-size: 110px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0px;
    padding-top: 15px;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    position: relative;
    width: 800px;
    line-height: 120px;
}

.slider_f .slide_t .text_s span {
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider_f .slide_t .text_s a {
    margin-top: 50px;
}

.slider_f .slide_t .sld_f.active .text_s span {
    opacity: 1;
    top: -10px;
}

.slider_f .slide_t .sld_f.active .text_s h2 {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.slider_f .slide_t span.b_scroll {
    color: #fff;
    position: absolute;
    bottom: 15vh;
    width: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 5;
}

.slider_f .slide_t span.b_scroll .b_scroll_text {
    -webkit-writing-mode: tb-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: tb-rl;
    margin-bottom: 20px;
    margin-left: 1px;
    letter-spacing: 5px;
    font-size: 10px;
    text-transform: uppercase;
}

.slider_f .slide_t .b_scroll i {
    display: block;
    fill: #fff;
    -webkit-animation: mouse  3s infinite ease-in-out;
    animation: mouse  3s infinite ease-in-out;
    position: absolute;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.slider_f .slide_t .b_scroll i svg {
    width: 15px;
    height: 21px;
}

.slider_f .slide_t .b_scroll i:hover {
    opacity: 0.5;
}

/*------ 8.2 ARROWS */
.arrows {
    position: absolute;
    max-width: 1170px;
    height: 47px;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: calc(50% - 50px);
    z-index: 99;
}

.arrows .arrow_l, .arrows .arrow_r {
    opacity: 0.5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 45px;
    height: 100%;
    position: absolute;
    display: block;
    top: 0;
    cursor: pointer;
}

.arrows .arrow_l:before, .arrows .arrow_r:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    width: 45px;
    position: absolute;
    display: block;
    top: 0;
    padding: 20px 0px;
}

.arrows .arrow_l:hover, .arrows .arrow_r:hover {
    opacity: 1;
}

.arrows .arrow_r:hover {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.arrows .arrow_l:hover {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
}

.arrows .arrow_r:before {
    content: "\f054";
    border-right: 2px solid #fff;
}

.arrows .arrow_l:before {
    content: "\f053";
    border-left: 2px solid #fff;
}

.arrows .arrow_r {
    right: 0px;
}

/*------ 8.3 LINES */
.lines {
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;

    margin: 0 auto;
    width: 100%;
    z-index: 2;
}

.lines .line {
    position: absolute;
    width: 1px;
    height: 100vh;
    top: 0;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin: 0;
}

.lines .line::after {
    content: '';
    display: block;
    position: absolute;
    height: 15vh;
    width: 100%;
    top: -50%;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(75%, #ffffff), to(#ffffff));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
    -webkit-animation: run 4s 0s infinite;
    animation: run 4s 0s infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.lines .line::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.lines .line:nth-child(1) {
    left: 0%;
}

.lines .line:nth-child(2) {
    left: 389px;
}

.lines .line:nth-child(2)::after {
    -webkit-animation-delay: 2.2s;
    animation-delay: 2.2s;
}

.lines .line:nth-child(3) {
    right: 389px;
}

.lines .line:nth-child(3)::after {
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s;
}

.lines .line:nth-child(4) {
    right: 102px;
}

.lines .line:nth-child(4)::after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

@-webkit-keyframes sld_f {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes sld_f {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes slide_anim {
    0% {
        -webkit-transform: translate(0px, 90px);
        transform: translate(0px, 90px);
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes slide_anim {
    0% {
        -webkit-transform: translate(0px, 90px);
        transform: translate(0px, 90px);
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes slide_anim_scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes slide_anim_scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes mouse {
    20%, 100% {
        bottom: -20px;
    }
    0% {
        bottom: -20px;
    }
    10% {
        bottom: -25px;
    }
    15% {
        bottom: -18px;
    }
}

@keyframes mouse {
    20%, 100% {
        bottom: -20px;
    }
    0% {
        bottom: -20px;
    }
    10% {
        bottom: -25px;
    }
    15% {
        bottom: -18px;
    }
}

@-webkit-keyframes run {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}

@keyframes run {
    0% {
        top: -50%;
    }
    100% {
        top: 110%;
    }
}

/*	----------------------------------------------------
	------ 9. WELCOME_BLOCK
	---------------------------------------------------- */
.welcome {
    background: #0d0d0d;

    position: relative;
    z-index: 99;
    box-shadow: 0px 4px 70px rgba(0, 0, 0, 0.13);
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    margin-top: 70px;
}



.welcome .img_anm {
    height: 100%;
}

.welcome img {
    height: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.welcome .wel_f {
    background: #151515;
    height: 500px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.welcome .b_t {
    padding: 0px 70px;
}

.welcome .b_t p {
    padding-bottom: 50px;
}

.welcome .b_t h2 {
    padding-bottom: 25px;
}

.welcome .slder_b {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

.welcome .slder_b .cocoen-drag {
    width: 0px;
}

.welcome .slder_b .cocoen-drag:before {
    font-family: "Font Awesome 5 Free";
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¯ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â·";
    font-weight: 600;
    color: #000;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.welcome .slder_b .desc_s {
    background: #0D0D0D;
    z-index: 999;
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 15px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/*	----------------------------------------------------
	------ 10. PROGRESS_BLOCK
	---------------------------------------------------- */
.progress_block {
    margin: 100px 0px;
}

.progress_block .b_num {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.progress_block .b_num i {
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
    width: 30px;
    font-weight: 00;
}
.progress_block .b_num a {
    color:rgba(255, 255, 255, 0.7);
}
.progress_block .b_num a:hover {
    color:#1d71b8;
}


.progress_block .b_num img {
    height: 80px;
    border-radius: 50%;
    margin-right: 30px;
}

.progress_block .b_num:hover p:after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 70%;
    background: #1d71b8;
    left: -1px;
    bottom: 0;
}

.progress_block .b_num:hover p {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.progress_block .b_num p {
    font-size: 15px;
    padding-left: 25px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.progress_block .b_num p:after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 70%;
    background: #1d71b8;
    left: -1px;
    bottom: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.progress_block .b_num .num_b {
    padding-right: 25px;
}

.progress_block .b_num .num_b h3 {
    font-size: 42px;
    font-weight: 300;
}

.progress_block .b_num .num_b span {
    font-size: 12px;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: #1d71b8;
}

/*	----------------------------------------------------
	------ 11. PROJECTS
	---------------------------------------------------- */
/*------ 11.1 PROJECT_BLOCK */
.info_proj {
    position: absolute;
    width: calc(100% - 40px);
    margin: 20px;
    display: -webkit-box;
    display: flex;
}

.info_proj span {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    width: 100%;
}

.info_proj span:nth-child(1) {
    width: 60%;
    color: #fff;
    background: #222222;
}

.info_proj span:nth-child(2) {
    width: 40%;
    font-weight: 500;
}

.projects_blocks .proj span {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    overflow: hidden;
}

.projects_blocks .proj i {
    display: inline-block;
    position: relative;
    -webkit-transition: -webkit-transform 300ms;
    transition: -webkit-transform 300ms;
    transition: transform 300ms;
    transition: transform 300ms, -webkit-transform 300ms;
    font-style: normal;
}

.projects_blocks .proj span .flaticon-full-size {
    position: absolute;
    left: 3px;
    top: 10px;
}

.projects_blocks .proj span .flaticon-full-size:before {
    color: #fff;
    font-size: 14px;
}

.projects_blocks .proj:hover span:nth-child(1) {
    width: 40%;
}

.projects_blocks .proj:hover span:nth-child(2) {
    width: 60%;
}

.projects_blocks .proj span i:before {
    content: attr(data-hover);
    position: absolute;
    top: -60px;
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.projects_blocks .proj span i:after {
    content: attr(data-hover);
    position: absolute;
    top: -30px;
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.projects_blocks .proj:hover i,
.projects_blocks .proj:focus i {
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
}

.i_proj a {
    margin: 0 auto;
}

.i_proj {
    padding: 20px;
}

section.projects_b {
    padding: 100px 0px;
}

.p_bb {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
    margin-bottom: -70px;
}

.projects_b .wrapper {
    position: relative;
}

.projects_b .head_block {
    padding-bottom: 0px;
    margin-bottom: 40px;
}

.projects_blocks .proj {
    background: #fff;
    position: relative;
    overflow: hidden;
    height: 346px;
    width: 100%;
    margin: 0 0 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
    padding: 0px;
}

.projects_blocks .proj a {
    opacity: 0;
    top: 80px;
}

.projects_blocks .proj:last-child {
    margin-right: 0px;
}

.projects_blocks .proj h3 {
    padding-bottom: 0;
    min-height: 55px;
    text-transform: inherit;
}

.projects_blocks .proj .img_proj {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 100px;
    left: 0;
    background-repeat: no-repeat !important;
    background-size: 355px auto !important;
    -webkit-transition: bottom 300ms ease;
    transition: bottom 300ms ease;
}

.projects_blocks .proj .i_proj {
    position: absolute;
    z-index: 10;
    background: white;
    bottom: -50px;
    -webkit-transition: -webkit-transform 300ms ease;
    transition: -webkit-transform 300ms ease;
    transition: transform 300ms ease;
    transition: transform 300ms ease, -webkit-transform 300ms ease;
    width: 100%;
}

.projects_blocks .proj .i_proj a {
    text-decoration: none;
}

.projects_blocks .proj:hover {
    -webkit-transform: translateY(-26px);
    transform: translateY(-26px);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.projects_blocks .proj:hover .img_proj {
    bottom: 155px;
}

.projects_blocks .proj:hover .i_proj {
    -webkit-transform: translateY(-65px) !important;
    transform: translateY(-65px) !important;
}

.projects_blocks .proj:hover a {
    opacity: 1;
    top: 15px;
}

.slider_global {
    height: 100%;
    position: relative;
}


.swiper_buttons_n {
    height: 100%;
    width: 100%;
    display: block;
    top: 0;
    position: absolute;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    top: -15px;
}

/*------ 11.2 SWIPER */
.swiper-container .swiper_buttons_n {
    top: 40px;
}

.swiper-button-prev, .swiper-button-next, .swiper-button-prev-2, .swiper-button-next-2, .swiper-button-prev-3, .swiper-button-next-3 {
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 129 129'%3E%3Cpath d='M40.4 121.3c-.8.8-1.8 1.2-2.9 1.2s-2.1-.4-2.9-1.2c-1.6-1.6-1.6-4.2 0-5.8l51-51-51-51c-1.6-1.6-1.6-4.2 0-5.8s4.2-1.6 5.8 0l53.9 53.9c1.6 1.6 1.6 4.2 0 5.8l-53.9 53.9z' fill='%231d71b8'/%3E%3C/svg%3E%0A");
    outline: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}

.swiper-button-prev:after, .swiper-button-next:after {
    display: none;
}

.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev, .swiper-button-prev-2, .swiper-button-prev-3 {
    left: -60px;
    position: absolute;
}

.swiper-button-next, .swiper-button-next-2, .swiper-button-next-3 {
    right: -60px;
    position: absolute;
    font-family: "Raleway", sans-serif;
}

.swiper-pagination, .swiper-pagination-2, .swiper-pagination-3 {
    left: 0;
    right: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin-top: 25px;
}

.swiper-button-prev-2{
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.swiper-pagination {
    margin-top: 0px;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0;
    outline: none;
    margin-right: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: #000;
    width: 17px;
    height: 17px;
}


.quote-slider, .image_slider {
    overflow: hidden;
}

.quote-slider .swiper-slide {
    border: 2px solid #1d71b8;
    padding: 30px;
    box-sizing: border-box;
}

.quote-slider .swiper-slide h3 {
    font-size: 20px;
    padding-bottom: 20px;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
}

.swiper-pagination-bullet-active {
    background: #1d71b8;
}

.image_slider .swiper-slide {
    overflow: hidden;
    font-size: 0;
}

.image_slider img {
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.image_slider img:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

/*------ 11.3 PAGE_PROJECT */
#project_page .projects_blocks {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    margin-top: 100px;
}

#project_page .projects_blocks .proj {
    -webkit-box-flex: 0;
    flex: none;
    display: inherit;
}

#project_page .projects_blocks .proj:nth-child(3n+3) {
    margin-right: 0px;
}

#project_page .projects_blocks .proj:hover {
    -webkit-transform: none;
    transform: none;
}

.title_page {
    padding-top: 100px;
    padding-bottom: 50px;
}

.title_page p {
    color: #fff;
}

.head_block {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

section .head_block {
    width: 600px;
}

.head_block h2, .head_block_left h2 {
    font-size: 42px;
    margin: 0px;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}

.title_page .head_block h2:after {
    background: #fff;
}

.head_block_left {
    text-align: left;
    margin: initial;
    padding-bottom: 0px;
}

.head_block_left h2 {
    padding-bottom: 20px;
}

/*------ 11.4 FILTER_PROJECTS */
.filter {
    height: auto;
    background: #151515;
    margin-top: -100px;
    padding: 50px 30px;
    box-sizing: border-box;
}

.filter .f_b h4 {
    padding-bottom: 30px;
}

.filter .f_b:last-child {
    margin-right: 0px;
}

.filter_b span {
    display: -webkit-box;
    display: flex;
}

.filter_b .count_f {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-top: 30px;
}

.filter_b .vl_f {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-top: 30px;
}

.filter_b .vl_f .vl {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.filter_b .vl_f .vl span {
    padding: 0 10px;
}

.filter_b .vl_f .vl button {
    width: 30px;
    height: 30px;
    border-radius: 0px;
    font-size: 16px;
    border: 0px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    outline: none;
}

.filter_b .vl_f .vl button:hover {
    background: none;
    box-shadow: inset 0px 0px 0px 2px #1d71b8;
}

.noUi-base {
    background: rgba(255, 255, 255, 0.2);
}

.noUi-horizontal {
    height: 2px;
}

.noUi-origin {
    background: #fff;
}

.noUi-handle {
    background: #000;
    box-shadow: none;
    border-radius: 50%;
    outline: none;
}

.noUi-handle:before, .noUi-handle::after {
    display: none;
}

.noUi-target {
    background: rgba(255, 255, 255, 0.11);
    border: 0px;
    box-shadow: none;
}

.noUi-horizontal .noUi-handle {
    height: 15px;
    width: 15px;
    background: #0D0D0D;
    border: 2px solid #1d71b8;
    border-radius: 0px;
}

.noUi-connect {
    background: #1d71b8;
}

#home .projects_b {
    background: url(../img/bg_home_black.png) no-repeat;
    background-size: cover;
}

.projects_blocks .proj .i_proj, .projects_blocks .proj {
    background: #222222;
}

.price_proj {
    background: #1d71b8;
    color: #000;
}

.project_single img {
    width: 100%;
}

/*	----------------------------------------------------
	------ 12. POSTS
	---------------------------------------------------- */
.sidebar {
    -webkit-box-flex: 0;
    flex: none;
    margin-top: -130px;
    box-sizing: border-box;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    margin-bottom: 50px;
    height: 100%;
    padding-top: 30px;
    top: 65px;
}

.sidebar .widget {
    border: 1px solid #262626;
    padding: 25px;
    margin-top: 30px;
    background: #0D0D0D;
}

.sidebar .widget:first-child {
    margin-top: 0px;
}

.sidebar .tags_widget {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}

.sidebar .tags_widget .title_widget {
    padding-bottom: 20px;
}

.sidebar .tags_widget span {
    margin-top: 10px;
}

.title_widget {
    font-size: 24px;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 15px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    border-bottom: 2px solid #131313;
    margin-bottom: 15px;
}

.title_widget::before {
    content: "";
    display: inline-block;
    height: 1px;
    width: 30px;
    margin-right: 20px;
    background: #1d71b8;
}

.input_widget, .input_widget_min {
    box-sizing: border-box;
    display: -webkit-box;
    display: flex;
    background: none !important;
}

.input_widget input, .input_widget_min input {
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
    border: none;
    width: 100%;
    border: 1px solid #e1e1e1;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
}

.input_widget input:focus, .input_widget_min input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.input_widget button, .input_widget_min button {
    background: #1d71b8;
    color: #000;
    border: none;
    padding: 0px 20px;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    flex: none;
    outline: none;
    -webkit-transition: .3s;
    transition: .3s;
}

.input_widget button:hover, .input_widget_min button:hover {
    box-shadow: inset 0px 0px 0px 2px #1d71b8;
    background: none;
    color: #1d71b8;
}

.input_widget.widget, .input_widget_min.widget {
    padding: 0px !important;
}

.input_widget_min input {
    padding: 10px 15px;
}

.input_widget_min button {
    padding: 0px 15px;
}

.gallery_widget {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}

.gallery_widget .min_img_w {
    width: 33%;
    height: 80px;
    overflow: hidden;
    position: relative;
    padding-bottom: 5px;
    padding-right: 5px;
    box-sizing: border-box;
}

.gallery_widget .min_img_w img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.gallery_widget .min_img_w:nth-child(3n+3) {
    padding-right: 0px;
}

.gallery_widget .min_img_w:nth-last-child(-n+3) {
    padding-bottom: 0px;
}

.info_proj_widget {
    width: 100%;
    display: -webkit-box;
    display: flex;
    position: relative;
    padding: 0px !important;
    border: none !important;
}

.info_proj_widget span {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    display: -webkit-box;
    display: flex;
    position: relative;
    width: 100%;
}

.info_proj_widget span i {
    display: inline-block;
    margin: 0 auto;
    font-style: normal;
}

.info_proj_widget span:nth-child(1) {
    color: #fff;
    background: #222222;
}

.info_proj_widget span:nth-child(2) {
    font-weight: 500;
}

.info_proj_widget span .flaticon-full-size {
    position: absolute;
    left: 3px;
    top: 10px;
}

.info_proj_widget span .flaticon-full-size:before {
    color: #fff;
    font-size: 14px;
}

.category_widget li {
    color: #616161;
    padding: 5px 0px;
    list-style: none;
    -webkit-transition: .3s;
    transition: .3s;
    cursor: pointer;
    text-align: right;
}

.category_widget li:nth-child(2) {
    padding-top: 0px;
}

.category_widget li:last-child {
    padding-bottom: 0px;
}

.category_widget li:hover {
    color: #fff;
}

.category_widget a {
    display: block;
    position: relative;
    color: #828283;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    padding-right: 15px;
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    font-size: 19px;
}



.category_widget a:hover,
.category_widget li.active a{
    color:#1d71b8;
}
/*
.category_widget i {
    position: absolute;
    right: 0px;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
}

 */

.author_widget {
    text-align: center;
}

.author_widget img {
    width: 100%;
    box-sizing: border-box;
}

.author_widget h3 {
    padding-top: 20px;
    padding-bottom: 5px;
}

.author_widget span {
    opacity: .5;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    padding-bottom: 15px;
}

.author_widget p {
    display: inline-block;
    color: #616161;
    font-size: 14px;
}

.latest_posts_widget .lts_post {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.latest_posts_widget .lts_post:last-child {
    margin-bottom: 0px;
}

.latest_posts_widget .lts_post:hover h4 {
    color: #1d71b8;
}

.latest_posts_widget .lts_post .min_img_w {
    width: 60px;
    height: 60px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    margin-right: 20px;
    -webkit-box-flex: 0;
    flex: none;
}

.latest_posts_widget .lts_post .min_img_w img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.latest_posts_widget .lts_post h4 {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 7px;
    font-family: 'Roboto', sans-serif;
    text-transform: capitalize;
    -webkit-transition: .3s;
    transition: .3s;
}

.latest_posts_widget .lts_post span {
    color: #616161;
    font-size: 14px;
}

#single_post .head_block h2:after {
    content: none;
}


#single_post .content_post_p {
    background: #131517;
    margin-top: -100px;
    padding: 50px;
    padding-bottom: 20px;
    box-sizing: border-box;
    position: relative;
    min-height: 125px;
}

#single_post .content_post_p > img {
    padding-bottom: 30px;
}

#single_post .content_post_p h2 {
    font-size: 32px;
    padding-bottom: 20px;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}

#single_post .content_post_p p {
    padding-bottom: 30px;
    color: #9b9b9b;
}

/*#single_post .content_post_p p:first-child::first-letter {
    font-size: 5em;
    font-family: "Oswald", sans-serif;
    float: left;
    margin: -25px 25px -25px 0;
    color: #1d71b8;
}*/

#single_post .content_post_p ul {
    margin: 0;
    padding-bottom: 30px;
    padding-left: 15px;
}

#single_post .content_post_p ul li {
    font-size: 16px;
    font-weight: 300;
    color: #a0a0a0;
    line-height: 32px;
    list-style: none;
}

#single_post .content_post_p ul li::before {
    content: "\2022";
    color: #1d71b8;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.imgs_post {
    width: 100%;
    display: -webkit-box;
    display: flex;
}

.imgs_post .img_h {
    height: 280px;
    width: 50%;
    overflow: hidden;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.imgs_post .img_h:first-child {
    margin-right: 15px;
}

.imgs_post .img_h:last-child {
    margin-left: 15px;
}

.imgs_post .img_h:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.imgs_post img {
    box-sizing: border-box;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.imgs_post img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#single_post .quote {
    border-left: 2px solid #1d71b8;
    color: #d9d9d9;
    padding: 10px 50px;
    padding-right: 0px;
    line-height: 1.7;
    font-size: 20px;
    font-weight: 400;
    margin-left: -50px;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    width: calc(100% + 50px);
}

#single_post .quote i {
    display: block;
    font-size: 16px;
    padding-top: 20px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

#single_post .quote i:before {
    content: '';
    display: inline-block;
    height: 1px;
    width: 50px;
    background: #fff;
    margin-right: 20px;
}

.bottom_info {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-top: 50px;
}

.bottom_info .social {
    display: -webkit-box;
    display: flex;
}

.bottom_info .social a {
    background: #222222;
    height: 30px;
    width: 30px;
    padding: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin-left: 10px;
}

.bottom_info .social a:hover {
    background: #1d71b8;
}

.bottom_info .tags span {
    padding: 5px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
    display: inline-block;
}

.prev_post .wrap_nav {
    width: calc( 50% + 90px);
    height: 100%;
    display: block;
    position: absolute;
    right: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.next_post .wrap_nav {
    width: calc( 50% + 90px);
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.nav_posts {
    display: -webkit-box;
    display: flex;
    margin-bottom: 30px;
    background: #151515;
    margin: 100px 0px;
}

.nav_posts .prev_post, .nav_posts .next_post {
    position: relative;
    width: 50%;
    height: 120px;
}

.nav_posts .prev_post h4, .nav_posts .next_post h4 {
    font-size: 17px;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

.nav_posts .prev_post span, .nav_posts .next_post span {
    font-size: 14px;
    opacity: 0.5;
}

.nav_posts .next_post .img_post_min {
    opacity: 1;
}

.nav_posts:hover .img_post_min {
    opacity: 0;
}

.nav_posts .img_post_min {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    display: inline-block;
    z-index: 1;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
}

.nav_posts .img_post_min:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
}

.nav_posts .img_post_min img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.nav_posts .prev_post:hover .img_post_min, .nav_posts .next_post:hover .img_post_min {
    opacity: 1;
}

.nav_posts .info_post_min {
    position: absolute;
    z-index: 2;
}

.prev_post .info_post_min:before, .next_post .info_post_min:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    display: block;
    color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    height: 100%;
}

.prev_post .info_post_min:before {
    content: "\f053";
    left: -30px;
}

.next_post .info_post_min:before {
    content: "\f054";
    right: -30px;
    color: #fff;
}

.prev_post .info_post_min {
    left: 30px;
}

.next_post .info_post_min {
    text-align: right;
    color: #fff;
    right: 30px;
}

.form_comment, .form_contact {
    background: #151515;
    padding: 50px;
    box-sizing: border-box;
    margin-top: 70px;
}

.form_comment h2, .form_contact h2 {
    font-size: 32px;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.form_comment p, .form_contact p {
    color: #616161;
}

.form_comment form, .form_contact form {
    width: 100%;
}

.form_comment form a, .form_contact form a {
    margin-top: 40px;
}

.form_comment form p, .form_contact form p {
    margin-top: 20px;
}

.form_comment form input, .form_contact form input {
    border: 0;
    padding: 15px;
    outline: none;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
}

.form_comment form textarea, .form_contact form textarea {
    width: 100%;
    font-size: 14px;
    display: block;
    border: 0;
    padding: 15px;
    box-sizing: border-box;
    margin-top: 15px;
    outline: none;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.form_comment form .rpl_b, .form_contact form .rpl_b {
    display: -webkit-box;
    display: flex;
    margin-top: 40px;
}

.form_comment form .rpl_b input, .form_contact form .rpl_b input {
    width: 50%;
    color: #ccc;
}

.form_comment form .rpl_b input:nth-child(2),
.form_contact form .rpl_b input:nth-child(3),
.form_contact form .rpl_b input:nth-child(2) {
    margin-left: 15px;
}

.form_contact {
    margin-top: 0px;
}

.comments h2 {
    font-size: 32px;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 40px;
}

.comments h2 span {
    font-size: 16px;
    font-weight: 200;
    padding-left: 10px;
}

.comments h2:before {
    content: "";
    display: inline-block;
    height: 1px;
    width: 50px;
    margin-right: 20px;
    background: #1d71b8;
}

.comments .comment {
    display: -webkit-box;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.comments .comment:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.comments .comment span {
    color: #616161;
    font-size: 14px;
    display: block;
    padding-top: 5px;
    padding-bottom: 10px;
}

.comments .info_comm {
    padding-left: 30px;
}

.comments h3 {
    padding-bottom: 5px;
}

.comments p {
    color: #616161;
}

.comments .avatar {
    width: 80px;
    height: 80px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    -webkit-box-flex: 0;
    flex: none;
}

.comments .avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.quote_single, .link_single {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.quote_single h3, .link_single h3 {
    font-size: 36px;
    line-height: 1.4;
    text-align: center;
}

.title_head.video_single {
    background: none;
    overflow: hidden;
}

.title_head.video_single::after {
    display: none;
}

.title_head.video_single iframe {
    position: absolute;
    top: -60px;
    height: calc(100% + 120px);
}

.title_head.quote_single {
    background: #1d71b8;
}

.title_head.quote_single .container {
    position: relative;
}

.title_head.quote_single h3 {
    color: #000;
}

.title_head.quote_single h3::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    position: absolute;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    width: 65px;
    height: 65px;
    top: -90px;
    font-size: 18px;
    content: "\f27a";
    background: #6c5100;
    color: #1d71b8;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.title_head.quote_single:after {
    display: none;
}

.title_head.link_single {
    background: rgba(255, 255, 255, 0.15);
}

.title_head.link_single .container {
    position: relative;
}

.title_head.link_single h3 {
    color: #fff;
}

.title_head.link_single h3::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    position: absolute;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    width: 65px;
    height: 65px;
    top: -90px;
    font-size: 18px;
    content: "\f0fe";
    background: #6c5100;
    color: #1d71b8;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.title_head.link_single:after {
    display: none;
}

.posts_s {
    margin-top: -100px;
}

.post_img {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: inline-block;
    -webkit-box-flex: 0;
    flex: none;
}

.post_img img {
    width: 100%;
}

.post_standart {
    background: #262626;
    margin-bottom: 30px;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s;
}

.post_standart a {
    color: #ccc;
    text-decoration: none;
}

.post_standart .wrp_post {
    padding: 20px 25px 20px;
}

.post_standart .category span {
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.5);
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
}

.post_standart .category span:before {
    content: '';
    background: #1d71b8;
    width: 3px;
    height: 3px;
    margin-right: 8px;
}

.post_standart h2 {
    font-size: 21px;
    font-family: "Oswald", sans-serif;
    text-transform: inherit;
    padding-top: 0px;
    -webkit-transition: .3s;
    transition: .3s;
    font-weight: 400;
}

.post_standart p {
    margin: 20px 0px 8px;
    display: block;
    line-height: 1.8;
    display: -webkit-box;
    height: 54.4px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #888;
}

.post_standart .bottom_inf {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 9px;
    font-size: 14px;
}

.post_standart .bottom_inf .left_b span, .post_standart .bottom_inf .right span {
    margin-right: 30px;
}

.post_standart .bottom_inf .left_b span:last-child, .post_standart .bottom_inf .right span:last-child {
    margin-right: 0px;
    color: #ccc;
}

.post_standart .bottom_inf span:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    font-size: 14px;
    margin-right: 7px;
    color: #1d71b8;
}

.post_standart .bottom_inf .date:before {
    content: "\f133";
}

.post_standart .bottom_inf .like:before {
    content: "\f004";
}

.post_standart .bottom_inf .comment:before {
    content: "\f075";
}

.post_standart .bottom_inf .author:before {
    content: "\f007";
}

.post_standart:hover {
    background: #333333;
}

.post_standart:hover h2 {
    color: #1d71b8;
}

.post_standart.quote {
    background: #1d71b8;
    color: #000;
}

.post_standart.quote .bottom_inf {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.post_standart.quote .category span {
    color: #000;
}

.post_standart.quote .category span:before {
    background: rgba(0, 0, 0, 0.2);
}

.post_standart.quote span:before {
    color: #000;
}

.post_standart.quote h2, .post_standart.quote p {
    color: #000;
}

.post_standart.quote h2 {
    padding-bottom: 25px;
    font-size: 24px;
    line-height: 1.7;
}

.post_standart.quote::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 18px;
    content: "\f27a";
    background: #6c5100;
    padding: 20px;
    color: #1d71b8;
}

.post_standart.link {
    background: none;
    outline: 1px solid #533e00;
}

.post_standart.link h2 {
    padding-bottom: 25px;
    font-size: 24px;
    line-height: 1.7;
}

.post_standart.link::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 300;
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 18px;
    content: "\f0fe";
    background: #392b00;
    padding: 20px;
    color: #1d71b8;
}

.post_standart.video .video_frame {
    height: 450px;
    overflow: hidden;
    position: relative;
}

.post_standart.video iframe {
    position: absolute;
    top: -60px;
    height: calc(100% + 120px);
}

.two_cols .post_standart.quote, .three_post .post_standart.quote, .four_post .post_standart.quote {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.two_cols .post_standart.quote::before, .three_post .post_standart.quote::before, .four_post .post_standart.quote::before {
    position: relative;
    height: 100%;
    width: 100%;
    display: block;
    padding: 0px;
    background: #9f7700;
    font-size: 24px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.two_cols .post_standart.link, .three_post .post_standart.link, .four_post .post_standart.link {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.two_cols .post_standart.link::before, .three_post .post_standart.link::before, .four_post .post_standart.link::before {
    position: relative;
    height: 100%;
    width: 100%;
    display: block;
    padding: 0px;
    background: #2a1f00;
    font-size: 24px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.two_cols, .three_post, .four_post {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    align-self: flex-start;
}

.two_cols .post_standart {
    width: calc(50% - 15px);
}

.two_cols .post_standart .post_img, .two_cols .post_standart .video_frame {
    height: 200px;
}

.two_cols .post_standart:nth-child(2n+1) {
    margin-right: 30px;
}

.three_post .post_standart {
    width: calc((100% /3) - 30px);
    margin-right: 30px;
}

.three_post .post_standart:nth-child(3n+3) {
    margin-right: 0px;
}

.three_post .post_standart .post_img, .three_post .post_standart .video_frame {
    height: 200px;
}

.four_post .post_standart {
    width: calc((100% /4) - 25px);
    margin-right: 30px;
}

.four_post .post_standart:nth-child(4n+4) {
    margin-right: 0px;
}

.four_post .post_standart .post_img, .four_post .post_standart .video_frame {
    height: 200px;
}

.four_post .nav_pages {
    margin-top: 0px;
}

/*	----------------------------------------------------
	------ 13. ICONS_INFO_BLOCK
	---------------------------------------------------- */
[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after {
    font-family: Flaticon;
    font-size: 30px;
    font-style: normal;
    margin-left: 10px;
}

.icons_block {
    background: #0d0d0d;
    padding: 60px 0px;
    color: #fff;
}

.icons_block .s_icon {
    display: -webkit-box;
    display: flex;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    overflow: hidden;
}

.icons_block .s_icon:last-child {
    padding-right: 0px;
}

.icons_block .s_icon h3 {
    padding-bottom: 25px;
}

.icons_block .s_icon:hover span {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

.icons_block .s_icon span {
    color: #1d71b8;
    font-size: 42px;
    -webkit-box-flex: 0;
    flex: none;
    height: 60px;
    display: block;
    position: relative;
    margin-right: 25px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.icons_block .s_icon span img {
    height: 60px;
    width: auto;
}

.icons_block .s_icon span:before {
    font-size: 50px;
}

.icons_block .s_icon span:after {
    content: '';
    display: block;
    position: absolute;
    height: 60px;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: 75px;
    width: 1px;
    background: rgba(255, 255, 255, 0.5);
}

/*	----------------------------------------------------
	------ 14. VIDEO_BLOCK
	---------------------------------------------------- */
.video_b {
    width: 100%;
    height: 400px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.video_b .video_block {
    height: 400px;
}

.video_b .info_video {
    z-index: 10;
    position: absolute;
    width: 600px;
    text-align: center;
    color: #fff;
}

.video_b .info_video h1 {
    padding-top: 40px;
}

.video_b .info_video span.flaticon-play-button {
    position: relative;
    display: -webkit-inline-box;
    display: inline-flex;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.video_b .info_video span.flaticon-play-button:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    cursor: pointer;
}

.video_b .info_video span.flaticon-play-button:after {
    content: "";
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: -10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-animation: video 1s infinite ease-in-out;
    animation: video 1s infinite ease-in-out;
}

.video_b .info_video span.flaticon-play-button:before {
    width: 70px;
    height: 70px;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.video_block {
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    position: relative;
}

.video_block iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0.5;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@-webkit-keyframes video {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    40% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

@keyframes video {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    40% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
}

/*	----------------------------------------------------
	------ 15. ACTION_BLOCK
	---------------------------------------------------- */
.blocks_act {
    background-size: cover;
    padding: 70px 0px;
    position: relative;
}

.blocks_act p {
    font-weight: 400 !important;
}

.blocks_act .head_block_right {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.blocks_act .head_block_right a {
    -webkit-box-flex: 0;
    flex: none;
}

.blocks_act .head_block_left {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.blocks_act .head_block_left span {
    margin-right: 30px;
}

.blocks_act .head_block_left span:before {
    font-size: 50px;
    color: #1d71b8;
}

/*	----------------------------------------------------
	------ 16. REVIEWS
	---------------------------------------------------- */
.block_standart_width_full .img_full_w_block, .block_standart_width_full .info_w_block {
    height: 390px;
    overflow: hidden;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.block_standart_width_full .info_w_block {
    box-sizing: border-box;
    background: #222222;
}

.block_standart_width_full .info_w_block .b_t {
    max-width: 600px;
    padding-left: 50px;
    padding-right: 50px;
}

.block_standart_width_full .img_full_w_block {
    position: relative;
    overflow: hidden;
    padding: 0px;
}

.block_standart_width_full .img_full_w_block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.reviews {
    display: -webkit-box;
    overflow: hidden;
    position: relative;
    background: url(../img/bgg2.png) no-repeat;
    background-position: left center;
    background-size: 40%;
}

.reviews h2 {
    line-height: 1.5;
    font-size: 32px;
    font-weight: 500;
}

.reviews h2 i {
    font-style: normal;
    color: #1d71b8;
}

.reviews h2 .phone {
    font-size: 18px;
    padding-top: 20px;
}

.reviews .quote_b span {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding-top: 50px;
}

.reviews .quote_b img {
    width: 40px;
    border-radius: 50%;
    margin-right: 20px;
}

.reviews img {
    position: relative;
    display: block;
}

.reviews img.signature {
    width: 160px;
    padding-left: 50px;
    opacity: .3;
}

.reviews .reiting {
    padding-bottom: 30px;
}

.reviews .reiting i {
    color: #1d71b8;
    padding-right: 10px;
    font-size: 13px;
}

.reviews .reiting i:last-child {
    opacity: .2;
}

/*	----------------------------------------------------
	------ 17. GALLERY
	---------------------------------------------------- */
.grid_img {
    padding: 100px 0px;
    text-align: center;
    background: url(../img/bg_g.jpg) no-repeat;
    background-position: bottom right;
    background-size: contain;
}

.grid_img a.button_small {
    margin-top: 40px;
}

.grid_images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 400px);
    margin-top: 70px;
}

.grid_images figure {
    margin: 2px;
    background-size: cover !important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.grid_images figure figcaption {
    position: absolute;
    text-align: left;
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    width: 100%;
    background: #222222;
    padding: 30px;
    box-sizing: border-box;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    overflow: hidden;
}

.grid_images figure figcaption h3 {
    font-size: 24px;
    padding-bottom: 10px;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.grid_images figure figcaption p {
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.grid_images figure figcaption i {
    color: #1d71b8;
    position: absolute;
    right: 30px;
    bottom: 30px;
    -webkit-transform: translateX(150px);
    transform: translateX(150px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.grid_images figure:hover figcaption {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.grid_images figure:hover figcaption h3, .grid_images figure:hover figcaption p {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.grid_images figure:hover figcaption i {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.grid_images figure img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
    position: absolute;
    top: 0;
}

.grid_images .img_par {
    z-index: 1;
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}

.grid_images .img_par:hover {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.grid_images figure:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.grid_images figure:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.grid_images figure:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.grid_images figure:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

.grid_images figure:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

.grid_images figure:nth-child(6) {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}

#gallery .grid_img {
    margin-top: -100px;
    background: none;
    padding: 0;
}

#gallery .grid_img .grid_images {
    margin-top: 0px;
}

/*	----------------------------------------------------
	------ 18. BRANDS_BLOCK
	---------------------------------------------------- */
.blocks_logos {
    padding: 60px 0px;
    background: transparent;
    width: 100%;
}

.blocks_logos .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 0px 15px;
}

.blocks_logos .logo_brand svg {
    fill: #fff;
    opacity: 0.3;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    position: relative;
    height: 50px;
    width: 70px;
}

.blocks_logos .logo_brand svg:hover {
    opacity: 1;
    cursor: pointer;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.blocks_logos .logo_brand svg svg {
    height: 50px;
}

.blocks_logos .logo_brand svg svg path, .blocks_logos .logo_brand svg svg circle, .blocks_logos .logo_brand svg svg polygon, .blocks_logos .logo_brand svg svg rect {
    fill: #fff;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.blocks_logos .logo_brand svg:hover {
    fill: #1d71b8;
}

/*	----------------------------------------------------
	------ 19. FOOTER
	---------------------------------------------------- */
footer {
    color: #fff;
    margin-top: 0px;
    background: #212529;
}

#home footer {
    margin-top: 0px;
}

.footer_b {
    padding-top: 70px;
    padding-bottom: 60px;
    /* border-top: 1px solid #262626; */
}

footer .f_m {
    padding: 0px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding-right: 50px;
}

footer .f_m .input_widget_min {
    margin-top: 20px;
    padding-right: 40px;
}

footer .f_m p {
    color: #838383;
}

footer .f_m svg.logo {
    width: 35px;
    height: 35px;
}

footer .f_m > a {
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 15px;
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
}

footer .f_m .social {
    padding-top: 20px;
}

footer .f_m .social a {
    padding-top: 0px;
}

footer .f_m > h4 {
    font-size: 20px;
    margin: 0px;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 30px;
}

footer .f_m .info_top {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

footer .f_m .info_top i {
    padding-right: 15px;
}

footer .f_m.latest_posts_widget a.lts_post {
    margin-bottom: 10px;
    -webkit-box-align: start;
    align-items: flex-start;
}

footer .f_m.latest_posts_widget a.lts_post:hover {
    padding: 0px;
}

footer .f_m.latest_posts_widget a.lts_post:hover::before {
    display: none;
}

footer .f_m.latest_posts_widget .min_img_w {
    width: 50px;
    height: 50px;
}

.footer_buttom {
    background: #1c1f23;
}

.footer_buttom p {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    margin: 0px;
    padding: 10px 0px;
    opacity: .5;
}

/*	----------------------------------------------------
	------ 20. OTHER_PAGES
	---------------------------------------------------- */
/* - Contact */
#contact .content {
    background: #0D0D0D;
    margin-top: -100px;
    padding-bottom: 0px;
    box-sizing: border-box;
}

#contact .progress_block {
    margin: 0px;
    padding: 50px;
}

#contact .form_contact {
    margin-bottom: 50px;
}

/* - Error */
.error {
    padding-bottom: 90px;
    text-align: center;
}

.error h3 {
    opacity: .15;
    font-size: 200px;
    color: rgba(255, 255, 255, 0);
    -webkit-text-stroke-width: 2.5px;
    -webkit-text-stroke-color: white;
}

.error p {
    margin-top: 20px;
    font-size: 30px;
}

.error a {
    margin-top: 50px;
}

#error .container {
    height: 100vh;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

#error {
    background: #151515;
}

#error footer {
    display: none;
}

/* jarallax plugin */
.jarallax {
    position: relative;
    z-index: 0;
}

.jarallax > .jarallax-img {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.int_main_wraapper {
    position: relative;
    overflow: hidden;
    background: #212529;
}

body.other .int_main_wraapper {
    overflow: inherit;
}

.int_content_wraapper {
    padding-left: 30px;
}

.int_header_wrapper {
    padding: 0 31px 0 0;
}
.int_header_wrapper .int_logo {
    padding-top: 30px;
    margin-left: 25px;
}
.int_nav {
    text-align: right;
}

.int_nav .int_menu > ul > li, .int_cartsec > ul > li {
    display: inline-block;
    padding: 39px 20px 38px;
}
.int_nav .int_menu > ul > li > a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
}
.int_nav .int_menu > ul > li > a:hover {
    color: #1d71b8;
}
.int_nav .int_menu > ul > li.int_home_dropdown > ul {
    background-color: #212529;
    position: absolute;
    left: 0;
    width: 180px;
    padding: 0px 0 0;
    visibility: hidden;
    opacity: 0;
    transition: all 500ms ease;
    -webkit-transition: all 500ms eases;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    z-index: 100;
    text-align: left;
    transform: translate(80px, 40px);
}
.int_nav .int_menu > ul > li.int_home_dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 38px);
}
.int_nav .int_menu > ul > li.int_home_dropdown > ul > li > a {
    color: #ffffff;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    text-transform: capitalize;
    transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -ms-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    padding: 17px 25px 16px;
    display: block;
}
.int_nav .int_menu > ul > li.int_home_dropdown > ul > li:last-child a {
    border-bottom: none;
}
.int_nav .int_menu > ul > li.int_home_dropdown > ul > li > a:hover {
    color: #1d71b8;
    padding-left: 30px;
}
.int_nav .int_menu > ul > li{
    position:relative;
}
.int_nav .int_menu > ul > li:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background: #1d71b8;
    top: 0;
    bottom: 0;
    right: -3px;
    margin:auto;
}
.int_nav .int_menu > ul > li:last-child::after {
    display: none;
}
.int_nav .int_menu, .int_nav .int_cartsec {
    display: inline-block;
}
.int_nav .int_cartsec > ul > li {
    padding: 0px 15px;
    position:relative;
    vertical-align: middle;
}
.int_nav .int_cartsec > ul > li.int_profile_carol {
    display: none;
}
.int_nav .int_cartsec > ul > li:after {
    content: "";
    position: absolute;
    background: rgb(62, 62, 62);
    top: 0;
    bottom: 0;
    width: 1px;
    height: 30px;
    left: 0;
    margin: auto;
}
.int_nav .int_cartsec > ul > li:first-child:after {
    position: inherit;
}
.int_nav .int_cartsec > ul > li:first-child {
    position: inherit;
}
.int_nav .int_cartsec > ul > li > a.setting_toggle {
    text-transform: capitalize;
    color: #cdcdcd;
}
.int_nav .int_cartsec > ul > li .setting_toggle img {
    border: 2px solid #3a4047;
    border-radius: 50%;
    margin-right: 7px;
}
.int_nav .int_cartsec > ul > li .setting_toggle .toggle_caret{
    color:#1d71b8;
    margin-left: 4px;
}
.int_profile_open {
    background-color: #ffffff;
    position: absolute;
    top: 27px;
    left: 10px;
    width: 150px;
    visibility: hidden;
    opacity: 0;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    z-index: 100;
    text-align: left;
    transform: translate(80px, 40px);
}
.int_profile_open ul li a {
    color: #222222;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    border-bottom: 1px solid #00000012;
    text-transform: capitalize;
    transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease 0s;
    -ms-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    padding: 17px 25px 16px;
    display: block;
}
.int_profile_open ul li a:hover {
    color: #ff1d4d;
    padding-left: 30px;
}
.int_profile_open ul li a i {
    color: #ff1d4d;
    margin-right: 5px;
}
.int_profile_open.int_profile_drop {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 38px);
}
.int_nav .int_cartsec > ul > li > a > svg {
    width: 18px;
    height: 18px;
}
.int_nav .int_cartsec > ul > li > .cart_round {
    position: relative;
}
.int_nav .int_cartsec > ul > li > .cart_round span {
    border-radius: 50%;
    width: 16px;
    height: 16px;
    line-height: 18px;
    text-align: center;
    background-color: #1d71b8;
    color: #212629;
    display: inline-block;
    font-size: 10px;
    position: absolute;
    right: -11px;
    top: -6px;
}
.int_nav .int_cartsec > ul > li >  span {
    border-radius: 50%;
    width: 16px;
    height: 16px;
    line-height: 18px;
    text-align: center;
    background-color: #1d71b8;
    color: #212629;
    display: inline-block;
    font-size: 10px;
    position: absolute;
    right: -11px;
    top: -6px;
}
/* Add To Cart Menu Box css */
.cart_content {
    width: 470px;
    overflow-x: auto;
}
.int_sop_cart {
    text-align: center;
    padding: 20px 30px;
    position: relative;
    background-color: #f9f9f9;
}
.int_sop_cart h3 {
    font-size: 22px;
    color: #222222;
    font-weight: 500;
}
.int_sop_cart p {
    color: #222222;
}
.int_sop_cart a {
    position: absolute;
    top: 33px;
    right: 20px;
    text-transform: uppercase;
    transform: rotate(-90deg);
}
.int_sop_cart a:hover {
    color: #ff1d4d;
}
.header_cartbox {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -480px;
    background-color: white;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: all 1s cubic-bezier(1.000, -0.600, 0.000, 1.650);
    -webkit-transition: all 1s cubic-bezier(1.000, -0.600, 0.000, 1.650);
    -moz-transition: all 1s cubic-bezier(1.000, -0.600, 0.000, 1.650);
    -o-transition: all 1s cubic-bezier(1.000, -0.600, 0.000, 1.650);
    -ms-transition: all 1s cubic-bezier(1.000, -0.600, 0.000, 1.650);
}

.open_cart .header_cartbox{
    opacity: 1;
    visibility: visible;
    right: 0;
}
.cart_content .int_table_quantity .quantity_wrapper {
    text-align: center;
}
.cart_content .int_checkout_table span {
    font-size: 20px;
    text-transform: capitalize;
    margin: 0;
}
.cart_content .quantity_qty span {
    margin: 0 10px 0 0;
    font-size: 16px;
}
.int_checkout_table .table td:first-child {
    text-align: center;
}

.int_checkout_table .table td:last-child {
    text-align: center;
}
.int_checkout_table .table tr:first-child td {
    border-top: none;
}
.int_sop_cart_btn {
    padding: 14px 50px 30px;
}
.int_sop_cart_btn > ul > li {
    display: inline-block;
}
.int_sop_cart_btn > ul > li:first-child {
    margin-right: 57px;
}
.open_cart {
    position: relative;
}
.open_cart:after {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
}
/* Add To Cart Menu Box css */
/* Add To Cart Menu Box Dark css */
.int_product_checkout_dark .header_cartbox {
    background-color: #282d32;
}
.int_product_checkout_dark .int_sop_cart {
    background-color: #212429;
}
.int_product_checkout_dark .int_sop_cart h3, .int_product_checkout_dark .int_sop_cart p {
    color: #ffffff;
}
.int_product_checkout_dark .int_sop_cart a {
    color: #ffffff;
}
.int_product_checkout_dark .int_sop_cart a:hover {
    color: #1d71b8;
}
.int_header_style3 .int_sop_cart a:hover {
    color: #ff9d34;
}
.int_header_style4 .int_sop_cart a:hover {
    color: #ff9d34;
}
/* Search bar box css */
.search_input_box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 111;
    opacity: 0;
    visibility: hidden;
}
.search_input_box input{
    width:0px;
    transition:0.2s;
    transition:0.2s;
    -webkit-transition:0.2s;
    -moz-transition:0.2s;
    -o-transition:0.2s;
    -ms-transition:0.2s;
}
.close_search_bar .search_input_box {
    opacity: 1;
    visibility: visible;
    width: 100%;
    text-align: center;
}
.close_search_bar .search_input_box input {
    width: 50%;
    background-color: transparent;
    border: none;
    border-bottom: solid 1px rgba(255, 255, 255, 0.25);
    padding: 10px 20px 10px 0;
    font-size: 25px;
    color: #ffffff;
}
.search_input_box input::placeholder {
    color: #ffffff;
}
.search_input_box span i {
    cursor: pointer;
    color: #ffffff;
    font-size: 20px;
    position: absolute;
    top: 0;
}
body.close_search_bar{
    position:relative;
}
body.close_search_bar:after {
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 42;
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
/* Search bar box css */
li.int_login_sign a {
    color: #fff;
    margin: 0 0 0 5px;
    text-transform: capitalize;
    vertical-align: middle;
}
li.int_login_sign a:hover {
    color: #1d71b8;
}
li.int_login_sign p {
    margin-left: 5px;
    font-weight: 600;
    display: inline-block;
}
li.int_login_sign p:hover {
    color: #fff;
}
/* sign-in popup dark css*/
.int_modal_form {
    z-index: 9;
    max-width: 100%;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    justify-content: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    overflow-x: auto;
    webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.int_modal_form.open_login_model, .int_modal_form.open_signup_model {
    opacity: 1;
    visibility: visible;
}
.int_signin_flex .col-md-6 {
    padding: 0;
}
.int_signin_flex {
    background-color: #282d32;
    text-align: center;
    max-width: 960px;
    width: 100%;
}
.int_modal_form.open_login_model:after, .int_modal_form.open_signup_model:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    content: '';
    z-index: -1;
}
.open_signup_model .int_social_btn {
    margin-left: 0;
}
.int_sign_slide {
    padding: 50px;
    text-align: center;
}

.int_sign_slide .swiper-pagination-bullet {
    background: #dbdbdb;
    opacity: 1;
    margin-right: 8px;
    transition: 0.3s all;
    -moz-transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    -ms-transition: 0.3s all;
}
.int_sign_slide .swiper-pagination-bullet-active {
    background: #1d71b8;
    width: 12px;
    height: 12px;
    transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
}
.int_sign_slide .swiper-pagination-bullets {
    bottom: -60px;
    right: 0;
    left: 0;
}
.int_sign_section {
    background-color: #212529;
    padding: 50px 60px;
    text-align: center;
}
.int_sign_section button.close_login {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #1d71b8;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border: none;
}
.int_sign_section .close_login {
    font-size: 26px;
    font-weight: normal;
    color: #ffffff;
    text-shadow: none;
    opacity: 1;
}
.int_sign_section p {
    color: #cdcdcd;
    margin-top: 10px;
}
.int_sign_section h3 {
    color: #ffffff;
    font-weight: 600;
    margin: 25px 0;
}
.int_sign_section .form_block {
    margin-bottom: 20px;
}
.int_sign_section .form_block .form_field {
    border: 1px solid #383b3f;
    background-color: #212529;
    color: #ffffff;
}
.int_sign_section input::placeholder {
    color: #cdcdcd;
}
.int_sign_forgot ul {
    text-align: right;
    margin-right: 30px;
    margin-top: 30px;
}
.int_sign_forgot ul li {
    display: inline-block;
}
.int_sign_forgot ul li:first-child {
    float: left;
    margin-top: 15px;
}
.int_sign_forgot ul li a {
    color: #ffffff;
}
.int_sign_forgot ul li:first-child a:hover {
    color: #1d71b8;
}
.int_social_btn {
    margin-top: 30px;
    text-align: left;
    margin-left: 25px;
}
.int_social_btn ul li {
    display: inline-block;
}
.int_social_btn ul {
    margin-left: 25px;
}
.int_social_btn ul li:last-child {
    margin: 0 0 0 76px;
}
.int_social_btn a.int_btn.facebook {
    background-color: #3b5999;
    color: #fff;
    border: solid 1px #324c82;
}
.int_social_btn a.int_btn:before {
    background-color: transparent;
}
.int_social_btn .int_btn .about_btnicon.facebook {
    background-color: #3b5999;
    border: solid 1px #324c82;
}
.int_social_btn a.int_btn {
    background-color: #ffffff;
    color: #222222;
    min-width: 115px;
    text-transform: capitalize;
    border: 1px solid #f0f0f0;
}
.int_social_btn .int_btn .about_btnicon {
    height: 50px;
    width: 50px;
    line-height: 50px;
    display: inline-block;
    position: absolute;
    left: -51px;
    top: -1px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
}

.int_modal_form.int_modal_signup ul {
    text-align: left;
}
.int_modal_signup .int_social_btn ul {
    margin-left: 50px;
}
.int_modal_form.int_modal_signup ul li:first-child {
    float: none;
}
.int_modal_signup .int_sign_forgot ul li:first-child a:hover {
    color: #ffffff;
}


.int_infosidebar {
    width: 60px;
    background: #282d32;
    position: absolute;
    left: 0;
    height: 950px;
    z-index: 1;
}
.int_infosidebar .siderbar_social > ul > li {
    margin-bottom: 10px;
}

.int_infosidebar .siderbar_social > ul > li > a {
    color: #ffffff;
}
.int_infosidebar .siderbar_social {
    margin: 167px 0px 24px 0px;
    text-align: center;
}
.int_infosidebar .siderbar_contact, .int_infosidebar .siderbar_email {
    text-align: center;
    padding: 30px 0 22px;
    border-top: 1px solid #353c43;
}
.int_infosidebar .siderbar_contact > a, .int_infosidebar .siderbar_email > a {
    color: #ffffff;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    text-transform: lowercase;
}
.int_infosidebar .siderbar_contact > a > svg, .int_infosidebar .siderbar_email > a > svg {
    transform: rotate(90deg);
    margin-bottom: 5px;
    width: 16px;
    height: 15px;
    vertical-align: baseline;
}
.int_infosidebar .siderbar_contact > a > svg path, .int_infosidebar .siderbar_email > a > svg path {
    fill: #1d71b8;
}
.int_infosidebar .siderbar_social > ul > li > a {
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}
.int_infosidebar .siderbar_social > ul > li > a:hover {
    color: #1d71b8;
}



body {
    background: #0D0D0D;
}


.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    height: 100%;
}



.left_menu {
    padding: 0px 30px;
}

.wel_f, .slder_b {
    padding: 0px;
}


.int_infosidebar .siderbar_social {
    margin: 167px 0px 24px 0px;
    text-align: center;
}

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

.int_infosidebar .siderbar_social > ul > li {
    margin-bottom: 10px;
}

.int_infosidebar .siderbar_social > ul > li > a {
    color: #ffffff;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}

span.close_menu_int {
    display:none;
}

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

.int_bannerr_slider .swiper-container {
    width: 100%;
    height: 100%;
}
.int_bannerr_slider .swiper-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.int_banner_slider .banner_box_wrapper {
    position: relative;
}
.swiper_imgbox .swipper_img > h4 {
    font-size: 14px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #1d71b8;
    margin: 0;
    position: relative;
}
.swiper_imgbox .swipper_img > h4 > span {
    font-size: 120px;
    text-transform: uppercase;
    font-weight: 900;
    color: #252a2d;
    letter-spacing: 12px;
    position: absolute;
    left: 10px;
    right: 0;
    top: -60px;
    z-index: -1;
}
.swiper_imgbox .swipper_img > h2 {
    color: #fff;
    font-weight:700;
    font-size: 41px;
    margin: 0;
}
.swiper_imgbox .swipper_img > h3 {
    font-size: 50px;
    color: #fff;
    font-weight:300;
}
.swiper_imgbox .swipper_img > h3 > .banner_span1 {
    color: #1d71b8;
}
.swiper_imgbox .swipper_img > p {
    color: #fff;
    margin-bottom: 22px;
    font-size: 15px;
}
.banner_box_wrapper .swiper_imgbox {
    /* margin: 140px 0 0; */
    padding: 0 15px 0 25px;
}
.banner_box_wrapper .banner_navi {
    position: absolute;
    left: 95px;
    bottom: -8px;
    z-index: 1;
}
.banner_box_wrapper .swiper-button-next, .banner_box_wrapper .swiper-container-rtl .swiper-button-prev, .banner_box_wrapper .swiper-button-prev, .banner_box_wrapper .swiper-container-rtl .swiper-button-next {
    background-image: none;
    text-transform: uppercase;
    width: auto;
    height: auto;
}
.banner_box_wrapper .swiper-button-next, .banner_box_wrapper .swiper-button-prev {
    color: #fff;
}
.banner_box_wrapper .swiper-button-next, .banner_box_wrapper .swiper-button-prev {
    bottom:50px;
    top: auto;
}
.banner_box_wrapper .swiper-button-prev, .banner_box_wrapper .swiper-container-rtl .swiper-button-next {
    left:0px;
}
.banner_box_wrapper .swiper-button-next, .banner_box_wrapper .swiper-container-rtl .swiper-button-prev {
    right: auto;
    left: 97px;
}
.banner_box_wrapper .swiper-button-prev:after, .banner_box_wrapper .swiper-container-rtl .swiper-button-next:after {
    content: "";
    position: absolute;
    width: 45px;
    height: 1px;
    background: #1d71b8;
    top: 0px;
    bottom: 0;
    left: -55px;
    margin: auto;
}
.banner_box_wrapper .swiper-button-prev:before, .banner_box_wrapper .swiper-container-rtl .swiper-button-next:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -55px;
    margin: auto;
    background: #1d71b8;
    width: 45px;
    height: 1px;
}
.banner_box_wrapper .swiper-button-next:before, .banner_box_wrapper .swiper-container-rtl .swiper-button-prev:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -55px;
    margin: auto;
    background: #1d71b8;
    width: 45px;
    height: 1px;
}
.banner_box_wrapper .swiper-slide.swiper-slide-active .imgbox1 .swipper_img h4{
    animation: fadeInLeft 1s linear;
    -webkit-animation: fadeInLeft 1s linear;
    -ms-animation: fadeInLeft 1s linear;
    -moz-animation: fadeInLeft 1s linear;
    -o-animation: fadeInLeft 1s linear;

}
.banner_box_wrapper .swiper-slide.swiper-slide-active .imgbox1 .swipper_img h2{
    animation: fadeInRight 1s linear;
    -webkit-animation: fadeInRight 1s linear;
    -ms-animation: fadeInRight 1s linear;
    -moz-animation: fadeInRight 1s linear;
    -o-animation: fadeInRight 1s linear;
}
.banner_box_wrapper .swiper-slide.swiper-slide-active .imgbox1 .swipper_img h3{
    animation: fadeInLeft 1s linear;
    -webkit-animation: fadeInLeft 1s linear;
    -ms-animation: fadeInLeft 1s linear;
    -moz-animation: fadeInLeft 1s linear;
    -o-animation: fadeInLeft 1s linear;
}
.banner_box_wrapper .swiper-slide.swiper-slide-active .imgbox1 .swipper_img p{
    animation: fadeInRight 1s linear;
    -webkit-animation: fadeInRight 1s linear;
    -ms-animation: fadeInRight 1s linear;
    -moz-animation: fadeInRight 1s linear;
    -o-animation: fadeInRight 1s linear;
}
.banner_box_wrapper .swiper-slide.swiper-slide-active .imgbox1 .swipper_img .int_btn{
    animation:	fadeInLeft 1s ease;
    -webkit-animation: fadeInLeft 1s linear;
    -ms-animation: fadeInLeft 1s linear;
    -moz-animation: fadeInLeft 1s linear;
    -o-animation: fadeInLeft 1s linear;
}
.banner_box_wrapper .swiper-slide.swiper-slide-active .imgbox2 .swipper_img h4{
    animation: fadeInDown 1s linear;
    -webkit-animation: fadeInDown 1s linear;
    -ms-animation: fadeInDown 1s linear;
    -moz-animation: fadeInDown 1s linear;
    -o-animation: fadeInDown 1s linear;
}
.banner_box_wrapper .swiper-slide.swiper-slide-active .imgbox2 .swipper_img h2{
    animation: fadeInUp 1s linear;
    -webkit-animation: fadeInUp 1s linear;
    -ms-animation: fadeInUp 1s linear;
    -moz-animation: fadeInUp 1s linear;
    -o-animation: fadeInUp 1s linear;
}
.banner_box_wrapper .swiper-slide.swiper-slide-active .imgbox2 .swipper_img h3{
    animation: fadeInUp 1s linear;
    -webkit-animation: fadeInUp 1s linear;
    -ms-animation: fadeInUp 1s linear;
    -moz-animation: fadeInUp 1s linear;
    -o-animation: fadeInUp 1s linear;
}
.banner_box_wrapper .swiper-slide.swiper-slide-active .imgbox2 .swipper_img p{
    animation: fadeInDown 1s linear;
    -webkit-animation: fadeInDown 1s linear;
    -ms-animation: fadeInDown 1s linear;
    -moz-animation: fadeInDown 1s linear;
    -o-animation: fadeInDown 1s linear;
}
.banner_box_wrapper .swiper-slide.swiper-slide-active .imgbox2 .swipper_img .int_btn{
    animation:	fadeInUp 1s ease;
    -webkit-animation: fadeInUp 1s linear;
    -ms-animation: fadeInUp 1s linear;
    -moz-animation: fadeInUp 1s linear;
    -o-animation: fadeInUp 1s linear;
}
.swiper_imgbox .swipper_img > h1 {
    font-size: 140px;
    text-transform: uppercase;
    color: #252a2d;
    font-weight: 900;
    margin-top: 85px;
    margin-left: -9px;
}
.swiper_imgbox .btn_caret {
    right: -29px;
}

/* button css */
.int_btn, .int_btn:focus {
    min-width: 140px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    outline: none;
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    color: #000000;
    background: #cbbba0;
    position: relative;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.int_btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #333333;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0% 10% 0;
    transform-origin: 0% 10% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.int_btn:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.int_btn.left_zero:before {
    transform-origin: 100% 50%;
}
.int_btn_two:focus {
    background: #ff1d4d;
}
.int_btn_two {
    background: #ff1d4d;
    width: 170px;
    letter-spacing: 1px;
}
.btn_caret {
    height: 50px;
    line-height:53px;
    background: #1d71b8;
    display: inline-block;
    padding: 0px 12px;
    position: absolute;
    top: 0;
    right: -29px;
}
.btn_caret_two {
    background: #f41a48;
}
.int_btn:hover {
    color: #fff;
    background: #555555;
}
.index3_btn, .index3_btn:focus {
    min-width: 170px;
    height: 50px;
    line-height: 50px;
    outline: none;
    border: none;
    cursor: pointer;
    letter-spacing: 2px;
    background-color: #ff9d34;
    color: #ffffff;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.index3_btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0% 10% 0;
    transform-origin: 0% 10% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.index3_btn:hover {
    color: #ff9d34;
}
.index3_btn:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.index4_btn, .index4_btn:focus {
    min-width: 170px;
    height: 50px;
    line-height: 50px;
    outline: none;
    border: none;
    cursor: pointer;
    letter-spacing: 2px;
    background-color: #222222;
    color: #ffffff;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.index4_btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ff9d34;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0% 10% 0;
    transform-origin: 0% 10% 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.index4_btn:hover {
    color: #ffffff;
}
.index4_btn:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/* button css */

/* checkbox start */
.int_checkbox {
    text-align: left;
    text-transform: capitalize;
}
.int_checkbox > input{
    position:absolute;
    left:-999999px;
}
.int_checkbox > label {
    font-weight: 400;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    color: #555555;
    margin-bottom: 5px;
}
.int_checkbox > label:last-child {
    margin-bottom: 0;
}
.multi-select-menuitems label input{
    opacity: 0;
}
.int_checkbox > label:before {
    content: "";
    width: 12px;
    height: 12px;
    border: solid 1px #ddd;
    border-radius: 3px;
    display: inline-block;
    margin-right: 10px;
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(2px);
}
.int_checkbox > label:after {
    content: "";
    position: absolute;
    top: 9px;
    left: 2px;
    width: 9px;
    height: 5px;
    border-left: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    border-radius: 3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity:0;
    visibility:hidden;
}
.int_checkbox > input:checked ~ label:after {
    opacity:1;
    visibility:visible;
}
.int_checkbox > input:checked ~ label:before {
    background-color:#ff1d4d;
    border: solid 1px #ff1d4d;
}
.int_checkbox > input:checked ~ label {
    color:#ff1d4d;
}

.banner_box_wrapper .swiper-button-prev:after{
    content: "";
    position: absolute;
    width: 45px;
    height: 1px;
    background: #1d71b8;
    top: 0px;
    bottom: 0;
    left: -55px;
    margin: auto;
}



.banner_box_wrapper .swiper-button-prev:before{
    right:inherit;
    left:-55px;
}


.int_about_wrapper {
    padding-top: 60px;
    padding-bottom: 113px;
}
.about_box_wrapper .about_imgbox {
    text-align: right;
}
.about_imgbox .about_img {
    position: relative;
}
.about_imgbox .about_img .child_imgbox {
    /*    position: absolute;
        bottom: -70px;
        left: 20px;*/
}
.about_img .child_imgbox:after {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100%;
    height: 100%;
    right: 41px;
    background: #ff000000;
    border: 10px solid #212121;
    z-index: -1;
}
.about_contentbox {
    padding-top: 20px;
}
.about_contentbox .int_heading span {
    font-size: 30px;
    letter-spacing: inherit;
}
.about_contentbox .about_head1 {
    font-size: 40px;
    color: #fff;
    font-weight: 500;
    margin: 5px 0px 2px 0px;
}
.about_contentbox .about_head2 .team {
    font-weight: 500;
    color: #fff;
}
.about_contentbox .about_head2{
    font-size: 40px;
    color: #1d71b8;
    font-weight: 300;
    margin-top: 15px;
    font-size: 39px;
}
.about_contentbox .about_deatils {
    color: #cdcdcd;
    padding-top: 15px;
    font-size: 14px;
}
.about_contentbox .int_heading {
    margin-bottom: 0;
    text-align: left;
}
.about_contentbox .int_btn .about_btnicon {
    height: 60px;
    line-height: 60px;
    display: inline-block;
    position: absolute;
    left: -60px;
    padding: 0px 16px;
    background: #34393f;
    border-right: 1px solid #212629;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
}
.about_contentbox .int_btn {
    min-width: 244px;
    height: 60px;
    line-height: 60px;
    text-transform: capitalize;
    background: #34393f;
    margin-left: 60px;
    letter-spacing: 0px;
    margin-top: 22px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
}
.about_contentbox .int_btn:hover, .about_contentbox .int_btn:hover .about_btnicon {
    background: #c6a47e;
}
.about_contentbox .int_btn .about_btnicon svg{
    width:30px;
    height:30px;
}
.about_contentbox .int_btn:hover .about_btnicon svg path {
    fill: #fff;
}

.int_heading {
    margin-bottom: 47px;
    z-index: 1;
    text-align: center;
}

.int_heading h4 {
    color: #1d71b8;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}
.int_heading h2 {
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 500;
    z-index: 2;
    position: relative;
    margin-top: 6px;
}
.int_heading span {
    font-size: 80px;
    text-transform: uppercase;
    font-weight: 900;
    color: #1f1f1f;
    letter-spacing: 12px;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 2px;
    bottom: 0;
    margin: auto;
    z-index: -1;
    line-height: 18px;
}
.int_about_wrapper {
    position: relative;
    background: url("../img/bgg.png") no-repeat;
    background-position: 115% -53px;
    background-size: 40%;
}
.int_about_wrapper:after {
    content: '';
    background: url(../img/pattern_white.png) center;
    opacity: 0.4;
    width: 100%;
    height: 60px;
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: -1;
}

.blog_sect {
    padding:80px 0;
    background: url(../img/bgg.png) no-repeat;
    background-position:right center;

}

.form_contact button {
    background-color: transparent;
    margin-top: 30px;
}

.form_contact button:focus {
    outline:none;
}


.footer_social a {
    font-size: 23px;
    margin-right: 10px;
}



.footer-contact i {
    font-size: 12px;
    color:#fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: #1d71b8;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin-right: 15px;
}
.footer-contact .media {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #272727;
}

.footer-contact .media:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.footer-contact .media-body {
    color:#838383;
    font-size: 15px;
}

.main_imgblock{
    padding:30px;
    background: #282d32;
}

.navbar-nav li.dropdown-toggle>a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    font-weight: 600;
    font-size: 10px;
    position: absolute;
    right: 0;
}

.navbar-nav li.dropdown-toggle>a{
    padding-right: 15px;
}

body.other {
    background: #070808;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

.imgs_post .rn_surface{
    margin-bottom: 30px;
}

#single_post .content_post_p p b,
#single_post .content_post_p p h1,
#single_post .content_post_p p h2,
#single_post .content_post_p p h3,
#single_post .content_post_p p h4,
#single_post .content_post_p p h5,
#single_post .content_post_p p h6,
#single_post .content_post_p p strong{
    color:#fff;
}

body.other .lines .line:nth-child(2) {
    left: 381px;
}

body.other .lines .line:nth-child(3) {
    right: 410px;
}
body.other .lines .line:nth-child(4) {
    right: 92px;
}




img {
    max-width: 100%;
    height: auto;
}


.left-tab .icon{
    background: #212529;
    color: #ffffff;
    width: 50px;
    font-size: 19px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.left-tab .text {
    padding: 15px 15px;
    background: #1c1f23;
    font-size: 17px;
    margin-bottom: 0;
    color: #fff;
    /* font-weight: 300; */
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.left-tabbed-navigation > a:hover > .left-tab .icon,
.left-tabbed-navigation > a.active > .left-tab .icon {
    background: rgb(24, 88, 142);
}

.left-tabbed-navigation > a:hover > .left-tab .text,
.left-tabbed-navigation > a.active > .left-tab .text {
    background: rgb(29, 113, 184);
}

.left-tab {
    margin-bottom: 1px;
}

.custom-tab-content{
    position: relative;
}
.custom-tab-content .tab-content {
    display: none;
}
.custom-tab-content .tab-content.active {
    display: block;
}

.post_img .icon{
    position: absolute;
    display: inline-block;
    width: 70px;
    height: 70px;
    background-color: rgba(29, 113, 184, .8);
    color:#fff;
    text-align: center;
    line-height: 70px;
    z-index: 2;
    top:50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.mobile-menu-wrapper {
    position: fixed;
    width: 55%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #1c1f23;
    z-index: 999;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-transform: translateX(-110%);
    -moz-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    -o-transform: translateX(-110%);
    transform: translateX(-110%);
    overflow: auto;
}
.mobile-menu-wrapper.active {
    -webkit-transform: translateX(-0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.mobile-menu-wrapper ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-menu-wrapper ul li a{
    padding: 10px 15px 10px 30px;
    color: #fff;
    display: block;
    border-bottom: 1px solid #2d3033;
    position: relative;
    font-family: "Oswald";
    letter-spacing: 1px;
    font-size: 16px;
}
.mobile-menu-wrapper ul li a i.menu-trigger{
    float: right;
    margin-top: 3px;
}
.mobile-menu-wrapper ul.dropdown-menu{
    display: none;
    background-color: #282d32;
    position: relative;
    visibility: inherit;
    opacity: 1;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}
.mobile-menu-wrapper ul.dropdown-menu li a{
    padding-left: 25px!important;
    font-size: 15px;
    font-weight: 300;
}

.mobile-menu-wrapper li  a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f30b";
    font-weight: 600;
    font-size: 13px;
    position: absolute;
    left: 10px;
    top: 14px;
}
.mobile-menu-wrapper li.dropdown-toggle ul li a:before {
    content: "\f105";
    left: 14px;
}
.mobile-menu-wrapper li.dropdown-toggle > a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    font-weight: 600;
    font-size: 13px;
    position: absolute;
    right: 11px;
    top: 13px;
}
.mobile-menu-wrapper .logo {
    padding:30px 0;
}
.mobile-menu-wrapper ul.dropdown-menu:after,
.mobile-menu-wrapper ul.dropdown-menu:before{
    display: none;
}

.overlay-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0,0,0,.8);
    z-index: 20;
    display: none;
}


.overlay-bg.active {
    display: block;
}

.mobile-lang a {
    display: block;
    padding: 15px;
    text-align: center;
    color: #fff;
    background: #838383;
}

.mobile-lang a:hover,
.mobile-lang a:focus {
    background: #1d71b8;
}


.project-column .image-block {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 100%;

}

.project-column  img{
    display: none;
}

.navbar-expand-xl.sticky {
    position: fixed;
    width: 100%;
    left:0;
    top:0;
    background: #212529;
    padding-left: 30px;
    z-index: 999;
    height: 80px !important;
}
.navbar.sticky .sticky-logo {
    display: inline-block;
}
.navbar.sticky .main-logo {
    display: none;
}
.navbar.sticky .logo img {
    margin-top: 0px;
    height: 60px;
}
.header-social a {
    display: inline-block;
    margin-right: 10px;
}

.header-social a:last-child{
    margin-right: 0;
}
.kurucu p{
    font-family: 'Yellowtail', cursive;
    margin-top: 15px;
    font-size: 38px;
    
}
.kurucu h5{
    font-family: 'Yellowtail', cursive;
    margin-top: 15px;
    font-size: 25px;
}
.link_proje:hover > .left-tab .text{
        background: rgb(29, 113, 184);

}
.link_proje:hover > .left-tab .icon{
        background: rgb(24, 88, 142);
}