body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;

	font-size: 15px;
	line-height: 1.6;
	color: #333;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}


/* Container */
.container {
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
}

/* Header */
.header {
   width: 100%;
   padding-top: 40px;

   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
}

.header__inner {
   display: flex;
   justify-content: space-between;
   align-items: center;
}
body {
   margin: 0;
   font-family: 'Montserrat', sans-serif;

   font-size: 15px;
   line-height: 1.6;
   color: #333;
}

*,
*:before,
*:after {
   box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
   margin: 0;
}


/* Container */
.container {
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
}


/* Header */
.header {
   width: 100%;
   padding-top: 40px;

   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
}

.header__inner {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.header__logo {
   font-size: 30px;
   font-weight: 700;
   color: #fff;
}


/* Nav */
.nav {
   font-size: 14px;
   text-transform: uppercase;
}

.nav__link {
   display: inline-block;
   vertical-align: top;
   margin: 0 15px;
   position: relative;

   color: #fff;
   text-decoration: none;

   transition: color .1s linear;
}

.nav__link:after {
   content: "";
   display: block;
   width: 100%;
   height: 3px;

   background-color: #fce38a;
   opacity: 0;

   position: absolute;
   top: 100%;
   left: 0;
   z-index: 1;

   transition: opacity .1s linear;
}

.nav__link:hover {
   color: #fce38a;
}

.nav__link:hover:after,
.nav__link.active:after {
   opacity: 1;
}

.nav__link.active {
   color: #fce38a;
}


/* Nav toggle */
.nav-toggle {
   width: 30px;
   padding: 10px 0;
   display: none;

   font-size: 0;
   color: transparent;

   border: 0;
   background: none;
   cursor: pointer;

   position: absolute;
   top: 24px;
   right: 24px;
   z-index: 1;
}

.nav-toggle:focus {
   outline: 0;
}

.nav-toggle__item {
   display: block;
   width: 100%;
   height: 3px;

   background-color: #fff;

   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   margin: auto;

   transition: background .2s linear;
}

.nav-toggle.active .nav-toggle__item {
   background: none;
}

.nav-toggle__item:before,
.nav-toggle__item:after {
   content: "";
   width: 100%;
   height: 3px;

   background-color: #fff;

   position: absolute;
   left: 0;
   z-index: 1;

   transition: transform .2s linear;
}

.nav-toggle__item:before {
   top: -8px;
}

.nav-toggle__item:after {
   bottom: -8px;
}

.nav-toggle.active .nav-toggle__item:before {
   transform-origin: left top;
   transform: rotate(45deg) translate3d(0px, -2px, 0)
}

.nav-toggle.active .nav-toggle__item:after {
   transform-origin: left bottom;
   transform: rotate(-45deg) translate3d(0px, 3px, 0);
}



/* Intro */
.intro {
   display: flex;
   flex-direction: column;
   justify-content: center;
   width: 100%;
   height: 100vh;

   background: url("../images/intro.jpg") center no-repeat;
   -webkit-background-size: cover;
   background-size: cover;
}

.intro__inner {
   width: 100%;
   max-width: 880px;
   margin: 0 auto;

   text-align: center;
}

.intro__title {
   color: #fff;
   font-size: 150px;
   font-weight: 700;
   text-transform: uppercase;
   line-height: 1;
}

.intro__title:after {
   content: "";
   display: block;
   width: 70px;
   height: 4px;
   margin: 80px auto 0;

   background-color: #fff;
}

/* Section */
.section {
   padding: 80px 0;
}

.section__header {
   width: 100%;
   max-width: 950px;
   margin: 0 auto 40px;

   text-align: center;
}

.section__title {
   font-size: 40px;
   font-weight: 700;
   color: rgb(54, 36, 36);
   text-transform: uppercase;
}

.section--clients {
   background: #f5f5f5;
}

.section--map {
   padding: 40px 0;
   background: #e6e6e6 
}


.section__title:after {
   content: "";
   display: block;
   width: 50px;
   height: 4px;
   margin: 30px auto;

   background-color: #248f7d;
}

.section__text{
   font-size: 15px;
   color: #999;
}


/* Card */
.card {
   margin-top: 80px;
   display: flex;
   justify-content: space-between;
}

.card__item {
   width: 380px;
   position: relative;
   background-color: #95e1d3;
}

.card__item:hover .card__img {
   transform: translate3d(-10px, -10px, 0);
}

.card__item:hover .card__img img {
   opacity: .1;
}

.card__item:hover .card__text {
   opacity: 1;
}


.card__inner {
   position: relative;
   background-color: #95e1d3;
}

.card__inner:hover .card__img {
   transform: translate3d(-10px, -10px, 0);
}

.card__inner:hover .card__img img {
   opacity: .1;
}

.card__inner:hover .card__text {
   opacity: 1;
}


.card__img {
   background: linear-gradient(to bottom, #f38181, #fce38a);

   transition: transform .2s linear;
}

.card__img img {
   display: block;
   transition: opacity .1s linear;
}

.card__text {
   width: 100%;

   font-size: 18px;
   color: #fff;
   text-transform: uppercase;
   font-weight: 700;
   text-align: center;
   opacity: 0;

   position: absolute;
   top: 50%;
   left: 0;
   z-index: 2;
   transform: translate3d(0, -50%, 0);

   transition: opacity .2s linear;
}


.card__info {
   margin-top: 20px;

   text-align: center;
}

.card__name {
   margin-bottom: 5px;

   font-size: 14px;
   color: #333;
   text-transform: uppercase;
}

.card__prof {
   font-size: 15px;
   font-style: italic;
   font-weight: 300;
   color: #999;
}



/* Stat */
.stat {
    background-color: #e7e985;
}

.stat {
    display: flex;
}

.stat__item {
    flex: 1 1 0;
    padding: 70px 25px;

    border-left: 1px solid #b5eae0;

    text-align: center;
    color: #fff;
}

.stat__item:last-child {
    border-right: 1px solid #b5eae0;
}

.stat__count {
    margin-bottom: 10px;

    font-size: 72px;
    font-weight: 700;
    line-height: 1;
}

.stat__text {
    font-size: 14px;
    text-transform: uppercase;
}

/* Services */

.services {
   display: flex;
}

.services__item {
   flex: 1 1 0;
   padding-left: 85px;
   padding-right: 35px;
   position: relative;
}

.services__icon {
   position: absolute;
   top: 0;
   left: 28px;
   z-index: 1;
}

.services__title {
   margin-bottom: 15px;

   font-size: 14px;
   color: black;
   text-transform: uppercase;
}

.services__text {
   font-size: 15px;
   color: #999;
}

 /* We do */
 .wedo {
    display: flex;
 }

 .wedo__item {
    width: 50%;
 }

/* Accordion */

.accordion__item {
   margin-bottom: 10px;
   border: 1px solid #e5e5e5;
}

.accordion__item.active .accordion__content {
   display: block;
}

.accordion__item.active .accordion__header {
   border-bottom-color: #e5e5e5;
}

.accordion__item.active .accordion__header:after {
   transform: translateY(-50%) rotate(-45deg);
   margin-top: 5px;
}

.accordion__header {
   padding: 15px 20px 15px 65px;
   position: relative;

   border-bottom: 1px solid transparent;
   cursor: pointer;
}

.accordion__header:after {
   content: "";
   display: block;
   width: 16px;
   height: 16px;

   border-top: 2px solid #ccc;
   border-right: 2px solid #ccc;

   position: absolute;
   top: 50%;
   right: 20px;
   z-index: 1;

   transform: translateY(-50%) rotate(135deg);
}

.accordion__icon {
   position: absolute;
   top: 50%;
   left: 20px;
   z-index: 1;

   transform: translateY(-50%);
}

.accordion__content {
   padding: 15px 20px;
   display: none;

   font-size: 15px;
   color: #999;
   font-style: italic;
   font-weight: 300;
}

.accordion__title {
   font-size: 14px;
   color: #333;
   text-transform: uppercase;
}

/* Social */
.social {
   display: flex;
   justify-content: center;
}

.social__item {
   width: 55px;
   height: 55px;
   padding: 12px 10px;

   background-color: #fce38a;
   border-right: 1px solid #f38181;

   font-size: 30px;
   text-decoration: none;
   color: #f38181;
   line-height: 1;

   transition: background .1s linear, color .1s linear;
}

.social__item:last-child {
   border-right: 0;
}

.social__item:hover {
   color: #fff;
   background-color: #f38181;
}


/* Clients */

.clients {
   display: flex;
   flex-wrap: wrap;
}

.clients__item {
   width: 50%;
   padding: 0 45px 0 175px;
}

.clients__photo {
   width: 110px;
   height: 110px;

   border-radius: 50%;

   position: absolute;
   top: 0;
   left: 40px;
   z-index: 1;
}


.clients__name {
   margin-bottom: 5px;

   font-size: 14px;
   color: #333;
   text-transform: uppercase;
}

.clients__prof {
   font-size: 15px;
   color: #333;
   font-style: italic;
   font-weight: 300;
}

.clients__text {
   font-size: 15px;
   color: #999;
}

.clients__text:before {
   content: "";
   display: block;
   width: 60px;
   height: 3px;
   margin: 15px 0;

   background-color: #f38181;
}

/* Map */

.map {
   text-align: center;
}

.map__title {
   font-size: 24px;
   color: #f38181;
   font-weight: 700;
   text-transform: uppercase;
}

.map__title:after {
   content: "";
   display: block;
   width: 60px;
   height: 3px;
   margin: 15px auto 0;

   background-color: #f38181;
}

.map__title a {
   color: inherit;
   text-decoration: none;
}

.map__title a:hover {
   text-decoration: underline;
}

/* Footer */
.footer {
   padding-top: 65px;

   background-color: #f8f8f8;
}

.footer__inner {
   display: flex;
   justify-content: space-between;
   padding-bottom: 65px;
}

.footer__col--first {
   width: 40%;
}


.footer__col--second {
   width: 29%;
}

.footer__col--third {
   width: 22%;
}

.footer__logo {
   margin-bottom: 30px;

   font-size: 46px;
   font-weight: 700;
   color: #ccc;
}


.footer__social {
   margin-bottom: 25px;
}

.footer__social-header {
   padding-bottom: 15px;

   font-size: 14px;
   color: #333;

   border-bottom: 1px solid #e5e5e5;
}

.footer__social-header b {
   font-size: 18px;
}

.footer__social-content {
   padding-top: 15px;

   font-size: 15px;
   color: #f38181;
   font-style: italic;
   font-weight: 300;
}

.footer__social-content a {
   display: inline-block;
   vertical-align: middle;
   margin-left: 10px;

   font-size: 18px;
   color: #248f7d;
}

/* Subscribe */
.subscribe {
   width: 100%;
   max-width: 380px;
   display: flex;
}

.subscribe__input {
   width: 60%;
   height: 40px;
   padding: 12px;

   background: #fff;
   border: 1px solid #e7e7e7;
   border-right: 0;

   font-family: 'Montserrat', sans-serif;
   font-size: 15px;
   line-height: 1.1;
   color: #333;
   font-style: italic;
   font-weight: 300;
}

.subscribe__input::placeholder {
   color: #ccc;
}

.subscribe__input:focus {
   outline: 0;
   border-color: #95e1d3;
}


.subscribe__btn {
   width: 40%;
   height: 40px;
   padding: 12px 30px;

   background-color: #95e1d3;
   border: 0;
   cursor: pointer;

   font-family: 'Montserrat', sans-serif;
   font-size: 14px;
   line-height: 1.1;
   font-weight: 700;
   color: #fff;
   text-transform: uppercase;

   transition: background .2s linear;
}

.subscribe__btn:hover {
   background-color: #74c7b8;
}

.subscribe__btn:focus {
   outline: 0;
}



/* Blogs */
.blogs__item {
   display: flex;
   align-items: center;
   margin-bottom: 30px;
}

.blogs__img {
   width: 120px;
   height: 80px;
}

.blogs__content {
   padding-left: 20px;
}

.blogs__title {
   display: block;
   margin-bottom: 5px;

   color: #333;
   font-size: 12px;
   line-height: 1.5;
   text-transform: uppercase;
   text-decoration: none;
}

.blogs__title:hover {
   text-decoration: underline;
}

.blogs__date {
   font-size: 13px;
   color: #999;
   font-style: italic;
   font-weight: 300;
}


/* Copyright */
.copyright {
   padding: 20px 0;

   border-top: 1px solid #e5e5e5;

   font-size: 14px;
   color: #333;
   text-align: center;
}

.copyright span {
   color: #f38181;
}
