.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;
    background:whitesmoke;
}

h1,h2,h3,h4{
  color:var(--theme-color-light);
}

.sub-header-gold{
  color:var(--white-color);
}

a{
    color:#333;
    text-decoration:none;
}

.text-orange{
  color:var(--gold-color)
}

.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 */

#menu nav{
    padding-top:80px;
}

#menu nav ul{
    list-style-type:none;
    padding-left:42px;
}

#menu nav ul li{
    height:60px;
    overflow:hidden;
}

#menu nav ul li a{
    display:flex;
    color:#fff;
    font-size:60px;
    height:100%;
    padding-left:8px;
    line-height:60px;
    text-transform:uppercase;
    transition:0.3s ease-in-out;
}

#menu nav ul li a::before{
    content:'';
    border-top:12px solid #333;
    border-bottom:12px solid #333;
    border-left:20px solid transparent;
    position:absolute;
    left:0;
    width:10px;
    height:60px;
    transition:0.5s ease-in-out;
}

#menu nav ul li a:hover::before{
    border-left:10px solid #ff5500;
}

#menu nav ul li a:hover{
    color:var(--link-hover);
}

#menu > .social-links > span > a{
  color:#fff;
}

#menu > .social-links > span > a:hover{
  color:#f50;
}

/* search */
.search-form{
  position:relative;
  height:60px;
  margin:30px;
}

.search-form .form-control {
	position: absolute;
	height: 62px;
	left: 0;
	top: 0;
	padding-left: 62px;
	padding-right: 100px;
	font-size: 16px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	border-color: #eee;
}

.search-form i{
  position:absolute;
	color: #666;
	font-size: 20px;
	top: 21px;
	left: 28px;
  opacity:0.4;
  transition:all 0.3s ease-in-out; 
}

.search-form button {
	position: absolute;
  padding-left:12px;
  padding-right:12px;
	color: #fff;
	font-size: 0.9rem;
	top: 16px;
	right: 16px;
	border-radius: 16px;
  opacity:0.4;
  transition:all 0.3s ease-in-out;
}

.search-active{
  opacity:1 !important;
}

/* 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{
  width:100%;
  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:cover;
  transform:scale(1.2);
  transition:all 1s 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;
}

/* faq */
.accordion-item{
    border-radius:12px;
    overflow:hidden;
}

.accordion-button{
    font-weight:600;
    padding:18px 22px;
    color:#fff;
    background:#00220a;
    /* background:#fff; */
    box-shadow:none;
}

.accordion-button:not(.collapsed){
    background:#00220a;
    color:#fff;
}

.accordion-button:not(.collapsed) i{
    color:#fff !important;
}

.accordion-button:focus{
    box-shadow:none;
    border-color:transparent;
}

.accordion-body{
    padding:20px 22px;
    line-height:1.8;
    color:#666;
}

.accordion-button::after{
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    content:"\f078"; /* chevron-down */
    background-image:none;
    transform:none;
}

.accordion-button:not(.collapsed)::after{
    content:"\f077"; /* chevron-up */
    transform:none;
}

/* Hide Bootstrap's default arrow */
.accordion-button::after{
    display:none;
}

/* Custom icon */
.faq-icon{
    transition:0.3s ease;
    margin-left:auto;
}

/* Rotate when expanded */
.accordion-button:not(.collapsed) .faq-icon{
    transform:rotate(180deg);
    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{
  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;
}


/* why choose us */
.benefits-img {
	width: 20%;
}

figure {
	margin: 0 0 1rem;
}

figure i{
  color:var(--gold-color);
}

.benefits-img figure {
	width: 50px;
	height: 50px;
  color:#fff;
  font-size:1.7rem;
	background-color: var(--theme-color);
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* .benefits-img figure img {
	border: 0;
	width: auto;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
} */

.benefits-text {
	width: 80%;
}

.benefits-text .text-red {
	color: var(--gold-color);
}

.benefits-text p {
	margin-top: 0;
	margin-bottom: 1rem;
}

/* video section */
.tvc_adview_wrapper {
	width: 100%;
  float:left;
  position:relative;
}

/* .tvc_adview {
  position:relative;
	width: 100%;
	height: 246px;
	margin: auto;
	overflow: hidden;
	background-color: #000;
	border: 1px solid #ddd;
} */

.tvc_adview {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    border: 1px solid #ddd;
}

/* clients */
.client-slide{
  width:260px;
  height:140px;
  margin-bottom:10px;
  background:#eee;
}

.client-slide img{
  width:100%;
  height:100%;
  justify-content: center;
  align-items: center;
  object-fit:cover;
}

.booking_success_msg{
  display:none;
}

/* subscribe */
.subscribe {
	position: relative;
	padding: 120px 0;
	background-repeat:no-repeat;
  background-position: center;
	background-size: cover;
	/* background-position: 20% 70px; */
  background-attachment: fixed;
  text-align:center;
	z-index: 1;
}

.subscribe::before{
  content:'';
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin:auto;
  background-color:rgba(0,0,0,0.4);
  /* z-index:1; */
}

.subscribe .subscribe-title {
	margin-bottom: 45px;
  color:#fff;
  position:relative;
  z-index:2;
}

.custom-input-group {
	position: relative;
  height:82px;
}

.custom-input-group .form-control {
	position: absolute;
	height: 62px;
	left: 0;
	top: 0;
	padding-left: 63px;
	padding-right: 25px;
	font-size: 16px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	border-color: #eee;
}

.custom-input-group i {
	position: absolute;
	color: #aaa;
	font-size: 16px;
	top: 23px;
	left: 38px;
}

.subscribe-btn{
  position:relative;
  z-index:2;
}

/* career */
.career-benefits{
    /* background:#f8f9fa; */
}

.section-subtitle{
    color:#c89b3c;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title{
    font-size:42px;
    font-weight:700;
    margin:10px 0 15px;
}

.section-text{
    color:#6c757d;
    font-size:17px;
}

.career-card{
    background:#fff;
    padding:40px 25px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.career-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.career-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    transition:.35s;
}

.career-card:hover .career-icon{
    background:#c89b3c;
    transform:rotate(10deg) scale(1.08);
}

.career-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.career-card p{
    color:#6c757d;
    margin:0;
    line-height:1.8;
}

/* homepage footer */
.footer-social-links{
  
}

.footer-social-links li {
	padding-right:15px;
	text-align: center;
}

.footer-social-links a {
	color: #fff;
	display: block;
	font-size: 28px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	border-radius: 50%;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	border-radius: 50%;
}

.footer-social-links a i{
  color:#fff;
}

.foot-icon-bg-1 {
	background: #8938ae;
}

.foot-icon-bg-2 {
	background: #0080ff;
}

.foot-icon-bg-3 {
	background: #e20000;
}



@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-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;
    --theme-color: #011C17;
    --theme-color-light: #0B3029;
    --gold-color: #D9A441;
    --white-color: #FFFFFF;
}
