/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
/* barlow-regular */
@font-face {
  font-display: block;
  font-family: "Barlow Regular";
  src: url("../fonts/barlow-regular.woff2") format("woff2");
}
/* barlow-italic */
@font-face {
  font-display: block;
  font-family: "Barlow Italic";
  src: url("../fonts/barlow-italic.woff2") format("woff2");
}
/* barlow-bold */
@font-face {
  font-display: block;
  font-family: "Barlow Bold";
  src: url("../fonts/barlow-bold.woff2") format("woff2");
}
/* barlow-condensed-regular */
@font-face {
  font-display: block; /
  font-family: "Barlow Condensed";
  src: url("../fonts/BarlowCondensed-Regular.woff") format("woff"); 
}
/* barlow-condensed-bold */
@font-face {
  font-display: block;
  font-family: "Barlow Condensed Bold";
  src: url("../fonts/barlow-condensed-bold.woff2") format("woff2"); 
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  font-family: 'Barlow Regular';
  color: #444444;
}

a {
  color: #223F9A;
  text-decoration: none;
}

a:hover {
  color: #223F9A;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Barlow Bold';
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #223F9A;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #605F5D;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h2 {
  font-size: 28px;
  margin: 0 0 0 10px;
  letter-spacing: 1px;
  color: #384046;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #223F9A;
  text-decoration: none;
}

#header .logo img {
  height: 3.5rem;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  margin: 10px 15px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Barlow Regular', sans-serif;
  font-size: 16px;
  color: #605F5D;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar .active {
  font-family: 'Barlow Bold';
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #223F9A;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #223F9A;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bx-x {
  color: #fff;
  padding-top:10px;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(33, 38, 42, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #605F5D;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #223F9A;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh;
  background: url("../layout-image/clark-van-der-beken-A1AV-H8ZBaM-unsplash.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 70px;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgba(56, 64, 70, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  z-index: 2;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
}

#hero h1 span {
  font-size:55px;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 24px;
  font-family: 'Barlow Regular';
}

#hero .btn-get-started {
  font-family: 'Barlow Regular', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  transition: ease-in-out 0.3s;
  color: #fff;
  background: #3498db;
  text-transform: uppercase;
}

#hero .btn-get-started:hover {
  background: #4ea5e0;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
    font-family: 'Barlow Regular';
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f7fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #223F9A;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

.section-title p:nth-child(1n) {
  font-family: 'Barlow Italic';
  font-size:24px;
}

/*--------------------------------------------------------------
# Profile
--------------------------------------------------------------*/
.profile {
  padding: 30px 0 10px 0;
}

.profile h3 {
  font-size: 32px;
}

.profile ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.profile ul li+li {
  margin-top: 10px;
}

.profile ul li {
  position: relative;
  padding-left: 26px;
}

.profile ul i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: #223F9A;
}

.profile .icon-boxes {
  padding-top: 10px;
}

.profile .icon-boxes h4 {
  font-size: 20px;
  margin-top: 5px;
  color: #223F9A;
}

@media (max-width: 767px) {
  .profile .icon-boxes h4 {
      font-size: 18px;
  }
}

.profile .icon-boxes i {
  font-size: 48px;
  display: flex;
  justify-content: flex-end;
  color: #223F9A;
  padding-right:15px;
}

@media (max-width: 1199px) {
  .profile .icon-boxes i {
      justify-content: center;
  }
}

.profile .icon-boxes p {
  font-size: 15px;
  color: #605F5D;
}

.profile ul li,
.profile .icon-boxes span {
  font-family: 'Barlow Bold';
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding: 60px 0;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #444444;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #3498db;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.portfolio .portfolio-wrap img {
  width: 100%;
  height: 100%;
}


.portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

.portfolio .portfolio-item {
  position: relative;
  height: 325px;
  overflow: hidden;
  margin-bottom: 15px;
}

.portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 240px;
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

.portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: 0.4s;
}

.portfolio .portfolio-item figure .link-preview {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  line-height: 0;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.2s linear;
  overflow: hidden;
  font-size: 20px;
}

.portfolio .portfolio-item figure .link-preview i {
  color: #223F9A;
  line-height: 0;
}

.portfolio .portfolio-item figure .link-preview:hover {
  background: #223F9A;
}

.portfolio .portfolio-item figure .link-preview:hover i {
  color: #fff;
}

.portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

.portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 25px);
}

.portfolio .portfolio-item .portfolio-info {
  background: #f7fbfe;
  text-align: center;
  padding: 25px;
  height: 75px;
  border-radius: 0 0 3px 3px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  line-height: 1px;
  margin-bottom: 18px;
  padding-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info h4 a {
  color: #333;
}

.portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: #3498db;
}

.portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #b8b8b8;
  font-size: 14px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 0;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3498db;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3498db;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(56, 64, 70, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .box {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px 15px 20px;
  background: #fff;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .team .box {
      height:100%;
  }
}

.team .box .member {
  text-align: center;
}

.team .box .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .box .member h3 {
  color: #223F9A; 
  font-size: 22px;
}

.team .box .member p {
    font-family: 'Barlow Italic';
    font-size: 20px;
    margin-bottom: 30px;
}
}

.team .box .description {
    margin-bottom: 15px;
}

.team .box .description h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team .box .description span {
  font-family: "Barlow Bold";
}

.team .box .description p {
  font-family: 'Barlow Italic';
  color: #605F5D;
  margin-bottom: 5px;
}

/*--------------------------------------------------------------
# Qualification
--------------------------------------------------------------*/
.qualification .icon-box {
  min-height:160px;
  padding: 40px 30px 20px 30px;
  border-radius: 6px;
  background: #fff;
  transition: ease-in-out 0.3s;
  box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.08);
}

.qualification .icon-box i {
  float: left;
  color: #223F9A;
  font-size: 40px;
  line-height: 0;
  margin-top: 20px;
}

.qualification .icon-box h4 {
  margin-left: 70px;
  margin-bottom: 15px;
  font-size: 18px;
  color: #223F9A;
}

.qualification .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 40px 0;
  margin-top: 70px;
}

.breadcrumbs h2 {
  font-size: 24px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li a:hover {
  font-family: 'Barlow Bold';
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4f5a62;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
}

#footer .footer-top {
  padding: 20px 0;
  background: #f7fbfe
}

#footer .footer-top .footer-contact {
  margin-bottom: 0px;
}

#footer .footer-top h4 {
  font-size: 20px;
  margin-bottom: 8px;
  padding: 2px 0 2px 0;
  line-height: 1;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Barlow Regular', sans-serif;
  color: #605F5D;
}

#footer .footer-top .footer-contact p text {
  font-family: 'Barlow Bold';
}

#footer .footer-top .footer-side {
  margin-bottom: 30px;
}

#footer .footer-top .footer-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-side ul i {
  padding-right: 2px;
  color: #223F9A;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-side ul li {
  padding: 0 0 10px 0;
  display: flex;
  align-items: center;
}


#footer .footer-top .footer-side ul a {
  color: #223F9A;
  font-size: 16px;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-side ul a:hover {
  text-decoration: none;
  font-family: 'Barlow Bold';
  color: #223F9A;
}

.copyright span {
  font-family: 'Barlow Bold';
  color: #223F9A;
}


/*--------------------------------------------------------------
# Legal notice - Page
--------------------------------------------------------------*/
.legal-notice {
    padding: 20px 0 40px 0;
}

.legal-notice h1 {
  font-size: 80px;
  color: #223F9A;
  margin-bottom:40px;
}

@media (max-width: 768px) {
  .legal-notice h1 {
    font-size:50px;
  }
}

.legal-notice h2 {
  font-size: 30px;
  margin-top:60px;
  margin-bottom:20px;
}

.legal-notice p {
  color: #605F5D;
  font-size: 24px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Privacy policy - Page
--------------------------------------------------------------*/
.privacy {
    padding: 20px 0 40px 0;
}

.privacy h1 {
  font-size: 80px;
  color: #223F9A;
  margin-bottom:40px;
}

.privacy h2 {
  font-size: 50px;
  margin-top:40px;
  margin-bottom:20px;
}

.privacy h3 {
  font-size: 40px;
  margin-top:60px;
  color: #223F9A;
}

.privacy h4 {
  font-size: 25px;
  margin-top:50px;
}

.privacy p {
  color: #605F5D;
  font-size: 20px;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .privacy h1 {
    font-size:45px;
  }
  
  .privacy h2 {
    font-size:35px;
  }
  
  .privacy h3 {
    font-size:25px;
  }
  
  .privacy h4 {
    font-size:20px;
  }
}

@media (max-width: 575px) {
  .privacy h1 {
    font-size:40px;
  }
  
  .privacy h2 {
    font-size:30px;
  }
  
  .privacy h3 {
    font-size:20px;
  }
  
  .privacy h4 {
    font-size:15px;
  }
  
  .privacy p {
    font-size:15px;
  }
}
