/*-----------------------------------------

	Theme Name: Denzil
	Theme URI: https://themeforest.net/item/denzil-multipage-multipurpose-html-template/24151669
	Description: Multi-Page Multi-Purpose Html Template
	Author: Roelnie
	Author URI: http://themeforest.net/user/roelnie
	Version: 1.0

	---------------------------------*/
/* ***********************************
	Table Of Content

	1 Basic
		1.1 Typography
		1.2 Button
		1.3 Navbar
	2 Home Page
		2.1 Home block
		2.2 Abot block
		2.3 Services block
		2.4 Portfolio block
		2.5 Stats block
		2.6 Comment block
		2.7 Question block
	3 About Page
		3.1 Skill block
		3.2 Team block
	4 Portfolio Page
		4.1 Portfolio block
	5 Portfolio Details Page
		5.1 Portfolio Details block
	6 Pricing Page
		6.1 Pricing block
	7 Contact Page
		7.1 Contact block
		7.2 Map block
	8 Footer
	9 Responsive

	*********************************** */
/* *******************
	[ 1 Start Basic ]
	******************* */

:root {
  --primary: #2878eb;
  --primary-color: red;
  --text-color: #281f05;
  --primary-disabled-color: #f5c25440;
  --text-disabled-color: #281f06;
  --primary-card-bg: #f5c25466;
  --secondary: #ffc107;
  --secondary-text-color: #fff;
  --light: #ecf4ff;
  --dark: #120f2d;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none !important;
  list-style: none;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 1.2;
  color: #424242;
  background-color: #fff;
  -webkit-font-smoothing: antialised;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  color: red;
}

body input:required:valid,
body textarea:required:valid {
  color: green;
}

img {
  max-width: 100%;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clear {
  clear: both;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

a {
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}

/* Loading */
.loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  z-index: 99999999999999;
}

/* Block */
section {
  position: relative;
  padding: 100px 0;
}

/* Section background image */
.bg_img {
  background-repeat: no-repeat !important;
  background-position: center center !important;
  -webkit-background-size: cover !important;
  background-size: cover !important;
}

/* Color Background */
.red_bg {
  background-color: #ff584b;
}

.blue_bg {
  background-color: #7bc8bc;
}

.yellow_bg {
  background-color: #f5c254;
}

/* -----------------------------
	[ 1.1 Start Typography ]
	----------------------------- */
h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

h1 {
  margin: 0 0 70px;
  font-size: 30px;
  line-height: 38px;
}

h2 {
  margin: 0 0 70px;
  font-size: 30px;
  line-height: 38px;
}

h3 {
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 32px;
}

h4 {
  margin: 0 0 15px;
  font-size: 20px;
  line-height: 28px;
}

p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 24px;
}

.mb30 {
  margin-bottom: 30px;
}

.mt70 {
  margin-top: 70px;
}

.mt100 {
  margin-top: 100px;
}

/* -----------------------------
	[ 1.1 End Typography ]
	----------------------------- */
/* -----------------------------
	[ 1.2 Start Button ]
	----------------------------- */
.order {
  display: block;
  width: 180px;
  margin: 0;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 50px;
  color: #fff;
  background-color: #ff584b;
  border: none;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.order:hover {
  color: #fff;
  -webkit-transform: translate(0, -10px);
  -ms-transform: translate(0, -10px);
  transform: translate(0, -10px);
}
.order.blue {
  background-color: #7bc8bc;
}
.order.yellow {
  background-color: #f5c254;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .order {
  background-color: #7bc8bc;
}

/* +++++++ End Agency Demo +++++++ */
/* -----------------------------
	[ 1.2 End Button ]
	----------------------------- */
/* -----------------------------
	[ 1.3 Start Navbar ]
	----------------------------- */
nav.nav_bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 12px 0;
  background-color: #f5c254;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  z-index: 999;
}
nav.nav_bar .row {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
nav.nav_bar .logo {
  padding: 0 15px;
}
nav.nav_bar .menu {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0 15px;
  list-style-type: none;
}
nav.nav_bar .menu li {
  position: relative;
  margin-right: 25px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 24px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
nav.nav_bar .menu li > ul {
  position: absolute;
  top: 100%;
  left: -10px;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 200px;
  margin: 0;
  padding: 25px 0 0px;
  list-style-type: none;
  background-color: #f5c254;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}
nav.nav_bar .menu li > ul li {
  margin: 0;
  padding: 10px 15px;
  font-weight: normal;
  color: #424242 !important;
}
nav.nav_bar .menu li > ul li a {
  color: #424242 !important;
}
nav.nav_bar .menu li > ul li a:hover {
  color: #ff584b !important;
}
nav.nav_bar .menu li:hover {
  color: #ff584b;
}
nav.nav_bar .menu li:hover > ul {
  padding-bottom: 10px;
  visibility: visible;
  opacity: 1;
}
nav.nav_bar .menu li:last-child {
  margin-right: 0;
}
nav.nav_bar .menu li a {
  color: #424242;
}
nav.nav_bar .menu li a:hover {
  color: #ff584b;
}
nav.nav_bar .menu li.active a {
  color: #ff584b;
}

nav.nav_scroll {
  position: fixed;
  top: -100px;
  padding: 15px 0;
  background-color: #f5c254;
  -webkit-transition: -webkit-transform 1s 0.2s;
  transition: -webkit-transform 1s 0.2s;
  -o-transition: transform 1s 0.2s;
  transition: transform 1s 0.2s;
  transition: transform 1s 0.2s, -webkit-transform 1s 0.2s;
  -webkit-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  transform: translate(0, 100px);
}
nav.nav_scroll .menu li a:hover,
nav.nav_scroll .menu li a.active {
  color: #ff584b;
}
nav.nav_scroll .menu li > ul {
  padding-top: 15px;
}

.mob_button {
  position: relative;
  display: none;
  width: 24px;
  height: 18px;
  margin-right: 15px;
  background-color: transparent;
  border: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  z-index: 55;
}
.mob_button:focus {
  outline: none;
}
.mob_button .line_menu {
  display: block;
  width: 100%;
  height: 3px;
  margin: 0px 0 4px;
  background-color: #424242;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.mob_button .line_menu:last-child {
  margin-bottom: 0;
}

.mob_button.active .line_menu {
  width: 20px;
  margin: -3px 0 0;
  margin-left: 1px;
}
.mob_button.active .line_menu:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mob_button.active .line_menu:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mob_button.active .line_menu:last-child {
  opacity: 0;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo nav.nav_scroll,
.agency_demo nav.nav_bar {
  background-color: #7bc8bc;
}
.agency_demo nav.nav_scroll .menu li:hover,
.agency_demo nav.nav_bar .menu li:hover {
  color: #fff;
}
.agency_demo nav.nav_scroll .menu li .child_menu,
.agency_demo nav.nav_bar .menu li .child_menu {
  background-color: #7bc8bc;
}
.agency_demo nav.nav_scroll .menu li .child_menu li a:hover,
.agency_demo nav.nav_bar .menu li .child_menu li a:hover {
  color: #fff !important;
}
.agency_demo nav.nav_scroll .menu li a:hover,
.agency_demo nav.nav_scroll .menu li a.active,
.agency_demo nav.nav_bar .menu li a:hover,
.agency_demo nav.nav_bar .menu li a.active {
  color: #fff;
}
.agency_demo nav.nav_scroll .menu li.active a,
.agency_demo nav.nav_bar .menu li.active a {
  color: #fff;
}

/* +++++++ End Agency Demo +++++++ */
/* -----------------------------
	[ 1.3 End Navbar ]
	----------------------------- */
/* Slider Dots */
.slick-dotted {
  margin: 0 -15px;
  padding-bottom: 60px;
}
.slick-dotted .slide {
  padding: 0 15px;
}

.slick-dots {
  bottom: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 15px;
}
.slick-dots li {
  width: 40px;
  height: 10px;
  margin: 0;
  margin-right: 10px;
  background-color: #7bc8bc;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.slick-dots li:hover {
  -webkit-transform: translate(0, -2px);
  -ms-transform: translate(0, -2px);
  transform: translate(0, -2px);
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots li button {
  width: 100%;
  height: 100%;
}
.slick-dots li button:before {
  content: "";
  display: none;
}
.slick-dots li.slick-active {
  background-color: #ff584b;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .slick-dots li {
  background-color: #f5c254;
}
.agency_demo .slick-dots li.slick-active {
  background-color: #7bc8bc;
}

/* +++++++ End Agency Demo +++++++ */
/* Skider arrow */
.slick-prev,
.slick-next {
  top: 0;
  bottom: 0;
  display: block;
  width: 30px;
  height: 30px;
  margin: auto;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  background-color: #7bc8bc;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  z-index: 3;
}
.slick-prev:before,
.slick-next:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 12px;
  height: 12px;
  background: none;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(-45deg) translate(-1px, -1px);
  -ms-transform: rotate(-45deg) translate(-1px, -1px);
  transform: rotate(-45deg) translate(-1px, -1px);
  opacity: 1;
}
.slick-prev:focus,
.slick-prev:hover,
.slick-next:focus,
.slick-next:hover {
  background-color: #ff584b;
}

.slick-prev {
  left: 15px;
}
.slick-prev:before {
  -webkit-transform: rotate(135deg) translate(-1px, -1px);
  -ms-transform: rotate(135deg) translate(-1px, -1px);
  transform: rotate(135deg) translate(-1px, -1px);
}

.slick-next {
  right: 15px;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .slick-prev,
.agency_demo .slick-next {
  background-color: #f5c254;
}
.agency_demo .slick-prev:focus,
.agency_demo .slick-prev:hover,
.agency_demo .slick-next:focus,
.agency_demo .slick-next:hover {
  background-color: #7bc8bc;
}

/* +++++++ End Agency Demo +++++++ */
/* Breadcrumb block */
.breadcrumb_block {
  padding: 100px 0 25px;
  background-color: #f8f8f8;
}
.breadcrumb_block .breadcrumb {
  margin: 0;
  padding: 0;
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.breadcrumb_block .breadcrumb .breadcrumb-item {
  font-size: 14px;
  line-height: 24px;
}
.breadcrumb_block .breadcrumb .breadcrumb-item a {
  color: #424242;
}
.breadcrumb_block .breadcrumb .active {
  color: #ff584b;
}
.breadcrumb_block .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .breadcrumb_block .breadcrumb .active {
  color: #7bc8bc;
}

/* +++++++ End Agency Demo +++++++ */
/* *******************
	[ End Basic ]
	******************* */
/* *******************
	[ 2 Home Page ]
	******************* */
/* -----------------------------
	[ 2.1 Start Home block ]
	----------------------------- */
.home_block {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100vh;
  max-height: 980px;
  padding: 140px 0;
  background-color: #f5c254;
  overflow: hidden;
}
.home_block .container {
  position: relative;
  z-index: 2;
}
.home_block h1 {
  margin-bottom: 30px;
  font-size: 60px;
  line-height: 70px;
}
.home_block h5 {
  margin: 0 0 30px;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 36px;
}
.home_block .box_img {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
  background-color: #ff584b;
  z-index: -1;
}
.home_block .box_img:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ff584b;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  z-index: -1;
}
.home_block .box_img img {
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.home_block .box_img .box_figure {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.home_block .box_img .box_figure img {
  position: absolute;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.home_block .box_img .box_figure .figure_1 {
  top: -105px;
  right: 40px;
  -webkit-animation: anim_figure_1 8s linear infinite;
  animation: anim_figure_1 8s linear infinite;
}
.home_block .box_img .box_figure .figure_2 {
  top: -106px;
  left: -84px;
  -webkit-animation: anim_figure_2 8s linear infinite;
  animation: anim_figure_2 8s linear infinite;
}
.home_block .box_img .box_figure .figure_3 {
  bottom: -155px;
  right: -69px;
  -webkit-animation: anim_figure_3 8s linear infinite;
  animation: anim_figure_3 8s linear infinite;
}
.home_block .box_img .box_figure .figure_4 {
  bottom: -122px;
  left: -160px;
  -webkit-animation: anim_figure_4 8s linear infinite;
  animation: anim_figure_4 8s linear infinite;
}

.slider_bg,
.slider_top {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.slider_bg .slick-list,
.slider_bg .slick-track,
.slider_top .slick-list,
.slider_top .slick-track {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.slider_bg .slick-list .slide,
.slider_bg .slick-track .slide,
.slider_top .slick-list .slide,
.slider_top .slick-track .slide {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 1.4s ease-in !important;
  -o-transition: opacity 1.4s ease-in !important;
  transition: opacity 1.4s ease-in !important;
}
.slider_bg .slick-list .slide .container,
.slider_bg .slick-track .slide .container,
.slider_top .slick-list .slide .container,
.slider_top .slick-track .slide .container {
  position: relative;
  z-index: 5;
}
.slider_bg .slick-list .slide:before,
.slider_bg .slick-track .slide:before,
.slider_top .slick-list .slide:before,
.slider_top .slick-track .slide:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background-color: rgb(255 255 255 / 0%);
  z-index: 1;
}

.slider_top {
  z-index: 1;
}
.slider_top .slick-list,
.slider_top .slick-track {
  z-index: 1;
}
.slider_top .slide {
  padding-left: 35px;
  padding-right: 35px;
}

.home_block_paralax {
  background-repeat: no-repeat !important;
  background-position: center center !important;
  -webkit-background-size: cover !important;
  background-size: cover !important;
  background-attachment: fixed !important;
}
.home_block_paralax:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background-color: rgba(255, 255, 255, 0.8);
}

.home_bg_video:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}

.home_bg_video .bg_video {
  position: absolute;
  top: 0;
  left: -1000px;
  bottom: 0;
  right: -1000px;
  display: block;
  min-height: 100%;
  margin: auto;
  z-index: 0;
}

.no_overlay:before {
  background-color: transparent !important;
}

@-webkit-keyframes anim_figure_1 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  20% {
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
  }
  40% {
    -webkit-transform: translate(20px, -40px);
    transform: translate(20px, -40px);
  }
  60% {
    -webkit-transform: translate(40px, -20px);
    transform: translate(40px, -20px);
  }
  80% {
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes anim_figure_1 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  20% {
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
  }
  40% {
    -webkit-transform: translate(20px, -40px);
    transform: translate(20px, -40px);
  }
  60% {
    -webkit-transform: translate(40px, -20px);
    transform: translate(40px, -20px);
  }
  80% {
    -webkit-transform: translate(20px, 0);
    transform: translate(20px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes anim_figure_2 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(50px, -50px);
    transform: translate(50px, -50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes anim_figure_2 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(50px, -50px);
    transform: translate(50px, -50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes anim_figure_3 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-50px, 50px);
    transform: translate(-50px, 50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes anim_figure_3 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-50px, 50px);
    transform: translate(-50px, 50px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@-webkit-keyframes anim_figure_4 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  33% {
    -webkit-transform: translate(30px, 30px);
    transform: translate(30px, 30px);
  }
  66% {
    -webkit-transform: translate(30px, -30px);
    transform: translate(30px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes anim_figure_4 {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  33% {
    -webkit-transform: translate(30px, 30px);
    transform: translate(30px, 30px);
  }
  66% {
    -webkit-transform: translate(30px, -30px);
    transform: translate(30px, -30px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .home_block {
  text-align: center;
  background: none;
}
.agency_demo .home_block:before {
  background-color: rgba(66, 66, 66, 0.7);
}
.agency_demo .home_block h1 {
  margin-bottom: 10px;
  color: #fff;
}
.agency_demo .home_block h5 {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
}

.agency_demo .slider_bg .slide:before,
.agency_demo .slider_top .slide:before {
  background-color: rgba(66, 66, 66, 0.7);
}

.agency_demo .slider_bg .container,
.agency_demo .slider_top .container {
  position: relative;
  z-index: 2;
}

/* +++++++ End Agency Demo +++++++ */
/* -----------------------------
	[ 2.1 End Home block ]
	----------------------------- */
/* -----------------------------
	[ 2.2 Start About block ]
	----------------------------- */
.about_block {
  background-color: #fff;
}
.about_block h2 {
  margin-bottom: 30px;
}
.about_block .order {
  margin-top: 30px;
}
.about_block .box_img {
  position: relative;
  max-width: 540px;
  width: 100%;
  z-index: 1;
}
.about_block .box_img:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  display: block;
  background-image: url(../img/box_img_about_person.png);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .about_block .order {
  margin-right: 0;
  margin-left: 0;
}

.agency_demo .about_block .box_img:before {
  background-image: url(../img/box_img_about_agency.png);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
}

/* +++++++ End Agency Demo +++++++ */
/* -----------------------------
	[ 2.2 End About block ]
	----------------------------- */
/* -----------------------------
	[ 2.3 Start Services block ]
	----------------------------- */
.services_block {
  padding: 100px 0 70px;
  background-color: #f8f8f8;
}
.services_block .service_box {
  max-width: 350px;
  margin: 0 auto;
  height: 100%;
  padding: 30px;
  color: #fff;
  background-color: #ff584b;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.services_block .service_box:hover {
  -webkit-transform: translate(0, -10px);
  -ms-transform: translate(0, -10px);
  transform: translate(0, -10px);
}
.services_block .red_bg {
  background-color: #ff584b;
}
.services_block .blue_bg {
  background-color: #7bc8bc;
}
.services_block .yellow_bg {
  background-color: #f5c254;
}
.services_block p {
  margin-bottom: 0;
}
.services_block .box_icon {
  margin-bottom: 30px;
  font-size: 40px;
  line-height: 45px;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .services_block {
  text-align: center;
}

.agency_demo .service_box {
  background-color: #7bc8bc;
}

.agency_demo .yellow_bg {
  background-color: #f5c254;
}

/* +++++++ End Agency Demo +++++++ */
/* -----------------------------
	[ 2.3 End Services block ]
	----------------------------- */
/* -----------------------------
	[ 2.4 Start Portfolio block ]
	----------------------------- */
.portfolio_block {
  background-color: #fff;
  background-image: url(../img/bg_portfolio.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
}
.portfolio_block .slide {
  padding: 0 15px;
}
.portfolio_block .slide a {
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.portfolio_block .slide a:hover .box_text {
  bottom: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.portfolio_block .box_text {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  padding: 30px;
  background-color: #ff584b;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.portfolio_block .box_text h4 {
  margin-bottom: 5px;
}
.portfolio_block .box_text p {
  margin-bottom: 0;
  line-height: 20px;
}
.portfolio_block .slider_portfolio {
  margin: 0 -15px 50px;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .portfolio_block {
  text-align: center;
}
.agency_demo .portfolio_block .order {
  margin-right: auto;
  margin-left: auto;
}
.agency_demo .portfolio_block .box_text {
  background-color: #7bc8bc;
}

/* +++++++ End Agency Demo +++++++ */
/* -----------------------------
	[ 2.4 End Portfolio block ]
	----------------------------- */
/* -----------------------------
	[ 2.5 Start Stats block ]
	----------------------------- */
.stats_block {
  padding: 100px 0 70px;
  text-align: center;
  background-color: #f8f8f8;
}
.stats_block .stats_box {
  margin-bottom: 30px;
}
.stats_block .stats_box .icons_box {
  margin-bottom: 30px;
  font-size: 40px;
  line-height: 45px;
  color: #ff584b;
}
.stats_block .stats_box .blue {
  color: #7bc8bc;
}
.stats_block .stats_box .yellow {
  color: #f5c254;
}
.stats_block .stats_box .counter {
  margin-bottom: 5px;
  font-size: 35px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 38px;
}
.stats_block .stats_box p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
}

.stats_block_white {
  background-color: #fff;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .stats_block .icons_box {
  color: #7bc8bc;
}

.agency_demo .stats_block .yellow {
  color: #f5c254;
}

/* +++++++ End Agency Demo +++++++ */
/* -----------------------------
	[ 2.5 End Stats block ]
	----------------------------- */
/* -----------------------------
	[ 2.6 Start Comment block ]
	----------------------------- */
.comment_block {
  background-color: #fff;
}
.comment_block .slider_comment {
  margin-bottom: 0;
}
.comment_block .slide {
  padding-top: 35px;
}
.comment_block .box_comment {
  position: relative;
  padding: 65px 30px 30px;
  color: #fff;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.comment_block .box_comment .icon_box {
  position: absolute;
  top: -35px;
  right: 0;
  left: 0;
  display: block;
  margin: 0 auto;
  width: 70px;
  height: 70px;
  font-size: 30px;
  text-align: center;
  line-height: 70px;
  color: #fff;
  background-color: #ff584b;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.comment_block .box_comment .box_author {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 35px;
}
.comment_block .box_comment .box_author .box_img {
  width: 90px;
  min-width: 90px;
  height: 90px;
  margin-right: 25px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}
.comment_block .box_comment .box_author .box_text .name {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 24px;
}
.comment_block .box_comment .box_author .box_text .desk {
  font-size: 14px;
  line-height: 24px;
}
.comment_block .slide:nth-child(odd) .box_comment {
  background-color: #7bc8bc;
}
.comment_block .slide:nth-child(even) .box_comment {
  background-color: #f5c254;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .comment_block {
  text-align: center;
}
.agency_demo .comment_block .box_comment .icon_box {
  background-color: #f5c254;
}
.agency_demo .comment_block .slide .box_comment {
  background-color: #7bc8bc;
}
.agency_demo .comment_block .box_author {
  display: block;
}
.agency_demo .comment_block .box_author .box_img {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
}

/* +++++++ End Agency Demo +++++++ */
/* -----------------------------
	[ 2.6 End Comment block ]
	----------------------------- */
/* -----------------------------
	[ 2.7 Start Question block ]
	----------------------------- */
.question_block {
  padding: 100px 0;
  color: #fff;
  background-color: #7bc8bc;
}
.question_block h2 {
  margin-bottom: 20px;
}
.question_block h4 {
  margin: 0 0 30px;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  line-height: 28px;
}
.question_block .order {
  margin-bottom: 0;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .question_block {
  text-align: center;
  background-color: #f5c254;
}
.agency_demo .question_block .order {
  margin-right: auto;
  margin-left: auto;
}

/* +++++++ End Agency Demo +++++++ */
/* -----------------------------
	[ 2.7 End Question block ]
	----------------------------- */
/* *******************
	[ End Home Page ]
	******************* */
/* *******************
	[ 3 Start About Page ]
	******************* */
/* -----------------------------
	[ 3.1 Start Skill block ]
	----------------------------- */
.skills_block {
  padding-bottom: 70px;
  padding-top: 0;
  background-color: #fff;
}

.skills_box {
  margin-bottom: 30px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: left;
}
.skills_box .line_skills {
  position: relative;
  margin-top: 15px;
  width: 100%;
  height: 6px;
  background-color: #e5e5e5;
}
.skills_box .line_skills:before {
  content: attr(data-value);
  position: absolute;
  right: 0;
  bottom: 100%;
  display: block;
  margin-bottom: 10px;
}
.skills_box .line_skills span {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ff584b;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  z-index: 2;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .skills_block {
  padding-top: 100px;
  background-color: #f8f8f8;
}
.agency_demo .skills_block h1,
.agency_demo .skills_block h2 {
  text-align: center;
}

.agency_demo .line_skills span {
  background-color: #7bc8bc;
}

/* +++++++ End Agency Demo +++++++ */
/* -----------------------------
	[ 3.1 End Skill block ]
	----------------------------- */
/* -----------------------------
	[ 3.2 End Team block ]
	----------------------------- */
.team_block {
  padding-bottom: 70px;
}
.team_block h2 {
  text-align: center;
}
.team_block .team_box {
  max-width: 350px;
  margin: 0 auto 30px;
  background-color: #f8f8f8;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.team_block .team_box .box_img {
  position: relative;
  overflow: hidden;
}
.team_block .team_box .box_img .social_list {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
  background-color: rgba(245, 194, 84, 0.7);
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.team_block .team_box .box_img .social_list li {
  margin-right: 10px;
  font-size: 20px;
  line-height: 24px;
}
.team_block .team_box .box_img .social_list li a {
  display: block;
  color: #fff;
}
.team_block .team_box .box_img .social_list li a:hover {
  -webkit-transform: translate(0, -6px);
  -ms-transform: translate(0, -6px);
  transform: translate(0, -6px);
}
.team_block .team_box .box_img .social_list li:last-child {
  margin-right: 0;
}
.team_block .team_box:hover .box_img .social_list {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.team_block .team_box .box_text {
  padding: 30px;
}
.team_block .team_box .box_text h4 {
  margin: 0;
  font-size: 18px;
  text-align: center;
  line-height: 26px;
}
.team_block .team_box .box_text p {
  margin-bottom: 30px;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
}
.team_block .team_box .box_text .skills_box {
  margin-bottom: 25px;
  font-size: 14px;
}
.team_block .team_box .box_text .skills_box:last-of-type {
  margin-bottom: 10px;
}
.team_block .team_box .box_text .skills_box .line_skills {
  margin-top: 10px;
}
.team_block .team_box .box_text .skills_box .line_skills:before {
  margin-bottom: 10px;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .team_block {
  background-color: #f8f8f8;
}
.agency_demo .team_block .team_box {
  background-color: #fff;
}

/* +++++++ End Agency Demo +++++++ */
/* -----------------------------
	[ 3.2 End Team block ]
	----------------------------- */
/* *******************
	[ End About Page ]
	******************* */
/* *******************
	[ 4 Start Portfolio Page ]
	******************* */
/* -----------------------------
	[ 4.1 Start Portfolio block ]
	----------------------------- */
.portfolio_page_block {
  background-color: #fff;
}
.portfolio_page_block .list_filter {
  margin: 0 0 30px;
  padding: 0;
  list-style-type: none;
}
.portfolio_page_block .list_filter li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 20px;
  padding: 0 15px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 30px;
  color: #fff;
  background-color: #7bc8bc;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.portfolio_page_block .list_filter li:hover {
  -webkit-transform: translate(0, -6px);
  -ms-transform: translate(0, -6px);
  transform: translate(0, -6px);
}
.portfolio_page_block .list_filter li.active {
  background-color: #ff584b;
}
.portfolio_page_block .list_filter li:last-child {
  margin-right: 0;
}
.portfolio_page_block .portfolio_grid {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.portfolio_page_block .portfolio_item {
  display: none;
}
.portfolio_page_block .portfolio_box {
  max-width: 540px;
  width: 100%;
  margin: 0 auto 30px;
}
.portfolio_page_block .portfolio_box a {
  position: relative;
  display: block;
  width: 100%;
  color: #fff;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.portfolio_page_block .portfolio_box a:hover .box_text {
  bottom: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.portfolio_page_block .portfolio_box .box_text {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  padding: 30px;
  background-color: #ff584b;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.portfolio_page_block .portfolio_box .box_text h4 {
  margin-bottom: 5px;
}
.portfolio_page_block .portfolio_box .box_text p {
  margin-bottom: 0;
  line-height: 20px;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .list_filter li {
  background-color: #f5c254;
}
.agency_demo .list_filter li.active {
  background-color: #7bc8bc;
}

.agency_demo .portfolio_box .box_text {
  background-color: #7bc8bc;
}

/* +++++++ End Agency Demo +++++++ */
/* -----------------------------
	[ 4.1 End Portfolio block ]
	----------------------------- */
/* *******************
	[ End Portfolio Page ]
	******************* */
/* *******************
	[ 5 Start Portfolio Details Page ]
	******************* */
/* -----------------------------
	[ 5.1 Start Portfolio Details block ]
	----------------------------- */
.portfolio_details_block .order {
  margin-top: 30px;
  margin-bottom: 50px;
}

.portfolio_details_block .box_img {
  position: relative;
  margin-bottom: 30px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.portfolio_details_block .box_img .box_icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 35px;
  line-height: 40px;
  color: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.portfolio_details_block .box_img .box_icon i {
  position: relative;
  z-index: 2;
}
.portfolio_details_block .box_img .box_icon:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #ff584b;
  z-index: 0;
}
.portfolio_details_block .box_img:hover .box_icon {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.portfolio_details_block .list_desc {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.portfolio_details_block .list_desc li {
  width: 32%;
  min-width: 130px;
  margin-bottom: 20px;
  padding-right: 10px;
  font-size: 16px;
  line-height: 22px;
}
.portfolio_details_block .list_desc li .title {
  margin-bottom: 10px;
  font-weight: 700;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .portfolio_details_block h1,
.agency_demo .portfolio_details_block h2 {
  text-align: center;
}

.agency_demo .portfolio_details_block .box_img .box_icon:before {
  background-color: #7bc8bc;
}

/* +++++++ End Agency Demo +++++++ */
/* -----------------------------
	[ 5.1 End Portfolio Details block ]
	----------------------------- */
/* *******************
	[ End Portfolio Details Page ]
	******************* */
/* *******************
	[ 6 Start Pricing Page ]
	******************* */
/* -----------------------------
	[ 6.1 Start Pricing block ]
	----------------------------- */
.pricing_block {
  padding-bottom: 70px;
}
.pricing_block .box_price {
  max-width: 350px;
  height: 100%;
  margin: 0 auto;
  padding: 30px;
  color: #fff;
  background-color: #ff584b;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.pricing_block .box_price:hover {
  -webkit-transform: translate(0, -10px);
  -ms-transform: translate(0, -10px);
  transform: translate(0, -10px);
}
.pricing_block .box_price.blue_bg {
  background-color: #7bc8bc;
}
.pricing_block .box_price.yellow_bg {
  background-color: #f5c254;
}
.pricing_block .box_price .list_price {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.pricing_block .box_price .list_price li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.pricing_block .box_price .list_price li:last-child {
  margin-bottom: 0;
}
.pricing_block .box_price .list_price .title {
  width: 59%;
}
.pricing_block .box_price .list_price .text {
  width: 39%;
}
.pricing_block .box_price_tarif {
  padding: 30px;
  background-color: #f8f8f8;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.pricing_block .box_price_tarif:hover {
  -webkit-transform: translate(0, -10px);
  -ms-transform: translate(0, -10px);
  transform: translate(0, -10px);
}
.pricing_block .box_price_tarif .price {
  margin: 30px 0 0px;
  font-size: 45px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 50px;
  color: #ff584b;
}
.pricing_block .box_price_tarif .times {
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}
.pricing_block .box_price_tarif .list {
  margin: 0 0 30px;
  padding: 0;
  list-style-type: none;
}
.pricing_block .box_price_tarif .list li {
  position: relative;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 26px;
}
.pricing_block .box_price_tarif .list li:before {
  content: "-";
  display: inline-block;
  margin-right: 3px;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .pricing_block h1,
.agency_demo .pricing_block h2 {
  text-align: center;
}

.agency_demo .pricing_block .box_price {
  background-color: #7bc8bc;
}
.agency_demo .pricing_block .box_price h4 {
  text-align: center;
}
.agency_demo .pricing_block .box_price .list_price .text {
  text-align: right;
}

.agency_demo .pricing_block .yellow_bg {
  background-color: #f5c254;
}

.agency_demo .box_price_tarif {
  text-align: center;
}
.agency_demo .box_price_tarif .price {
  color: #f5c254;
}
.agency_demo .box_price_tarif .order {
  margin-right: auto;
  margin-left: auto;
}

/* +++++++ End Agency Demo +++++++ */
/* -----------------------------
	[ 6.1 End Pricing block ]
	----------------------------- */
/* *******************
	[ End Pricing Page ]
	******************* */
/* *******************
	[ 7 Start Contact Page ]
	******************* */
/* -----------------------------
	[ 7.1 Start Contact block ]
	----------------------------- */
.contact_block .box_info {
  padding: 30px;
  background-color: #f8f8f8;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.contact_block .box_info .list_info {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.contact_block .box_info .list_info li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
.contact_block .box_info .list_info li .box_icon {
  width: 35px;
  margin-right: 15px;
  font-size: 35px;
  line-height: 45px;
  color: #ff584b;
}
.contact_block .box_info .list_info li:nth-child(2n + 2) .box_icon {
  color: #7bc8bc;
}
.contact_block .box_info .list_info li:nth-child(2n + 3) .box_icon {
  color: #f5c254;
}
.contact_block .box_info .list_info li .box_text {
  font-size: 14px;
  line-height: 18px;
}
.contact_block .box_info .list_info li .box_text .title {
  margin-bottom: 2px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.contact_block .box_info .list_info li .box_text a {
  color: #424242;
}
.contact_block .box_info .list_info li .box_text a:hover {
  text-decoration: underline;
}
.contact_block .box_info .social_list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 40px 0 0;
  padding: 0;
  list-style-type: none;
}
.contact_block .box_info .social_list li {
  margin-right: 10px;
  font-size: 20px;
}
.contact_block .box_info .social_list li a {
  display: block;
  color: #424242;
}
.contact_block .box_info .social_list li a:hover {
  -webkit-transform: translate(0, -6px);
  -ms-transform: translate(0, -6px);
  transform: translate(0, -6px);
}

/* form */
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
  padding: 10px 15px;
  display: block;
  margin: 0 0 30px;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  color: #424242;
  background-color: #f8f8f8;
  border: none;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

form textarea {
  height: 179px;
  resize: none;
}

.seds {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  min-height: 299px;
  padding: 30px;
  background-color: #f8f8f8;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.seds p {
  margin-bottom: 0;
}

/* +++++++ Start Agency Demo +++++++ */
.agency_demo .contact_block h1,
.agency_demo .contact_block h2 {
  text-align: center;
}

.agency_demo .order {
  margin-right: auto;
  margin-left: auto;
}

/* +++++++ End Agency Demo +++++++ */
/* -----------------------------
	[ 7.1 End Contact Details block ]
	----------------------------- */
/* -----------------------------
	[ 7.2 Start Map block ]
	----------------------------- */
.map_block iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* -----------------------------
	[ 7.2 End Map Details block ]
	----------------------------- */
/* *******************
	[ End Contact Page ]
	******************* */
/* *******************
	[ 8 Start Footer ]
	******************* */
.footer {
  padding: 50px 0;
  color: #fff;
  background-color: #424242;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  text-decoration: underline;
}
.footer h4 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}
.footer .logo {
  margin-bottom: 30px;
}
.footer .social_list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 50px;
  padding: 0;
  list-style-type: none;
}
.footer .social_list li {
  margin-right: 10px;
  font-size: 20px;
  line-height: 24px;
}
.footer .social_list li:last-child {
  margin-right: 0;
}
.footer .social_list li a {
  display: block;
  color: #fff;
}
.footer .social_list li a:hover {
  -webkit-transform: translate(0, -7px);
  -ms-transform: translate(0, -7px);
  transform: translate(0, -7px);
}
.footer .menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer .menu li {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 27px;
}
.footer .menu li a {
  color: #fff;
}
.footer .menu li a:hover {
  text-decoration: underline;
}
.footer .list_contact {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer .list_contact li {
  font-size: 14px;
  line-height: 27px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.footer .list_contact li a {
  color: #fff;
}
.footer .list_contact li a:hover {
  text-decoration: underline;
}
.footer .list_contact li i {
  width: 17px;
  margin-right: 15px;
}

/* copyright */
.copyright {
  padding: 25px 0;
  color: #fff;
  background-color: #242424;
}
.copyright a {
  text-decoration: underline;
  color: #fff;
}
.copyright a:hover {
  text-decoration: none;
}
.copyright p {
  margin: 0;
  font-size: 14px;
  text-align: center;
  line-height: 20px;
}

/* 404_block */
.error_block {
  text-align: center;
}
.error_block .order {
  margin: 40px auto 60px;
}

/* *******************
	[ End Footer ]
	******************* */
/* *******************
	[ 9 Start Responsive ]
	******************* */
/* ******  Desktop First Method  ****** */
/* Large Devices, Wide Screens */
/* @media only screen and (max-width : 1199px) */
/* Medium Devices, Desktops */
@media only screen and (max-width: 991px) {
  /* home_block */
  .home_block .box_img {
    display: none;
  }
  .home_block h1 {
    font-size: 50px;
    line-height: 60px;
  }
  /* contact_block */
  .contact_block .box_info {
    margin-top: 50px;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 767px) {
  /* basic */
  .hidden {
    overflow: hidden;
  }
  /* nav_bar */
  .mob_button {
    display: block;
  }
  nav.nav_bar {
    padding: 15px 0;
  }
  nav.nav_bar .logo {
    position: relative;
    z-index: 11;
  }
  nav.nav_bar .menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 10px;
    padding-top: 25vh;
    background-color: #f5c254;
    -webkit-transition: 0.5s linear;
    -o-transition: 0.5s linear;
    transition: 0.5s linear;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
  }
  nav.nav_bar .menu li {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
    text-align: center;
  }
  nav.nav_bar .menu li:last-child {
    margin-bottom: 0;
  }
  nav.nav_bar .menu li > ul {
    position: relative;
    left: 0;
    max-width: none;
    width: 100%;
    max-height: 0;
    padding: 0 !important;
    text-align: center;
  }
  nav.nav_bar .menu li:hover > ul {
    max-height: 500px;
  }
  nav.nav_bar .menu li:hover > ul li {
    padding: 5px 0;
  }
  nav.nav_bar .menu li a {
    display: inline-block;
    color: #424242;
  }
  nav.nav_bar .menu li a:hover,
  nav.nav_bar .menu li a.active {
    color: #ff584b;
  }
  nav.nav_bar .menu_vissible {
    opacity: 1;
    visibility: visible;
    z-index: 5;
  }
  nav.nav_scroll .logo {
    position: relative;
    z-index: 11;
  }
  nav.nav_scroll:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #f5c254;
    z-index: 0;
  }
  nav.nav_bar_mob {
    bottom: 0;
  }
  .agency_demo nav.nav_bar .menu {
    background-color: #7bc8bc;
  }
  .agency_demo nav.nav_scroll:before {
    background-color: #7bc8bc;
  }
  /* breadcrumb_block */
  .breadcrumb_block {
    padding-top: 80px;
  }
  /* home_block */
  .home_block h1 {
    font-size: 40px;
    line-height: 50px;
  }
  /* about_block */
  .about_block .box_img {
    margin-bottom: 50px;
  }
  .agency_demo .about_block {
    text-align: center;
  }
  .agency_demo .about_block .order {
    margin-right: auto;
    margin-left: auto;
  }
  /* footer */
  .footer .menu {
    margin-bottom: 50px;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  /* basic */
  .left,
  .right {
    float: none;
  }
  /* home_block */
  .home_block h1 {
    font-size: 40px;
    line-height: 50px;
  }
  /* comment_block */
  .comment_block .box_comment .box_author .box_img {
    width: 70px;
    min-width: 70px;
    height: 70px;
  }
  /* footer */
  .footer .logo {
    text-align: center;
  }
  .footer .social_list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .slider_top .slide {
    padding-left: 0;
    padding-right: 0;
  }
  .slick-prev,
  .slick-next {
    display: none !important;
  }
}

/* Custom, iPhone Retina */
@media only screen and (max-width: 390px) {
  /* home_block */
  .home_block h5 {
    font-size: 16px;
    line-height: 32px;
  }
}

/* ******  Mobile First Method  ****** */
/* Custom, iPhone Retina */
/* @media only screen and (min-width : 320px) */
/* Extra Small Devices, Phones */
/* @media only screen and (min-width : 480px) */
/* Small Devices, Tablets */
/* @media only screen and (min-width : 768px) */
/* Medium Devices, Desktops */
/* @media only screen and (min-width : 992px) */
/* Large Devices, Wide Screens */
/* @media only screen and (min-width : 1200px) */
/* *******************
	[ End Responsive ]
	******************* */
