body {

  font-family: 'Open Sans', sans-serif;

  color: #838594;

  font-size: 20px;

  line-height: 1.6;

  letter-spacing: 0.02em;

}



h1, h2, h3, h4, h5, h6 {

  font-family: 'Libre Baskerville', serif;

  font-weight: normal;

  color: #b30505;

  letter-spacing: 0;

  line-height: 0.9;

  margin: 0;

}



h1 { font-size: 60px }

h2 {

  font-size: 56px;

  margin-bottom: 60px;

}



* { box-sizing: border-box }

img { max-width: 100% }



a {

  text-decoration: none;

  color: #b30505;

  transition: 400ms ease all;

}



a:focus, button:focus {

  outline: none;

}



p:not(:last-child) {

  margin-bottom: 30px;

}



p:last-child {

  margin-bottom: 0;

}



p:first-of-type {

  margin-top: 0;

}



ul {

  list-style-type: none;

  padding: 0;

  margin: 0;

}



.section-padding {

  padding-top: 120px;

  padding-bottom: 120px;

}



.flex-horizontal {

  display: flex;

  align-items: center;

  justify-content: space-between;

}



.text-white {

  color: #fff;

}



.text-right {

  text-align: right;

}



.text-center {

  text-align: center;

}



.bg-gray {

  background-color: #f3f7fb;

}



.bg-darkgray {

  background-color: #353846;

}



.bg-primary {

  background-color: #b30505;

}



.container {

  max-width: 1200px;

  padding-left: 20px;

  padding-right: 20px;

  margin: auto;

}



@media (max-width: 1400px) {

  h1, h2, h3, h4, h5, h6 { line-height: 1.25 }



  h1 {

    font-size: 50px;

  }



  h2 {

    font-size: 40px;

    margin-bottom: 40px;

  }

}



@media (max-width: 991px) {



  body {

    font-size: 16px;

    line-height: 1.7;

  }



  h1 {

    font-size: 30px;

  }

  h2 {

    font-size: 30px;

    margin-bottom: 20px;

  }



  p:not(:last-child) {

      margin-bottom: 20px;

  }



  .flex-horizontal {

    flex-direction: column;

  }

}



@media (max-width: 767px) {

  h1, h2 {

    text-align: center;

  }

}



@media (max-width: 350px) {

  .container {

    padding-left: 15px;

    padding-right: 15px;

  }

}



/* BUTTONS */



.btn-list {

  display: flex;

}



.btn-list li:not(:last-child) {

  margin-right: 30px;

}



.btn {

  display: inline-block;

  padding: 15px 25px;

  font-size: 16px;

  text-transform: uppercase;

  letter-spacing: 0.16em;

  font-weight: 600;

  position: relative;

  border-radius: 50px;

  border: 2px solid transparent;

  line-height: 1.15;

  transition: 400ms ease all;

  text-align: left;

}



.btn:hover, .btn:focus {

  background-color: #c17f79;

  border-color: #c17f79;

  color: #fff;

  cursor: pointer;

}



.btn:active {

  background-color: #98615c;

  border-color: #98615c;

  color: #fff;

}



.btn-icon {

  padding-left: 65px;

}



.btn-icon i {

  position: absolute;

  top: 0; left: 25px; bottom: 0;

  margin: auto;

  height: 30px;

  font-size: 30px;

}



.btn-primary {

  background-color: #b30505;

  border-color: #b30505;

  color: #fff;

}



.btn-invisible {

  padding-left: 0!important;

  padding-right: 0!important;

}



.btn-invisible:hover, .btn-invisible:focus, .btn-invisible:active {

  background-color: transparent;

  border-color: transparent;

  color: #c17f79;

  opacity: 0.8;

}



.btn-outlined {

  border-color: #b30505;

}



.btn-outlined-white {

  border-color: #fff;

  color: #fff;

}



@media (max-width: 767px) {

  .btn {

    display: block;

    font-size: 14px;

    padding: 15px 25px;

  }



  .btn-list {

    flex-direction: column;

    flex-flow: column-reverse;

  }



  .btn-list li {

    width: 100%;

  }



  .btn-list li:not(:first-child) {

    margin-right: 0;

    margin-bottom: 20px;

  }



  .btn-icon {

    padding-left: 55px;

  }



  .btn-icon i {

    font-size: 24px;

    height: 24px;

    left: 20px;

  }

}





/* HEADER */



.menu {

  padding: 20px 25px;

  position: fixed;

  top: 0; right: 0; left: 0;

  background-color: #fff;

  box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.05);

  display: flex;

  justify-content: space-between;

  align-items: center;

  z-index: 9;

  line-height: 1.15;

}



@media (max-width: 1400px) {

  .menu {

    padding: 15px 25px;

  }



  .menu img {

    width: 280px;

  }



  .menu .btn {

    padding: 12px 20px;

    font-size: 15px;

  }



  .menu .btn-icon {

    padding-left: 55px;

  }



  .menu .btn-icon i {

    font-size: 24px;

    height: 24px;

    left: 20px;

  }

}



@media (max-width: 991px) {

  .menu {

    padding: 10px 15px 10px;

    position: relative;

  }

  .menu .btn-list li {

    margin-bottom: 0!important;

  }

  .menu-left img {

    width: 260px;

  }

  .hidden-mobile {

    display: none;

  }

}



@media (max-width: 350px) {

  .menu img {

    width: 220px;

  }

}





/* HERO */



.hero {

  background-size: cover;

  background-position: center;

  margin-top: 115px;

  padding: 140px 0;

}



.hero-text {

  max-width: 670px;

  margin: 50px 0;

}





@media (max-width: 1400px) {

  .hero {

    margin-top: 88px;

  }

}



@media (max-width: 991px) {

  .hero {

    padding: 50px 0;

    margin-top: 0;

    background-position: 20% 100%;

  }

  .hero-text {

    margin: 25px 0 30px;

  }

}



/* FEATURES */





.full-widget {

  display: flex;

  align-items: center;

  justify-content: space-around;

  padding-top: 35px;

  padding-bottom: 35px;

  flex-wrap: wrap;

}



.full-single {

  display: flex;

  align-items: center;

}



.full-icon {

  display: flex;

}



.full-icon i {

  font-size: 70px;

}



.full-body {

  margin-left: 20px;

}



.full-title {

  color: inherit;

  margin-bottom: 10px;

}



.full-tag {

  text-transform: uppercase;

  font-weight: 600;

  font-size: 15px;

  background-color: #b30505;

  color: #fff;

  padding: 5px 25px;

/*  border-radius: 10px;*/

  display: inline-block;

  letter-spacing: 0.16em;

}





@media (max-width: 1400px) {

  .full-widget {

    padding: 25px 0;

  }

  .full-title {

    margin-bottom: 3px;

    font-size: 16px;

  }

  .full-icon i {

    font-size: 50px;

  }

  .full-tag {

    font-size: 12px;

    padding: 3px 12px;

    border-radius: 7px;

  }

}



@media (max-width: 991px) {

  .full-widget {

    padding: 15px;

  }

  .full-single:not(:last-child) {

    margin-bottom: 20px;

  }

  .full-single {

    min-width: 310px;

  }

}



@media (max-width: 650px) {

  .full-widget {

    flex-direction: column;

  }

}





/* PERSONAL */



.section-personal-passion img {

  width: 350px;

}



.section-personal-passion-content {

  padding-left: 50px;

}



.circle-widget {

  justify-content: space-around;

  text-align: center;

  padding-top: 100px;

}



.circle-single {



}



.circle-icon {

  border: 4px solid #b6c3d0;

  border-radius: 100px;

  width: 140px; height: 140px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: auto;

  color: #b6c3d0;

}



.circle-icon i {

  font-size: 78px;

}



.circle-title {

  margin-top: 30px;

  color: inherit;

  font-size: 30px;

  line-height: 1.25;

}



.circle-title strong {

  display: block;

}



@media (max-width: 991px) {

  .section-personal-passion img {

    width: 150px;

    margin-bottom: 20px;

  }

  .section-padding {

    padding-top: 50px;

    padding-bottom: 50px;

  }

  .section-personal-passion-content {

    padding-left: 0;

  }

  .section-personal-passion-content h2 {

    text-align: center;

  }

  .circle-widget {

    padding-top: 15px;

    flex-direction: row;

    flex-wrap: wrap;

  }

  .circle-single:not(:last-child) {

    margin-bottom: 20px;

  }

  .circle-title {

    margin-top: 10px;

    font-size: 20px;

  }

  .circle-icon {

    width: 100px;

    height: 100px;

    border-width: 3px;

  }

  .circle-icon i {

    font-size: 50px;

  }

  .circle-icon img {

    height: 50px;

  }

}





/* SERVICES */



.section-services h2 {

  margin-bottom: 70px;

}



.service-widget {



}



.service-single {

  display: flex;

}



.service-single:not(:last-child) {

  margin-bottom: 65px;

}



.service-img {

  width: 60%;

  background-size: cover;

  margin-right: 50px;

}



.service-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 30px;

}



.service-header h3 {

  font-size: 35px;

}



.service-price {

  font-weight: 600;

  font-size: 20px;

}



.service-body {

  font-size: 16px;

  min-width: 100%;

}



.service-features {

  column-count: 2;

}



.service-features li {

  display: block;

  padding-left: 25px;

  position: relative;

}



.service-features li i {

  position: absolute;

  top: 0;

  left: 0;

}



.section-services-footnote {

  margin-top: 80px;

  font-size: 15px;

}



@media (max-width: 1400px) {

  .section-services-footnote {

    margin-top: 20px;

    font-size: 12px;

  }

}



@media (max-width: 991px) {

  .section-services h2 {

    margin-bottom: 30px;

  }

  .service-header h3 {

    font-size: 22px;

  }

  .service-price {

    font-size: 14px;

  }

  .service-body {

    font-size: 14px;

  }

  .text-small {

    font-size: 12px;

  }

  .service-features {

    font-size: 12px;

    line-height: 1.15;

  }

  .service-features li {

    margin-bottom: 5px;

  }

  .service-features li i {

    font-size: 16px;

    margin-right: 10px;

  }

}



@media (max-width: 761px) {

  .service-header {

    flex-direction: column;

    align-items: flex-start;

    margin-bottom: 15px;

  }

}



@media (max-width: 650px) {

  .service-single:not(:last-child) {

    margin-bottom: 40px;

  }

}





/* CONTACT */



.contact-widget {

  align-items: stretch;

  padding-top: 30px;

}



.contact-widget > div {

  width: 50%;

}



.contact-details {

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  margin-left: 50px;

}



.call-widget {

  padding: 50px;

  margin-bottom: 70px;

}



.call-widget h3 {

  font: inherit;

  font-weight: 600;

  font-size: 24px;

}



.call-widget p {

  margin-top: 5px;

  max-width: 820px;

  margin-left: auto;

  margin-right: auto;

}



.call-number {

  font-size: 32px;

  display: flex;

  /*justify-content: center;

  align-items: center;*/

  font-weight: 600;

}



.call-icon {

  font-size: 70px;

  margin-right: 25px;

}



.text-feature {

  font-size: 16px;

  margin-bottom: 25px;

}



.text-title {

  font: inherit;

  color: inherit;

  font-weight: bold;

}



.text-description {

  margin-top: 0;

}



.contact-icon-list {

  font-size: 16px;

}



.contact-icon-list li {

  display: flex;

  align-items: center;

  padding: 5px 0;

  font-weight: 700;

}



.contact-icon-list a {

  color: inherit;

  display: flex;

  align-items: center;

}



.contact-icon-list i {

  font-size: 36px;

  margin-right: 20px;

}



#map {

  height: 100%;

  width: 100%;

}



.social-widget {

  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

}



.social-single {

  color: inherit;

  display: flex;

  align-items: center;

}



.social-icon {



}



.social-icon i {

  font-size: 72px;

}



.social-text {

  padding-left: 15px;

}



.social-text strong {

  display: block;

}



@media (max-width: 991px) {

  .call-widget {

    padding: 30px 20px;

    margin-bottom: 25px;

  }

  .call-widget h3 {

    line-height: 1.15;

    margin-bottom: 20px;

  }

  .call-number {

    font-size: 26px;

  }

  .call-icon {

    font-size: 45px;

    margin-right: 15px;

  }

  #map {

    height: 200px;

  }

}



@media (max-width: 350px) {

  .call-number {

    font-size: 22px;

  }

}





/* FORM */



label {

  display: block;

  font-weight: bold;

  margin-bottom: 10px;

}



input, textarea {

  background-color: #ebeff3;

  border: none;

  resize: none;

  padding: 15px 20px;

  width: 100%;

  color: inherit;

}



form button {

  width: 100%;

}



fieldset {

  border: none;

  padding: 0;

  margin: 0;

}



@media (max-width: 991px) {

  .contact-widget {

    padding-top: 0px;

  }

  .contact-widget > div {

    width: auto;

  }

  .contact-details {

    margin-left: 0;

    margin-top: 15px;

  }

  .social-widget, .contact-icon-list {

    margin-top: 40px;

  }

}





/* FOOTER */



footer {

  padding: 70px;

}



.footer-content {

  max-width: 950px;

  font-size: 15px;

}



.footer-content h2 {

  font: inherit;

  color: inherit;

  margin-bottom: 30px;

}



footer img {

  margin-right: 50px;

}



@media (max-width: 991px) {

  footer {

    padding: 40px;

  }



  footer img {

    margin-right: 0;

    margin-bottom: 30px;

  }



  .footer-content p, .footer-content h2 {

    text-align: left;

    font-size: 12px;

    margin-bottom: 10px;

  }

}

