/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #797979;
    background: #f3ede0;
    font-family: 'Geist', sans-serif;
	overflow-x:hidden;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #414141;
}


.bricolage-grotesque-<uniquifier> {
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


a {
    color: #f3ede0;
    transition: .3s;
	text-transform: uppercase;
}

a:hover,
a:active,
a:focus {
    color: #FFC8CD;
    outline: none;
    text-decoration: none;
}

#photos{background: #171717;}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.bold{font-weight: 700;}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3ede0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #f3ede0;
    border-top: 5px solid #2CAAFF;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ----------------------------- */
/* NAVBAR BASE STYLES */
/* ----------------------------- */

.navbar.navbar-custom {
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 100%;
  background: transparent;
  transition: all 0.4s ease;
  z-index: 999;

  font-family: 'Geist', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
}


/* Fixed header on scroll */
.navbar .nav-sticky {
  position: fixed;
  background: linear-gradient(
    to right,
    rgba(243, 237, 224, 0.0),  /* #f3ede0 with same opacity */
    rgba(23, 23, 23, 0.6)      /* #171717 with same opacity */
  ) !important;
  backdrop-filter: blur(10px); /* glass blur */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* soft glow edge */
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}


/* Brand */
.navbar.navbar-custom .navbar-brand {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
}

.navbar.navbar-custom .navbar-brand img {
  max-height: 100px;
  transition: transform 0.6s ease;
   margin-left: 50px; /* positive value moves it right */
   margin-top: 20px;
}

.navbar.navbar-custom .navbar-brand img:hover {
  transform: scale(1.15);
}

/* ----------------------------- */
/* TOGGLER BUTTON */
/* ----------------------------- */

.navbar-toggler {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  background: transparent !important;
  border: none;
}

/* Remove outline / border flash */
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border: none !important;
  color:#FFF;
}

/* ----------------------------- */
/* HAMBURGER ICON */
/* ----------------------------- */

.custom-toggler .navbar-toggler-icon {
  position: relative;
  width: 30px;
  height: 12px;
  display: inline-block;
  background: none;
  background-image: none; /* IMPORTANT */
  transition: all 0.3s ease;
  margin-top: 35px;
}

/* Two thin lines */
.custom-toggler .navbar-toggler-icon::before,
.custom-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.2px;
  background-color: rgba(255, 200, 205, 0.85);
  transition: all 0.3s ease;
  transform-origin: center;
}

.custom-toggler .navbar-toggler-icon::before {
  top: 0;
}

.custom-toggler .navbar-toggler-icon::after {
  bottom: 0;
}

/* X transformation */
.custom-toggler:not(.collapsed) .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 5px;
}

.custom-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 5px;
}



/* ----------------------------- */
/* FULLSCREEN DROPDOWN (MOBILE) */
/* ----------------------------- */

.navbar-collapse.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #171c1f;
  z-index: 9990;
  display: flex;
  justify-content: center; /* center vertically */
  align-items: center;     /* center horizontally */
  overflow-y: auto;
  transition: background-color 0.3s ease;
}

/* Menu block */
.navbar-collapse.show .navbar-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;  /* text left-aligned */
  text-align: left;
  width: 80%;              /* keeps it centered within screen */
  max-width: 320px;        /* avoid stretching too wide */
  margin: 0 auto;          /* centers horizontally */
}

/* Menu links */
.navbar-collapse.show .nav-link,
.navbar-collapse.show .dropdown-item {
  color: rgba(255, 200, 205, 0.9);
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
  margin: 8px 0;
  transition: color 0.3s ease;
}

.navbar-collapse.show .nav-link:hover {
  color: #fff;
}

/* Smooth open/close transition */
.navbar-collapse.collapsing {
  transition: none;
}


/* ----------------------------- */
/* SUBDROPDOWNS the arrows */ 
/* ----------------------------- */

.navbar .dropdown-menu {
  background-color: #171717 !important; /* dark background */
  border: none !important; /* remove border entirely */
  border-radius: 0 !important; /* no curved corners */
  box-shadow: none !important; /* remove Bootstrap shadow */
}

/* Dropdown items inside */
.navbar .dropdown-item {
  color: rgba(255, 200, 205, 0.9);
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
  letter-spacing:3px;
    font-family: 'Geist', sans-serif;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: #171717; /* highlight on hover */
  border-bottom:1px solid #f3ede0;
  color: #fff;
}


/* ----------------------------- */
/* MISC */
/* ----------------------------- */

.navbar-nav {
  margin-left: auto;
}

.navbar-nav.rounded {
  border-radius: 55px;
  padding: 6px 15px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1265px; /* keeps your original width on desktop */
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px; /* optional */
}


/* ----------------------------- */
/* DESKTOP NAV LINKS */
/* ----------------------------- */



@media (min-width: 992px) {
  .navbar {
    position: absolute;
    width: 100%;
    padding: 30px 60px;
    background: transparent !important;
    z-index: 9;
  }

  /* Sticky navbar with glass effect */
  .navbar.nav-sticky {
    position: fixed;
    padding: 10px 60px;
  background: linear-gradient(
    to right,
    rgba(243, 237, 224, 0.0),  /* #f3ede0 with same opacity */
    rgba(23, 23, 23, 0.6)      /* #171717 with same opacity */
  ) !important;
  backdrop-filter: blur(10px); /* glass blur */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
  }

  .navbar .navbar-brand {
    color: #f3ede0;
  }

  .navbar.nav-sticky .navbar-brand {
    color: #2CAAFF;
  }

  .navbar-light .navbar-nav .nav-link,
  .navbar-light .navbar-nav .nav-link:focus {
    padding: 10px 10px 8px 10px;
    color: #f3ede0;
    font-size: 15px;
    font-weight: 500;
  }

  .navbar-light.nav-sticky .navbar-nav .nav-link,
  .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
    color: #171717; /* text color when scrolled */
  }

  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: #171C1F;
    font-weight: 700;
  }

  .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
  .navbar-light.nav-sticky .navbar-nav .nav-link.active {
    color: #2CAAFF;
    font-weight: 700;
  }
}


@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
    }
    
    .navbar .navbar-brand {
        color: #2CAAFF;
    }
    
    .navbar .navbar-nav {
        margin-top: 15px; border-radius:15px;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}

@media (max-width: 575.98px) {   
.navbar .navbar-brand img {position: relative; left: -38px !important;}

.navbar-nav {background: #171C1F;}
}

/* Clients Slider Styles */
.clients-slider {
  overflow: hidden;
  background: #F0EEE9;
  white-space: nowrap;
  padding: 2rem 0;
}

.slide-track {
  display: flex;
  width: max-content; /* Allows it to grow based on content */
  animation: scroll 40s linear infinite;
}

.slide {
  flex: 0 0 auto;
  padding: 0 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    padding: 0; /*text position*/
    background: #414141 url(../img/hero-bg.jpg) center/cover no-repeat;
    overflow: hidden;
    min-height: calc(100vh - 80px); /* good for desktop */
}


.hero .container-fluid {
    padding: 0;
}

.hero .hero-image {
    position: relative;
    text-align: right;
    padding-right: 75px;
	margin-top:130px;
	margin-bottom:10px;
}

.hero .hero-image img {
    max-width: 100%;
    max-height: 100%;
}

.hero .hero-content {
    position: relative;
    padding-left: 75px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hero .hero-text p {
	margin-top:15px;
    color: #f3ede0;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 35px;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.hero .hero-text h1 {
    color: #f3ede0;
    font-size: 80px;
    margin-bottom: 30px;	
	font-family: Bricolage Grotesque;
	letter-spacing:0px;
	font-weight: 300;
	line-height: 1em;
}

.hero .hero-text h2 {
    display: inline-block;
    margin: 0;
    color: #f3ede0;
    font-size: 14px;
    font-weight: 300;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.hero .hero-text .typed-text {
    display: none;
}

.hero .hero-text .typed-cursor {
    font-size: 30px;
    font-weight: 300;
    color:  #f3ede0;
}

.hero .hero-btn {
    margin-top: 50px;
}

#ct {
    padding-bottom: 6px;
    font-size: 14px;
    font-weight: 400;
    color: #FFC8CD;
    background: transparent;
    letter-spacing: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease-out;
}

#ct .arrow {
    font-size: 16px;
    display: inline-block;
    transform: translateX(0);
    transition: 0.3s ease-out;
}

#ct:hover {
    border-bottom: 1px solid #FFC8CD;
}

#ct:hover .arrow {
    transform: translateX(6px);
}


/*
.hero .hero-btn .btn:first-child {
    margin-right: 10px;
} */

@media (max-width: 991.98px) {
	.hero{padding-bottom: 100px;}
	
		.hero .hero-content {
    padding-left: 75px !important;
	}
	
	
    .hero {
        padding-top: 60px;
    }
    
    .hero .hero-content {
        padding: 0 15px;
    }
    
    .hero .hero-text p {
        font-size: 24px;
		height:10px;
    }
    
    .hero .hero-text h1 {
        font-size: 62px;
    }
    
    .hero .hero-text h2 {
        font-size: 24px;
        height: 22px;
    }
    
    .hero .hero-btn .btn {
        padding: 12px 30px;
        letter-spacing: 1px;
    }
}

/*-TABLET-*/
@media (min-width: 768px) and (max-width: 991px),  (min-width: 834px) and (max-width: 1366px) {
  /* tablet portrait */
.hero {
    position: relative;
    width: 100%;
    margin-bottom: 0px;
    padding: 0; /*text position*/
    background: #414141 url(../img/hero-bg.jpg) center/cover no-repeat;
    overflow: hidden;
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 100px;
    }
    
    .hero,
    .hero .hero-text,
    .hero .hero-btn {
        width: 100%;
        text-align: left;
    }
    
    .hero .hero-text p {
		margin-top:10px;
		margin-bottom: 50px;
        font-size: 14px;
    }
	
    
    .hero .hero-text h1 {
           font-size: 50px;
		letter-spacing:0px;
    margin-bottom: 10px;
    }
    
    .hero .hero-text h2 {
        font-size: 14px;
        height: 22px;
    }
    
    .hero .hero-btn .btn {
        padding: 10px 15px;
        letter-spacing: 1px;
    }
	
	.hero .hero-image {
    position: relative;
    text-align: right;
    padding-right: 75px;
	margin-top:130px;
	margin-bottom:10px;
}

.hero .hero-text .typed-cursor {
    font-size: 14px;
    font-weight: 300;
    color:  #f3ede0;
}

.portfolio p{font-size: 10px; line-height:1.2em;}

.portfolio-text h3 {
    font-size: 10px !important;
}

}

@media (max-width: 575.98px) {
	
  .hero {
    padding-top: 220px;
    min-height: 100vh;
    height: auto;
  }
	
	#ct {
 padding-top:10px; padding-bottom:10px;  font-size: 14px;
}

	.hero .hero-content {
    padding-left: 0px !important;
	        text-align: center !important;
        padding-right: 0 !important;
        margin: 0 auto !important;
        display: block !important;
			        justify-content: center;
        text-align: center;
	}
	
    .hero .hero-text p {
		margin-top:10px;
		margin-bottom: 50px;
        font-size: 14px;
    }
    
    .hero .hero-text h1 {
        font-size: 50px;
		letter-spacing:0px;
    margin-bottom: 10px;
 text-align: center;	

    }
    
    .hero .hero-text h2 {
        font-size: 14px;
    }
    
    .hero .hero-btn .btn {
        padding: 8px 10px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    margin-bottom: 45px;
}


/*--subheader*/
.section-header p {
    display: inline-block;
    margin-bottom: -20px !important;
    position: relative;
    text-transform: uppercase;
	     margin-top: 20px;
    font-family: 'Geist';
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(0, 70, 115, 0.78);
    max-width: 36ch;
}

/*--
.section-header p::before {
    position: absolute;
    content: "";
    height: 2px;
    top: 11px;
    right: 0;
    left: -30px;
    background: #FBD374;
    z-index: -1;
}   /*colour lines*/

/*--
.section-header p::after {
    position: absolute;
    content: "";
    width: 32px;
    height: 2px;
    top: 11px;
    right: -46px;
    background: #FBD374;
    z-index: 1;
} /*colour lines*/


.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 60px;
	font-family: Bricolage Grotesque;
	font-weight: 400;
	color:#004673;

    font-size: clamp(48px, 6vw, 72px);
    letter-spacing: -0.04em;

}



@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

/*mobile*/
@media (max-width: 575.98px) {
.section-header p {
font-size: 14px;
}	
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
	margin: -45px 0 0 0;
    padding: 120px 0;
    background: #171C1F url("../img/bgblack.png");
}

.about .section-header p {
    color: #414141;
    background: transparent;
}

.about .section-header p::after {
    display: none;
}

.about .section-header h2 {
    color: #F3EDE0; text-align:center; letter-spacing: 1px;
}

.about .section-header h2 span {
    color: #414141;
    font-size: 50px;
}

.about p {
    font-size: 18px;
	font-weight:300;
    color: #f3ede0;
}

.about .col-lg-12 .col-lg-8 {
    padding: 0;
}

.about .section-header {
    margin-bottom: 5px;
}

.about .about-img {
    position: relative;
    height: 100%;
padding-top:30px;
}

.about .about-img img {
    margin: 0 auto;
    width: 200px;
    padding: 0;
}

.about .about-content {
    padding: 0 50px; align-items: center;justify-content: center;
}

.about .about-text p {
    font-size: 16px;  line-height:30px;padding-left:10px;padding-right:10px; text-align:left;
}

.pink{color:#FFC8CD !important;}

.counter{text-align:left;color:#FFC8CD; line-height:2em;padding-bottom:5px; 
}


.impact-section {
    text-align: center;
    padding: 2rem 1rem;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allows stats to wrap on mobile */
    gap: 1rem;
    max-width: 1150px;
    margin: 0 auto; 
}

.stat {
    flex: 1; /* Makes the stats equally sized */
    min-width: 170px; /* Prevents them from getting too small on mobile */
	 /* Nearly fully transparent background */
  background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(3px) saturate(100%);
    -webkit-backdrop-filter: blur(3px) saturate(100%);
	   box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
	border-radius: 12px;
	padding: 2rem 0em 2.5rem 0em;
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}

.number-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 0.5rem;
}

.number-container h3 {
    font-weight: 700;
    margin: 0;
color:#FFC8CD; 	font-family: Bricolage Grotesque; font-size:35px;
    line-height: 1;
}

.number-container .plus,
.number-container .percent {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 0.1em;
color:#FFC8CD;
    line-height: 3;
}

.stat p {
    font-size: 1rem;
    font-weight: 500;
color:#FFC8CD;
    margin: 0;
    letter-spacing: 0.5px;
}


.skills {
vertical-align: top !important;padding:10px;
}

.about .skill-name {
    margin-top: 15px;
}

.about .skill-name p {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.about .skill-name p:last-child {
    float: right;
}

.about .progress {
    height: 10px;
    border-radius: 10px;
    background: #f3ede0;
}

.about .progress .progress-bar {
    width: 0px;
    background: #FFC8CD;
    border-radius: 10px;
    transition: 2s;
}

.about .about-text a.btn {
    margin-top: 15px;
}

@media (max-width: 991.98px) {
    .about .about-content {
        padding: 15px 15px 0 15px;
    }
	
.counter{text-align:center; line-height:3em; padding-left: 0px !important;}
}

@media (max-width: 575.98px) {
.about-img img {width:250px;}
}

/*******************************/
/******* Stages CSS ********/
/*******************************/
.stages {
    position: relative;
    padding: 45px 0 15px 0;
}

.stages .timeline {
    position: relative;
    width: 100%;
}

.stages a{font-weight:700}

.stages .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #CC8D95;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.stages .timeline .timeline-item {
    position: relative;
    background: inherit;
    width: 50%;
    margin-bottom: 30px;
}

.stages .timeline .timeline-item.left {
    left: 0;
    padding-right: 30px;
}

.stages .timeline .timeline-item.right {
    left: 50%;
    padding-left: 30px;
}

.stages .timeline .timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 48px;
    right: -8px;
    background: #f3ede0;
    border: 3px solid #CC8D95;
    border-radius: 16px;
    z-index: 1;
}

.stages .timeline .timeline-item.right::after {
    left: -8px;
}

.stages .timeline .timeline-item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 46px;
  right: 10px;
  z-index: 1;
  border: 10px solid;
  border-color: transparent transparent transparent #414141; /*arrow*/
}

.stages .timeline .timeline-item.left::before{
	 right: 11px;
}

.stages .timeline .timeline-item.right::before {
  left: 11px;
  border-color: transparent #414141 transparent transparent;
}

.stages .timeline .timeline-date {
    position: absolute;
    width: 100%;
    top: 44px;
    font-size: 15px;
    font-weight: 500;
    color: #f3ede0;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
background: #004673;
	border-radius: 30px;
	padding: 6px 20px 6px 20px;
	letter-spacing: 2px;
}

.stages .timeline .timeline-item.left .timeline-date {
    text-align: left;
    left: calc(100% + 55px);
}

.stages .timeline .timeline-item.right .timeline-date {
    text-align: right;
    right: calc(100% + 55px);
}

.stages .timeline .timeline-text {
    padding: 30px;
    background: none;
	border: 1px solid #414141;
    position: relative;
    box-shadow: 0 0 60px rgba(0, 0, 0, .08);
	border-radius:20px;
}

.stages .timeline .timeline-item.right .timeline-text {
    border-right: none;
    border: 1px solid #414141;
}

.stages .timeline .timeline-text h2 {
    margin: 0 0 5px 0;
    font-size: 20px;
	font-weight: 600;
	letter-spacing:0px;
	font-family: Bricolage Grotesque;
}

.stages .timeline .timeline-text h4 {
    margin: 0 0 10px 0;
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
	font-family:Geist;
	letter-spacing:1px;
}

.stages .timeline .timeline-text p {
    margin: 0;
    font-size: 15px;
}

.stages .timeline .timeline-text p a{
color: #414141;
}

.stages .timeline .timeline-text p a:hover{
color: #797979;
}
	

@media (max-width: 767.98px) {
    .stages .timeline::after {
        left: 8px;
    }

    .stages .timeline .timeline-item {
        width: 100%;
        padding-left: 38px;
    }
    
    .stages .timeline .timeline-item.left {
        padding-right: 0;
    }
    
    .stages .timeline .timeline-item.right {
        left: 0%;
        padding-left: 38px;
    }

    .stages .timeline .timeline-item.left::after, 
    .stages .timeline .timeline-item.right::after {
        left: 0;
    }
    
    .stages .timeline .timeline-item.left::before,
    .stages .timeline .timeline-item.right::before {
        left: 19px;
        border-color: transparent #414141 transparent transparent;
    }
    
    .stages .timeline .timeline-item.left .timeline-date,
    .stages .timeline .timeline-item.right .timeline-date {
        position: relative;
        top: 0;
        right: auto;
        left: 0;
        text-align: left;
        margin-bottom: 10px;
    }
    
    .stages .timeline .timeline-item.left .timeline-text,
    .stages .timeline .timeline-item.right .timeline-text {
        border-right: none;
        border: 1px solid #414141;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 40px 0 15px 0;
}

.service-item {
  position: relative;
  height: 100%;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(189, 189, 189, 0.75);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-item:hover {
  border-color: rgba(189, 189, 189, 0.75);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.service .service-text {
    position: relative;
    padding: 10px;
}

.service-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
	font-family: Bricolage Grotesque;
}

.service-text p {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.9;
}


.service-text a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #004673;
  text-decoration: none;
  position: relative;
   font-weight: 600;
}

.service-text a .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-item:hover .service-text a .arrow {
  transform: translateX(6px);
}


@media (max-width: 767px) {
  .service-item {
    padding: 24px;
  }

  .service-text h3 {
    font-size: 19px;
  }
}



/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 90px 0 15px 0;
}

h4{	font-family: Bricolage Grotesque; letter-spacing: -1px;}

.reel {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #171717;
  overflow: hidden;
  display: block;
  position: relative;
    margin: 0 !important;
  padding: 0 !important;
}

.reel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
      margin: 0 !important;
  padding: 0 !important;
}


.portfolio-introtext{
    margin-top: 15px;
}

.portfolio-introtext a{
	text-align: center;
    cursor: pointer;
    display: inline-block;
    margin: 5px;
	    margin-top: 20px;
    padding: 8px 22px;
    font-size: 13px;
	    color: #414141 !important;
    background: transparent;
	 transition: .5s;
	    transition: ease-out 0.3s;
    -webkit-transition: ease-out 0.3s;
    -moz-transition: ease-out 0.3s;
	border: 1px solid #414141;
    border-radius: 2px;
	letter-spacing:3px;
	font-weight: 300;
	text-decoration: none;
}

.portfolio p{margin-bottom:30px}
.portfolio p a{color:#171717; text-transform: lowercase;}
.portfolio p a:hover{ text-decoration: underline;}

.back{background:#FFC8CD !important; text-align:center!important; }
.back:hover{background:transparent!important;}

.video{margin:0 auto; text-align:center;}
video{margin-top:15px; margin-bottom:15px;}

.img-responsive{margin-bottom:5px; vertical-align:top; }
//*box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;*//

.img-responsive img:hover{transform: scale(1.2); transition: ease-in 0.3s;
    -webkit-transition: ease-in 0.3s;
    -moz-transition: ease-in 0.3s;}
	
article a{color: #004673; letter-spacing:1px; text-transform:lowercase;}
article a:hover{color: #414141;}



.caption {
  text-align: center;
  font-size: 14px;
  padding: 10px;
  font-style: italic;
  margin: 0;
  display: block;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.section-heading {
  font-size: 30px;
  margin-top:40px;
	font-family: Bricolage Grotesque;
}

.section-heading h3 {
    margin: 0;
    position: relative;
    font-size: 60px;
	font-family: Bricolage Grotesque;
	font-weight: 400;
	color:#004673;

    font-size: clamp(48px, 6vw, 72px);
    letter-spacing: -0.04em;

}

#kpmg_img, #fh_img, #themegood_img, #bei_img, #imby_img, #social_img, #about_img, #icons_img, #ucsi_img, #sge_img{
	  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-position:center;
} 

#about_img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #171717 url("../img/aboutheaderbg.jpg") no-repeat 0px 0px;
    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
    background-position:center;

}  

#icons_img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #171717 url("../img/cmd-cover.png") no-repeat 0px 0px;
    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
    background-position:center;

}

#ucsi_img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #171717 url("../img/ucsicover.png") no-repeat 0px 0px;
    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
    background-position:center;

} 

#sge_img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #171717 url("../img/sge_cover.webp") no-repeat 0px 0px;
    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
    background-position:center;

}

#social_img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #171717 url("../img/socialbg.jpg") no-repeat 0px 0px;
    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
    background-position:center;

}

#imby_img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #171717 url("../img/imbybg.jpg") no-repeat 0px 0px;
    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
    background-position:center;

}

#bei_img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #171717 url("../img/beicover.webp") no-repeat 0px 0px;
    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
    background-position:center;

}   

#themegood_img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #171717 url("../img/themegoodcover.webp") no-repeat 0px 0px;
    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
    background-position:center;
} 

#fh_img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #171717 url("../img/fhbg.webp") no-repeat 0px 0px;
    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
    background-position:center;

} 

#kpmg_img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #171717 url("../img/kpmgcover.webp") no-repeat 0px 0px;
    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
    background-position:center;

}

#kpmg_img, #fh_img, #themegood_img, #bei_img, #imby_img, #social_img, #about_img, #icons_img, #ucsi_img, #sge_img .block {
  margin: 0 auto;
  text-align: center;
}

img-comparison-slider {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

img-comparison-slider img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.comparison-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  img-comparison-slider {
    width: 100%;
    max-width: 100vw;
  }
}

html, body {
  overflow-x: hidden;
}

.sublogo{  max-width: 100%; margin: 0 auto; 
    max-height: 90px; /*logo size*/}
	
.sublogo img {width:130px; height:130px;}

.sublogo img:hover {
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
transition: 1s ease;
}

blockquote{padding: 5px 20px; font-style:italic; 
    margin: 0 0 20px;
    font-size: 17.5px;
border-left: 5px solid #414141;}

.portfolio-introtext a{font-weight: 700;}

.portfolio-introtext a:hover{
    background: #FFC8CD;
	} 

.portfolio-introtext a:visited,
.portfolio-introtext a:active {
    color: #414141;
    background: transparent;
    box-shadow: inset 0 0 0 0 #FFC8CD;
}

.portfolio .portfolio-item {
    position: relative; white-space: normal;
}

.portfolio .portfolio-wrap {
    position: relative;
    width: 100%;
	padding-bottom:15px; /*bottom padding for thumbnail*/
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
	border-radius: 20px;
}

.portfolio .portfolio-img img {
    position: relative;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transform: scale(1.1);
    transition: .5s;
}

.portfolio .portfolio-img a img{
	max-width: 100%; height:auto !important;}

.portfolio .portfolio-item:hover img {
    margin-left: 15px;
}

.portfolio .portfolio-introtext {color:#414141; padding-top:5px;}
.portfolio .portfolio-introtext a{color:#004673; font-weight:700}
.portfolio .portfolio-introtext a:hover{color:#414141;}

.portfolio .portfolio-text {
    position: relative;
    height: auto;
    width: calc(100% - 30px);
    margin: -40px 15px 30px 15px;
    display: flex;
    align-items: center;
    background:  1px rgba(0, 0, 0, .6);
    box-shadow: 0 0 12px rgba(0, 0, 0, .12);
	padding-top:3px; padding-bottom:6px;
	opacity: 0.9;
}

.portfolio .portfolio-text h3 {
    width: 100%;
	text-align:center;
    font-size: 12px;
    font-weight: 400;
    white-space: normal;
    overflow: hidden;
	color: #b6b6b6;
	margin: 0px !important;
    letter-spacing: 3px;
	text-transform: uppercase;
	padding:2px;
	padding-top:3px;
}

.portfolio .portfolio-text a.btn {
    width: 40px;
    height: 40px;
    padding: 0;
	margin-left:15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 100;
	border-radius: 40px;
}

.portfolio .portfolio-item:hover a.btn {
    color: #004673;
    background: transparent;
    box-shadow: inset 0 0 0 0 #004673;
    border-color: #004673;
	display: flex;
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {
.hero {
    padding: 250px 0 0 0; /*text position*/
}
   /* Styles for Desktops */
 }
 
 
/* 2560 screen and 1920 above */
@media (min-width: 1920px) and (max-width: 2560px)  {
#imby_img, #social_img{
  padding-top: 180px;
  padding-bottom: 220px;
}

.hero {
    padding: 180px 0 0 0; /*text position*/
}

.sublogo img{width: 300px ; height:300px;}
}

@media(max-width: 575.98px) {
	.portfolio .portfolio-text h3{font-size: 12px;}
	
	/*portfolio subpage responsive image for mobile*/
	.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;   vertical-align: top;
}

}



/*******************************/
/********* History CSS **********/
/*******************************/
.banner {
    position: relative;
    width: 100%;
    padding: 90px 0;
	  background: #FFC8CD url("../img/aboutbg.jpg") repeat;
}

.banner .container {
    max-width: 750px;
    text-align: center;
}

.banner .section-header {
    margin-bottom: 20px;
}

.banner .section-header p {
    color: #414141;
    background: transparent;
}

.banner .section-header p::after {
    display: none;
}

.banner .section-header h2 {
    color: #004673;
}

.banner .section-header h2 span {
    color: #fff;
    font-size: 50px;
}

.banner .banner-text p {
    color: #414141;
}

.banner .banner-text .btn {
    margin-top: 15px;
    color: #FFC8CD;
    box-shadow: inset 0 0 0 50px #004673;
		letter-spacing:3px;
	font-weight: 700;
	padding:8px 22px;
	font-size: 13px;
	border: 2px solid #004673;
	border-radius:50px;
}

.banner .banner-text .btn:hover {
    color: #004673;
    background: transparent;
    box-shadow: inset 0 0 0 0 #004673;
    
}


/*******************************/
/********* Pricing CSS *********/
/*******************************/

.price {
    position: relative;
    width: 100%;
    padding: 0 0 15px 0;
}

.price .row {
    padding: 0 15px;
}

.price .col-md-4 {
    padding: 0;
}

.price .price-item {
    position: relative;
    margin-bottom: 30px;
	padding:30px;
}

.price .featured-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .2);
    z-index: 1;
}

.price .price-header,
.price .price-body,
.price .price-footer {
    position: relative;
    text-align: center;
}

.price .price-header {
    padding: 45px 0 10px 0;
    color: #414141;
}

.price .price-item.featured-item .price-header {
    color: #2CAAFF;
}

.price .price-title h4 {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
	font-family: Geist;
	letter-spacing:0.1em;
}

.price .price-prices h2 {
    font-size: 38px;
    font-weight: 500;
    margin-left: 10px;
	font-family:Geist;
	color:#004673;
}

.price .price-prices h2 small {
    position: absolute;
    font-size: 18px;
    font-weight: 400;
    margin-top: 9px;
    margin-left: -12px;
}

.price .price-prices h2 span {
    margin-left: 1px;
    font-size: 16px;
    font-weight: 400;
}

.price .price-item.featured-item h2 {
    color: #2CAAFF;
}

.price .price-body {
    padding: 0 0 20px 0;
}

.price .price-description ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.price .price-description ul li {
    padding: 0 0 20px 0;
}

.price .price-item .price-action {
    padding-bottom: 45px;
}

.price .price-item .price-action .btn {
    color: #ffffff;
    background: #414141;
    box-shadow: inset 0 0 0 50px #414141;
	letter-spacing: 2px; 
	 font-size: 16px;
	 margin-top:5px;
}

.price .price-item .price-action .btn:hover {
    box-shadow: inset 0 0 0 0 #414141;
    border-color: #414141;
	  background: #000 !important;
}

.price .price-item.featured-item .price-action .btn {
    color: #ffffff;
    background: #2CAAFF;
}

.price .price-item.featured-item .price-action .btn:hover {
    color: #2CAAFF;
    background: #000;
}

.price a{color:#171717}

.price p{text-transform:none; letter-spacing:0px;}

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    background: #ffffff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: inset 0 0 0 0 transparent;
    transition: ease-out 0.5s;
}

.team .team-img {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.team .team-img img {
    position: relative;
    width: 100%;
    transition: .5s;
}

.team .team-text {
    position: relative;
    width: 50%;
    padding: 0 30px;
}

.team .team-text h2 {
    color: #2CAAFF;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: 1s;
}

.team .team-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: 1s;
}

.team .team-text p {
    margin-bottom: 20px;
    transition: 1s;
}

.team .team-social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .team-social a.btn {
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: normal;
    margin-right: 5px;
}

.team .team-item:hover {
    box-shadow: inset 800px 0 0 0 #2CAAFF;
}

.team .team-item:hover .team-img img {
    transform: scale(1.2);
}

.team .team-item:hover .team-text h2,
.team .team-item:hover .team-text h4,
.team .team-item:hover .team-text p {
    color: #ffffff;
}

.team .team-item:hover .team-social a.btn {
    background: #ffffff;
}

.team .team-item:hover .team-social a.btn:hover {
    border-color: #ffffff;
}

@media(max-width: 575.98px) {
    .team .team-text {
        padding: 0 15px;
    }
    
    .team .team-text h2 {
        font-size: 16px;
        margin-bottom: 0;
    }

    .team .team-text h4 {
        margin-bottom: 5px;
    }

    .team .team-text p {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 10px;
    }
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    padding: 90px 0;
    background: #F0EEE9;
}

.testimonial .container {
    max-width: 900px;
}

.testimonial .testimonial-icon {
    margin-bottom: 45px;
    text-align: center;
}

.testimonial .testimonial-icon i img {
    width: 60px;
    color: #FFC8CD;
}

.testimonial .testimonial-item {
    position: relative;
    margin: 0 15px;
    text-align: center;
}

.testimonial .testimonial-img {
    position: relative;
    margin-bottom: 15px;
    z-index: 1;
}

.testimonial .testimonial-item img {
    margin: 0 auto;
    width: 150px;
    padding: 0;
    border-radius: 160px;
}

.testimonial .testimonial-text {
    position: relative;
    margin-top: -70px;
    padding: 65px 35px 30px 35px;
    text-align: center;
    background: none;
}

.testimonial .testimonial-item p {
    font-size: 18px;
    font-style: italic;
	color: #414141;
}

.testimonial .testimonial-text h3 {
    color: #414141;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
	font-family: Bricolage Grotesque;
}

.testimonial .testimonial-text h4 {
    color: #414141;
    font-size: 14px;
    margin-bottom: 0;
	letter-spacing:0px;
	font-family:Geist;
}

.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(179, 224, 225, .5);
}

.testimonial .owl-dot.active {
    background: #FFC8CD;
}

@media (max-width: 575.98px)
{  .testimonial { padding: 50px 0;
}

.testimonial .testimonial-item {
    margin: 0 5px;
}

.testimonial .testimonial-text{
	min-height:550px;
}
}

/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    margin: 45px 0;
    background: #004673;
}

.contact .container-fluid {
    background: url(../img/contact.jpg) left center no-repeat;
    background-size: contain;
}

.contact .contact-form {
    position: relative;
    padding: 90px 0 90px 45px;
    background: #004673;
}

.contact .contact-form input {
    color: #ffffff;
    padding: 15px 0;
    background: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(256, 256, 256, .5);
}

.contact .contact-form textarea {
    color: #ffffff;
    height: 90px;
    padding: 15px 0;
    background: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(256, 256, 256, .5);
}

.contact .contact-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.contact .contact-form .form-control:-ms-input-placeholder,
.contact .contact-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.contact .contact-form .btn {
    margin-top: 35px;
    color: #004673;
    background: #ffffff;
    box-shadow: inset 0 0 0 50px #ffffff;
}

.contact .contact-form .btn:hover {
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ffffff;
    border-color: #ffffff;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .contact .container-fluid {
        background: none;
    }
    
    .contact .contact-form {
        padding: 90px 0;
    }
}


/*******************************/
/*********** Articles CSS **********/
/*******************************/
.articles {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.articles .blog-item {
    position: relative;
    margin-bottom: 30px;
}

.articles .blog-img {
    position: relative;
    width: 100%;
    overflow: hidden;
		border-top-left-radius:20px;
		border-top-right-radius:20px;
}

.articles .blog-img img {
    width: 100%;
    transition: .5s;
}

.articles .blog-item:hover img {
    transform: scale(1.1);
}

.articles .blog-text {
    position: relative;
    padding: 30px;
    border-right: 1px solid rgba(0, 0, 0, .07);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    border-left: 1px solid rgba(0, 0, 0, .07);
}

.articles .blog-text h2 {
    font-size: 25px;
    font-weight: 600;
}

.articles .blog-text p {
    margin-bottom: 10px;
}

.articles .blog-item a.btn {
    margin-top: 10px;
    padding: 8px 15px;
}

.articles .blog-item a.btn i {
    margin-left: 5px;
}

.articles .blog-meta {
    position: relative;
    display: flex;
    margin-bottom: 15px;
}

.articles .blog-meta p {
    margin: 0 10px 0 0;
    font-size: 13px;
}

.articles .blog-meta i {
    color: #414141;
    margin-right: 5px;
}

.articles .blog-meta p:last-child {
    margin: 0;
}

.btn{border: 1px solid #171C1F;}
.btn:hover{background:#FFC8CD}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    background: #171C1F url("../img/bgblack.png");
	letter-spacing:1px;
}

.footer .container-fluid {
    padding: 60px 0 0 0;
}

.footer .footer-info {
    position: relative;
    width: 100%;
    text-align: center;
}

.footer .footer-info h3 {
    margin-bottom: 30px;
	 margin-top: 20px;
    font-size: 11px;
    font-weight: 300;
    color: #f3ede0;
	letter-spacing:3px;
	text-transform: uppercase;
}


.footer .footer-menu {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer .footer-menu p {
    color: #f3ede0;
    font-size: 22px;
    font-weight: 600;
    line-height: 20px;
    padding: 0 15px;
    border-right: 1px solid #f3ede0;
}

.footer .footer-menu p:last-child {
    border: none;
}

.footer .footer-social {
    position: relative;
    margin-top: 15px;
}

.footer .footer-social a {
    display: inline-block;
		text-decoration:none;
}

.footer .footer-social a i {
    margin-right: 32px;
    font-size: 20px;
    color: #FFC8CD; 
    transition: .3s;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #ffffff;
}

.footer .copyright {
    position: relative;
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
	font-weight: 300;
	font-size: 9px !important;
		text-transform: uppercase;
		letter-spacing:2px;
}

.footer .copyright::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    top: 0;
    left: 25%;
}

.footer .copyright p {
    margin: 0;
    color: #f3ede0;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
    font-weight: 400;
}

.footer .copyright p a:hover {
    color: #FFC8CD;
}

@media (max-width: 575.98px) {
    .footer .footer-info h2 {
        margin-bottom: 20px;
        font-size: 45px;
        font-weight: 500;
    }

    .footer .footer-info h3 {
        margin-bottom: 20px;
        font-size: 12px;
    }

   .footer .copyright p{
        font-size: 9px !important;
        line-height: 16px;
        padding: 0 5px;
    }
}
