@charset "UTF-8";

/*-----------------------------------------------------------
* Template Name    : Responsive Portfolio Template – Bootstrap 4
* Author           : Canberk Cabbaroğlu
* Author URI       : https://www.canberkcabbaroglu.com
* Version          : 1.0.0
* Created          : May 2020
--------------------------------------------------------------*/

/*--------------------------------------------------------------
  1.General
  2.Sections
  3.Back To Top
  4.Loader
  5.Header
  6.Scroll
  7.About
  8.Experience
  9.Services
  10.Clients
  11.Works
  12.Blog
  13.Footer
  14.Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600|Nunito:400,500,600,700');

@font-face {
  font-family: 'Roboto';
  src: url('/light/assets/fonts/font/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/light/assets/fonts/font/Roboto-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/light/assets/fonts/font/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/light/assets/fonts/font/Roboto-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/light/assets/fonts/font/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/light/assets/fonts/font/Roboto-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Condensed';
  src: url('/light/assets/fonts/font/RobotoCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Raleway';
  src: url('/light/assets/fonts/font/Raleway-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  width: 100%;
  height: 100%;
  overflow: auto;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #212529;
  overflow-x: hidden;
}

.btn {
  font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.btn-xl {
  padding: 1.25rem 2.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 10rem;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: 'Montserrat', sans-serif;
}

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

.section-bg1 {
  background-color: #ffffff;
}

.section-bg2 {
  background-color: #f6f6f6;
}

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

.section-title h2 {
  font-family: 'Noto Serif', serif;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
  font-size: 50px;
  color: #262626;
}

/*--------------------------------------------------------------
# Back To Top
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  right: 20px;
  bottom: 15px;
  background: #2E8B57;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #3CB371;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Loader
--------------------------------------------------------------*/
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
}

#loader {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top-color: #3498db;
  animation: spin 2s linear infinite;
  z-index: 10001;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top-color: #e74c3c;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top-color: #f9c922;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  background: #f8f8f8;
  z-index: 1000;
  transform: translateX(0);
}

#loader-wrapper .loader-section.section-left  { left: 0; }
#loader-wrapper .loader-section.section-right { right: 0; }

.loaded #loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  transition: all 1s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.home {
  height: 100vh;
  padding-top: 10rem;
  background-color: #464646;
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
}

.home canvas {
  display: block;
}

.home #particles-js {
  position: absolute;
  width: 100%;
  height: 75vh;
}

.home h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 3.5rem;
}

.home h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 2.5rem;
}

.home .rnd {
  border: 3px solid rgba(255, 255, 255, 1);
  border-radius: 100%;
  overflow: hidden;
}

.home .social-links a {
  font-size: 20px;
  display: inline-block;
  background: #ffffff;
  color: #000;
  line-height: 1;
  padding: 10px 0;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  margin: 20px 5px;
}

.home .social-links a:hover {
  background: #2E8B57;
  color: #fff;
  text-decoration: none;
}

#mainNav {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-color: #fff;
  transition: background-color 0.2s ease;
}

#mainNav .navbar-brand {
  color: #262626;
  font-family: 'Noto Serif', sans-serif;
  padding: 0 0.9rem;
  font-weight: bold;
  font-size: 1.8rem;
}

#mainNav .navbar-nav .nav-item .nav-link {
  color: #6c757d;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 0;
}

#mainNav .navbar-nav .nav-item .nav-link:hover,
#mainNav .navbar-nav .nav-item .nav-link:active {
  color: #f4623a;
}

#mainNav .navbar-nav .nav-item .nav-link.active {
  color: #f4623a !important;
}

/*--------------------------------------------------------------
# Scroll
--------------------------------------------------------------*/
.home .scroll a {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 3;
  display: inline-block;
  transform: translate(0, -50%);
  color: #fff;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
}

.home .scroll a:hover {
  opacity: .5;
}

.home #scroll a {
  position: absolute;
  padding-top: 37px;
}

.home #scroll a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}

.home #scroll a span::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: -1;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  animation: scr 2s infinite;
  box-sizing: border-box;
}

@keyframes scr {
  0%   { transform: translate(0, 0);     opacity: 0; }
  40%  {                                 opacity: 1; }
  80%  { transform: translate(0, 20px);  opacity: 0; }
  100% {                                 opacity: 0; }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  position: relative;
}

.about h5 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 34px;
}

.about i {
  font-size: 48px;
  margin-top: 15px;
  color: #f39e7a;
}

.about p {
  font-size: 18px;
  color: #5a6570;
}

.about .skills .box {
  width: 60%;
  float: left;
}

.about .skills .box .chart {
  position: relative;
  font-size: 22px;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  line-height: 100px;
  color: #000000;
  text-align: center;
}

.about .skills .chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.about .skills .box h6 {
  position: relative;
  font-size: 20px;
  margin-top: 16px;
  text-align: center;
  color: #000000;
}

.space {
  margin-top: 130px;
}

/*--------------------------------------------------------------
# Experience
--------------------------------------------------------------*/
.experience .area {
  position: relative;
  padding: 55px;
  margin: 0 0 40px 0;
  background: #ffffff;
  box-shadow: 0 0 30px 0 rgba(68, 88, 144, 0.2);
  color: #000000;
  border-radius: 25px;
  text-align: left;
}

.experience .timeline .title {
  font-family: 'Roboto Condensed', sans-serif;
  margin-top: 6px;
  padding: 0 15px;
  display: inline-block;
  color: gray;
  font-size: 25px;
}

.experience .timeline .title1 {
  font-family: 'Roboto Condensed', sans-serif;
  margin-top: 11px;
  padding: 0 15px;
  display: inline-block;
  color: gray;
  font-size: 25px;
}

.experience .timeline .date {
  background: #2E8B57;
  padding: 0 14px;
  display: inline-block;
  color: #ffffff;
  border-radius: 5%;
}

.experience .timeline p {
  margin-bottom: 2rem;
  position: relative;
  padding: 0px 15px;
}

.experience ul.timeline {
  list-style-type: none;
  position: relative;
}

.experience ul.timeline:before {
  content: ' ';
  background: gray;
  display: inline-block;
  position: absolute;
  left: 30px;
  width: 1px;
  height: 100%;
  z-index: 400;
}

.experience ul.timeline > li {
  margin: 10px 0;
  padding-left: 5px;
}

.experience .work-icon {
  background: #ffffff;
  display: inline-block;
  border: 3px solid white;
  position: absolute;
  width: 40px;
  height: 40px;
  left: 10px;
  border-radius: 15%;
  z-index: 500;
}

.experience .education-icon {
  background: #ffffff;
  display: inline-block;
  border: 3px solid white;
  position: absolute;
  width: 45px;
  height: 45px;
  left: 10px;
  border-radius: 20%;
  z-index: 500;
}

.experience .timeline img {
  border-radius: 10%;
  width: 100%;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/* icon-box1 & icon-box3 share teal; icon-box2 & icon-box4 share green */
.services .icon-box1,
.services .icon-box3 {
  background: #00CED1;
}

.services .icon-box2,
.services .icon-box4 {
  background: #2E8B57;
}

.services .icon-box1,
.services .icon-box2,
.services .icon-box3,
.services .icon-box4 {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.services .icon-box1:hover,
.services .icon-box2:hover,
.services .icon-box3:hover,
.services .icon-box4:hover {
  transform: translateY(-12px);
  border-color: #ffffff;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
  color: #ffffff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .title a {
  color: #ffffff;
}

.services .description {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  position: relative;
  padding: 100px 0;
  background-position: center;
}

.clients .img-area {
  width: 120px;
  height: 120px;
  margin: auto;
  border: 4px solid rgba(0, 0, 0, 0.75);
  border-radius: 50%;
  overflow: hidden;
}

.clients .img-area img {
  width: 100%;
}

.clients .carousel-caption {
  position: static;
  padding-bottom: 15px;
  padding-top: 0;
}

.clients .carousel-caption h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.clients .carousel-caption h4 {
  font-size: 15px;
  color: #2E8B57;
  margin: 0 0 20px 0;
}

.clients .carousel-caption p {
  font-style: italic;
  color: rgba(0, 0, 0, 0.65);
  font-size: 18px;
  margin: auto;
  width: 100%;
  margin-bottom: 10px;
}

.clients .carousel-caption .icofont-quote-left {
  color: rgba(0, 0, 0, 0.65);
  display: inline-block;
  left: -5px;
  position: relative;
  bottom: 7px;
}

.clients .carousel-caption .icofont-quote-right {
  color: rgba(0, 0, 0, 0.65);
  display: inline-block;
  right: -5px;
  position: relative;
  top: 0px;
}

.clients .carousel-indicators {
  bottom: -45px;
}

.clients .carousel-control-prev-icon,
.clients .carousel-control-next-icon {
  background: transparent;
}

/*--------------------------------------------------------------
# Works
--------------------------------------------------------------*/
.works .works-item {
  margin-bottom: 25px;
}

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

.works #works-filters li {
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  display: inline-block;
  padding: 10px;
  font-size: 18px;
  color: #212529;
  margin: 5px 5px 5px 10px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.works #works-filters li:hover,
.works #works-filters li.filter-active {
  color: #ffffff;
  background: #2E8B57;
}

.works .works-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  z-index: 1;
}

.works .works-img::before {
  content: "";
  background: rgba(38, 38, 38, 0.9);
  position: absolute;
  left: 0;
  right: 100%;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.6s;
  z-index: 2;
}

.works .works-img img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.works .works-img .works-links {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.works .works-img .works-caption {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 32px);
  text-align: center;
  z-index: 2;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.works .works-img .works-caption h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.works .works-img .works-caption p {
  color: #ffffff;
  font-size: 18px;
}

.works .works-img:hover::before {
  right: 0;
}

.works .works-img:hover .works-caption {
  opacity: 1;
  top: calc(50% - 32px);
  bottom: 0;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .inner {
  overflow: hidden;
}

.blog .inner img {
  transition: all 1.5s ease;
}

.blog .inner:hover img {
  transform: scale(1.5);
}

.blog .card-title {
  margin-bottom: 0.7rem;
}

.blog .icofont-clock-time    { font-size: 12px; margin-left: 0.30rem;  margin-right: 0.25rem; }
.blog .icofont-users         { font-size: 13px; margin-right: 0.25rem; margin-left: 0.25rem;  }
.blog .icofont-eye-alt       { font-size: 14px; margin-right: 0.20rem; margin-left: 0.35rem;  }
.blog .icofont-speech-comments { font-size: 14px; margin-right: 0.20rem; margin-left: 0.27rem; }

.blog .card-footer {
  font-size: 0.8rem;
  padding: 0.75rem 1rem;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 40px 0;
  text-align: center;
  background: #262626;
  position: relative;
  bottom: 0;
}

.footer span.copyright,
.footer ul.quicklinks {
  color: white;
  font-size: 90%;
  line-height: 40px;
  text-transform: none;
  font-family: 'Montserrat', serif;
}

.footer ul.quicklinks {
  margin-bottom: 0;
}

.footer .icon-button {
  background-color: transparent;
  border-radius: 2.6rem;
  cursor: pointer;
  display: inline-block;
  font-size: 1.3rem;
  height: 2.6rem;
  line-height: 2.6rem;
  margin: 0 5px;
  position: relative;
  text-align: center;
  user-select: none;
  width: 2.6rem;
}

.footer .icon-button span {
  border-radius: 0;
  display: block;
  height: 0;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  transition: all 0.3s;
  width: 0;
}

.footer .icon-button:hover span {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 2.6rem;
  margin: -1.3rem;
}

.footer .icon-button i {
  background: none;
  color: white;
  height: 2.6rem;
  left: 0;
  line-height: 2.6rem;
  position: absolute;
  top: 0;
  transition: all 0.3s;
  width: 2.6rem;
  z-index: 10;
}

.footer .twitter span      { background-color: #4099ff; }
.footer .facebook span     { background-color: #3B5998; }
.footer .google-plus span  { background-color: #db5a3c; }
.footer .tumblr span       { background-color: #34526f; }
.footer .instagram span    { background-color: #517fa4; }
.footer .youtube span      { background-color: #bb0000; }
.footer .pinterest span    { background-color: #cb2027; }

.footer .icon-button .icon-twitter   { color: #4099ff; }
.footer .icon-button .icon-facebook  { color: #3B5998; }
.footer .icon-button .icon-google-plus { color: #db5a3c; }
.footer .icon-button .fa-instagram   { color: #517fa4; }
.footer .icon-button .fa-youtube     { color: #bb0000; }
.footer .icon-button .fa-pinterest   { color: #cb2027; }

.footer .icon-button:hover .icon-twitter,
.footer .icon-button:hover .icon-facebook,
.footer .icon-button:hover .icon-google-plus,
.footer .icon-button:hover .fa-instagram,
.footer .icon-button:hover .fa-youtube,
.footer .icon-button:hover .fa-pinterest {
  color: white;
}

.hm-gradient {
  background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
}

.darken-grey-text {
  color: #2E2E2E;
}

.mfp-container button:focus {
  outline: none;
}
/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (min-width: 992px) {
  #mainNav {
    box-shadow: none;
    background-color: transparent;
  }

  #mainNav .navbar-brand {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Nunito', sans-serif;
    padding: 0 1rem;
  }

  #mainNav .navbar-brand:hover {
    color: #ffffff;
  }

  #mainNav .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 0 1rem;
  }

  #mainNav .navbar-nav .nav-item .nav-link:hover {
    color: #ffffff;
  }

  #mainNav .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
  }

  #mainNav.navbar-scrolled {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background-color: #fff;
  }

  #mainNav.navbar-scrolled .navbar-brand {
    color: #212529;
  }

  #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link {
    color: #212529;
  }

  #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link:hover {
    color: #E6E6E6;
  }
}

@media (max-width: 575.98px) {
  .home h1 { font-size: 2rem; }
  .home h3 { font-family: 'Nunito', sans-serif; font-size: 1.5rem; }
  .about h5 { margin-top: 1rem; }
  .about .skills .box { width: 50%; }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .home h1 { font-size: 3rem; }
  .home h3 { font-family: 'Nunito', sans-serif; font-size: 2rem; }
  .about h5 { margin-top: 1rem; }
  .about .skills .box { width: 50%; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .home { padding-bottom: 10rem; }
  .home h1 { font-size: 3rem; }
  .home h3 { font-family: 'Nunito', sans-serif; font-size: 2.5rem; }
  .about h5 { margin-top: 1rem; }
  .about .skills .box { width: 100%; }

  .experience .timeline .title,
  .experience .timeline .title1 { font-size: 24px; }
  .experience .timeline p { font-size: 15px; }
  .experience .timeline .date { margin-left: 15px; padding: 0 15px; font-size: 16px; margin-bottom: 5px; }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .home h1 { font-size: 3rem; }
  .home h3 { font-family: 'Nunito', sans-serif; font-size: 2.5rem; }
  .home .scroll a { position: absolute; bottom: 10rem; }
  .about .skills .box { width: 100%; }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .home { padding-bottom: 25rem; }
  .about h5 { margin-top: 1rem; }
}

@media (min-width: 360px) and (max-width: 768px) {
  .about h5 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 24px;
  }
}

@media (min-width: 800px) and (max-width: 1000px) {
  .space { margin-top: 250px; }
}

@media (max-width: 768px) {
  .space { margin-top: 250px; }
  .experience .timeline .title,
  .experience .timeline .title1 { font-size: 24px; }
  .experience .timeline p { padding: 0px 15px; font-size: 15px; }
  .experience .timeline .date { margin-left: 15px; padding: 0 15px; font-size: 16px; margin-bottom: 5px; }

  .footer .icon-button {
    border-radius: 1.6rem;
    font-size: 1.2rem;
    height: 1.6rem;
    line-height: 1.6rem;
    width: 1.6rem;
  }

  .footer .icon-button:hover span {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 1.6rem;
    margin: -0.8rem;
  }

  .footer .icon-button i {
    height: 1.6rem;
    line-height: 1.6rem;
    width: 1.6rem;
  }

  .footer .pinterest { display: none; }
}

@media (max-width: 992px) {
  .clients .carousel-caption p { width: 70%; }
}