@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

:root{
    --primary-color:#f1c304;
    --secondary-color:#191819;
    --black-color:#000000;
    --white-color:#fff;
}

/****base css*********/
*{ margin: 0; padding: 0; box-sizing: border-box; }
body {font-size: 24px; line-height: 1.178; color: var(--black-color); -webkit-font-smoothing: antialiased; font-family: "Space Grotesk", sans-serif; font-optical-sizing: auto; font-weight: normal; margin: 0;}
.container { max-width: 1920px;width: 100%;padding: 0 60px;margin: 0 auto }

h1, h2, h3, h4, h5, h6 {font-weight: bold; color: var(--secondary-color); line-height: 1.186;}
h1 { font-size: 62px; margin: 0px 0px 34px; }
h2 { font-size: 48px; margin: 0px 0px 34px; }
h3 { font-size: 42px; margin: 0px 0px 30px; }
h4 { font-size: 36px; margin: 0px 0px 20px; }
h5 { font-size: 32px; margin: 0px 0px 20px; }
h6 { font-size: 28px; margin: 0px 0px 20px; }
p { margin:0; padding:0 0 28px 0; line-height: 1.178; font-size: 24px;}

/* Site Button */
.btn{background: var(--primary-color); color: var(--secondary-color); border: 2px solid var(--primary-color); font-size: 24px; min-height: 61px; min-width: 311px; display: inline-flex; justify-content: center; align-items: center; font-family: "Space Grotesk", sans-serif; font-weight: bold; text-transform: uppercase; padding: 0 30px; border-radius: 40px; transition: 0.45s ease-in-out;}
.btn:hover, .btn:focus, .btn:active, .btn:active:focus {background: var(--secondary-color); color: var(--primary-color); filter: drop-shadow(8px 0px 10px rgb(0 0 0 / 30%));}
.btn.dark{background: var(--black-color); border-color: var(--black-color); color: var(--white-color);}
.btn.dark:hover, .btn.dark:focus, .btn.dark:active, .btn.dark:active:focus{background: transparent; color: var(--black-color);}

/* Common */
a{ color: var(--primary-color); outline:none !important; text-decoration: none; transition:all 0.3s ease-in 0s;-webkit-transition:all 0.3s ease-in 0s; text-decoration: none; vertical-align: middle;}  
a:hover,a:focus { outline: none !important; color: var(--primary-color);; text-decoration: none; }
input , button { transition:all 0.3s ease-in 0s; -webkit-transition:all 0.3s ease-in 0s; outline: none !important; }
ul,ol { padding-left: 15px; margin-bottom: 15px; }
ul:not([class]) li:not([class]) + li, ol:not([class]) li:not([class]) + li{margin-top: 8px;}
img { outline: none !important; max-width: 100%; vertical-align: middle; }
hr { margin: 12px 0; opacity: 0.3; }

/* Form Element */
input:not([type="submit"], [type="button"], [type="checkbox"], [type="radio"]){border:5px solid #0042ab; background: #fff; border-radius: 16px; height: 80px; width: 100%; line-height: 1; padding: 0 10px; color: #0042ab;}	
input[type="radio"]{appearance: none; -moz-appearance: none; -webkit-appearance: none; position: relative; height: 24px; width: 24px; margin: 0; vertical-align: middle;}
input[type="radio"]::after{content:''; position: absolute; height: 100%; width: 100%; border-radius: 50%; top: 0; left: 0; border: 5px solid #0042ab; box-sizing: border-box;}
input[type="radio"]:checked:before { content: ''; position: absolute; height: 42%; width: 42%; border-radius: 50%; top: 50%; left: 50%; background: #0042ab; box-sizing: border-box; transform: translate(-50%, -50%); }
input[type="checkbox"]{appearance: none; -moz-appearance: none; -webkit-appearance: none; position: relative; height: 24px; width: 24px; margin: 0; vertical-align: middle;}
input[type="checkbox"]::after{content:''; position: absolute; height: 100%; width: 100%; border-radius: 0; top: 0; left: 0; border: 5px solid #0042ab; box-sizing: border-box;}
label{font-size: 24px; color: #0042ab; font-weight: normal; margin: 0;}
input[type="checkbox"]:checked:before { content: ''; position: absolute; top: 36%; left: 61%; box-sizing: border-box; transform: translate(-50%, -50%) rotate(-43deg); border-left: 3px solid #0042ab; border-bottom: 3px solid #0042ab; padding: 3px 7px; }

/*********************************  Header *************************************/
header { width: 100%; padding: 21px 0; z-index: 9; position: absolute; }
header .header-row { display: flex; justify-content: space-between; align-items: center; }
header .header-row .header-col{min-height: 1px; flex: 1;}
header .logo{max-width: 373px;}
header .header-right{display: flex; justify-content: flex-end; align-items: center; gap: 25px;}
header .header-right .btn{background: var(--white-color); border-color: var(--white-color); color: var(--secondary-color);}
header .header-right .btn:hover, header .header-right .btn:focus{background: var(--primary-color); border-color: var(--primary-color);}
header .menu-icon{cursor: pointer; position: relative; transition: 0.20s ease-in-out;    z-index: 11;}
header .menu-icon.active img{transition: 0.20s ease-in-out;}
header .menu-icon::after{content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url(../images/close-menu.png) no-repeat; background-size: 100%; transform: scale(0); transition: 0.20s ease-in-out;}
header .menu-icon.active img{transform: scale(0); transition: 0.20s ease-in-out;}
header .menu-icon.active::after{transform: scale(1); transition: 0.20s ease-in-out;}
header .menu { position: absolute; top: 100%; background: var(--secondary-color); right: 0; padding: 20px; min-width: 300px; display: none;}
header .menu ul{padding: 0; margin: 0; list-style: none;}
header .menu ul li + li{margin-top: 10px;}
header .menu ul li a{font-size: 24px; line-height: 1; font-weight: 700; color: var(--white-color);}
header .menu ul li a:hover{color: var(--primary-color);}
header .menu ul li.parent .mod-menu__sub { padding: 12px 10px 8px; display: none;}
header .menu ul li.parent > a{display: flex; justify-content: space-between; gap: 10px; align-items: center;}
header .menu ul li.parent > a span{ color: var(--white-color); font-size: 16px; display: inline-block; margin-left: 6px; vertical-align: middle; transition: 0.5s; }
header .menu ul li.parent > a.active span{transform: rotate(-90deg);}
header .menu ul li.parent > a:hover span, header .menu ul li.parent > a.active span{color: var(--primary-color);}
header .menu ul li.parent .mod-menu__sub a { font-weight: 400; font-size: 18px; }
header .menu ul li.parent .mod-menu__sub li + li{margin-top: 7px;}

.header-main{
    transition: all 0.5s ease 0s;
}

.header-main.sticky {
    position: fixed;
	background-color:black;
    box-shadow: rgba(0,0,0,0.25) 0px 0px 10px 5px;
    z-index: 10;
	transition: all 0.5s ease 0s;
}



/*********************************  Content Box  *************************************/
.content-box {width: 100%; padding: 50px 0 55px; display: inline-block; vertical-align: middle; overflow:hidden}
.content-box p:last-child{padding-bottom: 0;}
.left-side { float: left; width: 23%; padding-right: 15px; padding-top: 12px;}
.right-side { float: right; width: 23%; padding-top: 12px;}
.content-side.left { float: right; width: 75%; }
.content-side.both { float: left; width: 50%; margin-left: 1%; }
.content-side.right { float: left; width: 75%; }
.main-body-top { float: left; width: 100%; margin-bottom: 20px; }
.main-body-bottom { float: left; width: 100%; margin-top: 20px; }
.inner-page .content-box .page-header { border: none; padding: 0; margin: 0; }
.inner-page .content-box h1.page-header, .inner-page .content-box .page-header h1{ margin: 0 0px 20px; }
dl.article-info{margin: 0 0 26px;}

/* Custom Globle */
.owl-theme .owl-dots, .owl-theme .owl-nav.disabled + .owl-dots{margin: 46px 0 0;}
.owl-theme .owl-dots .owl-dot span{height: 22px; width: 22px; background: #7d7d7d;}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{background: var(--primary-color);}

/* Home Banner */
.home-banner { position: relative; }
.home-banner .img img { width: 100%; }
.home-banner .container{position: absolute; top:50%; transform: translateY(-50%); left: 0; right: 0; margin: auto;}
.home-banner .container .text-block{margin-bottom: 35px;}
.home-banner .container .text-block h2 { color: #fff; max-width: 970px; font-weight: 700; font-size: 72px; margin: 0 0 34px;}

/* About */
.about{ position: relative; background:url(../images/about-bg.png) no-repeat left top; padding: 252px 0; background-size: 100% 100%; display: flex; align-items: center; margin: -5% 0 0; overflow: hidden;}
.about:after{content: ''; position: absolute; top: 0; right: 0; transform: translateX(50%); opacity: 0; visibility: hidden; height: 100%; width: 100%; max-width: 1280px; background: url(/images/van-bg.png) no-repeat top 69% right -90px; background-size: 100%; pointer-events: none; transition: 2s;}
.about.aos-animate::after{transform: translateX(0); opacity: 1; visibility: visible;}
.about .text-block { max-width: 777px; margin: 3% 0 0;}
.about .text-block p{color: var(--white-color); max-width: 620px;}
.about .btn{margin-top: 10px;}

/* Service */
.services{background: url(../images/services-bg.png) no-repeat center; background-size: cover;}
.services .text-block h2{color: var(--white-color); text-align: center; margin:0 0 36px}
.services .text-block p{color: var(--white-color); text-align: center;}
.services .services-icon-grid{display: grid; grid-template-columns: repeat(3, 1fr); gap: 41px; margin: 0 auto; max-width: 1100px; padding-bottom: 60px!important;}
.services .services-box{display: flex; text-align: center; position: relative; z-index: 111;border-radius: 8px;}
.services .services-box:hover{background: var(--primary-color); transform: scale(1.03);}
.services .services-box .img{position: relative; z-index: 11;width:100%;}
.services .services-box .img img{width:100%;}
.services .services-box .title { font-size: 32px; color: var(--white-color); position: absolute; bottom: 25px; left: 0; width: 100%; font-weight: 700; padding: 0 20px; }
.services .services-box:hover .title { color: var(--secondary-color); position: absolute; bottom: 25px; font-weight: 700; padding: 0 20px; }
.services .btn-sec{text-align: center; margin: 81px 0 0;}

/* Our Clients */
.our-clients{padding: 90px 0 110px;}
.our-clients h2{margin: 0 0 37px; text-align: center;}
.our-clients ul{display: flex; flex-wrap: wrap; gap:60px 130px; list-style: none; padding: 0; margin: 0; justify-content: center; align-items: center; text-align: center;}
.our-clients ul li a img{transition: 0.5s;}
.our-clients ul li:hover a img{transform: scale(1.04);}
.our-clients h2 {color:black!important}

/* Testimonial */
.testimonial{padding: 110px 0 130px; background: url(../images/testimonial.jpg) no-repeat center; background-size: cover;}
.testimonial h2{text-align: center; color: var(--white-color); margin: 0 0 72px;}
.testimonials-box{min-height: 570px; width: auto; box-sizing: border-box; border: 7px solid #fff; padding: 53px 35px 27px; text-align: center; background: rgb(255 255 255 / 62%); border-radius: 15px; overflow: hidden;}
.testimonials-box p{color: var(--black-color); padding: 0 0 43px; font-size: 18px;}
.testimonials-box .avtar{height: 142px; width: 142px; background: var(--secondary-color); border-radius: 50%; padding: 11px; margin: auto; display: flex; align-items: center; justify-content: center; position: relative;}
.testimonials-box .avtar:after{content: ''; height: 7px; width: 100vw; position: absolute; left: 50%; transform: translateX(-50%); background: #fff; z-index: -1;}
.testimonials-box .avtar img{max-height: 100%; width: auto;}
.testimonials-box .avtar-name{font-size: 24px; margin: 13px 0 0; font-weight: 700;}
.testimonials-box .avtar-name .designation{display: block;}

/* Accreditations 
.accreditations{ padding: 125px 0 152px; }
.accreditations h2 { margin: 0 0 76px; }
.accreditations h2 {color:black!important} */


/* Footer */
footer{background: url(../images/footer-bg-shape.png) var(--secondary-color) no-repeat bottom right; clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%, 0% 50%); background-size: 717px; padding: 167px 0 25px;}
footer .container{max-width: 1220px;}
footer .footer-top { display: flex; justify-content: space-between; align-items: center; }
footer .footer-col{min-height: 1px; flex: auto;}
footer .footer-logo{text-align: center; margin: 0 0 16px;}
footer .footer-logo img{max-width: 373px;}
footer .footer-menu{position: relative; padding: 53px 0 0;}
footer .footer-menu::before{content: ''; position: absolute; left: 0; top: 0; height: 35px; width: 100%; background: url(../images/footer-devider.png) no-repeat; background-position: center; background-size: contain;}
footer .footer-menu ul { padding: 0; margin: 0; list-style: none; display: flex; align-items: center; justify-content: center; gap: 0 95px; }
footer .footer-menu ul li{margin: 0;}
footer .footer-menu ul li a{font-weight: 500; color: var(--primary-color);}
footer .footer-menu ul li a:hover{text-decoration:underline; text-underline-offset: 8px;}
footer .footer-contact-us{text-align: center; margin: 88px 0 0;}
footer .footer-contact-us .btn{color: var(--black-color);}
footer .footer-contact-us .btn:hover{border-color: var(--primary-color); color: var(--primary-color);}
footer .terms-links{margin: 204px 0 32px; text-align: center;}
footer .terms-links a{color: var(--white-color); font-size: 14px;}
footer .terms-links a:hover{color: var(--primary-color);}
footer .terms-text p{padding: 0; color: var(--white-color); text-align: center; font-size: 14px;}
footer .terms-text p a:not(:hover){color: var(--white-color);}
footer .footer-social { display: flex; align-items: center; justify-content: center; gap: 0 36px; margin: 42px 0 0; }
.footer-copyright { color: var(--white-color); font-size: 9px; margin: 20px 0 0; display: flex; align-items: center; justify-content: center; gap: 15px; font-family: "Montserrat", sans-serif;}
.footer-copyright img { width: 60%;}

/* Inner Page */
.inner-page header{position: relative; background: var(--secondary-color);}

/*** additional ****/

/* projects */

.projects-flex {
	display: flex;
	background-color: #000;
	min-height: 400px;
}

.logo-list img {
 width: 60%;	
}
.menu-button{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

#menu-bar {
    position: absolute;
    height: 100vh;
    inset: 0px;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    transition: all 0.5s ease 0s;
    z-index: 10;
    transform: scale(0);
    padding: 0px 20px;
}

#menu-bar.active {
    transform: scale(1);
}

#menu-bar #maximenuck132:before {
    position: absolute;
    content: "";
    background-image: url(/images/logo.png);
    width: 300px;
    height: 48px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

#maximenuck132{
	position:relative;
}

.white {
	color: #fff;
}


.contact-boxes{
    display: flex;
	color: white;
	flex-wrap: wrap;
}

.contact-box-flex {
    flex-basis: calc(33.333% - 40px) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 20px;
    transition: ease-in-out 0.3s;
    flex-grow: 0;
    -webkit-box-shadow: -3px 0px 16px 2px rgba(0, 0, 0, 0.31);
    box-shadow: -3px 0px 16px 2px #f1c304;
    border-radius: 50px;
    text-align: center;
    background-color: black;
    background-image: url(/images/bolt-bg.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    min-width: 350px;
    min-height: 300px;
}

.contact-box-title a, h2{
	font-size:40px;
	font-weight:bold;
	    line-height: 1.2em;
	color:white!important;
}

.contact-box-flex:hover {
    transform: scale(0.98);
}

.contact-box-icon img{
    width: 100px;
    height: auto;
	    margin: 10px 0;
}

.contact-box-title{
    color: white!important;
}

.contact-box-text{
    text-align: center;
}
	.contact-box-flex {
    flex: 0 0 49%;
}
	.contact-box-title a{
	font-size:25px;
		line-height: 1.8em;
}

/**shake**/

.shake-image:hover {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

/**/

/***contact-page****/

.form-flex {
	display: flex;
	justify-content: center;
	margin: 0px -60px;
    background-image: url(/images/contact-bg.jpg);
    background-size: cover;
    background-position: center;
	padding: 60px;
}

/****/

/* services 2026 */

.section-title {
	display: flex;
	background: #f2c206;
	margin-bottom: 60px;
	align-items : center;
	margin-left: -60px;
	margin-right: -60px;
	padding: 10px 60px;
}

.section-title h2 {
		color: #000!important;
}

/***News page css***/

.menu-button{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.com-content-category-blog__items {
	    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.blog-page .blog-item{
    box-shadow: 5px 5px 15px rgb(0 0 0 / 40%);
    -webkit-box-shadow: 5px 5px 15px rgb(0 0 0 / 40%);
    -moz-box-shadow: 5px 5px 15px rgba(0,0,0,0.4);
	width: 32.333%;
    margin: 40px 0.5%;
}

.blog-item a:hover{
	color: #F1C304;
}

.blog-item p{
	color:white;
}

.blog-page .item-content{
    transition: 0.3s;
    background-color: black;
    color: white!important;
	padding:20px;
	line-height: 0.5;
}

.blog-item .item-image {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  overflow: hidden;
}

.btn-secondary {
      background-color: #F1C304 !important;
    color: white !important;
  border-radius: 30px !important;
  margin-top: 10px;
}

.blog-item {
        background-color: black;
    flex: calc(33.333% - 40px);
    min-width: 350px;
    flex-grow: 0;
}

.blog-item .item-content{
    padding: 20px;
}

.btn-secondary:hover {
  background-color: #F1C304;
  color: white ;
  border-radius: 30px;
  margin-top: 10px;
}

/****/

/**about**/

.top-content {
    display: flex;
    align-items: center;
    padding: 60px;
    background-image: url(../images/about-bg.jpg);
    background-position: center;
	background-size: cover;
    background-repeat: no-repeat;
	margin: 0px -60px;
	transition: 2s;
}

.top-left {
    flex: 1;
}

.top-right{
flex: 1;
}

.top-right img {
    width: 100%;
    height: auto;
}
.icon-flex {
    display: flex;
    justify-content: center;
	background-image: url(../images/services-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
    padding: 60px;
	margin: 0px -60px;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 56%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
	flex-wrap:wrap;
}

.icon-card {
    margin: 20px;
    min-width: 350px;
    height: auto;
    text-align: center;
}

.icon-card h3 {
    color: #f1c303;
    text-transform: uppercase;
}

/*fig text*/	

.banner-heading{
	margin: -50px -60px 0 -60px;
    position: relative;
}


.banner-heading figcaption{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	width: 100%;
    text-align: center;
    padding: 0 20px;
	font-family: "Space Grotesk", sans-serif;
	font-weight: var(--cassiopeia-font-weight-headings, 700);
}

.banner-heading img{
    object-fit: cover;
    max-height: 600px;
    width: 100%;
    object-position: bottom;
	display:block;
}

.banner-heading h1{
	padding:0;
	color: #fff;
}

/*service page*/

.inner-service-flex {
    background-image: url(../images/services-bg-inner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 60px;
	margin: 0px -60px;
}

.service-box-flex {
    display: flex;
	justify-content: center;
}

.service-box {
    margin: 30px;
    background-image: url(../images/bg-service-card.png);
    background-size: cover;
    background-position: center;
    text-align: center;
    border: solid 5px #e6d47d;
    border-radius: 10px;
    color: #fff;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    transform-origin: bottom;
    padding: 30px 20px;
	width: 100%;
	height: auto;
	align-content: center!important;
}

.service-box:hover {
    animation-name: bounce;
    animation-timing-function: ease;
}
@keyframes bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-50px); }
  100% { transform: translateY(0); }
}

.service-box h4 {
    color: #f2c205;
}

.service-box-txt {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1200px;
	text-align: center;
	color: #fff;
	margin: 0 auto;
	padding-bottom: 30px;
}

.service-box-txt h2 {
    color: #f2c205;
}



/*blogs*/

/*** social values ***/

.social-values-flex {
    text-align: center;
    padding: 100px 90px;
}

.social-values {
    display: flex;
    justify-content: center;
	flex-wrap: wrap;
  
}

.layout-blog .com-content-article__body p{
	color:black;
}

.values-box {
    /*display: flex;*/
	flex-basis: calc(50% - 40px);
    flex-direction: column;
	justify-content: center;
    align-items: center;
    width: 320px;
    height: auto;
    padding: 20px;
    text-align: center;
    background: linear-gradient(90deg, rgba(25,24,25,1) 0%, rgba(241,195,4,1) 100%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 20px;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    transform-origin: bottom;
    box-shadow: 5px 5px 20px #bbb;
	
}

.values-box img {
    max-width: 200px;
    height: auto;
}

.values-box h4,p {
    color: #fff;
}



.values-box:hover {
    animation-name: bounce;
    animation-timing-function: ease;
}
@keyframes bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/*** speak ***/

.speak-flex {
	background-color: #191819;
	margin: 0px -60px;
	padding-left: 60px;
	padding-right: 60px;
	padding-top: 60px;
	padding-bottom: 60px;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 68%);
}

.speak-to-us {
	text-align: center;
}

.speak-to-us h5 {
	color: #fff;
}

/*** team ***/

.man-flex {
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: black;
	padding: 60px 60px;
	margin: 0px -60px;
}

.team-flex {
    display: flex;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}

.team-card {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    margin: 15px;
    border-radius: 25px;
    -webkit-box-shadow: 0 10px 6px -6px #777;
    -moz-box-shadow: 0 10px 6px -6px #777;
    box-shadow: 0 10px 6px -6px #777;
}

.profile-pic {
    height: 220px;
    width: 220px;
    border-radius: 50%;
}

.team-name {
    color: #000;
	padding-top: 10px;
}

.job-title {
    color: #000;
}

.team-hr {
    border: 1px solid #f1c304;
    width: 60px;
}

/*** gallery container ***/

.gall-mod {
	padding: 60px 0px;
}

/*** Areas ***/

.areas-flex{
    background-image: linear-gradient(rgba( 241,195,4, .9), rgba(25,24,25, .9)), url(/images/bg-hvs.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
	margin: 0px -60px;
}

.areas-worked {
    display: flex;
    align-items: center;
    padding: 100px 90px;

}

.areas-left{
    flex: 1;
}

.areas-left h2 {
	color: #000!important;
}

.areas-left ul {
	padding-bottom: 20px;
}

.areas-right{
    flex: 1;
}

.areas-right img{
    width: 100%;
    height: auto;
}

@media only screen and (max-width: 1920px){


}

@media only screen and (max-width: 1300px){
.contact-box-flex{
min-width:300px;
}  
}
@media only screen and (max-width: 1170px) {
  .contact-box-flex{
min-width:250px;
}  
	.service-box {
    margin: 20px;
    width: 250px;
}
	.service-box-flex {
    flex-wrap: wrap;
}
    .profile-pic {
        height: 200px;
        width: 200px;
    }
  }

  @media only screen and (max-width: 1100px) {
    .contact-boxes {
flex-direction:column;
}

	  .blog-page .blog-item {
    width: 49%;
}
	  .social-values-flex {
    padding: 40px 20px;
}
	      #menu-bar #maximenuck132:before {
        width: 200px;
        height: 26px;
    }
    .profile-pic {
        height: 180px;
        width: 180px;
    }
	  .banner-heading {
    margin: -49px -20px 0 -20px;
}
	.inner-service-flex {
    background-image: url(../images/services-bg-inner.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 20px;
	margin: 0px -20px;
}
	  .container {
    padding: 0 20px;
}
	  .banner-heading img {
    max-height: 400px;
}
	  .top-content {
    padding: 40px 20px;
    margin: 0px -20px;
}
	  .icon-flex {
    padding: 40px 20px;
    margin: 0px -20px;
		  -webkit-clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

  }

  @media only screen and (max-width: 1024px) {
    .profile-pic {
        height: 175px;
        width: 175px;
    }
  }

  @media only screen and (max-width: 1000px) {
    .profile-pic {
        height: 168px;
        width: 168px;
    }
    .team-card {
        padding: 15px;
        margin: 10px;
    }
  }

  @media only screen and (max-width: 990px) {
    .profile-pic {
        height: 160px;
        width: 160px;
    }
	  div#maximenuck132.maximenuckh ul.maximenuck ul.maximenuck2 li.maximenuck {
    text-align: center!important;
}
  }

  @media only screen and (max-width: 840px) {
    .profile-pic {
        height: 150px;
        width: 150px;
    }
  }

  @media only screen and (max-width: 768px) {
	      .blog-page .blog-item {
        width: 100%;
    }
    .team-flex {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .profile-pic {
        height: 300px;
        width: 300px;
    }
	  	.contact-boxes{
		flex-wrap: wrap;
			flex-direction:column;
					max-width:350px;
			margin-left:auto;
		  		  margin-right:auto;

	}
	.contact-box {
    flex: 100%;
}
	  .contact-box-flex {
	  min-width: 100%;
    min-height: 200px;
			max-width:350px;
		  margin-left:auto;
		  		  margin-right:auto;

	  }
	.contact-box + .contact-box {
    margin-left: 0;
		margin-top: 20px;
}
	.service-box-flex {
    flex: 100%;
}
	  .areas-worked {
    flex-direction: column-reverse;
    padding: 50px 90px;

}
	  .areas-right img{
    padding-bottom: 30px;
}
	  .areas-left ul {
	padding-bottom: 10px;
}
	  .values-box {
    flex-basis: 100%;
}
  }

  @media only screen and (max-width: 480px) {
    .profile-pic {
        height: 200px;
        width: 200px;
    }
  }



