/* [Master Stylesheet] */

/* ------------- Index of Stylesheet -------------
:: 1.0 Import Web Fonts
:: 2.0 Import All CSS
:: 3.0 Common/Base CSS
:: 4.0 Header Area CSS
:: 5.0 Sidebar Area CSS
:: 6.0 Welcome Area CSS
:: 7.0 About Me Area CSS
:: 8.0 Follow Instagram Area CSS
:: 9.0 Footer Area CSS
:: 10.0 Portfolio Area CSS
:: 11.0 Blog & Contact Area CSS
:: 12.0 Elements Area CSS
------------------------------------------------ */

/* :: 1.0 Import Web Fonts */

@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');

/* :: 2.0 Import All CSS */

@import '../css/bootstrap.min.css';
@import '../css/owl.carousel.css';
@import '../css/font-awesome.min.css';
@import '../css/pe-icon-7-stroke.css';
@import '../css/magnific-popup.css';
@import '../css/animate.css';

/* :: 3.0 Common/Base CSS */

:root{
    /* 50w, 60h for square */
    /* */
    --image_w: min(80%,700px);
    --image_h: min(70%, 700px);
    --image_w2: min(80%,900px);
    --image_h2: min(75%, 700px);
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1d1d1d;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

p {
    color: #838383;
    font-size: 15px;
    line-height: 2;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

a:focus {
    outline: 0 solid;
}

a,
a:hover,
a:focus {
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
    text-decoration: none;
    outline: none;
    font-size: 14px;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* #preloader {
    position: absolute;
    z-index: 999999;
    width: 100%;
    height: 100%;
    background-color: #f2f4f8;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
} */

.questions-area ul li {
    display: none;
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1d;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.questions-area ul li.question-show {
    display: block;
}

.questions-area {
    padding: 0 15px;
    position: absolute;
    bottom: 100px;
    z-index: 15;
    width: 100%;
    height: auto;
    left: 0;
}

.questions-area p {
    margin-bottom: 0;
}

.showbox {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
}

.loader {
    position: relative;
    margin: 0 auto;
    width: 60px;
}

.loader:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.circular {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@-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, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@-webkit-keyframes color {
    100%,
    0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%,
    90% {
        stroke: #ffa700;
    }
}

@keyframes color {
    100%,
    0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%,
    90% {
        stroke: #ffa700;
    }
}

ul,
ol {
    margin: 0;
}

ol li,
ul li {
    list-style: outside none none;
}

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

.studio-table {
    display: table;
    z-index: 9;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
}

.studio-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.mt-15 {
    margin-top: 15px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-70 {
    margin-top: 70px;
}

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

.mb-15 {
    margin-bottom: 15px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-30 {
    margin-left: 30px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-30 {
    margin-right: 30px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-100 {
    margin-bottom: 100px;
}

.bg-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-gray {
    background-color: #f6f6f6;
}

.bg-transparent {
    background-color: transparent;
}

.bg-transparent-dark {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.bg-transparent-light {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.font-bold {
    font-weight: 700;
}

.font-light {
    font-weight: 300;
}

.height-500 {
    height: 500px !important;
}

.height-600 {
    height: 600px !important;
}

.height-700 {
    height: 700px !important;
}

.height-800 {
    height: 800px !important;
}

#scrollUp {
    background-color: #222;
    border-radius: 0;
    bottom: 100px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    right: 0;
    text-align: center;
    width: 35px;
}

.section_padding_100 {
    padding: 100px 0;
}

.section_padding_50 {
    padding: 50px 0;
}

.section_padding_100_70 {
    padding: 100px 0 70px;
}

.section_padding_100_50 {
    padding: 100px 0 50px;
}

.section_padding_100_0 {
    padding: 100px 0 0;
}

.section_padding_0_100 {
    padding: 0 0 100px;
}

.section_heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section_heading h2 {
    font-size: 48px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.section_heading.text-left {
    text-align: left !important;
}

.studio-btn {
    display: inline-block;
    color: #fff;
    background-color: #1d1d1d;
    height: 52px;
    padding: 0 15px;
    border-radius: 0;
    line-height: 52px;
    font-size: 16px;
    min-width: 140px;
}

.studio-btn > img {
    padding-right: 5px;
}

.studio-btn:hover,
.studio-btn:focus {
    color: #fff;
    font-size: 16px;
}

/* :: 4.0 Header Area CSS */

#page-container {
    position: relative;
    min-height: 100vh;
  }

#content-wrap {
padding-bottom: 2.5rem;    /* Footer height */
}

.logo_text {
    all: revert;
    cursor: pointer;
    user-select: none;
    position: absolute;
    display: block;
    font-size: 500px;
    font-weight: 700;
    font-family: "Work Sans";
    letter-spacing: 6px;
    color: rgb(0, 0, 0)
}

.menu-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Start of new header */

.navbar2 {
    overflow: hidden;
    background-color: white;
    /* font-family: Arial, Helvetica, sans-serif; */
  }
  
  .navbar2 a {
    float: left;
    font-size: 16px;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  .dropdown2 {
    float: right;
    overflow: hidden;
  }

  .dropdown2 .hamburger {
    cursor: pointer;
    font-size: 16px;  
    border: none;
    outline: none;
    color: black;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .dropdown2 .dropbtn {
    cursor: pointer;
    font-size: 16px;  
    border: none;
    outline: none;
    color: black;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  /* .navbar2 a:hover, .dropdown2:hover .dropbtn, .dropbtn:focus {
    background-color: red;
  } */
  
  .dropdown2-content {
    right: 0;
    display: none;
    position: absolute;
    background-color: #707070;
    opacity: 50%;
    width: 100%;
    /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
    z-index: 1;
  }
  
  .dropdown2-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
  }
  
  .dropdown2-content a:hover {
    background-color: rgb(161, 161, 161);
  }
  
  .show {
    display: block;
    z-index: -1;
  }


  .header {
    background-color: none;
    /* box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1); */
    position: absolute;
    top: 5px;
    width: 100%;
    height: 80px;
    z-index: 9999;
  }
  
  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: none;
  }
  
  .header li a {
    display: block;
    padding: 20px 20px;
    text-decoration: none;
    background: none;
  }
  
  
  /* .header .logo {
    display: block;
    float: left;
    font-size: 40px;
    padding: 10px 20px;
    text-decoration: none;
  } */

.header .img {
    vertical-align: middle;
}

.header .logo-fade {
    position: absolute;
    top: 40px;
    transform: translate(0%, -50%);
    left: 10px;
    opacity: 0.8;
    max-width: min(50vw,400px);
    z-index: 1;
}

.header .logo-fade:hover {
    opacity: 1;
}
  
.header .menu {
clear: both;
max-height: 0;
transition: max-height .2s ease-out;
background-color: none;
}

.header .menu-icon {
cursor: pointer;
display: inline-block;
float: right;
padding: 28px 20px;
position: relative;
user-select: none;
background-color: none;
}

.header .menu-icon .navicon {
background: #333;
display: block;
height: 2px;
position: relative;
transition: background .2s ease-out;
width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
background: #333;
content: '';
display: block;
height: 100%;
position: absolute;
transition: all .2s ease-out;
width: 100%;
}

.header .menu-icon .navicon:before {
top: 5px;
}

.header .menu-icon .navicon:after {
top: -5px;
}

.header .menu-btn {
display: none;
}

.header .menu-btn:checked ~ .menu {
max-height: 240px;
  }

/* .header .menu-btn:checked ~ .logo-fade {
top: 1%;
} */

.casting {
    max-width: 45%;
    max-height: 40%;
    display: inline-block;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
  

  /* End of new header */

.header-area {
    width: 100%;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    padding: 0 34px;
}

/* #searchbtn {
    cursor: pointer;
    margin-left: 15px;
}

.header-search-form,
.search-form-on .navbar-nav {
    display: none;
}

.search-form-on .header-search-form {
    display: block;
} */

.header-area .main-menu .nav-link {
    font-size: 12px;
    text-transform: uppercase;
    color: #424242;
    padding: 0 25px;
    z-index: 2000;
}

.header-area .main-menu .nav-link:hover,
.header-area .main-menu .nav-link:focus {
    color: rgba(0, 0, 0, 0.87);
}

.dropdown {
    float: left;
    overflow: hidden;
  }
  
.dropdown .dropbtn {
border: none;
outline: none;
color: black;
padding: 20px 20px;
font-size: 14px;
background-color: inherit;
/* margin: 0; */
}

.dropdown-content {
    display: none;
    position: fixed;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
/* text-decoration: none; */
display: block;
/* text-align: left; */
}

.dropdown-content a:hover {
background-color: white;
}

.dropdown:hover .dropdown-content {
display: block;
}

.wrapper {
	width: 80%; /* <-- just a default, can be anything. */
}

.three-by-two.aspect-ratio { padding-bottom: 66.666% }
.four-by-three.aspect-ratio { padding-bottom: 75% }
.sixteen-by-nine.aspect-ratio { padding-bottom: 56.25% }
.one-by-one.aspect-ratio { padding-bottom: 100% }

.container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.image_shdwlss {
    position: absolute;
    max-width: var(--image_w);
    max-height: var(--image_h);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.image {
    position: absolute;
    max-width: var(--image_w);
    max-height: var(--image_h);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 50%);
}

.preloader_image {
    position: absolute;
    max-width: 80%;
    max-height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

#cycler{
    /* position:relative; */
    margin: 0;
    
}
#cycler img{
    position:absolute;
    z-index:1;
    background-color:white;
    image-rendering: optimizeSpeed;             /*                     */
    image-rendering: -moz-crisp-edges;          /* Firefox             */
    image-rendering: -o-crisp-edges;            /* Opera               */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and Safari) */
    image-rendering: optimize-contrast;         /* CSS3 Proposed       */
    -ms-interpolation-mode: nearest-neighbor;   /* IE8+                */
}
#cycler img.active{
    z-index:3
}

.carousel-indicators {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0;
    z-index: 9999;
}

.carousel-indicators li {
    width: 100%;
    height: 100px;
    margin-right: 0;
    margin-left: 0;
    text-indent: -9999999px;
    background-color: #fff;
    cursor: pointer;
    -webkit-transition-duration: 5000ms;
    transition-duration: 50ms;
}

.carousel-indicators li:after,
.carousel-indicators li:before {
    display: none;
}

.carousel-indicators li.active:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    top: -26px;
    z-index: 1100;
    position: absolute;
    background-image: url(../img/core-img/active.png);
}

.carousel-item:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.17);
    content: '';
    z-index: -1;
}

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

.slide-text {
    padding: 25px 30px 15px;
    border-left: 3px solid #fff;
    margin-left: 200px;
    background-color: rgba(255, 255, 255, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-top: -100px;
}

.slide-text h2 {
    margin-bottom: 0;
    font-size: 36px;
    color: #fff;
    line-height: 1;
}

.slide-text span {
    font-size: 100px;
    color: #fff;
    line-height: 1;
    font-weight: 100;
}

/* :: 7.0 About Me Area CSS */

.about-portrait {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 30%;
    overflow: hidden;
    margin-left: 0px;
    margin-bottom: 10px;
    margin-top: 10px;
    background-repeat: no-repeat;
    background-position: center !important;
    background-size: contain;
}

    /* position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 10%;
    height: 10%;

    height: 200px;
    width: 300px;
    overflow: hidden;
    margin-left: 0px;
    margin-top: 10px;
    background-repeat: no-repeat;
    background-position: center !important;
    background-size: contain; */
    
.about-content span {
    width: 30px;
    height: 2px;
    background-color: #bebebe;
    margin: 0 auto 30px;
    display: block;
}

.about-content h2 {
    margin-bottom: 40px;
    font-size: 36px;
}

.single-service-area img {
    margin-bottom: 50px;
}

.single-service-area h5 {
    margin-bottom: 20px;
}

.single-pie-bar h6 {
    margin-top: 15px;
    margin-bottom: 0;
}

/* :: 8.0 Follow Instagram Area CSS */

.follow-me-instagram-area {
    border-top: 1px solid #bd1616;
    margin-bottom: 80px;
}

.follow-me-title h5 {
    margin: 30px 0;
    font-size: 18px;
}

.single-instagram-feeds a {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.7);
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single-instagram-feeds:hover a {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* :: 9.0 Footer Area CSS */

.site-footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 30px;
    background-color: none;
}

.pagewrap {
    min-height: 100%;
    /* equal to footer height */
    margin-bottom: -80px; 
}

.page-wrap:after {
    content: "";
    display: block;
  }



/* .footer-area {
    position: absolute;
    z-index: 100;
    background-color: #ffffff;
    height: 30px;
    width: 100%;
    padding: 0 35px;
    bottom: 0;
    left: 0;
}

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

.single-footer-content > a {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-left: 5px;
    line-height: 1;
} */

/* :: 10.0 Portfolio Area CSS */

.gallery_area {
    height: calc(100% - 275px);
    width: calc(100% - 400px);
    overflow-y: scroll;
    position: fixed;
    z-index: 1;
    top: 120px;
    left: 300px;
    right: 200px;
    padding-right: 45px;
    margin-top: 90px;
}

.gallery-caption {
    position: fixed;
    text-align: center;
    /* width: 100%; */
    left: 0;
    right: 0;
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    top: max(calc((50vh - 17.5vw)/2),80px);
    z-index: 1;
}

.gallery-caption .p {
    font-family: Arial, Helvetica, sans-serif; 
    font-style: italic; 
    font-size: 1.25rem; 
    color: black;
}


.gallery_container {
    position: fixed;
    width: 50%;
    height: 100%;
    background-color: transparent;
    border-collapse: collapse;
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* z-index: 1000; */
    /* Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon"> www.flaticon.com</a>
*/
    cursor: url("../img/core-img/grid.gif"), default;
  }

.middlepane {
    position: fixed;
    width: var(--image_w2);
    height: var(--image_h2);
    background-color: transparent;
    border-collapse: collapse;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    image-rendering: optimizeSpeed;             /*                     */
    image-rendering: -moz-crisp-edges;          /* Firefox             */
    image-rendering: -o-crisp-edges;            /* Opera               */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and Safari) */
    image-rendering: optimize-contrast;         /* CSS3 Proposed       */
    -ms-interpolation-mode: nearest-neighbor;   /* IE8+                */
}

.middlepane_2 {
    position: fixed;
    width: 35%;
    height: 70%;
    background-color: transparent;
    border-collapse: collapse;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.empty_btn {
    position: absolute;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    color: transparent;
    cursor: url("../img/core-img/grid.gif"), default;
}

.middlepane .image_2 {
    position: absolute;
    max-width: min(90%,800px);
    max-height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 50%);
    /* z-index: 1000; */
    /* Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon"> www.flaticon.com</a>
*/
    cursor: url("../img/core-img/grid.gif"), default;
}

.fade-in {
    animation: fadeIn ease 5s;
    -webkit-animation: fadeIn ease 5s;
    -moz-animation: fadeIn ease 5s;
    -o-animation: fadeIn ease 5s;
    -ms-animation: fadeIn ease 5s;
  }
  @keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-moz-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-webkit-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-o-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  
  @-ms-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }

  .fade-out {
    opacity: 0%;
  }


/* .image_2_focused {
    position: fixed;
    max-width: 100%;
    max-height: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

.grid-container {
    display: inline-grid;
    grid-template-columns: 50% 50%;
    padding: 10px;
  }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
    grid-gap: 1.1rem;
    justify-items: center;
    margin: 0;
    padding: 0;
}

.grid-item {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    font-size: 30px;
    text-align: center;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .grid-container {
    grid-template-columns: 100%;
    }
  }

/* Simple responsive grid */

#photos {
    /* Prevent vertical gaps */
    line-height: 0;
     
    -webkit-column-count: 5;
    -webkit-column-gap:   0px;
    -moz-column-count:    5;
    -moz-column-gap:      0px;
    column-count:         4;
    column-gap:           8px;  
  }

/* @media screen and (max-width: 600px) {
    .column {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
    }
  } */
  

a.button {
-webkit-appearance: button;
-moz-appearance: button;
appearance: button;

text-decoration: none;
color: initial;
}

.smoky-container {
    width: 100% !important;
    height: auto !important;
    position: relative;
    text-align: center;
    vertical-align: middle;
    display: inline;
    color: white;
}

.smoky-img {
    width: 100% !important;
    height: auto !important;
    margin-top: 8px;
}


.smoky-txt {
    position: absolute;
    color: white;
    /* -webkit-text-fill-color: white; /* Will override color (regardless of order) */
    /* -webkit-text-stroke-width: 1px; */
    /* -webkit-text-stroke-color: black; */
    top: 50%;
    left: 50%;
    font-size: 2vw;
    transform: translate(-50%, -50%);
    
}

.smoky-img:hover {
    border: none;
    background-color: black;
    opacity: 70%;
    
}

.smoky-txt:hover {
    opacity: 70%;
}


/* .span_bar {
    position: fixed;
    width: 100%;
    top: 15%;
    bottom: 15%;
    background-color: #0057e7;
} */

.leftbutton, .rightbutton {
    position: fixed;
    top: 15%;
    bottom: 15%;
    width: 80%;
    background: none;
    border: none;
}

.leftbutton:hover {
    border: none;
    /* Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon"> www.flaticon.com</a> */
    cursor: url("../img/core-img/left.gif"), default;
}

.rightbutton:hover {
    border: none;
    /* Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon"> www.flaticon.com</a> */
    cursor: url("../img/core-img/right.gif"), default;
}

.leftbutton:focus, .rightbutton:focus {
    outline: none;
}

leftbutton:active, .rightbutton:active {
    outline: none;
    border: none;
    }


.gallery {
    position: fixed;
    max-width: 100%;
    max-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery_alt {
    margin: 0;
}

.gallery_left {
    position: fixed;
    max-width: 100%;
    max-height: 100%;
    top: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
}

.gallery_right {
    position: fixed;
    max-width: 100%;
    max-height: 100%;
    top: 50%;
    right: -15%;
    transform: translate(-50%, -50%);
}

.portfolio-menu button {
    background-color: transparent;
    font-size: 15px;
    color: #838383;
    padding: 0 20px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}


.navbar-nav li {
    background-color: transparent;
    font-size: 15px;
    color: #636363;
    padding: 0 20px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.navbar-nav li,
.navbar-nav li:hover {
    color: #1d1d1d;
}

.navbar-nav li:focus {
    box-shadow: none;
}

.navbar li a {
    color: #fff;
  }

.portfolio-menu button.active,
.portfolio-menu button:hover {
    color: #1d1d1d;
}


.portfolio-menu button:focus {
    box-shadow: none;
}

.gallery_menu {
    margin-bottom: 100px;
}

.column_single_gallery_item {
    margin-bottom: 30px;
}

.column_single_gallery_item img {
    width: 100%;
}

.hover_overlay {
    position: absolute;
    width: calc(100% - 30px);
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 15px;
    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;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.hover_overlay a {
    font-size: 30px;
    color: #fff;
}

.column_single_gallery_item:hover .hover_overlay {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.leftpane {
    width: 25%;
    height: 100%;
    float: left;
    background-color: rosybrown;
    border-collapse: collapse;
}

.rightpane {
    width: 25%;
  height: 100%;
  position: relative;
  float: right;
  background-color: yellow;
  border-collapse: collapse;
  }

  /* position: fixed;
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */

/* :: 11.0 Blog & Contact Area CSS */

.contact_box {
    font-size: 10;
    background-color: teal;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-primary {
    color: black;
    background-color: rgb(146, 146, 146);
    border-color: rgb(146, 146, 146);
    /* font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
    font-weight: 600;
    font-family: proxima-nova;
    font-weight: 300;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px; */
}

.btn-primary:hover {
    color: white;
    
}

.form-group {
    margin-bottom: 1rem;
}

.form-message {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color:white;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.contact-heading-text h2,
.blog-content p {
    margin-bottom: 50px;
}

.post-date,
.post-date:hover,
.post-date:focus {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.post-author,
.post-author:hover,
.post-author:focus {
    font-size: 12px;
    text-transform: uppercase;
    color: #838383;
    display: block;
    margin-bottom: 50px;
}

.pagination-area .page-link {
    color: #1d1d1d;
    border: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}



.page-item.active .page-link {
    z-index: 1;
    color: #1d1d1d;
    background-color: transparent;
    border-color: transparent;
    padding-right: 80px;
}

.page-item.active .page-link:after {
    content: '';
    width: 70px;
    height: 2px;
    background-color: #1d1d1d;
    position: absolute;
    bottom: 13px;
    left: 45px;
}

.contact-form-area form .form-control {
    margin-bottom: 30px;
    font-size: 14px;
    font-style: italic;
    height: 60px;
    border-bottom: 2px solid #c0c0c0;
    border-top: 0;
    border-left: 0;
    border-radius: 0;
    border-right: none;
    background-color: transparent;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}


.contact-core-info {
    position: absolute;
    top: 30px;
    width: 280px;
    background-color: #1d1d1d;
    z-index: 1000;
    left: -90px;
    padding: 15px 40px;
    text-align: center;
    height: calc(100% - 60px);
}

.contact-core-info img {
    margin-bottom: 50px;
}

.contact-core-info .single-footer-content {
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.contact-core-info .single-footer-content img {
    display: block;
    margin: 0 auto 10px;
}

.contact-popup-form .modal-content {
    padding: 50px;
}

.contact-popup-form .modal-content {
    padding: 50px;
    border: none;
    box-shadow: 0 5px 50px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.9);
}

/* :: 12.0 Elements Area CSS */

/* Accordians */

.elements-title h2 {
    font-size: 36px;
    margin-bottom: 100px;
}

.panel {
    background-color: #fff;
    border: 0 solid transparent;
    border-radius: 4px;
    box-shadow: 0 0 0 transparent;
    margin-bottom: 15px;
}

.single-accordion:last-of-type {
    margin-bottom: 0px;
}

.single-accordion h6 a {
    background-color: #1d1d1d;
    border-radius: 0;
    color: #fff;
    display: block;
    margin: 0;
    padding: 20px 60px 20px 20px;
    position: relative;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
}

.single-accordion h6 a.collapsed {
    background-color: #aeaeae;
    color: rgb(158, 0, 0);
}

.single-accordion h6 a span {
    font-size: 10px;
    position: absolute;
    right: 20px;
    text-align: center;
    top: 25px;
}

.single-accordion h6 a.collapsed span.accor-close {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

span.accor-open {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.single-accordion h6 a.collapsed span.accor-open {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

.single-accordion h6 {
    margin-bottom: 0;
    text-transform: uppercase;
}

.single-accordion .accordion-content {
    border-top: 0 solid transparent;
    box-shadow: none;
}

.single-accordion .accordion-content p {
    padding: 20px 15px 5px;
    margin-bottom: 0;
}

/* barfiller */

.single_progress_bar {
    margin-bottom: 20px;
}

.single_progress_bar:last-of-type {
    margin-bottom: 0;
}

.barfiller {
    background: #e0e0e0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    width: 100%;
}

.barfiller .fill {
    display: block;
    position: relative;
    width: 0px;
    height: 100%;
    background: #333;
    z-index: 1;
}

.barfiller .tipWrap {
    display: none;
}

.barfiller .tip {
    margin-top: 15px;
    font-size: 15px;
    color: #838383;
    left: 0px;
    position: absolute;
    z-index: 2;
    background: transparent;
}

.barfiller .tip:after {
    display: none;
}

.single_progress_bar p {
    margin-bottom: 0;
    margin-top: 10px;
}

/* Cool Facts */

.counter-area h2 {
    font-size: 36px;
}

.counter-area h6 {
    margin-bottom: 0;
    color: #838383;
}

.studio-btn.studio-btn-2 {
    background-color: transparent;
    border: 2px solid #1d1d1d;
    color: #1d1d1d;
}

.studio-btn.studio-btn-4 {
    background-color: transparent;
    border: 2px solid #aeaeae;
    color: #aeaeae;
}

/* Sonar CSS */

.carousel-indicators li.active:before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    top: -25px;
    left: 1px;
    -webkit-animation: sonar-effect 1s ease-in-out .1s infinite;
    animation: sonar-effect 1s ease-in-out .1s infinite;
    z-index: 1;
    background-color: #fff;
}


@-webkit-keyframes sonar-effect {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.5;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        box-shadow: 0 0 0 3px #fff, 0 0 5px 5px #fff, 0 0 0 5px #fff;
    }
    100% {
        box-shadow: 0 0 0 3px #fff, 0 0 5px 5px #fff, 0 0 0 5px #fff;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}


@keyframes sonar-effect {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.5;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        box-shadow: 0 0 0 3px #fff, 0 0 5px 5px #fff, 0 0 0 5px #fff;
    }
    100% {
        box-shadow: 0 0 0 3px #fff, 0 0 5px 5px #fff, 0 0 0 5px #fff;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

/* :: 11.0 Inner Scroll Area CSS */

/* .gallery_area {
    height: calc(100% - 275px);
    width: calc(100% - 600px);
    overflow-y: scroll;
    position: fixed;
    z-index: 1;
    top: 150px;
    left: 300px;
    right: 200px;
    padding-right: 45px;
} */

/* .scrollbar {
	overflow-y: scroll;
}

.force-overflow {
	min-height: 450px;
}

#boxxy::-webkit-scrollbar {
	width: 10px;
	background-color: #F5F5F5;
}

#boxxy::-webkit-scrollbar-track {
	border: 1px solid black;
	background-color: rgb(255, 255, 255);
}

#boxxy::-webkit-scrollbar-thumb {
	background-color: #000000;	
} */

/* Slide up */
.box-wrapper {
    -webkit-transition-duration: 1000ms;
    transition-duration: 10000ms;
}

.box {
    content: "";
    display: block;
    margin: auto;
    width: 5000px;
    height: 5000px;
}

.box-wrapper.loading:nth-child(odd) {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);    
}

.box-wrapper:nth-child(odd) .box {
    background: orange;
}

/* Fade In/Out */
header { 
	animation: fadeInAnimation ease 3s ;
	animation-iteration-count: 1; 
	animation-fill-mode: forwards; 
    background-color: none;
} 

body { 
	animation: fadeInAnimation ease 3s ;
	animation-iteration-count: 1; 
	animation-fill-mode: forwards; 
} 

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


