/* Global css */
*{padding:0; margin:0; box-sizing:border-box; font-family: 'Poppins', sans-serif;scroll-behavior: smooth;}
body{padding: 0;margin: 0;background: #fff;font-family: 'Poppins', sans-serif;}
input, select, textarea , button{transition: all 0.5s ease;-webkit-transition: all 0.5s ease;}
a {text-decoration:none;transition: all 0.5s ease;-webkit-transition: all 0.5s ease;outline:none;outline: 0;}
a::after , a::before{text-decoration:none;transition: all 0.5s ease;-webkit-transition: all 0.5s ease;}
a:hover , a:focus {text-decoration:none;}
input {border: 0;outline: 0;}
ul{margin:0;padding:0;list-style:none;}
h1, h2, h3, h4, h5, h6 , p {margin: 0;}
a:hover{color: #ff4f04!important;}
img{max-width:100%; height: auto;}
.container{width: 100%;display: block;margin: 0 auto;max-width: 1380px!important;}
:root {
	--link-size: 64px; 
	--trans-property: all 0.3s ease;
}
/* /GLobal css */
.menu-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header {
    padding: 20px 0;
    z-index: 99999;
    position: relative;
    background: #fff;
}
.logo img {
    width: 200px;
}
.logo a{
    font-size: 40px!important;
    font-weight: normal;
}
.menu-item a{
    font-size: 20px;
    /* font-weight: 600; */
    color: #000;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Poppins', sans-serif;
/* font-family: 'Pacifico', cursive; */
    /* text-transform: uppercase; */
}
header.fixed{
    position: sticky;
    z-index: 100;
    background: #fff;
    padding: 15px 0;
    top: 0;
    width: 100%;
    -webkit-animation: 1s forwards smoothScroll;
    animation: 1s forwards smoothScroll;
    box-shadow: 1px 1px 10px #eee;
}
.main-image-section img{
    width: 100%;
}
.work-projects img{
    height: 500px;
    object-fit: cover;
    width: 100%;
}
footer{
    background: #111111;
    color: #fff;
    padding: 10px 0;
    position: relative;
    z-index: 9999999;
    width: 100%;
    bottom: 0;
}
/* .social-icons {
    width: 100%;
	display: flex;
	align-items: center;
	justify-content: end;
}
.social-icon {
	display: flex;
	position: relative;
	overflow: hidden; 
	width: var(--link-size);
	height: var(--link-size);
	margin: 8px;
	background-color: white;
	border-radius: 50%;
	box-shadow: 0px 1px 3px rgba(0,0,0,0.12);
	text-decoration: none;
	transition: var(--trans-property);
}
.social-icon i {
	margin: auto;
	font-size: 24px;
	color: #67798e;
	z-index: 1; 
	transition: var(--trans-property);
} */
.main-banner{
    position: relative;
    z-index: 4;
    height: 600px;
    overflow-x: hidden;
    overflow-y: auto;
}
/* .social-icon:after {
	content: "";
	width: var(--link-size);
	height: var(--link-size);
	position: absolute;
	transform: translate(0, var(--link-size));
	border-radius: 50%;
	transition: var(--trans-property);
}
.social-icon.twitter:after {
	background-color: #1da1f2;
}
.social-icon.github:after {
	background-color: #24292e;
}
.social-icon.dribbble:after {
	background-color: #ea4c89;
}
.social-icon.instagram:after {
	background-color: #5851db;
}
.social-icon.facebook:after {
	background-color: #1769ff;
}
** Animations **
.social-icon:hover {
	transform: translateY(-4px);
	box-shadow: 0px 4px 12px rgba(0,0,0,0.16);
}
.social-icon:hover i {
	color: #fff;
}
.social-icon:hover:after {
	transform: translate(0) scale(1.2);
} */
footer ul {
    display: flex;
    justify-content: end;
    gap: 30px;
    font-size: 16px;
}
.Slash-sc-vid{
    width: 60%;
    height: 300px;
    margin: auto;
}

footer ul a{
    color: #fff;
}
.pos-fixed-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}
.botm-ftr-text{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    font-size: 18px;
}
section.splash-screen {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffff;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
    transform: translateY(0);
    transition: transform 0.5s ease;
}
h1{
    font-size: 50px;
    font-weight: 100;
}
.cursor-click-open img {
    width: 50px;
    display: block;
    margin: 15px auto;
}
.banner-img-ht {
    height: 500px;
    margin: 30px auto;
}
.img-container img {
    width: 100%;
}
h2{
    font-size: 35px;
    text-align: center;
    padding: 30px;
}

.bg-main{
    overflow: hidden;
}
.bg-mains{
    display: flex;
}
.bg-main img{
    width: 300px;
}
/*  */
.img-container img {
    height: 545px;
    object-fit: cover;
    display: block;
}
.move-up{
    animation: scrollY 12s linear infinite;
    /* overflow: hidden; */
}
.move-down{
    animation: scrollYRev 12s linear infinite;
    overflow: hidden;
}

.main-banner::-webkit-scrollbar {
    width: 0;
  }
  

.main-banner::-webkit-scrollbar-track {
    background-color: #f1f1f1;
  }
  

.main-banner::-webkit-scrollbar-thumb {
    background-color: #888;
  }
  

.main-banner::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }

@keyframes scrollY {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(calc(-1190px))
    }
}
@keyframes scrollYRev {
    0% {
        transform: translateY(-1190px)
    }

    100% {
        transform: translateY(calc(0))
    }
}

/*  */
/* Reset */

  /* Mixin for vertical alignment */
  .max-wrap {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .image-column-grid {
    position: relative;
    background: #e7e2e7;
    min-height: 400px;
    overflow: hidden;
    margin: 0 auto;
  }
  .image-column-grid:after {
    content: "";
    display: table;
    clear: both;
  }
  .image-column-grid .column {
    width: 33.33%;
    display: inline-block;
    position: relative;
    vertical-align: top;
    min-height: 100%;
    padding: 0 1px 0 1px;
    /* Gutters */
  }
  .image-column-grid .column.reverse {
    /* Margin calculated by JS */
  }
  .image-column-grid .column.first-not-in-view .item .text {
    opacity: 0;
  }
  .image-column-grid .item {
    background: #004c68;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    margin-bottom: 2px;
    min-height: 100px;
    vertical-align: top;
  }
  .image-column-grid .item:last-child {
    margin-bottom: 0;
  }
  .image-column-grid .item:after {
    display: block;
    content: "";
    width: 100%;
    padding-top: 71.8279569892%;
  }
  .image-column-grid .item.vertical-aspect:after {
    padding-top: 105.376344086%;
  }
  .image-column-grid .item .text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    color: #ffffff;
    padding: 18px;
    opacity: 1;
    transition: opacity 0.35s ease;
  }
  .image-column-grid .item h3 {
    margin: 0;
    font-size: 32px;
    color: #ffffff;
    font-family: sans-serif;
    text-align: center;
    font-weight: normal;
  }
  .image-column-grid .item:hover, .image-column-grid .item:focus {
    background: #111111;
  }
  
  .demo-spacer {
    display: block;
    height: 100px;
    text-align: center;
    text-transform: uppercase;
    font-family: sans-serif;
    font-size: 12px;
    padding: 32px;
  }
  
  .image-column-grid a {
    cursor: pointer;
  }
.columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    width: 100%;
    max-width: 80em;
    margin: 0 auto;
    position: relative;
}

/* Inside one column, lay out all items in column direction */
.column {
    --column-offset: 10vh;
    display: flex;
    flex-direction: column;
    padding: var(--column-offset) 0;
}
figure{
    margin: 0;
}
.para-txt{
    padding-right: 50px;

}
.para-txt p{
    display: block;
    margin-bottom: 20px;
}
/* Limit site of the images */
.column__item-imgwrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 0.75;
    object-fit: cover;
}

.column__item-caption {
    text-align: center;
}

/* Show warning for older browsers */
.warning,
.info {
    position: fixed;
    right: 1em;
    left: 1em;
    bottom: 1em;
    padding: 1em;
    border: 1px solid black;
    z-index: 9999;
    text-align: center;
    color: black;
    background: rgba(255 255 225 / 0.9);
}
.warning a,
.info a {
    color: blue;
}
.info {
    display: none;
    border: 1px solid #123456;
    background: rgba(205 230 255 / 0.8);
}

/* Scroll-Timeline (Old Syntax) Supported, Yay! */
@supports (animation-timeline: works) {
    /* Hide Warning */
    .warning {
        display: none;
    }

    /* As we're about to shift content out of .columns, we need it to hide its overflow */
    .columns {
        overflow-y: hidden;
    }

    .column-reverse {
        /* Flip item order in reverse columns */
        flex-direction: column-reverse;
    }

    /* Set up Animation */
    @keyframes adjust-position {
        /* Start position: shift entire column up, but not so that it goes out of view */
        from {
            transform: translateY(calc(-100% + 100vh));
        }
        /* End position: shift entire column down, but not so that it goes out of view */
        to {
            transform: translateY(calc(100% - 100vh));
        }
    }

    /* Set up scroll-timeline */
    @scroll-timeline scroll-in-document {
        source: auto; /* Default scroll-timeline: scrolling in the document */
    }

    /* Hook our animation with the timeline to our columns */
    .column-reverse {
        animation: 1s adjust-position linear forwards;
        animation-timeline: scroll-in-document;
    }
}


/*  */
object.embed-pdf-viewer{width:100%!important;height:700px;}
iframe.embed-pdf-viewer{width: 100%!important;}
.content {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    height: 100%
}

.content .content-overlay {
    background: #1B998B;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all .4s ease-in-out 0s;
    -moz-transition: all .4s ease-in-out 0s;
    transition: all .4s ease-in-out 0s
}

.work-projects {
    height: 100%;
    width: 20%;
}
.hove-sec-gallery{
    display: flex;
}
.content:hover .content-overlay {
    opacity: 1
}

.content-image {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.content-detail {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s
}

.content:hover .content-detail {
    top: 50%;
    left: 50%;
    opacity: 1
}

.content-detail h3 {
    color: #fff;
    font-weight: 600;
    font-size: 35px;
    margin-bottom: .5em;
    text-transform: capitalize
}

.content-detail .content-title {
    color: #fff;
    font-weight: 600;
    font-size: 35px;
    margin-bottom: .5em;
    text-transform: capitalize
}

.content-detail p {
    color: #fff;
    font-size: 22px;
    padding: 0 30px;
    color: #ededed
}

.fadeIn-top {
    top: 20%
}

#post-38 h2{display:none;}
.contact-form-wrap {
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    display: flex;
    justify-content: center;
    gap: 70px;
    width: 75%;
    padding: 30px;
    margin: auto;
}
.contact-left-info img {
    width: 70%;
margin:10px 0;
}
.contact-left-info{text-align:center;}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    border: 1px solid #d4d4d4;
    border-radius: 30px;
    padding: 10px;
    margin: 5px;
width: 100%;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    border: 1px solid #d4d4d4;
    border-radius: 30px;
    padding: 10px;
    margin: 10px;
    width: 100%;
    height: 100px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 50%;
    border-radius: 30px;
    padding: 10px;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.hdr-contact {
    font-size: 40px;
    color: #565353;
    font-weight: 500;
}
.hdr-contact span {
    font-style: italic;
    font-weight: 100;
}

/*  */

@media (min-width:1601px) {
	.container {
		max-width: 83% !important
	}
}

@media (min-width: 1025px) and (max-width: 1540px) {

    
}
@media (min-width:1180px) and (max-width:1280px) {

}
@media (min-width:768px) and (max-width:1024px) {

}
@media (max-width:767px) {
    section.splash-screen{height: 100%;}
    .menu-item a{font-size: 20px!important;}
    .c_hamburger {
        cursor: pointer;
        height: 23px;
        margin: 0 auto;
        position: absolute;
        width: 35px;
        right: 15px;
        top: 17px;
      }
      .c_hamburger .c_hamburger__line {
        background-color: #2e2e2e;
        border-radius: 3px;
        height: 4px;
        position: absolute;
        transition-duration: 150ms;
        transition: cubic-bezier(0.8, 0.5, 0.2, 1.4);
        width: 100%;
      }
      .c_hamburger .c_hamburger__line:nth-child(1) {
        left: 0px;
        top: 0px;
        transition-duration: 150ms;
      }
      .c_hamburger .c_hamburger__line:nth-child(2) {
        left: 0px;
        opacity: 1;
        top: 10px;
      }
      .c_hamburger .c_hamburger__line:nth-child(3) {
        bottom: 0px;
        left: 0px;
        transition-duration: 150ms;
      }
      .c_hamburger.open .c_hamburger__line:nth-child(1) {
        top: 21px;
        transform: rotate(45deg);
        transition-duration: 150ms;
      }
      .c_hamburger.open .c_hamburger__line:nth-child(2) {
        opacity: 0;
      }
      .c_hamburger.open .c_hamburger__line:nth-child(3) {
        top: 21px;
        transform: rotate(-45deg);
        transition-duration: 150ms;
      }
      .mob-menu-wrap {
        position: absolute;
        background: #fff;
        width: 86%;
        left: 0;
        height: 100vh;
        margin-left: -100%;
        transition:  1s;
        padding-left: 15px;
    }
    .mob-menu-wrap.menu-open{
        margin-left: 0;
        transition:  1s;
    }
    .main-banner{
        height: 100%;
    }
    .img-container img{
        height: auto;
    }
    .hove-sec-gallery{
        display: block;
    }
    .work-projects{
        height: auto;
        width: 100%;
    }
    .contact-form-wrap{
        display: block;
        width: 100%;
    }
    footer ul{
        display: block;
    }
}