.poppins-thin {
  font-family: "Poppins", sans-serif;font-weight: 100;font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;font-weight: 200;font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;font-weight: 300;font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;font-weight: 400;font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;font-weight: 500;font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;font-weight: 600;font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;font-weight: 700;font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;font-weight: 800;font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;font-weight: 900;font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;font-weight: 100;font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;font-weight: 200;font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;font-weight: 300;font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;font-weight: 400;font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;font-weight: 500;font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;font-weight: 600;font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;font-weight: 700;font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;font-weight: 800;font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;font-weight: 900;font-style: italic;
}

*{
    margin:0;
    padding:0;
    font-family: "Poppins", sans-serif;
    box-sizing:border-box;
}


body{
    margin:0;
    padding:0;
    position:relative;
    box-sizing:border-box;
    overflow-x:hidden;
}

a{
    color:#333;
    text-decoration:none;
}

.text-shadow{
  text-shadow:3px 3px 15px rgba(0,0,0,0.4);
}

/* logo */

#logo{
    position:fixed;
    top:30px;
    left:30px;
    z-index:999;
}

/* menu */

#menu-btn{
    position:fixed;
    top:30px;
    right:30px;
    z-index:999;
}

#menu-btn button{
    padding:4px 10px;
    color:#333;
    background-color:white;
    border:1px solid #333;
    outline:none;
    transition:0.3s ease-in-out;
    z-index:999;
}

#menu-btn button:hover{
    color:#fff;
    background-color:#333;
    border:1px solid #fff;
}

#menu{
    width:500px;
    max-width:100%;
    height:100vh;
    position:fixed;
    top:0;
    right:0;
    background-color:#333;
    transform:translateX(100%);
    transition:0.5s;
    overflow:hidden;
    z-index:999;
}

#menu.active{
    transform:translateX(0);
}

#menu-close{
    position:absolute;
    top:20px;
    right:20px;
    color:#fff;
    cursor:pointer;
    z-index:999;
}

#menu-close button{
    padding:4px 10px;
    color:#fff;
    background-color:transparent;
    border:1px solid #333;
    outline:none;
    transition:0.3s ease-in-out;
}

#menu-close button:hover{
    padding:4px 10px;
    color:var(--link-hover);
    border:1px solid #333;
    outline:none;
}

#menu-close i{
    font-size:2.5rem;
}

/* nav */

nav{
    padding-top:100px;
}

nav ul{
    list-style-type:none;
    padding-left:50px;
}

nav ul li{
    height:70px;
    overflow:hidden;
}

nav ul li a{
    display:flex;
    color:#fff;
    font-size:80px;
    height:100%;
    line-height:70px;
    transition:0.3s ease-in-out;
}

nav ul li a::before{
    content:'';
    border-top:12px solid #333;
    border-bottom:12px solid #333;
    border-left:5px solid transparent;
    position:absolute;
    left:0;
    width:10px;
    height:70px;
    transition:0.5s ease-in-out;
}

nav ul li a:hover::before{
    border-left:5px solid #ff5500;
}

nav ul li a:hover{
    color:var(--link-hover);
}

/* home group content */

.bg-image-absolute{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.bg-image{
  background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;
  transform:scale(1);
  transition:all 0.5s ease-in-out;
}



.home-cat-wrapper{
  
}

.home-cat-box{
  /* float:left;
  width:50%; */
  height:70vh;
  overflow:hidden;
}

.home-cat-1, .home-cat-2, .home-cat-3, .home-cat-4, .home-cat-5, .home-cat-6, .home-cat-7, .home-cat-8{
  transition:all 0.5s ease-in-out;
}

.home-cat-1{ background:rgba(255,119,119,0.4); }
.home-cat-2{ background:rgba(119,255,119,0.4); }
.home-cat-3{ background:rgba(119,119,255,0.4); }
.home-cat-4{ background:rgba(145,145,145,0.4); }
.home-cat-5{ background:rgba(255,119,255,0.4); }
.home-cat-6{ background:rgba(255,255,119,0.4); }
.home-cat-7{ background:rgba(119,255,255,0.4); }
.home-cat-8{ background:rgba(255,255,255,0.4); }

.home-cat-item{
  position:relative;
  width:100%;
  overflow:hidden;
} 

.half-size{
  height:50vh;
}

.full-size{
  height:100vh;
}

.home-cat-item:hover .bg-image{
  transform:scale(1.08);
}


.home-cat-text-content{
  position:absolute;
  left:30px;
  top:50px;
  margin:auto;
  width:100%;
  height:70px;
}

.home-cat-text-content .home-cat-title-top{
  position:absolute;
  top:-24px;
  left:2px;
  height:24px;
  line-height:24px;
  color:#888;
  font-size:0.8rem;
  font-weight:700;
  transition:all 0.1s ease-in-out;
}

.home-cat-text-content .home-cat-title-bottom{
  height:100%;
  position:absolute;
  top:44px;
  left:2px;
  color:#aaa;
  font-size:0.8rem;
  font-weight:700;
  transition:all 0.3s ease-in-out;
  overflow:hidden;
}

.home-cat-text-content .home-cat-title{
  position:absolute;
  top:0;
  height:40px;
  line-height:40px;
  color:#fff;
  font-size:3rem;
  font-weight:bold;
  text-transform:uppercase;
  text-shadow:3px 3px 15px rgba(0,0,0,0.4);
  transition:all 0.3s ease-in-out;
}


/* end of home style */


/* about page */

.about-cat-wrapper{
  
}

.about-cat-box{
  float:left;
  width:50%;
  height:50vh;
  overflow:hidden;
}

.about-cat-1, .about-cat-2, .about-cat-3, .about-cat-4, .about-cat-5, .about-cat-6, .about-cat-7, .about-cat-8{
  transition:all 0.5s ease-in-out;
}

.about-cat-1:hover{ background:#f77; }
.about-cat-2:hover{ background:#7f7; }
.about-cat-3:hover{ background:#77f; }
.about-cat-4:hover{ background:#eee; }
.about-cat-5:hover{ background:#f7f; }
.about-cat-6:hover{ background:#ff7; }
.about-cat-7:hover{ background:#7ff; }
.about-cat-8:hover{ background:#fff; }

.about-cat-item{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
} 

.bg-image-slow{
  background-position:0 center;
  background-repeat:no-repeat;
  background-size:contain;
  transform:scale(1.6);
  transition:all 5s ease-in-out;
}


.about-cat-item:hover .bg-image-slow{
  transform:scale(1);
}


.about-cat-text-content{
  position:absolute;
  left:20px;
  bottom:20px;
  width:100%;
  height:40%;
  text-align:right;
}


.about-cat-text-content .about-cat-title{
  position:absolute;
  top:24px;
  width:90%;
  height:40px;
  line-height:40px;
  font-size:5em;
  font-weight:bold;
  text-transform:uppercase;
  text-shadow:3px 3px 15px rgba(0,0,0,0.4);
  transition:all 0.5s ease-in-out;
}

.about-cat-item:hover .about-cat-title{
  font-size:6em;
  color:#FFF;
}


/* end of about page */

/* projects */

.project-h-75{
  height:75vh;
}

.group-quarter-item{
  position:relative;
  width:100%;
  height:100%;
  float:left;
  text-shadow: 0 5px 10px #0004;
  transition:all 0.3s ease-in-out;
  overflow:hidden;
}

.group-quarter-item .bg-image{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;
  transform:scale(1);
  transition:all 0.5s ease-in-out;
}


.group-quarter-item:hover .bg-image{
  transform:scale(1.08);
}

.full-text-content{
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  overflow:hidden;
  transition:all 0.3s ease-in-out;
}

.group-quarter-item:hover .full-text-content{
  left:0;
  width:100%;
  background-color:rgba(0,0,0,0.4);
}

.title-name{
  position:absolute;
  top:40%;
  left:-50%;
  color:transparent;
  font-size:.5rem;
  font-weight:bold;
  border:0px solid #f00;
  transition:all 0.5s ease-in-out;
}

.group-quarter-item:hover .title-name{
  left:05%;
  color:#FFF;
  font-size:2rem;
}

.title-dev-by{
  position:absolute;
  top:169%;
  left:05%;
  color:#FFF;
  font-size:1.2rem;
  font-weight:bold;
  border:0px solid #f00;
  transition:all 0.5s ease-in-out;
}

.group-quarter-item:hover .title-dev-by{
  top:69%;
}

.title-country{
  position:absolute;
  top:175%;
  left:05%;
  color:#ddd;
  font-size:1rem;
  border:0px solid #f00;
  transition:all 0.7s ease-in-out;
}



.group-quarter-item:hover .title-country{
  top:75%;
}

.title-year{
  position:absolute;
  top:180%;
  left:05%;
  color:#ddd;
  font-size:1rem;
  border:0px solid #f00;
  transition:all 0.9s ease-in-out;
}

.group-quarter-item:hover .title-year{
  top:80%;
}

/* project details */

.page-hero{
  position:relative;
  top:-60px;
  left:0;
  width:100%;
  height:100%;
}

.page-hero.bg-image{

  width:100%;
  height:100%;
  background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;
  transform:scale(1);
  transition:all 0.5s ease-in-out;
}

/* image slider */
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.aesSlides {
  display: none;
}

/* Next & previous buttons */
.aesprev, .aesnext {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.aesnext {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.aesprev:hover, .aesnext:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.aesdot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .aesdot:hover {
  background-color: #717171;
}

/* Fading animation */
.aesfade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
/* end of image slider */

/* blog */

.blog-page .single-blog-post, .blog-details .admin-info, .blog-details .comment-box {
	padding-bottom: 50px;
	margin-bottom: 40px;
	border-bottom: 1px solid #FFF;
}

.single-blog-post .content-box {
	margin-top: 27px;
}



.single-blog-post .img-box {
	height: 270px;
	overflow: hidden;
}

.single-blog-post .img-box {
	position: relative;
}

.blog-details-cover {
	width: 100%;
	height: auto !important;
}

.single-blog-post .img-box img {
	max-width: 100%;
	height: 100%;
	object-fit: cover;
}

.full-width {
	width: 100% !important;
}

.single-blog-post .img-box .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(235,83,16, .75);
	transform: scale(0);
	transition: all .5s ease;
}

.single-blog-post:hover .img-box .overlay {
	transform: scale(1);
}

.single-blog-post .img-box .overlay .box {
	display: table;
	width: 100%;
	height: 100%;
}

.single-blog-post .img-box .overlay .box .content {
	display: table-cell;
	vertical-align: middle;
}

.single-blog-post .img-box .overlay .box .content ul {
	text-align: center;
	margin: 0;
	padding: 0;
}

.single-blog-post .img-box .overlay .box .content ul li {
	display: inline-block;
	list-style: none;
}

.single-blog-post .img-box .overlay .box .content ul li a {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-right: 8px;
	background: #fff;
	color: #f14b05;
	border: 1px solid #fff;
	line-height: 38px;
	font-size: 18px;
	border-radius: 50%;
	transition: all .3s ease;
}

.single-blog-post .content-box {
	margin-top: 27px;
}

.single-blog-post .content-box .date-box {
	padding-right: 25px;
}

.single-blog-post .content-box .date-box, .single-blog-post .content-box .content {
	display: table-cell;
	vertical-align: top;
}

.single-blog-post .content-box .date-box .inner {
	width: 65px;
	text-align: center;
}

.single-blog-post .content-box .date-box .inner .date {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 500;
	color: #fff;
	line-height: 20px;
}

.single-blog-post .content-box .date-box .inner .date {
	background: #eb5310;
	padding: 15px 0;
}

.single-blog-post .content-box .date-box .inner .date b {
	display: block;
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	line-height: 20px;
}

.single-blog-post .content-box .date-box .inner .date {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 500;
	color: #fff;
	line-height: 20px;
}

.single-blog-post .content-box .date-box .inner {
	text-align: center;
}

.single-blog-post .content-box .date-box .inner .post-year {
	padding: 4px 0;
	background-color: #555;
	color: #fff;
}

.single-blog-post .content-box .date-box .inner {
	text-align: center;
}

.small, small {
	font-size: .875em;
}

.single-blog-post .content-box .date-box .inner .post-year {
	color: #fff;
}

.single-blog-post .content-box .date-box .inner {
	text-align: center;
}

.pull-right .side-bar-widget {
	margin-left: 20px;
}

.single-sidebar-widget {
	margin-bottom: 38px;
}

.single-sidebar-widget.search input {
	width: calc(100% - 66px);
	height: 55px;
	border: 1px solid #F1F1F1;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	outline: none;
	background: #fff;
	padding-left: 20px;
}

.single-sidebar-widget.search button {
	width: 66px;
	height: 55px;
	border: 1px solid #f14b05;
	background: #f14b05;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	padding: 0;
	line-height: 53px;
	text-align: center;
	outline: none;
	font-size: 17px;
	color: #fff;
	margin-left: -5px;
}

.single-sidebar-widget.category .title {
	margin-bottom: 11px;
}

.single-sidebar-widget .title {
	font-size: 24px;
	font-weight: 600;
	color: #3F3E3E;
	text-transform: capitalize;
	margin: 0;
}

.single-sidebar-widget.category ul {
	margin: 0;
	padding: 0;
}

.single-sidebar-widget.category ul li {
	list-style: none;
}

.single-sidebar-widget.category ul li a {
	color: #9C9C9C;
	line-height: 45px;
	position: relative;
	padding-left: 26px;
	transition: all .3s ease;
}

.single-sidebar-widget.category ul li a::before {
	content: '';
	width: 10px;
	height: 2px;
	display: block;
	background: #E3E3E3;
	position: absolute;
	top: 10px;
	left: 0;
}

.single-sidebar-widget.popular-post ul {
	margin: 0;
	padding: 0;
	margin-top: 25px;
}

.single-sidebar-widget.popular-post ul li:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

.single-sidebar-widget.popular-post ul li {
	list-style: none;
	padding-bottom: 25px;
	margin-bottom: 25px;
	border-bottom: 1px solid #F5F5F5;
}

.single-sidebar-widget.popular-post ul li .img-box, .single-sidebar-widget.popular-post ul li .content-box {
	display: table-cell;
	vertical-align: middle;
}

.single-sidebar-widget.popular-post ul li .img-box .inner-box {
	width: 70px;
	margin-right: 25px;
}

.single-sidebar-widget.popular-post ul li .img-box img {
	width: 70px;
	vertical-align: middle;
}

.single-sidebar-widget.popular-post ul li .img-box, .single-sidebar-widget.popular-post ul li .content-box {
	display: table-cell;
	vertical-align: middle;
}

.single-sidebar-widget.popular-post ul li .img-box, .single-sidebar-widget.popular-post ul li .content-box p {
	margin-top: 0;
	margin-bottom: 1rem;
}

.single-sidebar-widget.popular-post ul li .content-box span {
	color: #eb5310;
	font-size: 14px;
	display: inline-block;
	line-height: 26px;
}






/* end of blog */

/* contact */

.contact-form-wrapper{
  float:left;
  width:50%;height:100vh;z-index:9999;
}

.contact-form{
  position:relative;
  width:100%;
  height:100vh;
  
}

.contact-form form{
  position:relative;
  width:90%;
  margin:auto;
  top:100px;
  
}

.contact-address-wrapper{
  position:fixed;top:0;right:0;float:left;width:50%;height:100vh;
}

.contact-address{
  padding-top:30px;
  padding-left:0;
}

.social-links{
  position:absolute;
  bottom:0;
  padding:20px;
}

.social-links span{
  margin:20px;
}

#menu > .social-links > span > a{
  color:#fff;
}


#menu > .social-links > span > a:hover{
  color:#f50;
}

@media screen and (max-width:992px){

    .home-cat-box{
      float:none;
      width:100%;
      height:100%;
      overflow:hidden;
    }

    .home-cat-item{
      position:relative;
      width:100%;
      overflow:hidden;
    } 

    .half-size{
      height:100vh;
    }

    .full-size{
      height:100vh;
    }

    .about-cat-box{
      float:none;
      width:100%;
      height:100%;
      overflow:hidden;
    }

    .about-cat-item{
      position:relative;
      width:100%;
      overflow:hidden;
    } 
      


    .title-dev-by{
      font-size:1rem;
    }

    .contact-form-wrapper{
      float:none;
      width:100%;height:100vh;z-index:9999;
    }

    .contact-address-wrapper{
      position:relative;top:0;right:0;float:none;width:100%;height:100vh;
    }

    .contact-address{
      padding-left:30px;
    }

}

iframe{
  position:fixed;
  top:0;
  left:0;
  width:100vw;
  height:100vh;
}


:root {
    --link-hover: #ff5500;
    --primary-color: #007bff;
    --text-color: #333;
}