/*==============================================================================

 * Template Name: Zulia - Photography Portfolio Template
 * Template URI: 
 * Author: ixtheme - (https://themeforest.net/user/ixtheme)
 * Description: Photography Portfolio Template
 * Version: 1.0
 * Copyright 2020 ixtheme

==============================================================================
    
    [Table of CSS contents]
    ===================
	
    01. google-font & DEFAULT css

    02. custom-container css
    	section-padding css
    	section-header css
    	preloader css

    03. landing-wrapper style
	04. header-&-landing-content-wrapper style

    05. menu-wrapper style
    06. slider-wrapper style
    07. about-wrapper style
    08. deatils-wrapper style 
    09. projects-wrapper style
    10. photo-gallery-wrapper style
    11. video-gallery-wrapper style
    12. contact-wrapper style
    13. footer-wrapper style

    15. END

==============================================================================*/


/*====  google-font & DEFAULT css  ====*/

@import url('https://fonts.googleapis.com/css?family=Kanit:400,500,600,700|Work+Sans:400,500,600&display=swap');
body {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.1px;
    background-color: #1F2430;
    font-family: 'Work Sans', sans-serif;
    overflow-y: hidden;
}

body.loaded {
    overflow-y: auto;
}

::-moz-selection {
    color: #fff;
    background-color: #000;
    text-shadow: none;
}

::selection {
    color: #fff;
    background-color: #000;
    text-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

button:focus {
    outline: 0;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.4s cubic-bezier(.7, 0, .3, 1);
    -webkit-transition: 0.4s cubic-bezier(.7, 0, .3, 1);
    -moz-transition: 0.4s cubic-bezier(.7, 0, .3, 1);
    -ms-transition: 0.4s cubic-bezier(.7, 0, .3, 1);
    -o-transition: 0.4s cubic-bezier(.7, 0, .3, 1);
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: 0;
}

a:hover {
    color: initial;
}

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

li {
    padding: 0;
    margin: 0;
}

mark {
    color: #FFC25C;
    padding: 0;
    margin: 0;
    background-color: transparent;
}


/**** custom-container css ****/

.container-huk {
    margin: 0 auto;
    padding: 0 25px;
    max-width: 1365px;
    width: 100%;
}

.line-link {
    position: relative;
    z-index: 1;
}

.line-link::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.line-link:hover::before {
    width: 100%;
    right: auto;
    left: 0;
    background-color: #ffd556;
}


/**** section-padding css ****/

.wrapper {
    padding: 100px 0;
    border-top: 1px solid #2c303c;
    position: relative;
    z-index: 1;
}

.wrapper::after {
    position: absolute;
    content: "";
    top: 0;
    left: calc(50% - 250px);
    height: 100%;
    width: 500px;
    background-image: url(../img/dot-light.png);
    background-size: 10px;
    opacity: .5;
    pointer-events: none;
    z-index: -1;
}

.data-bgi-init {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/**** section-header css ****/

.section-header p {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    background-color: #2b2f3b;
    display: inline-block;
    position: relative;
    padding-right: 30px;
    height: 26px;
    line-height: 26px;
    overflow: hidden;
    word-spacing: 3px;
}

.section-header h2 {
    line-height: 1.4;
    font-family: 'Kanit', sans-serif;
    letter-spacing: 1px;
}


/****  preloader css  ****/

.preloader-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    color: #716666;
    color: #fff;
    background-color: #E8DDD0;
    background-color: #1F2430;
    background-image: url(../img/blur-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 9999999;
    text-align: center;
    overflow: hidden;
    transition: 0.5s cubic-bezier(.7, 0, .3, 1);
    -webkit-transition: 0.5s cubic-bezier(.7, 0, .3, 1);
    -moz-transition: 0.5s cubic-bezier(.7, 0, .3, 1);
    -ms-transition: 0.5s cubic-bezier(.7, 0, .3, 1);
    -o-transition: 0.5s cubic-bezier(.7, 0, .3, 1);
}

.preloader-wrapper.loaded {
    height: 0;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.preloader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .7s ease;
    -o-transition: .7s ease;
    transition: .7s ease;
    width: 100%;
}

.preloader-inner span {
    display: block;
}

.loader-title {
    font-size: 42px;
    font-weight: 500;
    font-family: 'Kanit', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
    margin-top: 25px;
}

.loader-subtitle {
    color: #a89f9f;
    color: #aaa;
}

.loader-title,
.loader-subtitle {
    position: relative;
    transition: 0.7s cubic-bezier(.7, 0, .3, 1);
    -webkit-transition: 0.7s cubic-bezier(.7, 0, .3, 1);
    -moz-transition: 0.7s cubic-bezier(.7, 0, .3, 1);
    -ms-transition: 0.7s cubic-bezier(.7, 0, .3, 1);
    -o-transition: 0.7s cubic-bezier(.7, 0, .3, 1);
    transition-delay: .3s;
}

.preloader-wrapper.loaded .loader-title {
    margin-right: 150px;
    opacity: 0;
}

.preloader-wrapper.loaded .loader-subtitle {
    margin-left: 190px;
    opacity: 0;
}

.spinner-border {
    border-width: .15em;
    position: absolute;
    top: -30%;
    color: #555;
    color: #ddd;
    left: calc(50% - 1rem);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.preloader-wrapper.loaded .spinner-border {
    opacity: 0;
}

.wow {
    opacity: 0;
}

.wow.loaded {
    opacity: 1;
}


/*====  landing-wrapper  ====*/

.landing-wrapper {
    height: 100vh;
}


/*====  header-&-landing-content-wrapper  ====*/

header {
    height: 100px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    background-color: #1f2430;
    box-shadow: 0 0 50px #1f2430;
}

.landing-wrapper header,
.bg-transparent {
    background-color: transparent;
    box-shadow: none;
}

.header-unpinned {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.logo a {
    color: #fff;
}

.logo img {
    max-width: 150px;
    width: 100%;
}

.menu-toggle .menu-icon {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: -15px;
}

.menu-toggle .iconRotate.clicked {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-toggle .iconRotate180.clicked {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.menu-toggle .line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round;
}

.menu-toggle .menu-icon .top {
    stroke-dasharray: 40 82;
}

.menu-toggle .menu-icon .middle {
    stroke-dasharray: 40 111;
}

.menu-toggle .menu-icon .bottom {
    stroke-dasharray: 40 161;
}

.menu-toggle .menu-icon.clicked .top {
    stroke-dasharray: 17 82;
    stroke-dashoffset: -62px;
}

.menu-toggle .menu-icon.clicked .middle {
    stroke-dashoffset: 23px;
}

.menu-toggle .menu-icon.clicked .bottom {
    stroke-dashoffset: -83px;
}


/* *** menu-wrapper style *** */

.menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    z-index: 3;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-flex-align: center !important;
    align-items: center !important;
    font-family: 'Kanit', sans-serif;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: .5s cubic-bezier(.7, 0, .3, 1);
    -o-transition: .5s cubic-bezier(.7, 0, .3, 1);
    transition: .5s cubic-bezier(.7, 0, .3, 1);
}

.menu-wrapper::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #1F2430;
    background-image: url(../img/blur-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.menu-wrapper.show {
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.menu-links li {
    position: relative;
    overflow: hidden;
}

.menu-links li a {
    font-size: 36px;
    margin: 18px 0;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    position: relative;
    top: 50px;
    line-height: 1;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
}

.menu-links li a:hover {
    color: #fff;
}

.menu-links li a::before {
    position: absolute;
    content: "";
    top: 15px;
    left: 0;
    height: calc(100% + 7px);
    width: 0;
    pointer-events: none;
    background-image: url(../img/wave.png);
    background-size: 43px;
    background-position: -200px center;
    -webkit-transition: width .7s;
    -o-transition: width .7s;
    transition: width .7s;
}

.menu-links li a:hover::before {
    width: 100%;
}

.menu-wrapper .pl-100 {
    position: relative;
}

.menu-wrapper .pl-100::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    background-color: #fff;
    left: 0;
    top: 0;
    -webkit-transition: .25s cubic-bezier(.7, 0, .3, 1);
    -o-transition: .25s cubic-bezier(.7, 0, .3, 1);
    transition: .25s cubic-bezier(.7, 0, .3, 1);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}

.menu-wrapper.show .pl-100::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.menu-box p a {
    font-family: 'Work Sans', sans-serif;
    color: #fff;
}

.menu-box h3 {
    margin-bottom: 15px;
    font-size: 28px;
    position: relative;
    overflow: hidden;
}

.menu-box h3 span {
    position: relative;
    top: 50px;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
}

.menu-box .line-link::before {
    bottom: 4px;
}

.menu-box p {
    margin-bottom: 7px;
    position: relative;
    overflow: hidden;
}

.menu-box p:last-child {
    margin-bottom: 0;
}

.menu-box p a {
    position: relative;
    top: 20px;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
}

.menu-wrapper.show .menu-links li a,
.menu-wrapper.show .menu-box p a,
.menu-wrapper.show .menu-box h3 span {
    top: 0;
    -webkit-transition: .35s;
    -o-transition: .35s;
    transition: .35s;
}


/*====  slider-wrapper style ====*/

.landing-content .swiper-container {
    height: 100vh;
}

.landing-content .swiper-slide {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-flex-align: center !important;
    align-items: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    z-index: 1;
}

.slider-bg {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.slider-bg.discover-all {
    opacity: .3;
}

.slider-bg::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.slider-img {
    height: 220px;
    overflow: hidden;
    margin-bottom: 100px;
    width: 360px;
}

.slider-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-transition: .6s cubic-bezier(.7, 0, .3, 1);
    -o-transition: .6s cubic-bezier(.7, 0, .3, 1);
    transition: .6s cubic-bezier(.7, 0, .3, 1);
}

.slider-img .dupImgSrc {
    position: inherit;
    top: 0;
    left: 0;
}

.project-link:hover .dupImgSrc {
    -webkit-transform: scaleX(3);
    -ms-transform: scaleX(3);
    -o-transform: scaleX(3);
    transform: scaleX(3);
    -webkit-filter: brightness(0);
    filter: brightness(0);
    opacity: 0;
}

.project-link:hover .slider-img img:first-child {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}

.slider-inner {
    position: relative;
}

.slider-info {
    position: absolute;
    bottom: 20px;
    left: -30px;
}

.slider-info h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 52px;
}

.slider-info p {
    font-size: 14px;
    margin-top: 10px;
}

.slider-info .show-sm {
    display: none;
}

.project-link,
.slider-inner:hover .project-link {
    color: #fff;
}

.link-btn {
    color: #000;
    font-weight: 500;
    text-align: center;
    max-width: 120px;
    padding: 2.3rem 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) scale(0) rotate(-45deg);
    -o-transform: translate(-50%, -50%) scale(0) rotate(-45deg);
    transform: translate(-50%, -50%) scale(0) rotate(-45deg);
    -webkit-transition: .4s cubic-bezier(.7, 0, .3, 1);
    -o-transition: .4s cubic-bezier(.7, 0, .3, 1);
    transition: .4s cubic-bezier(.7, 0, .3, 1);
    opacity: 0;
    z-index: 1;
}

.link-btn::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background-image: url(../img/button-bg-white.svg);
    background-repeat: no-repeat;
    background-size: 95%;
    background-position: center;
}

.project-link:hover .link-btn {
    transition-delay: .1s;
    -webkit-transform: translate(-50%, -50%) scale(1) rotate(0deg);
    -ms-transform: translate(-50%, -50%) scale(1) rotate(0deg);
    -o-transform: translate(-50%, -50%) scale(1) rotate(0deg);
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
}

.project-link:hover .link-btn::after {
    -webkit-animation: rotate 40s .35s infinite;
    -o-animation: rotate 40s .35s infinite;
    animation: rotate 40s .35s infinite;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(500deg);
        -ms-transform: rotate(500deg);
        -o-transform: rotate(500deg);
        transform: rotate(500deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(500deg);
        -ms-transform: rotate(500deg);
        -o-transform: rotate(500deg);
        transform: rotate(500deg);
    }
}

.landing-content .navigator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.navigator-link {
    position: absolute;
    left: 15px;
    top: 0;
    color: white;
    z-index: 2;
    font-size: 15px;
    line-height: 1.6;
}

.navigator-link:hover {
    color: #fff;
}

.navigator-link::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 25px;
    background-color: #fff;
    right: -44px;
    top: 47%;
}

.landing-content .swiper-pagination {
    position: static;
    text-align: left;
    margin-left: 150px;
}

.landing-content .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: none !important;
    position: relative;
    opacity: 1;
    margin: 0;
    margin-right: 15px;
}

.landing-content .swiper-pagination-bullet::after {
    position: absolute;
    content: "";
    height: 5px;
    width: 5px;
    background-color: #fff;
    opacity: .5;
    top: 5px;
    left: 5px;
    border-radius: 50px;
    border: 1px solid transparent;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.landing-content .swiper-pagination-bullet:hover::after {
    opacity: 1;
    background-color: #fff;
}

.landing-content .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    height: 9px;
    width: 9px;
    background-color: transparent;
    opacity: 1;
    top: 3px;
    left: 3px;
    border-color: #fff;
}

.landing-content .swiper-pagination-bullet:hover.swiper-pagination-bullet-active::after {
    background-color: #fff;
}

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

.landing-content .navigator .swiper-button-prev,
.landing-content .navigator .swiper-button-next {
    color: #fff;
    font-size: 20px;
}

.landing-content .navigator .swiper-button-prev {
    left: auto;
    right: 60px;
}

.landing-content .navigator .swiper-button-prev::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 1px;
    background-color: #fff;
    right: -13px;
    bottom: 12px;
    border-radius: 5px;
}

.landing-content-2 .swiper-slide {
    padding: 0 25px;
    -ms-flex-pack: start !important;
    justify-content: start !important;
}

.landing-content-2 .slider-info {
    position: static;
    max-width: 450px;
    margin-left: 150px;
}

.landing-content-2 .slider-bg::after {
    background: rgba(0, 0, 0, 0.2);
}

.landing-content-2 .slider-info h3 {
    font-size: 72px;
    font-weight: 900;
}

.landing-content-2 .slider-info .details-btn span {
    margin-top: 30px;
    display: inline-block;
    font-weight: 600;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    color: #000;
    padding: 0 45px 0 20px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.details-btn i {
    font-size: 10px;
    background-color: #000;
    color: #fff;
    height: 20px;
    width: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 20px;
    padding-left: 2px;
    position: relative;
    top: -1px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    left: -35px;
}

.landing-content-2 .slider-info:hover .details-btn span {
    background-color: #000;
    color: #fff;
}

.landing-content-2 .slider-info:hover .details-btn i {
    background-color: #fff;
    color: #000;
}


/*====  about-wrapper style  ====*/

.page-wrapper {
    padding: 100px 0;
    margin-top: 100px;
}

.about-img-wrap {
    overflow: hidden;
    position: relative;
}

.parallax-text {
    text-align: center;
    position: absolute;
    top: 90%;
    width: 2000px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.parallax-text p {
    font-size: 76px;
    font-weight: 700;
    font-family: 'Kanit', sans-serif;
    position: relative;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #fff;
}

.about-info h3 {
    font-family: 'Kanit', sans-serif;
    line-height: 1.7;
}

.info-box {
    margin-top: 40px;
}

.info-box a {
    font-family: 'Kanit', sans-serif;
    color: #fff;
    margin-top: 12px;
    line-height: 1;
}

.info-box h6 {
    color: #788095;
    font-weight: 300;
    position: relative;
    margin-bottom: 20px;
}

.info-box h6::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 20px;
    background-color: #ffd556;
    left: 0;
    bottom: -13px;
}

.info-box.awards h6,
.info-box.exhibition h6 {
    margin-bottom: 40px;
}

.info-box.awards p,
.info-box.exhibition p {
    margin-top: 20px;
    line-height: 1.4;
}

.info-box.awards p span,
.info-box.exhibition p span {
    display: block;
    opacity: .5;
}

hr {
    border-top: 1px solid rgba(194, 194, 198, 0.1);
}

.team-item {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-item img {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.team-item:hover img {
    opacity: .1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.team-info {
    padding-top: 30px;
    background-color: #1f2430;
    position: relative;
    z-index: 1;
}

.team-info h4 {
    font-size: 18px;
}

.team-info p {
    font-size: 14px;
    margin-top: 5px;
    opacity: .5;
    margin-bottom: -2px;
}

.team-social {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -30px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.team-social a {
    padding: 15px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.team-social a:hover {
    color: #626877;
}

.team-item:hover .team-social a {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}


/*====  deatils-wrapper style ====*/

.row.project-items {
    margin-left: -25px;
    margin-right: -25px;
}

.row.project-items .col-lg-4 {
    padding: 0 25px;
}

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

.project-item-img {
    overflow: hidden;
    position: relative;
}

.project-item-img img {
    -webkit-transition: .8s cubic-bezier(.7, 0, .3, 1);
    -o-transition: .8s cubic-bezier(.7, 0, .3, 1);
    transition: .8s cubic-bezier(.7, 0, .3, 1);
    max-width: 100%;
    height: auto;
}

.project-item-img .dupImgSrc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    object-fit: cover;
    object-position: top;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.project-item:hover .project-item-img .dupImgSrc {
    top: 50%;
    object-position: bottom;
}

.project-item-img.dBottom .dupImgSrc {
    top: auto;
    bottom: 0;
    object-position: bottom;
}

.project-item:hover .project-item-img.dBottom .dupImgSrc {
    top: auto;
    bottom: 50%;
    object-position: top;
}

.masked-text-wrap {
    font-size: 32px;
    color: #696a6c;
    position: relative;
    z-index: 1;
    line-height: 1;
    text-transform: uppercase;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    margin-top: 20px;
    font-family: 'Kanit', sans-serif;
    letter-spacing: 1px;
    font-weight: bold;
}

.mask-text-reveal {
    overflow: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}

.mask-text-reveal,
.mask-text-reveal::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    pointer-events: none;
    -webkit-transition: .6s cubic-bezier(.7, 0, .3, 1);
    -o-transition: .6s cubic-bezier(.7, 0, .3, 1);
    transition: .6s cubic-bezier(.7, 0, .3, 1);
}

.mask-text-reveal::before {
    content: attr(data-text);
    color: #fff;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}

.project-item:focus .mask-text-reveal,
.project-item:focus .mask-text-reveal::before,
.project-item:hover .mask-text-reveal,
.project-item:hover .mask-text-reveal::before {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: .6s cubic-bezier(.7, 0, .3, 1);
    -o-transition: .6s cubic-bezier(.7, 0, .3, 1);
    transition: .6s cubic-bezier(.7, 0, .3, 1);
}

.view-all-link {
    height: 70px;
    width: 70px;
    display: inline-block;
    text-align: center;
    line-height: 70px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50px;
    font-size: 21px;
}

.view-all-link:hover {
    color: #000;
    background-color: #fff;
    border-color: #fff;
}

.details-page-header {
    text-align: center;
    margin-bottom: 30px;
}

.details-page-header h2 {
    margin-bottom: 20px;
    font-family: 'Kanit', sans-serif;
    font-size: 38px;
    margin-top: -11px;
}

.details-page-header p {
    opacity: .5;
    font-size: 14px;
}

.details-images .gallery-item {
    margin-top: 50px;
}

.details-images .gallery-item:hover img {
    margin-top: 0;
    opacity: .5;
}

.details-navigation a.next,
.details-navigation a.prev {
    font-weight: 500;
    color: #809195;
    font-size: 18px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    width: 70px;
    text-align: center;
    background-color: #303646;
    border-radius: 70px;
    position: relative;
    overflow: hidden;
    top: 3px;
}

.details-navigation a.next:hover,
.details-navigation a.prev:hover {
    color: #809195;
    background-color: #242a37;
}

.details-navigation a::after {
    position: absolute;
    top: 0;
    content: attr(data-text);
    text-transform: uppercase;
    font-size: 14px;
    width: 100%;
    border-radius: 70px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.details-navigation a.prev::after {
    left: 100%;
}

.details-navigation a.next::after {
    left: -100%;
}

.details-navigation a.prev:hover::after,
.details-navigation a.next:hover::after {
    left: 0;
}

.details-navigation a.prev span {
    -webkit-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.details-navigation a.prev span,
.details-navigation a.next span {
    display: inline-block;
    position: relative;
    top: -1px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.details-navigation a.prev:hover span {
    margin-left: -150px;
}

.details-navigation a.next:hover span {
    margin-left: 150px;
}


/*==== projects-wrapper style  ====*/

.project-item-title {
    font-size: 32px;
    color: #696a6c;
    position: relative;
    z-index: 1;
    line-height: 1;
    text-transform: uppercase;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    margin-top: 20px;
    font-family: 'Kanit', sans-serif;
    letter-spacing: 1px;
    font-weight: bold;
}

.mask-text-reveal {
    overflow: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}

.mask-text-reveal,
.mask-text-reveal::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    pointer-events: none;
    -webkit-transition: .6s cubic-bezier(.7, 0, .3, 1);
    -o-transition: .6s cubic-bezier(.7, 0, .3, 1);
    transition: .6s cubic-bezier(.7, 0, .3, 1);
}

.mask-text-reveal::before {
    content: attr(data-text);
    color: #fff;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}


/*====  photo-gallery-wrapper style  ====*/

.gallery-item {
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.gallery-item:hover img {
    margin-top: -20px;
}

.gallery-item .caption {
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    padding: 5px 13px;
    text-transform: capitalize;
    pointer-events: none;
    background-color: #1F2430;
    font-family: 'Kanit', sans-serif;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.gallery-item:hover .caption {
    bottom: 0;
}

.gallery-item .caption span {
    display: inline-block;
    position: relative;
    bottom: -50px;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.gallery-item:hover .caption span {
    bottom: 0;
    opacity: 1;
    transition-delay: .2s;
}

.mfp-move-horizontal .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -o-transform: translateX(-50px);
    transform: translateX(-50px);
}

.mfp-move-horizontal.mfp-bg {
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.mfp-move-horizontal.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.mfp-move-horizontal.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-move-horizontal.mfp-removing .mfp-with-anim {
    opacity: 0;
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
    transform: translateX(50px);
}

.mfp-move-horizontal.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-bg {
    opacity: .8;
}

.mfp-arrow::before,
.mfp-arrow::after {
    margin-top: 0;
    margin-left: 0;
    border: 0;
    color: #ddd;
    background: rgb(49, 52, 57);
    line-height: 40px;
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    opacity: 1;
    border-radius: 1px;
}

.mfp-arrow:hover::before,
.mfp-arrow:hover::after {
    color: #777;
}

.mfp-arrow::before {
    content: "<";
}

.mfp-arrow::after {
    content: ">";
}

.mfp-arrow-left::after,
.mfp-arrow-right::before {
    display: none;
}

.mfp-arrow {
    opacity: .95;
}

.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}


/*====  video-gallery-wrapper style ====*/

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

.video-item img {
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.video-item:hover img {
    opacity: .2;
}

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

.video-item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    color: #fff;
    font-size: 15px;
    opacity: 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.video-item:hover .play-icon {
    opacity: 1;
    font-size: 30px;
}

.video-item .caption {
    font-family: 'Kanit', sans-serif;
    color: #fff;
    margin-top: 5px;
    font-size: 18px;
}


/*====  contact-wrapper style  ====*/

.contact-wrapper .info-box {
    margin-top: 25px;
}

.contact-wrapper .info-box a {
    margin: 0;
}

.contact-wrapper .info-box h6 {
    margin-bottom: 15px;
}

.contact-wrapper .info-box h6::after {
    bottom: -9px;
}

.input-box {
    margin-bottom: 30px;
    position: relative;
}

.input-field {
    border: 1px solid #333744;
    background-color: #1f2430;
    height: 45px;
    width: 100%;
    color: #fff;
    padding: 0 15px;
    overflow: hidden;
    z-index: 1;
    outline: none;
    box-shadow: none;
    transition: 0.3s cubic-bezier(.7, 0, .3, 1);
    -webkit-transition: 0.3s cubic-bezier(.7, 0, .3, 1);
    -moz-transition: 0.3s cubic-bezier(.7, 0, .3, 1);
    -ms-transition: 0.3s cubic-bezier(.7, 0, .3, 1);
    -o-transition: 0.3s cubic-bezier(.7, 0, .3, 1);
}

.input-field:focus {
    border-color: #ffd556;
}

.input-box label {
    display: inline-block;
    margin-bottom: 0;
    position: absolute;
    left: 18px;
    pointer-events: none;
    top: 9px;
}

.input-box label::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0%;
    background-color: #1f2430;
    left: 100%;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.input-box .input-field:focus~label::after {
    width: 105%;
    left: -1px;
}

textarea.input-field {
    padding: 10px 15px;
    height: 120px;
    resize: none;
}

.form-button {
    border: 0;
    background-color: #333744;
    color: #fff;
    height: 45px;
    padding: 0 25px;
    border-radius: 3px;
    font-size: 15px;
    outline: 0;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.form-button:hover {
    background-color: #3f4352;
}

#google-map {
    height: 400px;
    background-color: #ddd;
    margin-top: 70px;
}

#google-map iframe {
    height: 100%;
    width: 100%;
    border: 0;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}


/*====  footer-wrapper style  ====*/

footer {
    height: 80px;
    border-top: 1px solid #2f3542;
}

.copyright-text span {
    color: #ffd556;
}

.scroll-to-top {
    height: 45px;
    width: 45px;
    line-height: 42px;
    text-align: center;
    background-color: #2b3140;
    border-radius: 50px;
}

.scroll-to-top svg path {
    fill: #fff;
}

.scroll-to-top svg {
    height: 25px;
    width: 25px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}


/*====  END  ====*/