/*
Author       : LitmusThemes
Template Name: Marker
Version      : 1.0
*/


/*=============================================================
CSS SITEMAP >>>>

    01. GENERAL CSS
	02. HEADER CSS
	03. PORTFOLIO SLIDER CSS
	04. CONTENT SECTION CSS
	05. CONTACT BLOCK CSS
	06. ONEPAGE CSS
	07. MULTIPAGES CSS
	08.	PROJECT DETAILS PAGE
	09.	NEWS ARTICLE PAGE
	
==================================================*/


/*==============================================
01. GENERAL CSS
================================================*/

html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

body {
    font: 16px/1.4 'Poppins', Arial, Helvetica, sans-serif;
    color: #171717;
}

img {
    border: 0;
    max-width: 100%;
}

html {
    -ms-overflow-style: scrollbar;
}

.alltrans,
.contact-col,
.form-control,
.btn,
#logo img,
.filters-row span,
.portfolio-content,
.form-privacy-check {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

a {
    color: #00bcd4;
    text-decoration: none;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

a:hover,
a:focus {
    color: #00bcd4;
    outline: none;
    text-decoration: underline;
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    a:active {
        background-color: transparent;
    }
}

p {
    margin: 0 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin: 0 0 15px;
    font-weight: 700;
}

h1,
h2 {
    font-size: 60px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.no-margin {
    margin: 0 !important;
}

figure {
    margin: 0;
}

.preloader {
    position: fixed;
    z-index: 999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
}

.spinner {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px;
}

.spinner .path {
    stroke: #00bcd4;
    stroke-linecap: round;
    -webkit-animation: dash 1.5s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.option-box {
    position: fixed;
    top: 200px;
    right: 0;
    z-index: 99999;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.option-box.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.color-option {
    float: left;
    background: #FFF;
    border: 1px solid #eee;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    color: #4c4c4c;
    padding: 20px;
    width: 210px;
}

.option-box ul {
    padding: 0;
    margin: 0;
}

.color-option ul li {
    width: 35px;
    height: 35px;
    display: inline-block;
    margin-right: 3px;
    cursor: pointer;
    border-radius: 50%;
}

.color-option h4 {
    font-weight: 600;
    font-size: 18px;
}

.gear-check {
    color: #4c4c4c;
    background: #FFF;
    position: absolute;
    right: 100%;
    top: 0;
    cursor: pointer;
    border: 1px solid #eee;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    padding: 8px 10px;
    font-size: 20px;
    border-left-color: #FFF;
}

.option-box #color1 {
    background: #00bcd4;
}

.option-box #color2 {
    background: #2489ed;
}

.option-box #color3 {
    background: #f15927;
}

.option-box #color4 {
    background: #00d66f;
}

.option-box #color5 {
    background: #f9b707;
}

.option-box #color6 {
    background: #82B440;
}

.option-box #color7 {
    background: #ff1637;
}


/*==============================================
02. HEADER CSS
================================================*/

#header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 25px 10px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#logo {
    position: relative;
    z-index: 100;
}

.menu-trigger-btn {
    color: #fff;
    position: relative;
    z-index: 100;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    width: 112px;
    cursor: pointer;
}

.menuopen .menu-trigger-btn {
    width: auto;
}

.menu-trigger {
    position: relative;
    border: 0;
    box-shadow: none;
    background: none;
    width: 38px;
    height: 26px;
    padding: 0;
    cursor: pointer;
    display: block;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.menu-trigger-btn em {
    font-style: normal;
    margin-left: 15px;
}

.menuopen .menu-trigger-btn em {
    display: none;
}

@-webkit-keyframes animateline {
    0% {
        width: 0;
    }
    50% {
        width: 38px;
    }
    100% {
        width: 0;
    }
}

@keyframes animateline {
    0% {
        width: 0;
    }
    50% {
        width: 38px;
    }
    100% {
        width: 0;
    }
}

.menu-trigger:focus {
    outline: none;
}

.menu-trigger span {
    width: 100%;
    display: block;
    height: 2px;
    background: #fff;
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 1;
    -webkit-animation: animateline 2s infinite linear;
    animation: animateline 2s infinite linear;
}

.menuopen .menu-trigger span,
.menuopen .menu-trigger span:before,
.menuopen .menu-trigger span:after {
    -webkit-animation: none;
    animation: none;
    -webkit-animation-delay: 0;
    animation-delay: 0;
    width: 100%;
}

.menu-trigger span:before,
.menu-trigger span:after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform-origin: 0.28571rem center;
    transform-origin: 0.28571rem center;
}

.menu-trigger span:before {
    top: 11px;
    -webkit-animation: animateline 2s infinite linear;
    animation: animateline 2s infinite linear;
    -webkit-animation-delay: 2s;
    animation-delay: 1s;
}

.menu-trigger span:after {
    top: -11px;
    -webkit-animation: animateline 1.5s infinite linear;
    animation: animateline 1.5s infinite linear;
    -webkit-animation-delay: 3s;
    animation-delay: 2s;
}

.menuopen .menu-trigger span {
    background: none;
}

.menuopen .menu-trigger span:before,
.menuopen .menu-trigger span:after {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    top: 0;
}

.menuopen .menu-trigger span:before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

.menuopen .menu-trigger span:after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

.menuopen .menu-trigger span:before,
.menuopen .menu-trigger span:after {
    background: #fff;
}


/*==============================================
03. PORTFOLIO SLIDER CSS
================================================*/

.portfolio-container {
    height: 100vh;
    background: #171717;
}

.portfolio-img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-position: 50% 0;
    background-size: cover;
    -webkit-transition: all 1.5s ease;
    transition: all 1.5s ease;
}

.portfolio-slide h3 {
    font-size: 32px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    margin: 0;
    z-index: 1;
    padding: 40px 15px;
    color: #fff;
}

.portfolio-slide {
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}

.portfolio-slide:hover {
    text-decoration: none;
}

.portfolio-slider .portfolio-slide:hover .portfolio-img,
.portfolio-full .swiper-slide-active .portfolio-img,
.portfolio-onepage .portfolio-slide:hover .portfolio-img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.portfolio-full .portfolio-img {
    -webkit-transition-duration: 4s;
    transition-duration: 4s;
}

.portfolio-slide:after,
.portfolio-slide:before {
    content: '';
    position: absolute;
    height: 220px;
    width: 101%;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: -moz-linear-gradient(top, rgba(125, 185, 232, 0) 0%, rgba(23, 23, 23, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(125, 185, 232, 0) 0%, rgba(23, 23, 23, 1) 100%);
    background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, rgba(23, 23, 23, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#007db9e8', endColorstr='#000000', GradientType=0);
}

.portfolio-slide:after {
    bottom: auto;
    top: 0;
    background: -moz-linear-gradient(bottom, rgba(125, 185, 232, 0) 0%, rgba(23, 23, 23, 1) 100%);
    background: -webkit-linear-gradient(bottom, rgba(125, 185, 232, 0) 0%, rgba(23, 23, 23, 1) 100%);
    background: linear-gradient(to top, rgba(125, 185, 232, 0) 0%, rgba(23, 23, 23, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#007db9e8', endColorstr='#000000', GradientType=0);
}

.navbar {
    padding: 0;
}

.swiper-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    margin-top: -35px;
    left: -35px;
    display: none;
}

.swiper-button:before {
    content: '';
    position: absolute;
    top: 26px;
    right: 7px;
    width: 18px;
    height: 18px;
    border-style: solid;
    border-color: #171717;
    border-width: 0 0 2px 2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.swiper-button.swiper-button-next {
    left: auto;
    right: -35px;
}

.swiper-button.swiper-button-next:before {
    right: auto;
    left: 7px;
    border-width: 2px 2px 0 0;
}


/*==============================================
04. CONTENT SECTION CSS
================================================*/

.nav-container {
    height: 100%;
    position: relative;
    z-index: 2;
    background: #fff;
}

#main-nav {
    position: relative;
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
}

#main-nav ul {
    margin: 0;
    padding: 10px 60px;
    list-style: none;
    line-height: 1.4;
    width: 100%;
}

#main-nav ul li a {
    font-size: 86px;
    text-transform: uppercase;
    font-weight: 900;
    color: #171717;
}

#main-nav ul li a:hover,
#main-nav ul li a:focus,
#main-nav ul li.active a {
    color: #00bcd4;
    text-decoration: none;
}

.content-section {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
    background: #fff;
    width: 50%;
    height: 100%;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.content-leftcol {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    padding: 100px 0;
}

.content-rightcol {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    right: 0;
    left: auto;
}

.menuopen .content-leftcol,
.menuopen .content-rightcol {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.content-footer {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    padding: 15px 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 13px;
    text-transform: uppercase;
}

.social {
    margin: 0 0 0 auto;
    padding: 0;
    list-style: none;
}

.social li a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: #171717;
    text-align: center;
    line-height: 34px;
    opacity: 0.75;
    font-size: 16px;
    margin-left: 8px;
    display: block;
}

.social li a:hover {
    background: rgba(0, 0, 0, 0.2);
}

.full-section {
    height: 100%;
}

.section-dark {
    background: #171717;
    color: #fff;
}

.section-dark p {
    opacity: 0.8;
}

.section-scroll {
    height: 100vh;
    position: relative;
}

.section-anim {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow-y: auto;
}

.section-anim.show {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    z-index: 1;
    background: #fff;
}

.section-anim.section-dark.show {
    background: #171717;
}

.main-img {
    background: url(../images/main-image.jpg) no-repeat 50% 50%;
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.content-col.section-block {
    padding: 20px 0;
}

.content-col {
    padding: 70px;
}

.title-box {
    margin-bottom: 40px;
}

.title-box p {
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.title-box:after {
    content: '';
    width: 60px;
    height: 1px;
    background: #00bcd4;
    display: block;
}

.title-box~p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    opacity: 0.8;
}

.section-block {
    margin: 50px 0;
}

.services-wrapper {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
}

#wrapper:not(.onepage) .services-wrapper {
    margin-top: 35px;
}

.services-wrapper>.row>div:nth-child(2n) .service-box {
    border-left: 0;
}

.service-box {
    height: 100%;
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
    padding: 50px 55px;
    border: 1px solid #171717;
    border-bottom: 0;
}

.service-icon {
    height: 80px;
    margin-bottom: 30px;
    opacity: 0.6;
}

.service-icon img {
    width: 80px;
    height: auto;
}

.service-box p {
    margin: 0;
    opacity: 0.6;
}

.service-box h4:after {
    content: '';
    width: 50px;
    height: 1px;
    background: #fff;
    display: block;
    margin: 20px auto;
    opacity: 0.5;
}

.section-title {
    text-align: center;
    padding: 0 0 15px;
}

.section-title:after {
    content: '';
    width: 60px;
    height: 1px;
    background: #00bcd4;
    display: block;
    margin: 20px auto 0;
}

.team-row {
    margin-top: -50px;
    padding-top: 10px;
}

.team-box {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
}

.team-box p {
    margin: 0;
}

.team-box img {
    border-radius: 50%;
    margin-bottom: 20px;
    border: 8px solid rgba(255, 255, 255, 0.15);
}

.brand-logo img {
    opacity: 0.4;
    display: block;
    margin: 0 auto;
}

.news-wrapper {
    margin-top: -50px;
}

.news-box>figure {
    border-radius: 8px;
    overflow: hidden;
}

.news-box img {
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

.news-box:hover a img {
    -webkit-transform: scale(1.25) rotate(3deg);
    transform: scale(1.25) rotate(3deg);
}

.news-toprow {
    margin: 28px 0 24px;
    font-size: 13px;
}

.news-toprow em {
    margin: 8px 0;
    display: inline-block;
}

.news-category {
    border-radius: 5px;
    line-height: 25px;
    padding: 0 10px 1px;
    display: inline-block;
    background: #00bcd4;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin-right: 10px;
}

.news-category:hover {
    text-decoration: none;
    color: #fff;
}

.news-box {
    font-size: 14px;
    margin-top: 50px;
}

.news-box p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.6;
}

.posted-by a {
    color: #fff;
    text-decoration: underline;
}

.news-box h4,
.news-box h4 a {
    color: #fff;
    text-decoration: none;
}

.news-box h4 a:hover {
    color: #00bcd4;
}

.contact-box {
    margin-top: -10px;
}

.contact-icon {
    height: 72px;
}

.contact-icon img {
    width: 47px;
}

.contact-cols {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.contact-col {
    padding: 35px 15px;
    font-weight: 500;
    opacity: 0.6;
    height: 100%;
    border-left: 1px solid #242424;
    border-right: 1px solid #242424;
}

.contact-col:hover {
    opacity: 1;
}

.email-link {
    display: block;
    word-break: break-all;
}

address {
    margin: 0;
}

.contact-col a {
    color: #fff;
    text-decoration: none;
}

.contact-col a:hover {
    color: #00bcd4;
}

.form-privacy-check {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: space-around; */
    font-weight: 500;
    opacity: 0.6;
    height: 100%;
    /* text-align: center; */
}

.form-privacy-check:hover {
    opacity: 1;
}

.form-check-input {
    display: block;
    align-self: center;
    width: 24px;
    height: 24px;
    padding: 12px 18px;
}

.form-privacy-check .form-check-input {
    margin-top: 0px;
}

.form-check-label {
    display: block;
    align-self: center;
    /* text-align: center; */
    padding-left: 18px;
}

.privacy-tooltip {
    position: absolute;
    top: calc(50% + 1px);
    /* Располагаем под чекбоксом */
    left: 14px;
    background: #dc3545;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    display: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-top: 8px;
    /* Отступ от чекбокса */
}

.privacy-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    /* Стрелка снизу, смотрит вверх */
    left: 8px;
    /* Позиция стрелки */
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #dc3545;
    /* Стрелка смотрит вверх */
}

.form-check {
    position: relative;
}


/*==============================================
05. CONTACT BLOCK CSS
================================================*/

::-webkit-input-placeholder {
    color: #fff !important;
    opacity: 0.6 !important;
}

::-moz-placeholder {
    color: #fff !important;
    opacity: 0.6 !important;
}

:-ms-input-placeholder {
    color: #fff !important;
    opacity: 0.6 !important;
}

:-moz-placeholder {
    color: #fff !important;
    opacity: 0.6 !important;
}

.input-field {
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 64px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: none;
    border-radius: 8px;
    padding: 4px 22px;
    font-size: 16px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

textarea.form-control {
    height: 150px;
    padding-top: 15px;
}

.btn {
    background: #00bcd4;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    line-height: 60px;
    padding: 0 35px;
    display: inline-block;
    box-shadow: none;
    border-radius: 8px;
    border: 0;
}

.btn:hover,
.btn:focus {
    border-radius: 50px;
    color: #fff;
}

.btn:focus {
    box-shadow: none;
}


/*==============================================
06. ONEPAGE CSS
================================================*/

#header.fixed-header {
    position: fixed;
    top: 0;
    z-index: 999;
}

#header.fixed-header.fixed {
    background: rgba(23, 23, 23, 0.4);
}

.container {
    max-width: 1280px;
    padding: 0 30px;
}

.main-section {
    padding-top: 100px;
}

.section-inner {
    padding-bottom: 80px;
}

.section-title.text-left:after {
    margin-left: 0;
}

.brand-logos-cols4 {
    padding: 30px 0;
    margin-bottom: -10px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

#footer.content-footer {
    position: static;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    margin-top: -20px;
}

#footer.content-footer.section-dark .copyright {
    opacity: 0.6;
    font-weight: 500;
}

#footer.content-footer.section-dark .social li a {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

#footer.content-footer.section-dark .social li a:hover {
    background: rgba(255, 255, 255, 0.4);
}

.onepage .menu-trigger-btn {
    display: none;
}

.onepage .portfolio-container .swiper-button {
    display: block;
}

.onepage .team-row {
    margin-top: -10px;
    padding-top: 0;
}

.onepage .title-box+p {
    margin: 0;
}

.onepage .title-box+p+p {
    margin-bottom: 20px;
}


/*==============================================
07. MULTIPAGES CSS
================================================*/

.page-title {
    font-size: 80px;
}

.title-box.page-title-box:after {
    margin: 20px 0;
    width: 100px;
    height: 2px;
}

.filters-row {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin: 50px 0 0;
}

.filters-row span {
    margin: 8px;
    cursor: pointer;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    padding: 0 15px 1px;
    line-height: 30px;
    border: 1px solid #fff;
    display: block;
    font-weight: 300;
}

.filters-row span:hover {
    color: #00bcd4;
    border-color: #00bcd4;
}

.filters-row span.active {
    background: #00bcd4;
    border-color: #00bcd4;
}

.filters-row span.active:hover {
    color: #fff;
}

.portfolio-item {
    margin-top: 30px;
}

.portfolio-item figure {
    border-radius: 8px;
    overflow: hidden;
}

.portfolio-item a {
    position: relative;
    display: block;
}

.portfolio-item a img {
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

.portfolio-item a:hover img {
    -webkit-transform: scale(1.15) rotate(3deg);
    transform: scale(1.15) rotate(3deg);
}

.portfolio-item a:hover .portfolio-content {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.portfolio-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: rgba(0, 188, 212, 0.9);
    color: #fff;
    font-size: 14px;
    -webkit-transform: translateY(100%);
    transform: translateY(101%);
}

.portfolio-content h3 {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 600;
}

#form-messages {
    border-radius: 8px;
    padding: 15px 20px;
}

#form-messages:empty {
    display: none;
}

.about-img img {
    border-radius: 10px;
}


/*==============================================
08.	PROJECT DETAILS PAGE
================================================*/

.project-detail-col strong {
    font-weight: 500;
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.view-project {
    margin-top: 20px;
}

.tag-btn {
    font-size: 12px;
    color: #00bcd4;
    border: 1px solid;
    border-radius: 25px;
    line-height: 23px;
    padding: 1px 13px 2px;
    display: inline-block;
    margin: 0 4px 4px 0;
}

.tag-btn:hover,
.tag-btn:focus {
    background: #00bcd4;
    color: #fff;
    border-color: #00bcd4;
    text-decoration: none;
}

.info-inner {
    width: 100%;
    margin: 30px 0 0;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.info-inner p {
    margin: 0;
}

.project-images {
    margin-top: 50px;
}

.product-detail-col p {
    line-height: 1.8;
}


/*==============================================
09.	NEWS ARTICLE PAGE
================================================*/

.blog-details h1 {
    font-size: 34px;
    margin: 30px 0;
    line-height: 1.3;
}

.blog-detail-col .news-box p {
    opacity: 0.7;
    font-size: 15px;
}

.blog-detail-col .news-box {
    margin: 0;
}

.blockquote-custom {
    border: 0;
    line-height: 1.4;
    padding: 50px 80px;
    margin: 40px 0;
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
}

.blog-detail-col .news-box .blockquote-custom p {
    font-size: 24px;
    line-height: 1.6;
    opacity: 1;
}

.blockquote-custom i {
    font-weight: 400;
    color: #00bcd4;
    margin-bottom: 20px;
}

.blockquote-custom .blockquote-footer:before {
    display: none;
}

.blockquote-custom .blockquote-footer {
    font-size: 0.55em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.6;
}

.social-share-links {
    margin: 0;
    padding: 0;
    list-style: none;
    float: right;
}

.social-share-links li {
    float: left;
    margin: 0 10px;
}

.social-share-links li:first-child {
    margin-left: 0;
}

.social-share-links li a {
    color: #fff;
    opacity: 0.5;
    display: block;
    font-size: 18px;
    line-height: 35px;
}

.social-share-links li a:hover {
    opacity: 1;
}

.tags-share {
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    padding: 20px 0;
}

.tags-share .tag-btn {
    margin-top: 4px;
}

.hr-primary:after {
    content: '';
    width: 50px;
    height: 2px;
    display: block;
    background: #00bcd4;
    margin: 13px 0 30px;
}

.comments-section {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 35px 40px 10px;
}

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

.comments-list .avatar img {
    float: left;
    margin-right: 30px;
    border-radius: 50%;
}

.comment-details {
    overflow: hidden;
    font-size: 14px;
}

.comment-by {
    position: relative;
    margin-bottom: 10px;
    padding-right: 90px;
    font-size: 16px;
    font-weight: 500;
}

.comment-by .date {
    display: block;
    font-weight: 400;
    opacity: 0.7;
    font-size: 14px;
    margin-top: 3px;
}

.comment-by .reply {
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid;
    padding: 4px 10px;
    color: #00bcd4;
    border-radius: 25px;
    font-weight: 400;
    font-size: 12px;
    text-decoration: none;
}

.comment-by .reply:hover {
    background: #00bcd4;
    color: #fff;
    border-color: #00bcd4;
}

.comments-list ul {
    list-style: none;
    margin: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    padding: 30px 0 0 70px;
}

.comments-list li+li {
    margin-top: 30px;
}

.comments-list ul li+li {
    margin-top: 15px;
}

#logo {
    display: block;
    width: 217px;
    height: 50px;
    background-repeat: no-repeat;
    background-image: url(1.png);
    background-size: cover;
}

.logo2 {
    background-image: url(3.png)!important;
}

.about_01 {
    display: block;
    display: none;
    margin-bottom: 0;
    font-size: 16px;
    padding: 10px 20px 0 20px;
    font-weight: 100;
    line-height: 1.4;
    font-family: 'helvetica';
}

.swiper-slide {
    display: block;
    position: relative;
    z-index: 100;
}

#main-nav ul li a:hover,
#main-nav ul li a:focus,
#main-nav ul li.active a {
    color: black;
}

.title-box:after,
.section-title:after {
    background: white;
}

.btn {
    background: white;
    color: black;
}

.btn:hover,
.btn:focus {
    border-radius: 50px;
    color: black;
}

a {
    color: white;
}

.contact-col a:hover,
a:hover {
    color: white;
}

.email-link {
    word-break: keep-all;
}

@media only screen and (max-width: 767px) {
    .menu-trigger-btn {
        display: none!important;
    }
    #header {
        background: none;
    }
    .portfolio-container {
        height: 90vh;
    }
    .about_01 {
        display: block;
    }
}