﻿@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zeyada&display=swap');
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:root {
    --primary:#1f3a62;
    --secondary:#0e1e40;
    --dark:#222;
    --gray:#666;
    --lightgray:#f5f5f5;
    --r1:#f7ce1e;
    --r2:#0379bc;
    --r3:#e73330;
    --r4:#07ab54;
    --r5:#f26a31;
    --headerHeight:100px;
}
:focus {

    outline: 0

}
html {
    overflow-x: hidden !important;
    height: 100%;
}
body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight:400;
    font-style: normal;     
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 14px;
    height: 100%; 
    background: #fff;
    color: var(--dark);
     
} 
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
} 
@-o-viewport {
    width: device-width;
}
@-ms-viewport {
    width: device-width;
}
@viewport {
    width: device-width;
}
a {
    text-decoration: none;
    position: relative;
    color: #222;
}
.bg-primary {background-color: var(--primary) !important;}
.bg-secondary {background-color: var(--secondary) !important;}
.bg-dark {background-color: var(--dark) !important;}
.bg-gray {background-color: var(--gray) !important;}
.bg-lightgray {background-color: var(--lightgray) !important;}
.bg-r1 {background-color: var(--r1) !important;}
.bg-r2 {background-color: var(--r2) !important;}
.bg-r3 {background-color: var(--r3) !important;}
.bg-r4 {background-color: var(--r4) !important;}
.bg-r5 {background-color: var(--r5) !important;}
.text-primary {color: var(--primary) !important;}
.text-secondary {color: var(--secondary) !important;}
.text-dark {color: var(--dark) !important;}
.text-gray {color: var(--gray) !important;}   
.r1 {color: var(--r1) !important;}
.r2 {color: var(--r2) !important;}
.r3 {color: var(--r3) !important;}
.r4 {color: var(--r4) !important;}
.r5 {color: var(--r5) !important;} 
.title-p {font-size: 17px; font-weight: 300; letter-spacing: 1px;}
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
}
#movingBallG {
    position: absolute;
    width: 105px;
    height: 8px;
    top: 50%;
    left: 50%;
    margin: -4px 0 0 -52px;
}
.movingBallLineG {
    position: absolute;
    left: 0;
    top: 3px;
    height: 1px;
    width: 105px;
    background: #ccc;
}
.movingBallG {
    background: #292929;
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    -moz-border-radius: 4px;
    -moz-animation-name: bounce_movingBallG;
    -moz-animation-duration: 1.3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-direction: linear;
    -webkit-border-radius: 4px;
    -webkit-animation-name: bounce_movingBallG;
    -webkit-animation-duration: 1.3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: linear;
    -ms-border-radius: 4px;
    -ms-animation-name: bounce_movingBallG;
    -ms-animation-duration: 1.3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-direction: linear;
    -o-border-radius: 4px;
    -o-animation-name: bounce_movingBallG;
    -o-animation-duration: 1.3s;
    -o-animation-iteration-count: infinite;
    -o-animation-direction: linear;
    border-radius: 4px;
    animation-name: bounce_movingBallG;
    animation-duration: 1.3s;
    animation-iteration-count: infinite;
    animation-direction: linear;
}
@-moz-keyframes bounce_movingBallG {
    0% {
        left: 0;
    }
    50% {
        left: 97px;
    }
    100% {
        left: 0;
    }
}
@-webkit-keyframes bounce_movingBallG {
    0% {
        left: 0;
    }
    50% {
        left: 97px;
    }
    100% {
        left: 0;
    }
}
@-ms-keyframes bounce_movingBallG {
    0% {
        left: 0;
    }
    50% {
        left: 97px;
    }
    100% {
        left: 0;
    }
}
@-o-keyframes bounce_movingBallG {
    0% {
        left: 0;
    }
    50% {
        left: 97px;
    }
    100% {
        left: 0;
    }
}
@keyframes bounce_movingBallG {
    0% {
        left: 0;
    }
    50% {
        left: 97px;
    }
    100% {
        left: 0;
    }
}   
p {
    font-size: 15px;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 500;
}    
/* HEADER */
header.main-header {
    position: fixed;
    z-index: 22;
    width: 100%; 
    height: 100px;
    top: 0;    
    left: 0;
    padding: 0;  
    display: inline-flex;
    align-items: center;
    justify-content: center;  
}  
.header-nav-list {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    list-style: none;
    gap: 40px;
    margin-bottom: 0;
}
@media only screen and (min-width: 320px) and (max-width: 1200px) {
    .header-nav-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 0 0 96px;
        gap: 0;
        height: auto;
    }
}
.header-nav-list::before {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
}
.header-nav-list-item {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}
@media only screen and (min-width: 320px) and (max-width: 1200px) {
    .header-nav-list-item {
        width: 100%;
        height: auto;
        display: block;
        position: relative;
    }
}
.header-nav-list-item svg {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (prefers-reduced-motion: reduce) {
    .header-nav-list-item svg {
        -webkit-transition: none;
        transition: none;
    }
}
.header-nav-list-item svg.rotateIcon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
@media only screen and (min-width: 320px) and (max-width: 1200px) {
    .header-nav-list-item svg {
        position: absolute;
        right: 20px;
        top: 10px;
    }
}
.header-nav-list-item:hover {
    color: #ea002a;
}
.header-nav-list-item:hover svg path {
    fill: #ea002a;
}
@media only screen and (min-width: 320px) and (max-width: 1200px) {
    .header-nav-list-item:not(:last-child) .header-nav-list-item-a {
        padding-bottom: 23px;
        margin-bottom: 22px;
    }
}
@media only screen and (min-width: 320px) and (max-width: 1200px) {
    .header-nav-list-item:first-child .header-nav-list-item-a {
        padding-top: 23px;
    }
}
@media only screen and (min-width: 320px) and (max-width: 1200px) {
    .header-nav-list-item:last-child .header-nav-list-item-a {
        padding-bottom: 22px;
    }
}
.header-nav-list-item-a { 
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    color: var(--primary); 
    line-height: normal;
    text-decoration: none;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    
    -webkit-transition: all 0.3s;
    transition: all 0.3s; 
    gap: 5px;
}
.header-nav-list-item-a svg path {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media only screen and (min-width: 320px) and (max-width: 1200px) {
    .header-nav-list-item-a {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-bottom: 1px solid rgba(27, 21, 38, 0.1);
        padding: 0 20px;
        gap: 0;
        height: auto;
    }
}
.header-nav-list-item-a:hover {
    color: var(--r5);
}
.header-nav-list-item-a:hover svg path {
    fill: var(--r5);
}  
.header-dropdown-menu {
    display: none;
    background-color: #fff;
    -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100px;
    right: 0;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: 1px solid rgba(27, 21, 38, 0.1);
}
@media only screen and (min-width: 320px) and (max-width: 1200px) {
    .header-dropdown-menu {
        -webkit-box-shadow: none;
        box-shadow: none;
        position: relative;
        height: auto;
        top: -25px;
        z-index: 1;
        padding-top: 25px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-left: 20px;
        border-top: none;
        border-bottom: 1px solid rgba(27, 21, 38, 0.1);
    }
}
.header-dropdown-menu-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    padding-bottom: 104px;
    padding-top: 40px;
}
@media only screen and (min-width: 320px) and (max-width: 1200px) {
    .header-dropdown-menu-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-top: 0;
        padding-bottom: 40px;
        gap: 31px;
    }
}
.header-dropdown-menu-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
    padding: 0 !important;
    border: none !important;
    height: 100%;
}
.header-dropdown-menu-list li .media img {
    width: 160px;   
    border-radius: 8px;
}
.header-dropdown-menu-list li .link-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    width: 190px;
}
.header-dropdown-menu-list li .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-decoration: none;
    gap: 16px;
    height: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.header-dropdown-menu-list li .text:hover p,
.header-dropdown-menu-list li .text:hover span {
    color: var(--r5) !important;
}
.header-dropdown-menu-list li .text span { 
    font-weight: 600;
    font-style: normal; 
    color:  var(--primary) !important;
    font-size: 13px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 130%;
}
.header-dropdown-menu-list li .text p {
    color: rgba(27, 21, 38, 0.7);
    font-size: 11px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 130%;
    width: 90%;
}
.header-mb-nav .icon-mobile-nav[name="open"] {
    display: none;
}
.header-mb-nav .icon-mobile-nav[name="close"] {
    display: block !important;
}        

.katalog a {
    background-color: var(--r5);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    color: #fff;
    padding: 10px 15px;
    border-radius: 9px;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 3px;
    transition: all 200ms linear;
}
.katalog a:hover {
    background-color: var(--primary);
}
/* HEADER END */
.main {
    position: relative;
    margin-top: var(--headerHeight);
}
.slider-bottom {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px; 
}    
.slider-bottom img {
    border-radius: 7px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 15px;
}
.slider-bottom .title {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    line-height: 24px;
    margin: 0;
    padding: 0;
}

.sidebar-menu {
    position: absolute;
    left: 15px;
    top: 0;
    width: 90%;
    height: 350px;
    background: #f4f4f4 !important;
    z-index: 60;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}
.sidebar-menu .overlay {
    z-index: 3;
    opacity: 0.5;
}
.sb-overlay {
    position: fixed;
    top: 70px;
    left: 80px;
    right: 0;
    bottom: 0;
    background: #292929;
    opacity: 0.6;
    display: none;
    z-index: 59;
    -webkit-transform: translate3d(0, 0, 0);
}
.hid-men-wrap {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    z-index: 4;
    overflow: inherit;
}
.sidebar-menu h2 {
    text-align: left;
    margin-left: 50px;
    color: #222;
    margin-bottom: 15px;
}
.menusb ul {
    margin: 0;
    float: left;
    overflow: hidden;
}
.menusb li {
    margin: 0;
    position: relative;
    overflow: hidden;
    padding: 0 50px;
    margin-bottom: 8px;
}
.menusb li i {
    position: absolute;
    right: 18px;
    top: 12px;
}
.menusb a {
    float: left;
    width: 100%;
    padding: 2px 5px;
    position: relative;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    color: #222 !important;
    line-height: 20px;
    text-align: left;
    border-left: 1px solid #f4f4f4;
    transition: all 0.3s;
}
.menusb a:hover {
    margin-left: 6px;
    color: #999 !important;
    border-left: 1px solid #999 !important;
    padding-left: 10px;
}
.menusb a.active {
    margin-left: 6px;
    color: #999 !important;
    border-left: 1px solid #999 !important;
    padding-left: 10px;
}
.menusb a.back {
    padding-left: 54px;
}
.menusb a.back:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    text-decoration: inherit;
    content: "\f177";
    font-size: 14px;
}
.sb-logo {
    float: left;
    width: 150px;
    margin-left: 50px;
    margin-bottom: 40px;
}
.sb-logo img {
    width: 100%;
    height: auto;
}
.sb-menu-footer {
    padding-left: 50px;
    margin-top: 50px;
    font-weight: 700;
    font-size: 10px;
    text-align: left;
}
.sb-menu-footer:before {
    content: "";
    position: absolute;
    top: -25px;
    left: 50px;
    width: 70px;
    height: 1px;
    background: #ccc;
}
.show-search {
    float: right;
    height: 70px;
    width: 70px;
    line-height: 70px;
    border-left: 1px solid #e6eaea;
    cursor: pointer;
    position: relative;
}
.show-search:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    width: 30px;
    height: 1px;
    background: #292929;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.show-search.vissearch:before {
    width: 0;
}
.fixed-search {
    display: none;
    position: fixed;
    z-index: 100;
    top: 70px;
    left: 80px;
    right: 0;
    bottom: 0;
}
.search-form-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.81) url(../images/serch-bg.png) repeat;
}
.search-form-wrap {
    position: relative;
    z-index: 2;
    float: left;
    top: 50%;
    width: 100%;
}
.fixed-search .searchform {
    float: left;
    width: 100%;
}
.fixed-search .searchform input {
    float: left;
    background: 0 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.21);
    width: 100%;
    color: #fff !important;
    text-align: left;
    font-weight: 900;
    font-size: 42px;
    z-index: 1;
    position: relative;
    padding-right: 50px;
}
.dublicated-text {
    position: absolute;
    top: -90px;
    right: 90px;
    z-index: 1;
    color: #fff;
    opacity: 0.1;
    font-size: 90px;
    font-weight: 900;
}
.fixed-search .container {
    position: relative;
}
.fixed-search .container:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    text-decoration: inherit;
    content: "\f002";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 50px;
    line-height: 50px;
    z-index: 2;
    color: #fff;
    font-size: 19px;
}
.btn {
    padding: 15px 30px;
    position: relative;
    margin-top: 10px;
    font-size: 12px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.trsp-btn {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
}
.flat-btn:before,
.trsp-btn:before {
    background: #fff;
}
.float-btn {
    float: left;
}
.flat-btn {
    border: 1px solid #000;
    color: #fff;
    background: #111;
}
.flat-btn {
    border: 1px solid #000;
    color: #fff;
    background: #111;
}
.float-btn:hover {
    cursor: pointer !important;
}
.btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    height: 1px;
    width: 0;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.btn:hover:before {
    width: 30px;
}
.btn:hover {
    padding-left: 60px;
}

.product h1 {
    font-size: 32px;
    font-weight: 500;
    line-height: 35px; 
}
.product h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    font-style: italic;  
}

.box .title {
    font-size: 19px;
    line-height: 19px;
    margin: 0;
    font-weight: 400;
}
.box img {opacity: .7;}
@media (max-width: 767px) {
    .float-btn-xs-none {
        float: none !important;
        top: 24px !important;
    }
} 

.breadcrumb li {
    display: inline-block;
    padding: 0 5px;
    font-size: 12px;
    color: #666;
}
.breadcrumb li::after {
    content: "/";
    padding-left: 5px;
    
}
.breadcrumb li:last-child::after {
    content: " "; 
    
}

.height-emulator {
    float: left;
    width: 100%;
    position: relative;
    z-index: 1;
}

/*FOOTER*/
footer {
    color: #fff;
    font-size: 15px;
}
footer a{
    color: #fff;
    font-size: 15px;
}
footer a:hover{
    opacity: .7;
}

.content-footer {
   position: relative;    
}
.footer-inner { position: relative; 
    width: 12%; 
    background: #f00;
}  
.footer-slogan {
    font-size: 25px !important;
    color: #fff;    
}
footer .title {
    color: #fff;
    font-weight: 400;
    font-size: 22px;
    line-height: 22px;
    border-bottom: 2px solid rgba(255,255,255, 0.4);
    padding-bottom: 10px;
    margin-bottom: 15px;
}
footer ul {
    margin: 0;
    padding: 0;     
}
footer ul li {
    color: #fff;
    list-style-type: none;
    padding: 0;
    padding-bottom: 7px;
}
footer ul li::before { 
    content: ">";
    padding-right: 7px;
}

footer ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 14px;
    transition: all 200ms linear;   
}
footer ul li a:hover   {
  opacity: .7;
}  
footer .social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin: 0 10px;
    padding: 5px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
}
footer .social svg{
    fill: var(--primary);
}
footer .phone a {
    font-size: 20px;
    font-weight: 700;
}
.webdesign a {
    color: rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 16px;
    text-align: center !important;
}
.webdesign a:hover {
    color: rgba(255, 211, 0, 0.2);
    font-weight: 700;
    font-size: 16px;
}
@media (max-width: 767px) {
    .content-footer {
        padding: 15px;
    }
    .footer-inner {
        padding: 25px !important;
    }
    .text-xs-center {
        text-align: center !important;
    }
    .footer-logo img {
        margin: auto;
        float: none;
        width: 90%;
    }
    .footer-slogan {
        margin-top: 30px;
        margin-bottom: 30px;
        width: 100%;
        text-align: center;
        font-weight: 700;
    }
}
 
.border-top-footer {    
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}   
.to-top {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 50px;
    padding: 17px 0;
    color: #fff;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.subcribe-form {
    padding-left: 100px;
}
.subcribe-form span {
    position: absolute;
    top: 22px;
    left: 0;
    width: 95px;
    font-weight: 700;
    font-size: 10px;
}
#subscribe {
    float: left;
    width: 100%;
}
#subscribe .enteremail {
    background-color: #f1f1f1;
    font-size: 12px;
    height: 55px;
    padding: 0 20px;
    width: 70%;
    border: none;
}
#subscribe-button {
    width: 30%;
    height: 55px;
    float: right;
    background: #292929;
    color: #fff;
    font-weight: 700;
    border: none;
    font-size: 10px;
}
.subscribe-message {
    float: left;
    width: 100%;
    margin-top: 20px;
    font-weight: 800;
    font-size: 11px;
}

.gray-bg {
    background: #f4f4f4;
}
section.parallax-section {
    padding: 100px 0;
    overflow: hidden;
}
.section-padding {
    padding: 170px 0 90px !important;
}
.section-padding-200 {
    padding: 200px 0 !important;
}
.section-padding-150 {
    padding: 150px 0 !important;
}
section.parallax-section.content-parallax-section {
    padding: 150px 0;
}
section.sml-pad-sec {
    padding: 0 0 60px;
}
section.parallax-section .overlay {
    opacity: 0.2;
}
section.parallax-section .overlay.op1 {
    opacity: 0.1;
}
.overlay.op4 {
    opacity: 0.3;
}  
.sect-scroll-link {
    position: absolute;
    bottom: -170px;
    color: #000;
    left: 0;
    font-size: 13px;
}
.sect-scroll-link:after,
.sect-scroll-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 70px;
    height: 1px;
    background: #eee;
    z-index: 1;
}
.sect-scroll-link:after {
    z-index: 2;
    background: #292929;
    width: 0;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
}
.sect-scroll-link:hover:after {
    width: 70px;
}
.sect-scroll-link span {
    font-weight: 700;
    font-size: 10px;
}
.sect-scroll-link i {
    padding-right: 120px;
    font-size: 20px;
}
.partcile-dec {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    color: #000;
    opacity: 0.6;
}
.section-title {
    float: left;
    width: 100%;
    position: relative;
}
.section-title h2 {
    float: left;
    width: 100%;
    font-size: 44px;
    font-weight: 700;
    line-height: 56px;
}
section.header-section h2 {
    font-size: 50px;
    line-height: 75px;
}
.section-title h1 {
    float: left;
    width: 100%;
    font-size: 44px;
    font-weight: 700;
    line-height: 56px;
}
section.header-section h1 {
    font-size: 50px;
    line-height: 75px;
    color: #fff !important;
}
.section-title h3 {
    position: relative;
    float: left;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}
.no-border {
    border: none;
}
section.parallax-section .section-title h2,
section.parallax-section .section-title h3 {
    color: #fff;
}
.sroll-nav-wrap {
    position: absolute;
    top: 180px;
    z-index: 10;
    width: 50px;
    z-index: 26;
    right: 30px;
}
.sroll-nav-container {
    position: absolute;
    width: 50px;
    right: 0;
    top: 0;
}
.sroll-nav-wrap .scroll-nav:before {
    content: "";
    position: absolute;
    top: -10px;
    bottom: -10px;
    width: 1px;
    background: #eee;
    right: -10px;
    z-index: 1;
}
.sroll-nav-wrap .scroll-nav li {
    float: left;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: relative;
    box-sizing: border-box;
    z-index: 3;
}
.sroll-nav-wrap .scroll-nav li a {
    color: #000;
    font-weight: 700;
    font-size: 12px;
    position: relative;
}
.sroll-nav-wrap .scroll-nav li a:before {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -30px;
    height: 0;
    width: 6px;
    background: #000;
}
.sroll-nav-wrap .scroll-nav.black-bg li a:before {
    background: #fff;
}
.sroll-nav-wrap .scroll-nav li a span {
    height: auto;
    line-height: 20px;
    font-size: 11px;
    color: #000;
    text-align: left;
    text-transform: uppercase;
    text-indent: 0;
    position: absolute;
    bottom: 30px;
    width: 200px;
    opacity: 0;
    left: -240px;
    visibility: hidden;
    pointer-events: none;
    z-index: 16;
    text-align: right;
}
.sroll-nav-wrap .scroll-nav li a span:before {
    content: "";
    position: absolute;
    right: -20px;
    width: 10px;
    height: 1px;
    top: 50%;
    background: #000;
}
.sroll-nav-wrap .scroll-nav li a:hover span {
    bottom: -4px;
    opacity: 1;
    visibility: visible;
}
.sroll-nav-wrap .scroll-nav li a.act-scrlink:before {
    height: 50px;
}
.sroll-nav-wrap .scroll-nav li a,
.sroll-nav-wrap .scroll-nav li a span,
.sroll-nav-wrap .scroll-nav li a:before {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.sroll-nav-wrap .scroll-nav.black-bg li a,
.sroll-nav-wrap .scroll-nav.black-bg li a span {
    color: #fff;
    font-size: 12px;
}
.sroll-nav-wrap .scroll-nav.black-bg li a span:before,
.sroll-nav-wrap .scroll-nav.black-bg:before {
    background: rgba(255, 255, 255, 0.41);
}
.separator.trsp-separator {
    float: left;
    width: 70px;
    height: 6px;
    background: #fff;
    margin: 40px 0 30px;
}
.bold-separator {
    width: 70px;
    height: 6px;
    background: #000;
    float: left;
    margin-top: 35px;
}
@media (max-width: 767px) {
    .bold-separator {
        margin-left: calc(50vw - 60px);
    }
}
.about-wrap p {
    padding-bottom: 20px;
    font-size: 15px;
}
.section-container {
    margin: 50px 0;
}
.about-wrap .btn {
    margin-top: 70px;
}
.bg.dec-bg {
    width: inherit;
    height: inherit;
    left: 50%;
    right: 0;
    top: 20%;
    bottom: 0;
    opacity: 0.1;
    z-index: -1;
}
.bg.dec-bg.left-pos-dec {
    left: -10%;
    right: 40%;
}
.creat-list li {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 20px;
}
.creat-list li span {
    text-align: left;
    font-size: 17px;
    text-transform: uppercase;
    float: left;
    padding-right: 30px;
    position: relative;
    top: 0;
    font-weight: 700;
}
.creat-list li a {
    float: right;
    text-align: right;
    font-size: 12px;
    padding-top: 10px;
    font-weight: 700;
    margin-bottom: 15px;
}
.creat-list li:before {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 80px;
    right: 100px;
    height: 1px;
    background: #eee;
}
.facts-wrap {
    margin-top: 40px;
}
.inline-facts-holder {
    background: #fff;
}
.inline-facts {
    float: left;
    width: 25%;
    box-sizing: border-box;
    position: relative;
}
.inline-facts:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 50px;
    top: 50%;
    margin-top: -25px;
    right: 0;
    background: rgba(0, 0, 0, 0.21);
}
.inline-facts:last-child:before {
    display: none;
}
.num {
    float: left;
    width: 100%;
    font-size: 30px;
    color: #111;
    font-weight: 900;
    padding-top: 10px;
}
.num2 {
    float: left;
    width: 100%;
    font-size: 21px;
    color: #111;
    font-weight: 900;
    padding-top: 10px;
    text-align: center;
}
.num2 sup {
    font-size: 10px;
}
.milestone-counter {
    float: left;
    width: 100%;
    position: relative;
}
.stats {
    float: left;
    width: 100%;
    position: relative;
}
.inline-facts h6 {
    font-size: 10px;
    color: #111;
    font-weight: 900;
    text-align: center;
}
.inline-facts i {
    color: #eee;
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 30px;
    border-radius: 100%;
    margin-left: -15px;
    font-size: 26px;
}
.team-holder {
    float: left;
    width: 100%;
}
.team-holder li {
    float: left;
    width: 50%;
    padding: 20px 20px 20px 0;
}
.team-box {
    float: left;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.team-info {
    float: left;
    width: 100%;
    margin-top: 20px;
    text-align: left;
}
.team-info h3 {
    font-size: 17px;
    padding-bottom: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}
.team-info h4 {
    float: left;
    width: 100%;
    text-align: left;
    margin-top: 10px;
    color: #666;
    font-size: 11px;
    font-weight: 800;
}
.team-box:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 6px;
    width: 50px;
    background: #000;
}
.team-photo {
    position: relative;
    overflow: hidden;
    width: 100%;
    float: left;
}
.team-photo span {
    position: absolute;
    bottom: -50px;
    right: 0;
    z-index: 5;
    padding: 10px 15px;
    background: #fff;
}
.team-photo span {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.team-photo:hover span {
    bottom: 0;
}
.team-box .overlay {
    opacity: 0;
    z-index: 2;
    background: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.team-box:hover .overlay {
    opacity: 0.5;
}
.team-social {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    z-index: 3;
    display: none;
}
.team-social li {
    float: none !important;
    display: inline-block !important;
    padding: 6px;
    width: auto !important;
}
.team-social li a {
    color: #fff;
    font-size: 16px;
    position: relative;
    top: 50px;
    opacity: 0;
}
.custom-inner-holder {
    float: left;
    margin-top: 100px;
    width: 100%;
}
.custom-inner {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 50px;
}
.cus-inner-title {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.cus-inner-title:before {
    content: "";
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 50px;
    height: 6px;
    background: #000;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
}
.custom-inner:hover .cus-inner-title:before {
    right: 100%;
    margin-right: -50px;
}
.custom-inner h3 {
    float: left;
    padding-bottom: 20px;
    font-weight: 600;
    font-size: 19px;
}
.custom-inner h4 {
    float: left;
    width: 100%;
    padding-bottom: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    text-align: left;
}
.custom-inner-dec {
    float: left;
    width: 100%;
    margin-top: 20px;
    background: #eee;
    height: 1px;
}
.custom-inner ul {
    float: left;
    width: 100%;
    padding: 10px 0 10px 13px;
    list-style: decimal;
}
.custom-inner ul li {
    float: left;
    width: 100%;
    padding: 5px 0 5px 10px;
    text-align: left;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
}
.custom-inner .content-nav ul {
    position: relative;
    left: 0;
    padding: 0;
    list-style: none;
}
.custom-inner .content-nav ul li {
    float: left;
    width: 50%;
    padding: 0;
}
.custom-inner .btn {
    margin-top: 20px;
}
.serv-item {
    margin-bottom: 70px;
}
.serv-item .content-wrap {
    float: left;
    width: 100%;
    text-align: left;
}
@media (max-width: 767px) {
    .serv-item .content-wrap {
        text-align: center !important;
    }
}
.serv-item .bold-title {
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.serv-item .pr-list {
    padding: 15px 0;
}
.serv-price-wrap {
    float: left;
    margin: 10px 0;
    padding: 19px 30px;
    background: #292929;
    color: #fff;
    font-size: 12px;
}
.serv-price-wrap span {
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    float: left;
    padding-right: 15px;
    margin-right: 15px;
    position: relative;
}
.serv-price-wrap span:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 30px;
    top: 50%;
    margin-top: -15px;
    background: rgba(255, 255, 255, 0.21);
}
.serv-wrap ul li {
    float: left;
    padding: 15px 20px;
    width: 33.3%;
}
.serv-wrap ul li a {
    color: #fff;
    text-align: left;
}
.serv-wrap ul li a {
    float: left;
    width: 100%;
    margin-bottom: 10px;
    color: #fff;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}
.serv-wrap ul li a span {
    float: left;
    padding-right: 20px;
    opacity: 0.6;
}
.custom-skillbar-holder,
.piechart-holder {
    padding-top: 50px;
    float: left;
    width: 100%;
    position: relative;
}
.piechart-holder h4 {
    font-size: 1.3em;
    text-transform: uppercase;
}
.chart {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    margin-bottom: 26px;
    text-align: center;
}
.chart canvas {
    position: absolute;
    top: 0;
    left: 0;
}
.piechart {
    position: relative;
    padding-bottom: 20px;
}
.percent {
    display: inline-block;
    font-size: 21px;
    line-height: 152px;
    z-index: 2;
}
.percent:after {
    content: "%";
    margin-left: 0.1em;
    font-size: 0.8em;
    font-weight: 800;
}
.percent {
    color: #000;
}
.angular {
    margin-top: 100px;
}
.angular .chart {
    margin-top: 0;
}
.skills-description {
    float: left;
    width: 100%;
    margin: 10px 0;
    color: #000;
    font-weight: 700;
    font-size: 10px;
}
.skill-bar-percent {
    float: right;
    font-size: 16px;
    margin-top: 13px;
    padding-bottom: 6px;
}
.clients-list {
    float: left;
    width: 100%;
}
.clients-list li {
    float: left;
    width: 20%;
    padding: 5px 5px 5px 0;
}
.clients-list li a:hover {
    opacity: 0.6;
}
.clients-list a img {
    float: left;
    width: 100%;
    height: auto;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.clients-list a:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.order-item h3 {
    color: #000;
    text-align: left;
    float: left;
    width: 100%;
    font-weight: 700;
    position: relative;
    top: 19px;
}
.order-item h3:before {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 30px;
    top: -2px;
    background: #ccc;
}
.margin-content {
    margin-top: 50px;
}
.gallery-items,
.por-sidebar {
    float: left;
    width: 100%;
    position: relative;
}
.gallery-items.border-folio-conteainer {
    box-sizing: border-box;
    border-left: 1px solid #eee;
}
.column-content {
    padding-right: 300px;
}
.por-sidebar {
    padding: 0 30px;
    margin-top: 50px;
}
.grid-item-holder {
    float: left;
    width: 100%;
    height: auto;
    position: relative;
}
.hid-port-info .gallery-item {
    overflow: hidden;
}
.grid-big-pad .grid-item-holder {
    padding: 40px;
}
.grid-small-pad .grid-item-holder {
    padding: 3px 6px 3px 0;
}
.grid-no-pad .grid-item-holder {
    padding: 0;
}
.gallery-item,
.grid-sizer {
    width: 25%;
    position: relative;
    float: left;
    padding: 15px;
}
.gallery-item-second,
.grid-sizer-second {
    width: 50%;
}
.gallery-item img,
.grid-sizer img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}
.four-coulms .gallery-item,
.four-coulms .grid-sizer {
    width: 25%;
}
.three-coulms .gallery-item,
.three-coulms .grid-sizer {
    width: 33.3%;
}
.three-coulms .gallery-item-second {
    width: 66.6%;
}
.two-columns .gallery-item {
    width: 50%;
}
.one-columns .gallery-item {
    width: 100%;
}
.two-columns .gallery-item .grid-item-holder .box-item img {
    width: 50% !important;
}
.gallery-item .overlay {
    z-index: 2;
    opacity: 0;
    background: #000;
}
.gallery-item:hover .wh-info-box {
    visibility: visible;
}
.gallery-item:hover .wh-info-box:before {
    width: 100%;
}
.gallery-item:hover .wh-info-box-inner {
    opacity: 1;
}
.grid-item {
    position: relative;
    float: left;
    width: 100%;
    z-index: 15;
    padding: 20px 25px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}
.grid-item h3 {
    font-size: 14px;
    font-weight: 700;
    position: relative;
    float: left;
    width: 100%;
    text-align: left;
}
.grid-item h3:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
}
.grid-item h3:after {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    text-decoration: inherit;
    content: "\f178";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    color: #000;
}
.blog-media img,
.grid-item h3,
.grid-item h3:after,
.grid-item h3:before {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.grid-item h3:hover {
    padding: 0 0 0 30px;
}
.grid-item h3:hover:before {
    width: 20px;
}
.grid-item h3:hover:after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.hid-por-info .grid-item h3:hover:after {
    top: 14px;
}
.grid-item span {
    width: 100%;
    float: left;
    text-align: left;
    font-size: 11px;
    margin-top: 6px;
    color: #999;
}
.hid-por-info .grid-item {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 13;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.vis-por-info .grid-item {
    float: left;
    bottom: 0;
    position: relative;
    width: 100%;
    border: none;
}
.hid-por-info .grid-item,
.vis-por-info .grid-item {
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
}
.hid-por-info .grid-item:after,
.hid-por-info .grid-item:before,
.vis-por-info .grid-item:after,
.vis-por-info .grid-item:before {
    content: "";
    position: absolute;
    top: 0;
    right: 80px;
    width: 1px;
    height: 100%;
    background: #eee;
}
.hid-por-info .grid-item:after,
.vis-por-info .grid-item:after {
    right: 0;
}
.gallery-item:hover .grid-item {
    bottom: 0;
}
.hid-por-info .gallery-item {
    overflow: hidden;
}
.pad-con {
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
}
.pad-con2 {
    padding-top: 50px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 42px;
}
.pad-con3 {
    padding: 0 30px;
}
.hor-pad-con {
    padding: 60px 0 0 30px;
}
.bold-filter {
    margin-top: 50px;
    margin-bottom: 50px;
}
.bold-filter .filter-button {
    float: left;
    margin-right: 20px;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
}
.inline-filter .gallery-filters {
    float: left;
}
.inline-filter .gallery-filters a {
    float: left;
    margin-right: 10px;
    padding: 0 12px;
    position: relative;
    font-weight: 800;
}
.inline-filter .gallery-filters a {
    color: #000;
}
.bold-filter.inline-filter .gallery-filters a:before {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 0;
    background: #292929;
    height: 6px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.flat-filter .gallery-filters a:before {
    bottom: 42px;
}
.bold-filter.inline-filter .gallery-filters a.gallery-filter-active:before {
    width: 100%;
}
.bold-filter.inline-filter .count-folio {
    float: left;
    margin-left: 30px;
    padding: 15px 0;
    width: 100px;
    background: #000;
    position: relative;
    top: -14px;
    color: #fff;
}
.bold-filter.inline-filter .count-folio:before {
    content: "";
    position: absolute;
    top: 12px;
    left: -25px;
    width: 1px;
    height: 20px;
    background: #ccc;
}
.bold-filter.inline-filter .count-folio:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    margin-left: -6px;
    height: 1px;
    margin-top: -1px;
    background: rgba(255, 255, 255, 0.41);
}
.bold-filter.inline-filter .count-folio div {
    float: left;
    width: 50%;
    text-align: center;
    font-weight: 900;
}
.menufilter {
    float: right;
    width: 100px;
    position: relative;
    border-left: 1px solid #eee;
    height: 70px;
}
.ver-filter {
    bottom: 0;
}
.tcf {
    bottom: 32px;
}
.menufilter .filter-button {
    float: left;
    position: relative;
    color: #000;
    width: 100%;
    padding: 5px 15px;
    font-size: 10px;
    margin-top: 26px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 10px;
    cursor: pointer;
    text-align: center;
    z-index: 2;
}
.round-counter {
    float: left;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.41);
    position: relative;
    margin-top: 10px;
    padding-top: 10px;
}
.round-counter:before {
    content: "/";
    position: absolute;
    left: 50%;
    top: 8px;
    color: rgba(255, 255, 255, 0.41);
    font-size: 16px;
    margin-left: -4px;
}
.round-counter div {
    float: left;
    width: 50%;
    font-weight: 700;
    font-size: 10px;
    color: #fff;
}
.hid-filter {
    float: left;
    position: absolute;
    display: none;
    padding: 20px 22px;
    top: 76px;
    background: rgba(0, 0, 0, 0.81);
    width: 150px;
}
.hid-filter a {
    float: left;
    color: #fff;
    width: 100%;
    font-weight: 700;
    font-size: 12px;
    position: relative;
    padding: 4px 10px 4px 0;
    text-align: left;
}
.gallery-filters.hid-filter a.gallery-filter-active {
    text-decoration: line-through;
}
.fixed-filter-wrap {
    position: absolute;
    top: 70px;
    right: 0;
    width: 300px;
    bottom: 0;
    z-index: 1;
    padding: 50px 60px;
    overflow: hidden;
}
.hid-filt-button {
    display: none;
}
.fixed-filter-wrap .gallery-filters a {
    float: left;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
}
.fixed-filter-wrap h3 {
    float: left;
    width: 100%;
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
    text-align: left;
    position: relative;
}
.fixed-filter-wrap .bold-separator {
    margin-top: 5px;
}
.fixed-filter-wrap .gallery-filters {
    margin-top: 30px;
    border-bottom: 1px solid #eee;
    float: left;
    width: 100%;
    padding-bottom: 20px;
}
.fixed-filter-wrap .count-folio {
    float: left;
    background: #eee;
    width: 80px;
    padding: 13px 0;
    margin-top: 20px;
}
.fixed-filter-wrap .count-folio div {
    float: left;
    width: 50%;
}
.box-folio .grid-item {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}
.slider-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    cursor: pointer;
    background: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
}
.slider-wrap .swiper-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.slider-wrap .swiper-slide {
    background: #fff;
    width: auto;
    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;
}
.slider-wrap {
    float: left;
    width: 100%;
    height: 90%;
    position: relative;
}
.slider-wrap.tpslw {
    height: 95%;
}
.slider-wrap.homecarousel {
    height: 100%;
}
.slider-wrap .swiper-slide {
    padding: 0 0 100px 0;
    overflow: hidden;
}
.slider-wrap.homecarousel .swiper-slide {
    padding: 0 0 70px 0;
}
.slider-wrap .swiper-slide img {
    width: auto;
    height: 100%;
    position: relative;
    z-index: 1;
}
.slider-wrap.homecarousel .swiper-container-horizontal > .swiper-scrollbar {
    bottom: 30px;
}
.thumb-info {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    padding: 40px 70px 50px;
    z-index: 2;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.75)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.thumb-info h3 {
    text-align: left;
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    line-height: 40px;
    letter-spacing: -1px;
    font-family: Poppins, sans-serif;
    position: relative;
}
.thumb-info h3:before {
    content: "";
    position: absolute;
    left: -20px;
    bottom: -40px;
    top: -20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.51);
}
.thumb-info h3 a {
    color: #fff;
}
.thumb-info p {
    color: #fff;
    opacity: 0.6;
    font-weight: 900;
}

.whatsapp {
    position: fixed;
    right: -119px;
    padding: 10px;
    border-top-left-radius: 11px;
    border-bottom-left-radius: 11px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    min-width: 170px;
    width: 150px;
    top: calc(50vh - 60px);
    background-color: #fff;
    z-index: 99999;
    transition: right 0.3s;
}
.whatsapp .left {
    float: left;
    width: 40px;
    text-align: left;
}
.whatsapp .right {
    float: left;
    width: 105px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    padding-top: 4px;
}
.whatsapp .right a {
    color: #2cb742;
}
.whatsapp .right a span {
    color: #000;
}
.whatsapp:hover {
    transition: right 0.3s;
    right: 0;
}
.pr-der-pad {
    padding-top: 0;
}
.pr-title {
    float: left;
    font-size: 24px;
    text-align: left;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}
.pr-title span {
    float: left;
    width: 100%;
    padding-top: 10px;
    color: #999;
    text-align: left;
    font-size: 10px;
    font-weight: 500;
    line-height: 22px;
}
.pr-title:before {
    content: "";
    position: absolute;
    left: 0;
    width: 1px;
    height: 120px;
    background: #eee;
    top: 50%;
    margin-top: -60px;
}
section.parallax-section .pr-title {
    color: #fff;
    position: relative;
    top: 50px;
}
section.parallax-section .pr-title:before {
    display: none;
}
section.parallax-section .pr-title:after {
    content: "";
    position: absolute;
    left: 20px;
    width: 60px;
    height: 6px;
    background: #fff;
    top: inherit;
    bottom: -250px;
}
.det-margin {
    margin-top: 70px;
}
.det-wrap p {
    font-size: 13px;
}
.pr-list {
    float: left;
    width: 100%;
    padding: 30px 0;
}
.pr-list li {
    float: left;
    width: 100%;
    padding: 10px 0;
    text-align: left;
    font-weight: 800;
    font-size: 11px;
    word-spacing: 0;
    text-transform: uppercase;
}
.pr-list li span {
    float: left;
    padding-right: 10px;
    color: #999;
}
.dec-border {
    height: 1px;
    background: #eee;
    margin: 10px 0 30px;
}
.pr-subtitle {
    font-size: 12px;
    text-align: left;
    font-weight: 800;
    float: left;
    width: 100%;
    padding-bottom: 20px;
    line-height: 34px;
}
.pr-subtitle span.let-num {
    float: left;
    padding-right: 80px;
    font-weight: 800;
    font-size: 34px;
    color: #000;
    position: relative;
    top: -6px;
}
.pr-subtitle span.let-num:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 10px;
    width: 54px;
    height: 1px;
    background: #eee;
}
.content-nav {
    float: left;
    position: relative;
    width: 100%;
    padding: 0 30px;
    margin-top: 100px;
    border: 1px solid #eee;
    background: #fff;
}
.content-nav.blog-nav {
    margin-top: 50px;
}
.content-nav li {
    width: 33.3%;
    float: left;
    border-left: 1px solid #eee;
    padding: 10px 0;
}
.content-nav li:first-child {
    border: none;
}
.content-nav li a.ln,
.content-nav li a.rn {
    color: #000;
    padding-top: 8px;
    font-size: 24px;
    position: relative;
}
.content-nav li a span.tooltip,
.content-nav li a.ln i,
.content-nav li a.rn i,
.customNavigation a i {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.content-nav li a.ln:hover i,
.content-nav li a.rn:hover i,
.customNavigation a:hover i {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    transform: rotateX(360deg);
}
.content-nav li a.ln {
    float: left;
}
.content-nav li a.rn {
    float: right;
}
.list {
    width: 40px;
    height: 40px;
    overflow: hidden;
    display: inline-table;
}
.list a,
.list span {
    display: block;
    width: 40px;
    height: 40px;
}
.list a {
    position: relative;
    padding: 10px;
}
.list a span {
    width: 20px;
    height: 20px;
    overflow: hidden;
    position: relative;
}
.list a i {
    display: block;
    position: absolute;
    background-color: #000;
    width: 6px;
    height: 0;
    -webkit-transition-property: height, -webkit-transform;
    -moz-transition-property: height, -moz-transform;
    -o-transition-property: height, -o-transform;
    transition-property: height, transform;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.3, 1);
    -moz-transition-timing-function: cubic-bezier(0.75, 0, 0.3, 1);
    -o-transition-timing-function: cubic-bezier(0.75, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.3, 1);
}
.list a i.c1 {
    left: 0;
}
.list a i.c2 {
    left: 7px;
}
.list a i.c3 {
    left: 14px;
}
.list a i.c1.b1 {
    height: 7px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.list a i.c1.b2 {
    height: 7px;
    -webkit-transform: translate(0, 8px);
    -moz-transform: translate(0, 8px);
    -o-transform: translate(0, 8px);
    transform: translate(0, 8px);
}
.list a i.c1.b3 {
    height: 7px;
    -webkit-transform: translate(0, 40px);
    -moz-transform: translate(0, 40px);
    -o-transform: translate(0, 40px);
    transform: translate(0, 40px);
}
.list a i.c2.b1 {
    height: 10px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.list a i.c2.b2 {
    height: 7px;
    -webkit-transform: translate(0, 11px);
    -moz-transform: translate(0, 11px);
    -o-transform: translate(0, 11px);
    transform: translate(0, 11px);
}
.list a i.c2.b3 {
    height: 7px;
    -webkit-transform: translate(0, 35px);
    -moz-transform: translate(0, 35px);
    -o-transform: translate(0, 35px);
    transform: translate(0, 35px);
}
.list a i.c3.b1 {
    height: 5px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.list a i.c3.b2 {
    height: 7px;
    -webkit-transform: translate(0, 6px);
    -moz-transform: translate(0, 6px);
    -o-transform: translate(0, 6px);
    transform: translate(0, 6px);
}
.list a i.c3.b3 {
    height: 7px;
    -webkit-transform: translate(0, 33px);
    -moz-transform: translate(0, 33px);
    -o-transform: translate(0, 33px);
    transform: translate(0, 33px);
}
.list a:hover i.c1.b1 {
    height: 7px;
    -webkit-transform: translate(0, -8px);
    -moz-transform: translate(0, -8px);
    -o-transform: translate(0, -8px);
    transform: translate(0, -8px);
}
.list a:hover i.c1.b2 {
    height: 7px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.list a:hover i.c1.b3 {
    height: 7px;
    -webkit-transform: translate(0, 8px);
    -moz-transform: translate(0, 8px);
    -o-transform: translate(0, 8px);
    transform: translate(0, 8px);
}
.list a:hover i.c2.b1 {
    height: 10px;
    -webkit-transform: translate(0, -11px);
    -moz-transform: translate(0, -11px);
    -o-transform: translate(0, -11px);
    transform: translate(0, -11px);
}
.list a:hover i.c2.b2 {
    height: 10px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.list a:hover i.c2.b3 {
    height: 7px;
    -webkit-transform: translate(0, 11px);
    -moz-transform: translate(0, 11px);
    -o-transform: translate(0, 11px);
    transform: translate(0, 11px);
}
.list a:hover i.c3.b1 {
    height: 5px;
    -webkit-transform: translate(0, -6px);
    -moz-transform: translate(0, -6px);
    -o-transform: translate(0, -6px);
    transform: translate(0, -6px);
}
.list a:hover i.c3.b2 {
    height: 5px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.paginate .list a:hover i.c3.b3 {
    height: 7px;
    -webkit-transform: translate(0, 6px);
    -moz-transform: translate(0, 6px);
    -o-transform: translate(0, 6px);
    transform: translate(0, 6px);
}
.content-nav li a.ln span.tooltip,
.content-nav li a.rn span.tooltip {
    position: absolute;
    top: -10px;
    font-size: 10px;
    min-width: 150px;
    visibility: hidden;
    font-weight: 800;
    opacity: 0;
}
.content-nav li a.ln span.tooltip {
    left: 100%;
    margin-left: 20px;
    text-align: left;
}
.content-nav li a.rn span.tooltip {
    right: 100%;
    margin-right: 20px;
    text-align: right;
}
.content-nav li a:hover span.tooltip {
    top: 50%;
    opacity: 1;
    visibility: visible;
}
.cur-page {
    font-size: 12px;
    font-weight: 800;
    padding-top: 18px;
    float: left;
    width: 100%;
}
.cur-page span {
    color: #666;
    position: relative;
    top: -6px;
}

.show-info {
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 50%;
    z-index: 15;
}
.slider-wrap .show-info {
    bottom: 130px;
}
.slider-wrap.tpslw .show-info {
    bottom: 130px;
}
.show-info span {
    font-size: 10px;
    color: #fff;
    background: #000;
    padding: 12px 20px;
    font-weight: 800;
    cursor: pointer;
    float: left;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.swiper-bottom-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    background-color: #fff;
    color: #2c2c2c;
    font-size: 40px;
    line-height: 42px;
}
.swiper-bottom-desc span {
    text-align: left;
    margin-left: 18px;
}
.swiper-bottom-desc span.subtitle {
    font-size: 15px;
    line-height: 17px;
}
.swiper-bottom-desc span + span {
    font-size: 15px;
    line-height: 17px;
}
.swiper-bottom-desc p {
    font-size: 14px;
    line-height: 19px;
}
.swiper-bottom-desc p.de {
    font-size: 13px;
}
.swiper-bottom-desc .m {
    margin: 30px 0;
}
.swiper-bottom-desc .detail {
    background-color: #455b68;
    padding: 34px 0;
}
.swiper-bottom-desc .detail .btn {
    margin: auto;
    padding: 15px 40px;
    background-color: #fff;
    color: #455b68;
    font-size: 13px;
    text-align: center;
    border: none !important;
    border-radius: 100px;
}
.swiper-bottom-desc .detail .btn img {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    margin-left: 8px;
}
@media (max-width: 767px) {
    .swiper-bottom-desc .m {
        margin: 10px 0;
        min-height: 60px;
    }
    .swiper-bottom-desc span {
        margin-left: 0;
        text-align: center;
        line-height: 20px !important;
    }
    .slide-texts {
        font-size: 20px;
    }
    .swiper-bottom-desc span + span {
        font-size: 13px;
        line-height: 17px !important;
        margin-top: 5px;
    }
    .swiper-bottom-desc .detail {
        background-color: #fff;
        padding: 24px 0;
    }
    .swiper-bottom-desc .detail span {
        display: none;
    }
    .swiper-bottom-desc .detail img {
        background-color: #ccc;
        padding: 12px;
        width: 40px;
        height: 40px;
    }
    .swiper-bottom-desc .detail .btn {
        padding: 15px 17px;
    }
    .swiper-bottom-desc p {
        font-size: 13px;
        line-height: 18px;
    }
}
.p-s {
    padding: 40px 0;
}
.b-r-5 {
    border-right: 4px solid #ccc;
}
.tooltip-info {
    height: auto;
    line-height: 20px;
    padding: 10px 20px;
    font-size: 11px;
    color: #fff;
    text-align: center;
    text-indent: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    bottom: 30px;
    opacity: 0;
    left: 0;
    margin-bottom: 40px;
    visibility: hidden;
    pointer-events: none;
    z-index: 16;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.tooltip-info p {
    font-size: 11px;
    font-weight: 600;
    word-spacing: no-wrap;
    color: #fff;
}
.tooltip-info h5 {
    font-size: 16px;
    margin-top: 12px;
    padding: 5px 0;
    position: relative;
    text-align: left;
}
.show-info:hover .tooltip-info {
    visibility: visible;
    opacity: 1;
    bottom: 10px;
}
.pr-tags {
    margin-bottom: 30px;
    padding: 22px 20px;
    border: 1px solid #eee;
    background: #f9f9f9;
}
.pr-tags span,
.pr-tags ul,
.pr-tags ul li {
    float: left;
}
.pr-tags span {
    text-align: left;
    padding-right: 20px;
    font-weight: 800;
    border-right: 1px solid #ccc;
}
.pr-tags ul {
    padding-left: 20px;
}
.pr-tags ul li {
    margin-right: 10px;
    padding-top: 3px;
}
.pr-tags ul li a {
    font-style: italic;
    color: #999;
}
.pr-tags ul li a:hover {
    color: #000;
}
.parallax-item {
    margin: 50px 0;
}
.parallax-item img {
    width: 100%;
    height: auto;
    opacity: 0.7;
}
.parallax-text {
    position: absolute;
    bottom: 40%;
    z-index: 10;
}
.parallax-text.right-pos {
    right: -150px;
}
.parallax-text.left-pos {
    left: -150px;
}
.parallax-text h3 {
    font-size: 44px;
    font-weight: 700;
    position: relative;
}
.parallax-text h3:before {
    content: "";
    position: absolute;
    top: -40px;
    width: 60px;
    height: 6px;
    left: 0;
    background: #292929;
}
.parallax-text h3:after {
    content: "";
    position: absolute;
    top: -5px;
    bottom: -10px;
    width: 1px;
    -webkit-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    right: -100px;
    background: #ccc;
    z-index: 1;
}
.parallax-text h3:hover:after {
    width: 140%;
    opacity: 0.4;
}
.parallax-text h3 a {
    position: relative;
    z-index: 10;
}
.parallax-text.left-pos h3 {
    text-align: left;
}
.parallax-text.right-pos h3 {
    text-align: left;
}
.parallax-text h4 {
    text-align: left;
    color: #292929;
    padding: 15px 0;
    text-shadow: 0 0 #000;
}
.parallax-header {
    padding-bottom: 25px;
}
.parallax-header span {
    float: left;
    font-size: 24px;
    text-align: left;
    font-weight: 700;
    position: relative;
}
.parallax-header span:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 60px;
    width: 150px;
    background: #eee;
    height: 1px;
}
.parallax-header ul {
    float: right;
    position: relative;
    top: 2px;
    border-left: 1px solid #ccc;
    padding: 10px 0 10px 30px;
}
.parallax-header ul li {
    float: left;
    padding-left: 15px;
    text-align: left;
}
.single-slider {
    float: left;
    position: relative;
}
.single-slider img {
    width: 100%;
    height: auto;
}
.single-slider .swiper-pagination {
    bottom: 40px;
    font-weight: 700;
    color: #292929;
    font-size: 10px;
}
.single-slider .swiper-pagination:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -35px;
    width: 70px;
    margin-top: -20px;
    height: 40px;
    background: #fff;
    z-index: -1;
}
.single-slider .swiper-button-next,
.single-slider .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    background: #292929;
    color: #fff;
    z-index: 20;
    line-height: 40px;
    cursor: pointer;
}
.single-slider .swiper-button-next i,
.single-slider .swiper-button-prev i {
    margin-top: 13px;
}
.single-slider .swiper-button-prev {
    left: 10px;
}
.single-slider .swiper-button-next {
    right: 10px;
}
.line-gal {
    margin-bottom: 30px;
}
.box-item {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}
.line-gal .box-item {
    margin-bottom: 20px;
}
.box-item a.gallery-popup {
    position: absolute;
    top: -50px;
    opacity: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #111;
    line-height: 50px;
    z-index: 5;
    color: #fff;
    font-size: 12px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.box-item a.popup-image {
    position: absolute;
    top: -50px;
    opacity: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #fff;
    line-height: 50px;
    z-index: 5;
    color: #000;
    font-size: 12px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.box-item img {
    position: relative;
    z-index: 1;
    -webkit-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
.box-item .overlay {
    opacity: 0;
    z-index: 4;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.box-item:hover .overlay,
.gallery-item:hover .overlay {
    opacity: 0.3;
}
.box-item:hover img,
.gallery-item:hover img {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    transform: scale(1.15);
}
.gallery-item:hover .swiper-slide img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}
.box-item:hover a.popup-image,
.gallery-item:hover a.popup-image {
    top: 0;
    opacity: 1;
}
.box-item a.popup-image:hover i {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    transform: scale(1.15);
}
.grid-item-holder .box-item a.popup-image {
    right: -2px;
}
.box-item:hover a.gallery-popup,
.gallery-item:hover a.gallery-popup {
    top: 0;
    opacity: 1;
}
.box-item a.gallery-popup:hover i {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    transform: scale(1.15);
}
.grid-item-holder .box-item a.gallery-popup {
    right: -2px;
}
.promo-video-text {
    float: left;
    font-weight: 800;
    color: #fff;
    font-size: 64px;
    text-transform: uppercase;
    line-height: 75px;
    text-align: left;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.41);
    width: 100%;
}
.promo-video p {
    float: left;
    max-width: 500px;
    text-align: left;
    color: #fff;
    margin-top: 50px;
    position: relative;
    font-size: 13px;
    opacity: 0.8;
}
.promo-video a {
    float: right;
    width: 50px;
    height: 50px;
    line-height: 46px;
    border: 3px solid #fff;
    border-radius: 100%;
    color: #fff;
    margin-top: 50px;
}
.promo-video a:hover {
    background: rgba(255, 255, 255, 0.41);
}
.media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.hero-content .media-container {
    height: 110%;
}
.video-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.mob-bg {
    display: none;
}
.video-holder {
    position: absolute;
    width: 100%;
    height: 100% !important;
    display: block;
    overflow: hidden !important;
    top: 0;
    left: 0;
    padding: 0 !important;
}
.video-holder iframe {
    position: absolute;
    top: -75px;
    left: 50%;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}
.background-youtube {
    position: absolute;
    top: -25% !important;
}
.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    line-height: 0;
    z-index: -1;
}
.video-container video {
    width: 100%;
}
.resp-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
}
.resp-video embed,
.resp-video iframe,
.resp-video object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.blog-media video {
    width: 100%;
    height: auto;
}
.map-box {
    float: left;
    width: 100%;
    height: 400px;
    position: relative;
    margin: 40px 0;
}
#map-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
}
.lang-menu { 
    height: 100%;     
    box-sizing: border-box; 
}
.lang-menu a{  
    font-weight: 500;
    font-size: 14px;
}
.lang-menu a:hover{  
    color: var(--r5);
}
.searchmenu { 
    height: 100%;     
    box-sizing: border-box; 
}
.searchmenu a:hover{  
    color: var(--r5);
}
.searchmenu .material-symbols-outlined{  
    font-weight: 500;
    font-size: 19px;
}
@media (max-width: 767px) {
    .lang-menu { 
        margin-right: 5px; 
    }
}
.lang-menu div {
    position: relative;
    float: left;
    width: 100%;
    top: 28px;
    cursor: pointer;
    font-weight: 700;
}
.lang-menu div img {
    width: 11px;
    margin-left: 5px;
}
.lang-menu div a {
    color: #455b68;
    font-weight: 700;
    font-size: 12px;
    position: relative;
}
.lang-menu div a:hover {
    color: #455b68;
}
.share-wrapper {
    position: fixed;
    top: -24;
    z-index: 6;
    right: 0;
    width: 120px;
    background: #fff;
    border-left: 1px solid #eee;
    border-bottom: 0 !important;
}
.isShare {
    top: 71px !important;
    transition: all 0.3s;
}
@media (max-width: 767px) {
    .lang-menu {
        border-left: 0 solid #e6eaea;
        width: 55px;
    }
    .isShare {
        top: 100px !important;
        transition: all 0.3s;
    }
    .lang-menu div a {
        font-weight: 400;
        font-size: 15px;
    }
    .lang-menu div {
        top: 17px;
    }
}
.share-container {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}
.share-icon {
    height: 47px;
    width: 100%;
    float: left;
    position: relative;
    font-size: 15px;
    line-height: 47px;
    color: #999;
    opacity: 1;
    border-bottom: 1px solid #eee;
}
.share-icon:hover {
    color: #000;
}
.share-icon:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    text-decoration: inherit;
}
.share-icon-digg:before {
    content: "\f1a6";
}
.share-icon-email:before {
    content: "\f003";
}
.share-icon-flickr:before {
    content: "\f16e";
}
.share-icon-foursquare:before {
    content: "\f180";
}
.share-icon-rss:before {
    content: "\f09e";
}
.share-icon-facebook:before {
    content: "\f09a";
}
.share-icon-twitter:before {
    content: "\f099";
}
.share-icon-tumblr:before {
    content: "\f173";
}
.share-icon-linkedin:before {
    content: "\f08c";
}
.share-icon-vimeo:before {
    content: "\f194";
}
.share-icon-instagram:before {
    content: "\f16d";
}
.share-icon-pinterest:before {
    content: "\f0d2";
}
.share-icon-googleplus:before {
    content: "\f0d5";
}
.share-icon-in1:before {
    content: "\f08c";
}
.share-icon-stumbleupon:before {
    content: "\f1a4";
}
.small-sec-title {
    float: left;
    width: 100%;
}
.small-sec-title h3 {
    float: left;
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
}
.map-box {
    float: left;
    width: 100%;
    height: 400px;
    position: relative;
    margin: 50px 0;
}
#map-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
}
.contact-details-wrap {
    margin-top: 50px;
}
.border-dec {
    border-bottom: 1px solid #eee;
    padding-bottom: 50px;
}

.contact {
    font-size: 20px;
}
.contact .box {
    min-height: 100px;
}

input[type="text"], input[type="email"], input[type="password"], input[type="phone"], textarea
{
    border: 0 !important;
    margin-bottom: 15px;
} 

input[type="text"]:focus,
input[type="email"]:focus,
input[type="phone"]:focus,
input[type="password"]:focus,
textarea:focus
{
    outline: 0;
    box-shadow: none !important;
} 
.btn-send  {
    border: 0;
    background-color: var(--r5);
    color: #fff;
    padding: 7px 15px;
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
    transition: all 0.2s linear;
}
.btn-send:hover  {  
    background-color: var(--r2); 
}
.contact-details {
    text-align: left;
}
.contact-details h4 span {
    text-align: left;
    font-size: 27px;
    float: left;
    padding-right: 30px;
    position: relative;
    top: -5px;
    font-weight: 700;
}
.contact-details h4 {
    text-align: right;
    font-size: 15px;
    padding-top: 10px;
    margin-bottom: 15px;
    float: left;
    width: 100%;
    position: relative;
}
.contact-details h4:before {
    content: "";
    position: absolute;
    bottom: 21px;
    left: 80px;
    right: 155px;
    height: 1px;
    background: #333;
}
.contact-details ul li {
    text-align: left;
    float: left;
    width: 100%;
    font-weight: 500;
    letter-spacing: 1px;
    word-spacing: 0;
    margin-bottom: 12px;
    font-size: 13px;
    margin-right: 15px;
}
.contact-details ul li span {
    float: left;
    padding-right: 10px;
    color: #333;
}
#comment-form input[type="text"],
#comment-form textarea,
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form input[type="text"],
#contact-form textarea {
    float: left;
    width: 100%;
    background: rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 700;
    height: 50px;
    border-radius: none;
    position: relative;
    z-index: 20;
    padding-left: 30px;
    color: #999;
    border: 0;
    -webkit-appearance: none;
}
#comment-form textarea,
#contact-form textarea {
    height: 170px;
    resize: none;
    overflow: auto;
    background: rgba(0, 0, 0, 0.04);
    box-shadow: none;
    padding: 15px 30px;
}
#submit,
.form-submit button {
    float: left;
    border: none;
    background: #292929;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    padding: 15px 30px 15px 30px;
    line-height: 17px;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
#submit:hover {
    color: #ccc;
}
#submit i,
.clients-list a,
.to-top i,
footer.fixed-footer .footer-social li a {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
#submit:hover i {
    color: #000;
}
.verify-wrap {
    float: left;
    width: 100%;
    margin: 15px 0;
}
.verify-text {
    float: left;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}
#contact-form input#verify[type="text"] {
    float: left;
    width: 70px !important;
}
.error_message {
    text-align: left;
    font-size: 12px;
    max-width: 450px;
    position: relative;
    padding: 10px 10px 10px 0;
    color: #933;
    font-weight: 700;
}
#success_page h3 {
    text-align: left;
    font-size: 13px;
    padding-bottom: 4px;
    font-weight: 700;
}
#success_page p {
    margin-top: 5px;
    text-align: left;
    padding: 16px 6px 6px 0;
    color: #000;
}
#success_page p strong {
    font-weight: 700;
}
#message fieldset {
    border: none;
}
.social-wrap {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.social-wrap ul {
    margin: 0 auto;
    max-width: 1224px;
}
.social-wrap ul li {
    float: left;
    padding: 25px 0;
    border-left: 1px solid #eee;
    box-sizing: border-box;
}
.social-wrap ul li:last-child {
    border-right: 1px solid #eee;
}
.social-wrap ul li a {
    color: #999;
    font-size: 18px;
}
.social-wrap ul li a:hover {
    color: #000;
}
#tabs-container {
    float: left;
    width: 100%;
    margin-top: 10px;
}
.box-shadow {
    box-shadow: 0 0 1px rgba(0, 0, 0, .4);
}
.renkler .renk {
     height:150px; 
     border-radius:15px;
}
.renkler .title {
    font-size: 15px;
    font-weight: 400;
}
.nav-tabs .nav-link {
    color: var(--primary);
    font-size: 15px;
}
.testilider .swiper-pagination {
    font-size: 89px;
    z-index: -1;
    color: #fff;
    opacity: 0.3;
    width: inherit;
    right: 100px;
    left: inherit;
    bottom: 0;
    text-transform: uppercase;
    font-weight: 800;
}
.testilider .swiper-pagination:before {
    display: none;
}
.testi-item {
    padding: 0 70px;
}
.testi-item p {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    max-width: 100% !important;
}
.testi-item h3 {
    float: left;
    width: 100%;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    text-align: left;
    font-size: 16px;
    padding-bottom: 40px;
}
.testi-item .btn {
    margin-top: 20px;
}
.fwpost-container {
    padding-left: 30px;
}
.post p {
    font-size: 15px;
}
.fw-post {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.masonry-post {
    padding-right: 30px;
    padding-bottom: 40px;
}
.fw-post h2,
.masonry-post h2 {
    float: left;
    width: 100%;
    text-align: left;
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 40px;
    position: relative;
}
.masonry-post h2 {
    font-size: 20px;
    margin-bottom: 20px;
}
.fw-post.single-post h2 {
    font-size: 40px;
}

.blog .title{
    font-size: 22px;
} 
.blog p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    font-weight: 500;
}

.blog-title-opt {
    float: left;
    padding: 15px 20px;
    margin-bottom: 20px;
    background: #292929;
}
.blog-title-opt li {
    float: left;
    margin-right: 20px;
    position: relative;
    color: #fff;
}
.blog-title-opt li a {
    color: #fff;
    font-weight: 800;
}
.fw-post h2 span {
    background: #fff;
    z-index: 2;
    position: relative;
    float: left;
    padding-right: 30px;
}
.fw-post h2:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #eee;
    z-index: 1;
}
.blog-text h3 {
    text-align: left;
    color: #666;
    float: left;
    width: 100%;
    font-weight: 800;
    font-size: 16px;
    padding-bottom: 15px;
}
.blog-text h3 a {
    color: #666;
}
.masonry-post .blog-text {
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.blog-media {
    margin-bottom: 30px;
    overflow: hidden;
}
.post-counter {
    float: right;
    position: relative;
    top: 20px;
    padding: 10px 15px;
    background: #f9f9f9;
    border: 1px solid #eee;
}
.post-counter.single-post-counter {
    float: left;
    top: 10px;
}
.post-counter li {
    float: left;
    margin-right: 15px;
}
.post-counter li i,
.post-counter li span {
    float: left;
}
.post-counter li span {
    margin-left: 6px;
    font-style: italic;
    font-size: 11px;
}
.widget-wrap {
    margin-bottom: 70px;
    padding-left: 60px;
}
.widget-wrap:before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 60px;
    width: 50px;
    height: 6px;
    background: #292929;
}
.widget-title span {
    text-align: left;
    font-size: 27px;
    float: left;
    padding-right: 25px;
    position: relative;
    top: -7px;
    font-weight: 700;
}
.widget-title {
    text-align: right;
    font-size: 13px;
    padding-top: 6px;
    font-weight: 600;
    margin-bottom: 15px;
    float: left;
    width: 100%;
    position: relative;
}
.widget-title:before {
    content: "";
    position: absolute;
    bottom: 23px;
    left: 60px;
    right: 150px;
    height: 1px;
    background: #000;
}
.searh-inner input {
    background-color: #f1f1f1;
    font-size: 12px;
    height: 55px;
    padding: 0 20px;
    width: 70%;
    border: none;
}
.search-submit {
    width: 30%;
    height: 55px;
    float: right;
    background: #292929;
    color: #fff;
    font-weight: 700;
    border: none;
    font-size: 10px;
    text-transform: uppercase;
}
.about-widget img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}
.widget-posts li {
    padding: 15px 10px;
    border-right: 1px solid #eee;
    margin-bottom: 8px;
    background: #f9f9f9;
}
.widget-posts-img {
    float: left;
    width: 30%;
}
.widget-comments-img img {
    border-radius: 100%;
}
.widget-posts-descr {
    float: left;
    width: 70%;
    padding-left: 20px;
    text-align: left;
}
.widget-posts-descr a {
    font-size: 12px;
    color: #292929;
    font-weight: 800;
    padding-bottom: 20px;
}
.widget-posts-date {
    float: left;
    width: 100%;
    margin-top: 10px;
    color: #999;
    font-size: 12px;
}
.widget-wrap .tagcloud li {
    float: left;
    margin-bottom: 4px;
}
.widget-wrap .tagcloud li a {
    float: left;
    text-align: center;
    padding: 15px 30px;
    margin-right: 2px;
    color: #fff;
    background: #292929;
    font-weight: 800;
}
.widget-wrap .tagcloud li a:hover {
    color: #ccc;
}
.jr-insta-thumb {
    float: left;
    width: 100%;
}
.jr-insta-thumb ul {
    list-style: none;
}
.jr-insta-thumb li {
    float: left;
    width: 33.3%;
    padding: 5px;
    overflow: hidden;
}
.jr-insta-thumb li img {
    width: 100%;
    height: auto;
}
.jr-insta-thumb li a {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.jr-insta-thumb li a:hover {
    opacity: 0.6;
}
.cat-item li {
    float: left;
    width: 100%;
    padding-bottom: 8px;
    margin-bottom: 15px;
    text-align: left;
    position: relative;
}
.cat-item li:before {
    content: "";
    position: absolute;
    bottom: 6px;
    width: 100px;
    height: 1px;
    background: #eee;
    left: 50%;
    margin-left: -25px;
}
.cat-item li a {
    float: left;
    font-size: 12px;
    color: #292929;
    font-weight: 800;
}
.cat-item li span {
    float: right;
}
.cat-item a,
.tagcloud li a {
    font-size: 10px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.post-author {
    margin-bottom: 40px;
    margin-top: 10px;
    float: left;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
.author-img {
    float: left;
    width: 15%;
}
.author-content {
    float: left;
    width: 85%;
    padding-left: 10px;
}
.author-img img {
    border-radius: 100%;
    float: left;
}
.author-content h5 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px;
    color: #000;
    display: block;
    float: left;
    font-weight: 500;
}
.author-content p {
    margin-bottom: 8px;
    float: left;
    width: 100%;
}
.author-social {
    float: right;
    background: #fff;
    position: relative;
}
.author-social:before {
    content: "";
    position: absolute;
    right: 100%;
    margin-right: 50px;
    top: 50%;
    width: 150px;
    height: 1px;
    background: #eee;
}
.author-social li {
    float: left;
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.author-social li:first-child {
    border-left: 1px solid #eee;
}
.author-social li:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 50px;
    background: #eee;
}
.author-social li a {
    color: #999;
}
#comments {
    text-align: left;
    padding-top: 10px;
    float: left;
    width: 100%;
    margin-top: 30px;
}
#comments.single-post-comm {
    margin-top: 0;
    padding-top: 0;
}
#comments-title,
#reply-title {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
    color: #666;
}
.comment {
    float: left;
}
.comment-body {
    position: relative;
    margin-left: 70px;
    padding-top: 30px;
}
.comment-author {
    position: absolute;
    top: 30px;
    left: -66px;
}
.comment-author img {
    border-radius: 100%;
}
.comment .children {
    margin-left: 70px;
}
.fn {
    display: block;
    margin-bottom: 10px;
}
.comment-meta,
.comment-meta a {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 1px;
    color: #494949;
    padding-bottom: 10px;
}
#respond {
    margin-top: 40px;
}
#reply-title {
    padding-bottom: 30px;
    margin-bottom: 5px;
}
.comment-notes {
    margin-top: 10px;
    color: #a4a4a3;
}
.control-group .controls,
.control-group label {
    display: inline-block;
}
.control-group label {
    margin-left: 10px;
    font-weight: 600;
}
.control-group .controls input {
    margin-top: 15px;
    border: none;
    outline: 0;
    height: 35px;
    background: #f9f9f9;
    padding-left: 15px;
    color: #a4a4a3;
    text-decoration: none;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.control-group .controls textarea {
    margin-top: 15px;
    border: none;
    outline: 0;
    height: 180px;
    max-width: 600px;
    background: #f9f9f9;
    padding-left: 15px;
    padding-top: 15px;
    color: #a4a4a3;
    resize: vertical;
    text-decoration: none;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.controls button {
    margin-top: 30px;
}
.fixed-bar:before {
    content: "";
    position: absolute;
    width: 1000px;
    left: 30px;
    top: -50px;
    bottom: -50px;
    background: #f7f7f7;
}
.no-fixbar {
    position: relative !important;
}
.blog-filters span {
    float: left;
    margin-right: 25px;
    position: relative;
    top: 12px;
    font-weight: 800;
}
.blog-btn-filter {
    float: left;
    margin-right: 15px;
    position: relative;
}
.blog-btn-filter ul {
    display: none;
    position: absolute;
    top: 50px;
    padding: 15px 20px;
    background: #292929;
}
.blog-btn-filter ul li {
    float: left;
    min-width: 150px;
    width: 100%;
    padding: 10px 0;
    text-align: left;
}
.blog-btn-filter ul li a {
    color: #fff;
}
.blog-filters-wrap {
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 50px;
    z-index: 100;
}
.blog-btn {
    float: left;
    padding: 10px 50px 10px 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}
.blog-btn i {
    position: absolute;
    top: 12px;
    right: 8px;
}
.cat-list {
    float: left;
    width: 100%;
    list-style: none;
    margin: 2px 0 6px;
}
.cat-list li {
    float: left;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    color: #666;
    margin-right: 18px;
    position: relative;
}
.cat-list li:before {
    content: "/";
    position: absolute;
    right: -12px;
    top: -1pxpx;
    color: #000;
}
.cat-list li:last-child:before {
    display: none;
}
.cat-list li a {
    color: #999;
}
.error-wrap {
    position: relative;
    width: 100%;
    top: 30%;
    left: 0;
    float: left;
    z-index: 6;
}
.error-wrap h2 {
    color: #000;
    font-size: 154px;
    font-weight: 900;
    position: relative;
    text-transform: uppercase;
}
.error-wrap .btn {
    float: none;
    display: inline-table;
}
.error-wrap h2:before {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 50px;
    height: 4px;
    margin-left: -25px;
    background: #000;
}
.error-wrap p {
    font-size: 17px;
    text-align: center;
}
@media only screen and (max-width: 1224px) {
    .fixed-filter-wrap {
        float: left;
        position: relative;
        width: 100%;
        padding: 50px 30px 30px;
        top: 0;
        margin-bottom: 20px;
    }
    .column-content {
        padding-right: 0;
    }
}
@media only screen and (max-width: 1064px) {
    header.main-header {
        padding: 0 0 0 30px;
    }
    .logo-holder {
        padding-top: 24px;
    }
    .nav-button-wrap {
        display: block;
    }
    .fixed-bar:before,
    .header-info,
    .height-emulator,
    .hero-item:before,
    .main-footer,
    .nav-holder,
    .nav-holder nav li a:before,
    .sroll-nav-wrap {
        display: none;
    }
    .content-footer,
    .content-holder,
    .fixed-search {
        left: 0;
    }
    .footer-inner {
        margin: inherit;
        float: left;
        width: 100%;
        padding: 90px 50px 70px 50px;
    }
    .slide-progress-container {
        right: 50%;
        left: 50px;
    }
    .pr-title {
        width: 100%;
        margin-bottom: 50px;
    }
    .cus-inner-title {
        margin-bottom: 20px;
    }
    .gallery-item {
        width: 50% !important;
    }
    .blog-sidebar {
        margin-top: 40px;
    }
    .widget-wrap {
        padding-left: 0;
    }
    .widget-wrap:before {
        left: 0;
    }
    .footer-header {
        margin-top: 25px;
    }
    .small-sec-title {
        margin-bottom: 20px;
    }
    .hero-item h2,
    .section-title h2 {
        font-size: 44px !important;
        line-height: 55px !important;
    }
    .order-item .btn {
        margin-top: 70px;
    }
    .nav-holder {
        position: absolute;
        top: 81px;
        right: 0;
        width: 100%;
        background: #455b68;
        padding: 40px 30px 30px 30px;
        display: none;
        margin-right: 0;
        overflow: auto;
        height: 350px;
        box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
    }
    .nav-holder nav {
        width: 100%;
        float: left;
    }
    .nav-holder nav li ul li > ul,
    .nav-holder nav ul li,
    .nav-holder nav ul li ul li {
        float: left;
        width: 100%;
        text-align: left;
        left: 0;
        opacity: 1;
        right: 0;
        height: auto;
        margin-left: 0;
    }
    .nav-holder nav ul li {
        padding: 15px 0;
    }
    .nav-holder nav ul li.lidec:before {
        position: absolute;
        right: 10px;
        width: 10px;
        height: 10px;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: 400;
        text-decoration: inherit;
        content: "\f107";
        font-size: 14px;
        top: 10px;
    }
    .nav-holder nav li ul {
        margin: 0;
        padding-left: 20px;
        opacity: 1;
        visibility: hidden;
        position: relative;
        width: 100%;
        display: none;
        top: 0;
        left: 0;
        z-index: 1;
        background: 0 0;
        float: left;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    .nav-holder nav li a,
    .nav-holder nav li ul li a {
        padding: 0;
        width: auto;
        color: #000;
    }
    .nav-holder nav li ul li ul {
        margin: 0;
        padding-left: 20px;
        padding-top: 15px;
        padding-bottom: 0;
        opacity: 1;
        position: relative;
        display: block;
        visibility: visible;
        top: 0;
        left: 0;
        z-index: 1;
        float: left;
        width: 100%;
        border: none;
    }
    .nav-holder nav li > ul.visul {
        display: block;
        left: 0;
    }
    .parallax-text {
        float: left;
        position: relative;
        top: inherit;
        left: inherit !important;
        right: inherit !important;
        width: 100%;
        margin-top: 50px;
        text-align: left;
    }
    .hero-item {
        padding: 0 65px;
    }
    .section-container .box-item {
        margin-top: 50px;
    }
    .testilider {
        margin-top: 50px;
    }
    .testi-item h3 {
        padding-bottom: 20px;
    }
    section.header-section .testi-item p {
        margin-top: 20px;
    }
    section.parallax-section .pr-title:after {
        left: calc(50vw - 60px);
    }
    .custom-inner-holder {
        margin-top: 30px;
    }
    .sb-overlay {
        left: 0;
    }
    footer.content-footer {
        position: relative;
        float: left;
        width: 100%;
    }
    .nav-holder nav li a:hover,
    .nav-holder nav li ul li a:hover,
    nav.asl li a.act-scrlink {
        color: #404040;
    }
}
@media only screen and (max-width: 1064px) {
    header.main-header {
        padding: 0;
    }
    .logo-holder {
        padding-top: 15px;
    }
}
@media only screen and (max-width: 768px) {
    .team-holder li {
        width: 100%;
    }
    section.header-section .bg,
    section.header-section .overlay {
        width: 100%;
    }
    section.header-section .overlay,
    section.parallax-section .overlay.op1 {
        opacity: 0.4;
    }
    section.parallax-section {
        padding: 150px 0;
    }
    .inline-filter .gallery-filters {
        width: 100%;
        padding: 20px 0;
    }
    .inline-filter .gallery-filters a {
        width: 100%;
        margin-right: 0;
        text-align: left;
        margin-bottom: 15px;
        padding-left: 0;
    }
    .bold-filter.inline-filter .count-folio {
        margin-left: 0;
        padding: 15px 0;
        top: -3px;
    }
    .bold-filter.inline-filter .count-folio:before,
    .bold-filter.inline-filter .gallery-filters a:before,
    .inline-facts:nth-child(2):before {
        display: none;
    }
    .bold-filter {
        margin-top: 0;
        margin-bottom: 50px;
    }
    .inline-facts {
        width: 50%;
        margin-bottom: 30px;
    }
    .menufilter {
        position: absolute;
        right: 0;
        width: 120px;
        background: #fff;
        top: 70px;
    }
    .hid-filter {
        right: 0;
        width: 120px;
        top: 70px;
    }
}
@media only screen and (max-width: 540px) {
    .gallery-item,
    .grid-sizer {
        padding: 15px;
        padding-bottom: 0;
    }
    .clients-list li,
    .gallery-item {
        width: 100% !important;
    }
    .subcribe-form span {
        display: none;
    }
    .subcribe-form {
        padding-left: 0;
    }
    .hero-item h2,
    .section-title h2 {
        font-size: 34px !important;
        line-height: 45px !important;
    }
    .partcile-dec,
    .slide-progress-container {
        display: none;
    }
    .inline-facts:before {
        display: none;
    }
    .sidebar-menu {
        width: 280px;
    }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .bg {
        background-attachment: scroll !important;
        -webkit-background-size: cover;
        background-position: center;
    }
} 
.fs-slogan {
    font-family: "Zeyada", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 70px;
}
.slogan {
    font-family: "Zeyada", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;    
    color: var(--primary);
}
.title-second {
    font-size: 20px;
} 
.text-black-op {
    color: rgba(255, 255, 255, 0.6);
}  
 
.fixed-filter-wrap .bold-separator,
.list a i,
.movingBallG,
.nav-button span,
.sb-menu-button span {
    background: #455b68;
} 
.menusb a:hover,
.menusb li i,
.nav-holder nav li a.act-link,
.nav-holder nav li a:hover {
    color: #999;
}
.social-wrap {
    border-bottom: none;
}
.slider-wrap.homecarousel .swiper-slide,
.slider-wrap.tpslw .swiper-slide {
    padding-top: 18px;
}
.slider-wrap.homecarousel .swiper-slide:first-child,
.slider-wrap.tpslw .swiper-slide:first-child {
    padding-left: 20px;
}
.slider-wrap.homecarousel .swiper-slide:first-child .thumb-info {
    left: 20px;
}
.slider-wrap .gallery-popup {
    top: 18px;
}
@media only screen and (max-width: 1064px) {
    nav li a:hover,
    nav.asl li a.act-scrlink {
        color: #999;
    }
    .nav-holder nav li a,
    .nav-holder nav li ul li a {
        color: #fff;
    }
}
@media only screen and (max-width: 768px) {
    .menufilter {
        background: #292929;
    }
}
.text-center-i {
    text-align: center !important;
}
.ic-baslik {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 15px;
}

.breader {
    margin: 0;
    padding: 0;
}
.breader li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gray); 
}
.breader li a {
    color: var(--dark);
    text-decoration: none;
    font-size: 13px;
}
.breader li a:hover {
    color: var(--r5);
    text-decoration: none; 
}
.breader li span {
    color: var(--dark);
    text-decoration: none;
    font-size: 18px;
    margin: 0;
    padding: 0 3px;
}
.page-title-h1 {
    font-size: 40px;
    line-height: 46px;
    margin: 0;
    color: var(--dark);
    margin-bottom: 15px;
}
.page-title-h2 {
    font-size: 30px;
    line-height: 36px;
    margin: 0;
    color: var(--dark);
    margin-bottom: 15px;
}
.page-title-h3 {
    font-size: 20px;
    line-height: 26px;
    margin: 0;
    color: var(--dark);
    margin-bottom: 15px;
}
.page-title-h4 {
    font-size: 15px;
    line-height: 21px;
    margin: 0;
    color: var(--dark);
    margin-bottom: 15px;
}
.page-p {
    color: var(--dark);
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.product-box {
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    transition: all 200ms linear;
    min-height: 280px;
}
.product-box a{
   display: block;
   color: var(--dark);
}
.product-box img{    
    border-radius: 10px;
}
.product-box .title{
    color: var(--dark);
    font-size: 19px;
    transition: all 200ms linear;
}
.product-box:hover {
   border: 1px solid var(--r5); 
}
.product-box:hover .title {
   color: var(--r5) !important;
}
.product-box img {
    transition: all 200ms linear;   
}
.product-box:hover img {
   transform: scale(1.1);
}


.product .urunkodu {
    font-size: 15px;
    line-height: 21px;
}
.product .kg {
    font-size: 20px;
    line-height: 20px;
}
.product p {
    font-weight: 400;
}
.product ul li {
    font-size: 15px;
}
.sidemenu {
    margin: 0;
    padding: 0;
}
.sidemenu li {
    list-style-type: none;
    padding: 5px 0;
}
.sidemenu li a {
    color: var(--dark);
    font-size: 14px;
}

.sidemenu li ul {
    margin: 0;
    padding: 0;
    padding-left: 20px;
}

.sidemenu li ul li {
    
}

.w-100 {
    width: 100% !important;
} 
@media (max-width: 767px) {
    .text-xs-center {
        text-align: center !important;
    }
    .margin-center-xs {
        margin-left: calc(50vw - 70px) !important;
    }
    .float-btn-xs {
        margin-left: calc(50vw - 80px) !important;
    }
    .mt-xs-60 {
        margin-top: 60px !important;
    }
    section.header-section p {
        width: 100%;
        font-size: 15px;
    }
    .sect-scroll-link {
        color: #fff;
        bottom: -113px;
    }
}
.about-widget p {
    font-size: 12px !important;
}
.fs-35 {
    font-size: 35px !important;
}
.logo-cizgi-sol {
    position: fixed;
    background-color: #fff;
    height: 1px;
    width: 24vw;
    left: 19px;
    top: 73px;
    z-index: 9999;
}
.logo-cizgi-sag {
    position: fixed;
    background-color: #fff;
    height: 1px;
    width: 24vw;
    right: 19px;
    top: 73px;
    z-index: 9999;
}
.color-red {
    color: #e31e24 !important;
}
.color-green {
    color: #80ad34 !important;
}
@media (max-width: 767px) {
    .hero-item {
        padding: 0;
    }
    .hero-wrap {
        top: 40%;
    }
}
.overflow-hidden {
    overflow: hidden !important;
}
.product-name {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    text-align: center;
    font-size: 51px;
    color: transparent;
    margin-top: -33px;
}
.product-name2 {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 35px;
    text-align: left;
    font-size: 36px;
    color: transparent;
    margin-top: -31px;
}
.product-name2 span {
    float: left;
    width: 100%;
    line-height: 36px;
}
.product-name2 span + span {
    float: left;
    width: 100%;
    font-size: 25px;
    line-height: 42px;
    letter-spacing: 1px;
}
@media (max-width: 767px) {
    .hidden-mobile {
        display: none !important;
    }
}
.bg-harpiablue {
    background-color: #455b68;
}
.main-urun-yazi {
    padding-top: 25px;
    padding-bottom: 10px;
}
.p-0 {
    padding: 0 !important;
}
.pl-30 {
    padding-left: 30px !important;
}
.pr-15 {
    padding-right: 15px;
}
.bosluk {
    padding-left: 45px !important;
    padding-right: 45px !important;
}
.main-container {
    background-color: #fff;
    margin-top: 45px;
    margin-bottom: 45px;
}
.product-list-bosluk {
    padding-left: 30px !important;
    padding-right: 45px !important;
}
.product-list-section-mb {
    margin-bottom: 45px !important;
}
@media (max-width: 767px) {
    .bosluk {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .main-container {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .product-list-bosluk {
        padding-left: 5px !important;
        padding-right: 20px !important;
    }
    .product-list-section-mb {
        margin-bottom: 20px !important;
    }
}
.kurumsalmenu li {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 1px;
    text-align: left;
}
.fs-24 {
    font-size: 24px !important;
}
.footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 10px;
}
.footer-menu li {
    display: inline-flex;
    margin-left: 7px;
}
.footer-menu li a {
    font-family: "Galano Classic", sans-serif;
    color: #fff;
    font-size: 13px;
}
.footer-menu li a:hover {
    font-family: "Galano Classic", sans-serif;
    color: #ccc;
    font-size: 13px;
}
.footer-menu.social li a {
    font-size: 19px !important;
}
