@charset "UTF-8";
/* table of content - start
================================================== */
/* 
* Project Name   :  Dexfolio - Portfolio & Agency Template
* File           :  CSS Base
* Version        :  1.0.0
* Last change    :  11 April 2022
*	==================================================
* 1 - Template Global Settings
	1.1 - Template Fonts
	1.2 - Template Global Reset

* 2 - Template Elements
	2.1 - Backtotop
	2.2 - Color
	2.3 - Space
	2.4 - Button
	2.5 - List
	2.6 - Title
	2.7 - Carousel
	2.8 - Form
	2.9 - Social
	2.10 - Rating
	2.11 - Pagination
	2.12 - Filter Nav
	2.13 - Category List
	2.14 - Meta
	2.15 - Comment
	2.16 - Blockquote
	2.17 - Decoration

* 3 - Template Components
	3.1 - Header
	3.2 - Footer
	3.3 - Breadcrumb
	3.4 - Offcanvas
	3.5 - Sidebar
	3.6 - Banner
	3.7 - Slider
	3.8 - About
	3.9 - Service
	3.10 - Portfolio
	3.11 - Blog
	3.12 - Details
	3.13 - Award
	3.14 - Client
	3.15 - Contact
	3.16 - Counter
	3.17 - Team
	3.18 - Calltoaction
	3.19 - Video
	3.20 - Testimonial
	3.21 - Feature
	3.22 - Pricing
	3.23 - Home
*/
/* table of content - end
================================================== */
/* 1.1 - Template Fonts - Start
================================================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* 1.1 - Template Fonts - End
================================================== */
/* 1.2 - Template Global Reset - Start
================================================== */
body {
  margin: 0px;
  padding: 0px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  font-style: normal;
  color: #272727;
  letter-spacing: 0.27px;
  font-family: "Poppins", sans-serif;
  text-rendering: optimizelegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
body.bg_dark {
  color: #D0D0D0;
  background-color: #1A1A1A;
}

.body_wrap {
  overflow: hidden;
  position: relative;
}

iframe {
  border: none;
}

a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

img:not([draggable]),
embed,
object,
video {
  height: auto;
  max-width: 100%;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
}

a {
  outline: 0;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
a:active, a:focus, a:hover, a:visited {
  outline: 0;
  text-decoration: none;
}

button {
  padding: 0px;
  border: none;
  outline: none;
  background: none;
  display: inline-block;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
button:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #272727;
  letter-spacing: 0.19px;
  font-family: "Poppins", sans-serif;
}

hr {
  opacity: 1;
  height: 1px;
  margin: 25px 0;
  background-color: #f5f5f5;
}

/* 1.2 - Template Global Reset - End
================================================== */
/* 2.1 - Backtotop - Start
================================================== */
.backtotop {
  right: 15px;
  z-index: 999;
  bottom: 50px;
  display: none;
  position: fixed;
}
.backtotop .scroll {
  z-index: 1;
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
}
.backtotop .scroll:before, .backtotop .scroll:after {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: "";
  position: absolute;
  border-radius: 100%;
  background-color: #ffffff;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.2);
}
.backtotop .scroll:after {
  opacity: 0;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.backtotop .scroll:hover:before {
  opacity: 0;
  -webkit-transform: scale(0.3);
          transform: scale(0.3);
}
.backtotop .scroll:hover:after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.backtotop .scroll i {
  left: 50%;
  z-index: 1;
  font-size: 15px;
  position: absolute;
  color: #272727;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.backtotop .scroll i:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.backtotop .scroll i:nth-child(2) {
  top: 130%;
  opacity: 0;
  visibility: hidden;
}
.backtotop .scroll:hover i:nth-child(1) {
  top: -110%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.backtotop .scroll:hover i:nth-child(2) {
  top: 50%;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* 2.1 - Backtotop - End
================================================== */
/* 2.2 - Color - Start
================================================== */
.has_overlay {
  z-index: 1;
  position: relative;
}
.has_overlay .overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
}

.color_facebook {
  color: #3b5998;
}

.color_twitter {
  color: #1da1f2;
}

.color_googleplus {
  color: #ea4335;
}

.color_linkedin {
  color: #0a66c2;
}

/* 2.2 - Color - End
================================================== */
/* 2.3 - Space - Start
================================================== */
.container {
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
}

.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.row {
  margin: -30px;
}

.col {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  padding: 30px;
}

.gap_default {
  margin: -15px;
}
.gap_default .col {
  padding: 15px;
}

.no_gutter {
  margin: 0 !important;
}
.no_gutter .col {
  padding: 0 !important;
}

.maxwidth_1440 {
  max-width: 1500px;
}
.maxwidth_1440 .row {
  margin: -15px;
}
.maxwidth_1440 .col {
  padding: 15px;
}

.section_space {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section_space_lg {
  padding-top: 160px;
  padding-bottom: 160px;
}

.section_space_sm {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section_space_rl {
  padding-left: 90px;
  padding-right: 90px;
}

.spacer {
  height: 160px;
}

.spacer_2 {
  height: 145px;
}

/* 2.3 - Space - End
================================================== */
/* 2.4 - Button - Start
================================================== */
.load_more {
  margin-top: 90px;
}

.btn {
  z-index: 1;
  border: none;
  outline: none;
  line-height: 1;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0;
  min-width: 330px;
  overflow: hidden;
  position: relative;
  padding: 41px 40px;
  display: inline-block;
  text-transform: uppercase;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn:before {
  top: 0px;
  width: 0px;
  left: auto;
  right: 0px;
  z-index: -1;
  bottom: 0px;
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn:hover {
  color: #ffffff;
}
.btn:hover:before {
  left: 0px;
  width: 100%;
  right: auto;
}
.btn.btn_primary {
  background-color: #4444FF;
}
.btn.btn_primary:before {
  background-color: #FF5252;
}
.btn.btn_secondary {
  background-color: #272727;
}
.btn.btn_secondary:before {
  background-color: #4444FF;
}
.btn.btn_info {
  background-color: #803CFF;
}
.btn.btn_info:before {
  background-color: #4444FF;
}
.btn.btn_info:hover {
  border-color: #4444FF;
}
.btn.btn_danger {
  background-color: #FF5252;
}
.btn.btn_danger:before {
  background-color: #4444FF;
}
.btn.btn_danger:hover {
  border-color: #4444FF;
}
.btn.btn_white {
  color: #272727;
  background-color: #ffffff;
}
.btn.btn_white:before {
  background-color: #272727;
}
.btn.btn_white:hover {
  color: #ffffff;
  border-color: #272727;
}
.btn.btn_shadow {
  font-size: 16px;
  min-width: 220px;
  padding: 25px 30px;
  -webkit-box-shadow: 10px 10px #353B56;
          box-shadow: 10px 10px #353B56;
}
.btn.btn_shadow.btn_secondary {
  border-color: #272727;
}
.btn.btn_shadow.btn_secondary:hover {
  color: #272727;
}
.btn.btn_shadow.btn_white {
  background-color: #ffffff;
  border: 1px solid #272727;
}

.btn_block {
  width: 100%;
  display: block;
}

.btn_text {
  line-height: 1;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #272727;
  display: inline-block;
  text-transform: uppercase;
}
.btn_text span {
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
  border-bottom: 3px solid #272727;
}
.btn_text span:before {
  right: 0;
  width: 0;
  left: auto;
  bottom: -3px;
  height: 3px;
  content: "";
  position: absolute;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #4444FF;
}
.btn_text:hover {
  color: #4444FF;
}
.btn_text:hover span:before {
  left: 0px;
  width: 100%;
  right: auto;
}

.play_btn {
  width: 160px;
  height: 160px;
  color: #ffffff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #4444FF;
}
.play_btn:hover {
  color: #4444FF;
  background-color: #ffffff;
  -webkit-box-shadow: 0 50px 70px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 50px 70px 0 rgba(0, 0, 0, 0.3);
}
.play_btn:hover path {
  fill: #4444FF;
}
.play_btn.bg_danger {
  background-color: #FF5252;
}

.play_btn_2 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.play_btn_2 span {
  width: 100px;
  height: 100px;
  color: #ffffff;
  font-size: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #803CFF;
}
.play_btn_2 span svg {
  margin-left: 6px;
}
.play_btn_2 small {
  font-size: 26px;
  font-weight: 500;
  margin-left: 30px;
  display: inline-block;
}

/* 2.4 - Button - End
================================================== */
/* 2.5 - List (Order & Unorder List Reset) - Etart
================================================== */
.ul_li,
.ul_li_right,
.ul_li_center {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ul_li > li,
.ul_li_right > li,
.ul_li_center > li {
  float: left;
  list-style: none;
  display: inline-block;
}

.ul_li {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.ul_li_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ul_li_right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.ul_li_block {
  margin: 0px;
  padding: 0px;
  display: block;
}
.ul_li_block > li {
  display: block;
  list-style: none;
}

/* 2.5 - List (Order & Unorder List Reset) - End
================================================== */
/* 2.6 - Title - Start
================================================== */
.primary_section_title {
  line-height: 1;
  font-size: 56px;
  margin-bottom: 70px;
  letter-spacing: -0.02em;
}

.section_title {
  margin-bottom: 85px;
}
.section_title .title_text {
  line-height: 1;
  font-size: 172px;
  margin-bottom: 40px;
  letter-spacing: -10px;
}
.section_title p {
  font-size: 26px;
  margin-bottom: 0;
}

.section_title_2 {
  margin-bottom: 60px;
}
.section_title_2 .title_text {
  z-index: 1;
  line-height: 1;
  font-size: 102px;
  position: relative;
  margin-bottom: 25px;
  letter-spacing: -0.49px;
}
.section_title_2 p {
  font-size: 26px;
  margin-bottom: 0;
  letter-spacing: 0.38px;
}
.section_title_2 .focus_text {
  left: 0;
  top: 50%;
  right: 0;
  z-index: -1;
  color: #f2f2f2;
  line-height: 1;
  font-size: 248px;
  font-weight: 700;
  position: absolute;
  letter-spacing: -0.03em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.text-white .focus_text {
  color: rgba(255, 255, 255, 0.1);
}

.section_title_3 {
  margin-bottom: 70px;
}
.section_title_3 .title_text {
  font-size: 56px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section_title_3 p {
  color: #818291;
  font-size: 20px;
  margin-bottom: 0;
}

.section_title_4 {
  margin-bottom: 49px;
}
.section_title_4 .title_text {
  color: #2a2b2f;
  font-size: 92px;
  line-height: 1.1;
  font-weight: 200;
  letter-spacing: -0.02em;
}
.section_title_4 .title_text strong {
  font-weight: 600;
}

/* 2.6 - Title - End
================================================== */
/* 2.7 - Carousel - Start
================================================== */
.slick-dots {
  position: static;
  padding-top: 50px;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots li:not(:last-child) {
  margin: 0 20px 0 0;
}
.slick-dots li button {
  opacity: 1;
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 100%;
  background-color: #E9E9E9;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.slick-dots li:hover button, .slick-dots li.slick-active button {
  opacity: 1;
  background-color: #4444FF;
}

.carousel_arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.carousel_arrow button {
  font-size: 36px;
  color: #272727;
}
.carousel_arrow button:hover {
  color: #4444FF;
}
.carousel_arrow button:not(:last-child) {
  margin-right: 20px;
}

/* 2.7 - Carousel - End
================================================== */
/* 2.8 - Form - Start
================================================== */
.form_item {
  position: relative;
  margin-bottom: 30px;
}
.form_item textarea, .form_item input {
  width: 100%;
  outline: none;
  display: block;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  letter-spacing: 0.27px;
  border: 1px solid #D8D8D8;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.form_item textarea:focus, .form_item input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #4444FF;
}
.form_item input {
  height: 100px;
  padding: 0 30px;
}
.form_item textarea {
  min-height: 200px;
  padding: 25px 30px;
}

:-moz-placeholder {
  color: #272727;
  letter-spacing: 0.27px;
}

::-moz-placeholder {
  color: #272727;
  letter-spacing: 0.27px;
}

:-ms-input-placeholder {
  color: #272727;
  letter-spacing: 0.27px;
}

::-webkit-input-placeholder {
  color: #272727;
  letter-spacing: 0.27px;
}

.select_option {
  position: relative;
  margin-bottom: 30px;
}
.select_option .nice-select {
  width: 100%;
  height: 100px;
  font-size: 18px;
  padding: 0 30px;
  border-radius: 0;
  line-height: 100px;
  position: relative;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid #D8D8D8;
}
.select_option .nice-select:hover {
  border-color: #4444FF;
}
.select_option .nice-select:after {
  margin: 0;
  width: auto;
  height: auto;
  border: none;
  float: right;
  margin-left: 5px;
  font-weight: 400;
  content: "";
  -webkit-transform: unset;
          transform: unset;
  position: static;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  font-family: "Font Awesome 5 Pro";
}
.select_option .nice-select .list {
  padding: 0;
  width: 100%;
  margin-top: 0;
  border-radius: 0;
  min-width: 220px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #D8D8D8;
}
.select_option .nice-select .option {
  line-height: 1;
  min-height: auto;
  padding: 20px 25px;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  color: rgba(39, 39, 39, 0.6);
}
.select_option .nice-select .option:hover,
.select_option .nice-select .option.focus,
.select_option .nice-select .option.selected.focus {
  font-weight: 400;
  color: #272727;
}

/* 2.8 - Form - End
================================================== */
/* 2.9 - Social - Start
================================================== */
.social_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social_wrap .social_primary li:not(:last-child) {
  margin-right: 10px;
}

.social_title {
  font-size: 16px;
  font-weight: 400;
  margin: 0 24px 0 0;
}

.social_primary li:not(:last-child) {
  margin-right: 40px;
}
.social_primary a {
  color: #696990;
  position: relative;
}
.social_primary a:before {
  width: 0px;
  left: auto;
  right: 0px;
  bottom: 0px;
  height: 1px;
  content: "";
  position: absolute;
  background-color: #ffffff;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.social_primary a:hover {
  color: #4444FF;
}
.social_primary a:hover:before {
  left: 0px;
  width: 100%;
  right: auto;
}
.social_primary a.color_facebook {
  color: #3b5998;
}
.social_primary a.color_twitter {
  color: #1da1f2;
}
.social_primary a.color_googleplus {
  color: #ea4335;
}
.social_primary a.color_linkedin {
  color: #0a66c2;
}

.social_squre {
  margin: -5px;
}
.social_squre > li {
  padding: 5px;
}
.social_squre a {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #76797E;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #D8D8D8;
}
.social_squre a:hover {
  color: #ffffff;
  border-color: #FF5252;
  background-color: #FF5252;
}

/* 2.9 - Social - End
================================================== */
/* 2.10 - Rating - Start
================================================== */
.rating_star li {
  color: #71737a;
  font-size: 18px;
}
.rating_star li:not(:last-child) {
  margin-right: 2px;
}
.rating_star li.active {
  color: #F9B535;
}

/* 2.10 - Rating - End
================================================== */
/* 2.11 - Pagination - Start
================================================== */
.pagination_nav {
  margin: -2px;
}
.pagination_nav li {
  padding: 2px;
}
.pagination_nav li:first-child > a, .pagination_nav li:last-child > a {
  width: auto;
  height: auto;
  border: none;
}
.pagination_nav a {
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #9A9A9A;
  font-size: 26px;
  font-weight: 600;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid transparent;
}
.pagination_nav li:hover a, .pagination_nav li.active a {
  color: #272727;
  border-color: #272727;
}

/* 2.11 - Pagination - End
================================================== */
/* 2.12 - Filter Nav - Start
================================================== */
.filter-btns-group {
  margin-bottom: 60px;
}
.filter-btns-group li:not(:last-child) {
  margin-right: 60px;
}
.filter-btns-group button {
  padding: 0;
  font-size: 26px;
  font-weight: 400;
  color: #272727;
}
.filter-btns-group button:hover, .filter-btns-group button.active {
  color: #4444FF;
}

.filter-btns-group.style_2 button:hover, .filter-btns-group.style_2 button.active {
  color: #FF5252;
}

/* 2.12 - Filter Nav - End
================================================== */
/* 2.13 - Category List - Start
================================================== */
.category_list > li {
  position: relative;
}
.category_list > li:not(:last-child) {
  margin-right: 5px;
  padding-right: 3px;
}
.category_list > li:after {
  right: 0;
  bottom: 0;
  content: ",";
  line-height: 1;
  position: absolute;
}
.category_list > li:last-child:after {
  display: none;
}
.category_list a {
  display: block;
  color: #818291;
  line-height: 1;
}
.category_list a:hover {
  color: #4444FF;
}

/* 2.13 - Category List - End
================================================== */
/* 2.14 - Meta (Post Meta) - Start
================================================== */
.admin_chip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.admin_chip .admin_thumbnail {
  height: 60px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  overflow: hidden;
  margin-right: 30px;
  border-radius: 100%;
}

.post_meta > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post_meta > li:not(:last-child) {
  margin-right: 60px;
}
.post_meta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #272727;
}
.post_meta a:hover {
  color: #4444FF;
}
.post_meta .admin_thumbnail {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 30px;
  border-radius: 100%;
  display: inline-block;
}
.post_meta svg, .post_meta i {
  margin-right: 30px;
}

.post_meta_2 {
  margin: -20px;
}
.post_meta_2 > li {
  padding: 20px;
}
.post_meta_2 span, .post_meta_2 small {
  line-height: 1;
  display: block;
}
.post_meta_2 span {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  font-family: "Poppins", sans-serif;
}
.post_meta_2 small {
  color: #818291;
  font-size: 16px;
}

/* 2.14 - Meta (Post Meta) - End
================================================== */
/* 2.15 - Comment - Start
================================================== */
.show_comment_btn {
  margin-bottom: 35px;
}

.comment_list .comment_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 65px 0;
}
.comment_list .content_wrap .comment_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 45px 0 0;
}
.comment_list .content_wrap .image_wrap {
  width: 56px;
  height: 56px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 56px;
          flex: 0 0 56px;
}
.comment_list .image_wrap {
  width: 70px;
  height: 70px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
  overflow: hidden;
  margin-right: 30px;
  border-radius: 100%;
}
.comment_list .name_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.comment_list .name_text {
  font-size: 18px;
  margin-bottom: 0;
  margin-right: 20px;
}
.comment_list .comment_date {
  color: #525252;
}
.comment_list p {
  margin-bottom: 12px;
}
.comment_list .btns_group > li {
  font-size: 18px;
}
.comment_list .btns_group > li:not(:last-child) {
  margin-right: 30px;
}
.comment_list .btns_group a {
  color: #272727;
}
.comment_list .btns_group a:hover {
  color: #4444FF;
}

.comment_form {
  position: relative;
  padding-left: 90px;
}
.comment_form .thumbnail_wrap {
  left: 0;
  top: 50%;
  width: 56px;
  height: 56px;
  overflow: hidden;
  position: absolute;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.comment_form .form_item textarea {
  min-height: auto;
  padding: 13px 25px;
  border: 1px solid #D8D8D8;
}
.comment_form .form_item textarea:focus {
  border-color: #4444FF;
}
.comment_form .form_item button {
  top: 50%;
  right: 0;
  width: 170px;
  height: 86px;
  color: #ffffff;
  font-size: 30px;
  line-height: 86px;
  text-align: center;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #4444FF;
}

.comment_form_2 .form_item input {
  height: 70px;
}

/* 2.15 - Comment - End
================================================== */
/* 2.16 - Blockquote - Start
================================================== */
figure {
  z-index: 1;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
  padding: 50px 100px;
  background-color: #4444FF;
}
figure .quote_icon {
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}
figure p {
  font-size: 26px;
  margin-bottom: 0;
}
figure .blockquote-footer {
  margin: 0;
  line-height: 1;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  padding-top: 15px;
}
figure .blockquote-footer:before {
  display: none;
}

/* 2.16 - Blockquote - End
================================================== */
/* 2.17 - Decoration - Start
================================================== */
.global_shape_image {
  top: 0;
  left: 0;
  z-index: -1;
  position: fixed;
}

.decoration_wrap {
  z-index: 1;
  overflow: hidden;
  position: relative;
}

.line_decoration_y,
.line_decoration_x {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
}

.line_item {
  position: absolute;
}
.line_item:before, .line_item:after {
  width: 3px;
  height: 3px;
  content: "";
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/icons/dot.png);
}

.line_decoration_y.line_white .line_item:nth-child(1), .line_decoration_y.line_white .line_item:nth-child(3) {
  border-color: rgba(255, 255, 255, 0.07);
}
.line_decoration_y.line_white .line_item:nth-child(2) {
  background-color: rgba(255, 255, 255, 0.07);
}
.line_decoration_y .line_item {
  top: 0;
  bottom: 0;
}
.line_decoration_y .line_item:before {
  -webkit-animation: lineTop 15s ease-out infinite;
          animation: lineTop 15s ease-out infinite;
}
.line_decoration_y .line_item:after {
  -webkit-animation: lineBottom 15s ease-out infinite;
          animation: lineBottom 15s ease-out infinite;
}
.line_decoration_y .line_item:nth-child(1) {
  left: 184px;
  width: 94px;
  border-left: 1px solid rgba(112, 112, 112, 0.05);
  border-right: 1px solid rgba(112, 112, 112, 0.05);
}
.line_decoration_y .line_item:nth-child(1):before {
  left: -2px;
}
.line_decoration_y .line_item:nth-child(1):after {
  right: -2px;
}
.line_decoration_y .line_item:nth-child(2) {
  left: 50%;
  width: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(112, 112, 112, 0.05);
}
.line_decoration_y .line_item:nth-child(2):before {
  left: -2px;
}
.line_decoration_y .line_item:nth-child(2):after {
  display: none;
}
.line_decoration_y .line_item:nth-child(3) {
  width: 94px;
  right: 184px;
  border-left: 1px solid rgba(112, 112, 112, 0.05);
  border-right: 1px solid rgba(112, 112, 112, 0.05);
}
.line_decoration_y .line_item:nth-child(3):before {
  left: -2px;
}
.line_decoration_y .line_item:nth-child(3):after {
  right: -2px;
}

@-webkit-keyframes lineTop {
  0% {
    top: 0px;
  }
  50% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}

@keyframes lineTop {
  0% {
    top: 0px;
  }
  50% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes lineBottom {
  0% {
    bottom: 0px;
  }
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 100%;
  }
}
@keyframes lineBottom {
  0% {
    bottom: 0px;
  }
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 100%;
  }
}
.line_decoration_x.line_white .line_item:nth-child(1), .line_decoration_x.line_white .line_item:nth-child(3), .line_decoration_x.line_white .line_item:nth-child(2) {
  background-color: rgba(255, 255, 255, 0.07);
}
.line_decoration_x .line_item {
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(112, 112, 112, 0.05);
}
.line_decoration_x .line_item:before {
  top: -1px;
  -webkit-animation: lineRight 15s ease-out infinite;
          animation: lineRight 15s ease-out infinite;
}
.line_decoration_x .line_item:after {
  bottom: -1px;
  -webkit-animation: lineLeft 15s ease-out infinite;
          animation: lineLeft 15s ease-out infinite;
}
.line_decoration_x .line_item:nth-child(1) {
  top: 160px;
}
.line_decoration_x .line_item:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.line_decoration_x .line_item:nth-child(3) {
  bottom: 160px;
}

@-webkit-keyframes lineRight {
  0% {
    right: 0px;
  }
  50% {
    right: 50%;
  }
  100% {
    right: 100%;
  }
}

@keyframes lineRight {
  0% {
    right: 0px;
  }
  50% {
    right: 50%;
  }
  100% {
    right: 100%;
  }
}
@-webkit-keyframes lineLeft {
  0% {
    left: 0px;
  }
  50% {
    left: 50%;
  }
  100% {
    left: 100%;
  }
}
@keyframes lineLeft {
  0% {
    left: 0px;
  }
  50% {
    left: 50%;
  }
  100% {
    left: 100%;
  }
}
.decoration_wrap .deco_item {
  z-index: -1;
  position: absolute;
}

.block_overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
}
.block_overlay .container {
  padding: 0;
  height: 100%;
  max-width: 1046px;
}
.block_overlay .container.max_width_1140 {
  max-width: 1140px;
}
.block_overlay .block_item {
  width: 50%;
  float: left;
  height: 100%;
  display: inline-block;
}
.block_overlay .block_item:nth-child(odd) {
  background-color: #FCFCFC;
  border-left: 1px solid #F8F8F8;
  border-right: 1px solid #F8F8F8;
}
.block_overlay .block_item:nth-child(even) {
  background-color: #ffffff;
  border-right: 1px solid #F8F8F8;
}
.block_overlay.white_style .block_item:nth-child(odd) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.08);
}
.block_overlay.white_style .block_item:nth-child(even) {
  background-color: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* 2.17 - Decoration - End
================================================== */
/* 3.1 - Header - Start
================================================== */
/* header section - Start */
.header_section {
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  position: absolute;
}
.header_section.sticky {
  position: fixed;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.1);
  -webkit-animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
          animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
}

/* header section - End */
.header_section .brand_logo .brand_link {
  display: inline-block;
}
.header_section .brand_logo .brand_link img:nth-child(2) {
  display: none;
}

/*edited 18 sep 2022*/
.sticky .brand_logo .brand_link {
  display: inline-block;
}
/* .sticky .brand_logo .brand_link img:nth-child(1) {
  display: none;
} */
.sticky .brand_logo .brand_link img:nth-child(2) {
  display: inline-block;
}

.brand_logo .brand_link .form_logo {
  display: none;
}
.sticky .brand_logo .brand_link .form_logo{
  display: inline-block;
}
.sticky .brand_logo .brand_link .form_logo_white{
  display: none;
}

.main_menu_list > li {
  position: relative;
}
.main_menu_list > li:not(:last-child) {
  margin-right: 50px;
}
.main_menu_list > li > a {
  display: block;
  line-height: 1;
  font-size: 18px;
  padding: 15px 0;
  font-weight: 500;
  color: #272727;
  letter-spacing: -0.5px;
}
.main_menu_list > li:hover > a, .main_menu_list > li.active > a {
  color: #4444FF;
}
.main_menu_list .dropdown > a {
  position: relative;
}
.main_menu_list .dropdown > a:after {
  float: right;
  line-height: 1;
  font-size: 16px;
  content: "";
  font-weight: 500;
  margin-top: 1px;
  margin-left: 6px;
  font-family: "Font Awesome 5 Pro";
}
.main_menu_list .submenu {
  top: 100%;
  margin: 0px;
  border: none;
  font-size: 14px;
  border-radius: 0;
  min-width: 235px;
  padding: 20px 0px;
  color: #272727;
  -webkit-box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.15);
}
.main_menu_list .submenu > li:not(:last-child) {
  border-bottom: 1px solid rgba(68, 68, 255, 0.05);
}
.main_menu_list .submenu > li > a {
  display: block;
  line-height: 1;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 30px;
  white-space: nowrap;
  color: #272727;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.main_menu_list .submenu > li:hover > a, .main_menu_list .submenu > li.active > a {
  color: #4444FF;
  background-color: rgba(68, 68, 255, 0.05);
}
.main_menu_list .submenu .dropdown > a:after {
  margin-top: 0;
  content: "";
}
.main_menu_list .submenu .submenu {
  top: 0px;
  left: 100%;
  border-top-left-radius: 0px;
}
.main_menu_list li:hover > .submenu,
.main_menu_list li:hover > .megamenu {
  display: block;
  -webkit-animation: 0.3s ease-in-out 0s normal none 1 running fadeInUp;
          animation: 0.3s ease-in-out 0s normal none 1 running fadeInUp;
}

.offcanvas_btn_1 {
  color: #ffffff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.offcanvas_btn_1 .menu_text {
  line-height: 1;
  font-size: 16px;
  margin-right: 30px;
  letter-spacing: 0.125px;
}
.offcanvas_btn_1 .bar_icon small {
  height: 4px;
  display: block;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.offcanvas_btn_1 .bar_icon small:not(:last-child) {
  margin-bottom: 6px;
}
.offcanvas_btn_1 .bar_icon small:nth-child(1) {
  width: 20px;
  margin-left: 18px;
}
.offcanvas_btn_1 .bar_icon small:nth-child(2) {
  width: 14px;
  margin-left: 18px;
}
.offcanvas_btn_1 .bar_icon small:nth-child(3) {
  width: 38px;
}
.offcanvas_btn_1:hover .bar_icon small:nth-child(2) {
  width: 38px;
  margin-left: 0;
}
.offcanvas_btn_1:hover .bar_icon small:nth-child(3) {
  width: 18px;
  margin-left: 20px;
}

.sticky .offcanvas_btn_1 {
  color: #272727;
}
.sticky .offcanvas_btn_1 .bar_icon small {
  background-color: #272727;
}

.black_content .offcanvas_btn_1 {
  color: #272727;
}
.black_content .offcanvas_btn_1 .bar_icon small {
  background-color: #272727;
}

.offcanvas_btn_2 {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #4444FF;
}
.offcanvas_btn_2:hover {
  background-color: #FF5252;
}

.black_content .offcanvas_btn_2 {
  background-color: #272727;
}
.black_content .offcanvas_btn_2:hover {
  background-color: #4444FF;
}

.header_contact_info > li {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  color: #272727;
}
.header_contact_info > li:not(:last-child):after {
  content: "/";
  margin: 0 40px;
  display: inline-block;
}

.header_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 56px 90px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header_style_1.sticky {
  padding: 20px 90px;
}

.header_style_2 .main_menu,
.header_style_5 .main_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header_style_2.sticky .main_menu,
.header_style_5.sticky .main_menu {
  padding: 15px 80px;
}
.header_style_2 .main_menu_inner,
.header_style_5 .main_menu_inner {
  -webkit-box-flex: unset;
      -ms-flex-positive: unset;
          flex-grow: unset;
}

.header_style_2.white_content .main_menu_list > li > a,
.header_style_5.white_content .main_menu_list > li > a {
  color: rgba(255, 255, 255, 0.7);
}
.header_style_2.white_content .main_menu_list > li:hover > a,
.header_style_2.white_content .main_menu_list > li.active > a,
.header_style_5.white_content .main_menu_list > li:hover > a,
.header_style_5.white_content .main_menu_list > li.active > a {
  color: #ffffff;
}
.header_style_2.white_content.sticky .main_menu_list > li > a,
.header_style_5.white_content.sticky .main_menu_list > li > a {
  color: #272727;
}
.header_style_2.white_content.sticky .main_menu_list > li:hover > a,
.header_style_2.white_content.sticky .main_menu_list > li.active > a,
.header_style_5.white_content.sticky .main_menu_list > li:hover > a,
.header_style_5.white_content.sticky .main_menu_list > li.active > a {
  color: #4444FF;
}

.header_style_3 {
  padding: 50px 0;
}
.header_style_3 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header_style_3 .header_contact_info > li {
  color: #ffffff;
}
.header_style_3 .header_contact_info > li:after {
  color: rgba(255, 255, 255, 0.4);
}
.header_style_3.sticky {
  padding: 15px 0;
}
.header_style_3.sticky .header_contact_info > li {
  color: #272727;
}
.header_style_3.sticky .header_contact_info > li:after {
  color: rgba(0, 0, 0, 0.4);
}

.header_style_4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 90px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header_style_4.sticky {
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 15px 90px;
  background-color: transparent;
}
.header_style_4 .offcanvas_btn_2 {
  border: 2px solid #FF5E15;
}
.header_style_4 .offcanvas_btn_2 rect {
  fill: #FF5E15;
}

.header_style_5.white_content.sticky .main_menu_list > li:hover > a, .header_style_5.white_content.sticky .main_menu_list > li.active > a, .header_style_5.white_content.sticky .main_menu_list > li:hover > a, .header_style_5.white_content.sticky .main_menu_list > li.active > a {
  color: #FF5252;
}
.header_style_5 .main_menu_list .submenu > li:hover > a,
.header_style_5 .main_menu_list .submenu > li.active > a {
  color: #FF5252;
  background-color: rgba(255, 82, 82, 0.05);
}

/* 3.1 - Header - End
================================================== */
/* 3.2 - Footer - Start
================================================== */
.footer_section .social_primary a:hover {
  color: #ffffff;
}

.footer_widget_title {
  color: #ffffff;
  line-height: 1;
  font-size: 22px;
  margin-bottom: 30px;
}

.footer_info_list > li {
  color: #696990;
}
.footer_info_list > li:not(:last-child) {
  margin-bottom: 2px;
}
.footer_info_list a {
  color: #696990;
  position: relative;
}
.footer_info_list a:before {
  width: 0px;
  left: auto;
  right: 0px;
  bottom: 0px;
  height: 1px;
  content: "";
  position: absolute;
  background-color: #ffffff;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.footer_info_list a:hover {
  color: #ffffff;
}
.footer_info_list a:hover:before {
  left: 0px;
  width: 100%;
  right: auto;
}

.footer_style_1 .footer_bottom,
.footer_style_2 .footer_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer_style_1 {
  background-color: #0D0D44;
}
.footer_style_1 .footer_info_list > li,
.footer_style_1 .footer_info_list a,
.footer_style_1 .social_primary a,
.footer_style_1 .copyright_text {
  color: #ffffff;
}
.footer_style_1 .copyright_text a {
  font-weight: 600;
  text-decoration: underline;
}

.footer_style_2 {
  background-color: #000000;
}
.footer_style_2 .footer_widget_title {
  font-size: 32px;
  margin-bottom: 45px;
  letter-spacing: -0.02em;
}
.footer_style_2 .footer_info_list > li {
  color: #ffffff;
}
.footer_style_2 .footer_info_list > li:not(:last-child) {
  margin-bottom: 8px;
}
.footer_style_2 .footer_info_list a {
  color: #ffffff;
}
.footer_style_2 .footer_bottom {
  padding-bottom: 55px;
}
.footer_style_2 .social_primary a {
  color: #ffffff;
}
.footer_style_2 .copyright_text a {
  font-weight: 600;
}

.footer_style_3 {
  color: #ffffff;
  padding: 120px 0 70px;
  background-color: #101010;
}
.footer_style_3 .footer_bottom {
  padding-top: 120px;
}
.footer_style_3 .footer_bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer_style_3 h2 {
  color: #ffffff;
  line-height: 1;
  font-size: 36px;
  margin-bottom: 0;
  letter-spacing: -0.03em;
}
.footer_style_3 .contact_info_list {
  padding: 55px 0 65px;
}
.footer_style_3 .contact_info_list li:nth-child(1) {
  font-size: 18px;
}
.footer_style_3 .contact_info_list li:nth-child(2) {
  line-height: 1;
  font-size: 72px;
  font-weight: 700;
  padding: 8px 0 25px;
  letter-spacing: -0.06em;
}
.footer_style_3 .contact_info_list li:nth-child(2) a {
  color: #803cff;
}
.footer_style_3 .contact_info_list li:nth-child(3) {
  line-height: 1;
  font-size: 26px;
  letter-spacing: -0.04em;
}
.footer_style_3 .contact_info_list li:nth-child(3) a {
  color: #d0d0d0;
}
.footer_style_3 .social_primary a {
  color: #ffffff;
}
.footer_style_3 .copyright_text {
  color: #ffffff;
}
.footer_style_3 .copyright_text a {
  font-weight: 600;
}

.footer_style_4 {
  background-color: #1F212D;
}
.footer_style_4 .overlay {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(21, 22, 27, 0.8)), color-stop(68.7%, #15161b), to(#15161b));
  background: linear-gradient(rgba(21, 22, 27, 0.8) 0%, #15161b 68.7%, #15161b 100%);
}
.footer_style_4 .contact_line {
  line-height: 1;
  font-size: 102px;
  letter-spacing: -0.03em;
}
.footer_style_4 .contact_line a {
  color: #ff5252;
}
.footer_style_4 .footer_widget_area {
  padding: 100px 0;
}
.footer_style_4 .brand_logo {
  margin-bottom: 50px;
}
.footer_style_4 .footer_contact_list > li:not(:last-child) {
  margin-bottom: 15px;
}
.footer_style_4 .footer_contact_list a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}
.footer_style_4 .footer_contact_list a:hover {
  color: #ffffff;
}
.footer_style_4 .footer_contact_list .contact_number {
  font-size: 32px;
  color: #FF5252;
}
.footer_style_4 .footer_contact_list .contact_number:hover {
  color: #ffffff;
}
.footer_style_4 .footer_info_list > li {
  color: rgba(255, 255, 255, 0.8);
}
.footer_style_4 .footer_info_list > li:not(:last-child) {
  margin-bottom: 20px;
}
.footer_style_4 .footer_info_list a {
  color: rgba(255, 255, 255, 0.8);
}
.footer_style_4 .footer_info_list a:hover {
  color: #ffffff;
}
.footer_style_4 .footer_bottom {
  padding: 41px 0;
  border-top: 1px solid #2F313A;
}
.footer_style_4 .footer_bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer_style_4 .social_primary a {
  color: rgba(255, 255, 255, 0.8);
}
.footer_style_4 .social_primary a:hover {
  color: #ffffff;
}
.footer_style_4 .copyright_text {
  color: rgba(255, 255, 255, 0.8);
}
.footer_style_4 .copyright_text a {
  font-weight: 600;
  text-decoration: underline;
}

/* 3.2 - Footer - End
================================================== */
/* 3.3 - Breadcrumb - Start
================================================== */
.breadcrumb_section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.breadcrumb_style_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb_style_1 h1 {
  line-height: 1;
  font-size: 172px;
  margin-bottom: 45px;
  letter-spacing: -0.58px;
}
.breadcrumb_style_1 p {
  font-size: 26px;
  margin-bottom: 0;
  letter-spacing: 0.38px;
}

.breadcrumb_style_2 {
  padding: 270px 0 140px;
  background-size: 91% 88%;
  background-repeat: no-repeat;
  background-position: center center;
}
.breadcrumb_style_2 h1 {
	line-height: 1.1;
	font-size: 120px;
	margin-bottom: 40px;
	/*   color: #4444FF; */
	color: #ff5252;
	letter-spacing: -0.03em;
	text-shadow: 4px 3px 0px #000;
}
.breadcrumb_style_2 h1 span {
	text-shadow: none;
	margin-left: -80px;
	-webkit-text-stroke-width: 1px;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-color: #4444FF;
	-webkit-text-stroke-color: #ff5252;
}
.breadcrumb_style_2 p {
  font-size: 26px;
}
.breadcrumb_style_2 .circle_shape {
  top: 180px;
  left: 188px;
  max-width: 85px;
}
.breadcrumb_style_2 .circle_shape_2 {
  top: 46%;
  right: 200px;
  max-width: 63px;
}
.breadcrumb_style_2 .triangle_shape {
  left: 80px;
  bottom: 80px;
  max-width: 55px;
}
.breadcrumb_style_2 .triangle_shape_2 {
  top: 35%;
  right: 80px;
  max-width: 33px;
}

.breadcrumb_style_3 {
  padding-top: 300px;
}
.breadcrumb_style_3 h1 {
  color: #d0d0d0;
  font-size: 72px;
  margin-bottom: 0;
  letter-spacing: -0.04em;
}

.breadcrumb_style_4 {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  min-height: 600px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 150px 0 100px;
}
.breadcrumb_style_4 .overlay {
  background-color: rgba(0, 0, 0, 0.8);
}
.breadcrumb_style_4 .page_title {
  color: #fff;
  line-height: 1;
  font-size: 126px;
  letter-spacing: -0.03em;
}
.breadcrumb_style_4 .big_text {
  right: 0;
  left: -43px;
  z-index: -1;
  bottom: -205px;
  line-height: 1;
  font-weight: 700;
  font-size: 555px;
  position: absolute;
  letter-spacing: -0.03em;
  -webkit-text-stroke-width: 1px;
  text-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1);
  -webkit-text-fill-color: rgba(216, 216, 216, 0.03);
  -webkit-text-stroke-color: rgba(112, 112, 112, 0.2);
}

.breadcrumb_style_5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 200px 0;
  overflow: hidden;
  min-height: 790px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ff6d54;
}
.breadcrumb_style_5 .page_title {
  z-index: 1;
  color: #fff;
  line-height: 1.1;
  font-weight: 200;
  font-size: 102px;
  position: relative;
  letter-spacing: -0.06em;
}
.breadcrumb_style_5 .page_title strong {
  font-weight: 600;
}
.breadcrumb_style_5 .big_text {
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 1;
  color: #ff806a;
  font-weight: 600;
  font-size: 250px;
  position: absolute;
  letter-spacing: -0.04em;
  text-shadow: 50px 2px 25px #e9583f;
}
.breadcrumb_style_5 .block_overlay .block_item:nth-child(odd) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
}
.breadcrumb_style_5 .block_overlay .block_item:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* 3.3 - Breadcrumb - End
================================================== */
/* 3.4 - Offcanvas - Start
================================================== */
.sidebar-menu-wrapper {
  display: block;
}

.offcanvas_sidebar {
  top: 0;
  width: 370px;
  right: -400px;
  height: 100vh;
  z-index: 9999;
  position: fixed;
  overflow-y: scroll;
  padding: 80px 30px 50px;
  background-color: #ffffff;
  -webkit-transition: 0.6s cubic-bezier(1, 0, 0, 1);
  transition: 0.6s cubic-bezier(1, 0, 0, 1);
}
.offcanvas_sidebar.active {
  right: 0px;
}
.offcanvas_sidebar p {
  font-size: 16px;
  margin-bottom: 30px;
}
.offcanvas_sidebar .btn {
  min-width: auto;
  font-size: 16px;
  padding: 21px 40px;
}

.offcanvas_sidebar::-webkit-scrollbar {
  width: 0px;
}

.offcanvas_close_btn {
  top: 15px;
  right: 20px;
  line-height: 1;
  font-size: 24px;
  position: absolute;
}
.offcanvas_close_btn:hover {
  color: red;
}

.offcanvas_overlay {
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background: rgba(0, 0, 0, 0.8);
}
.offcanvas_overlay.active {
  opacity: 1;
  display: block;
}

.offcanvas_title {
  font-size: 24px;
  margin-bottom: 25px;
}

.Offcanvas_menu_list {
  margin-bottom: 50px;
}
.Offcanvas_menu_list > li > a {
  display: block;
  line-height: 1;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 500;
  color: #272727;
}
.Offcanvas_menu_list > li:hover > a, .Offcanvas_menu_list > li.active > a {
  color: #4444FF;
}
.Offcanvas_menu_list .dropdown-toggle::after {
  margin: 0;
  width: 20px;
  height: 20px;
  border: none;
  float: right;
  font-size: 14px;
  content: "";
  font-weight: 600;
  line-height: 22px;
  text-align: center;
  border-radius: 100%;
  background-color: #f1f1f1;
  font-family: "Font Awesome 5 Pro";
}
.Offcanvas_menu_list .dropdown-menu {
  width: 100%;
  border: none;
  padding: 10px;
  min-width: auto;
  border-radius: 0;
  color: #272727;
  background-color: #f9f9f9;
  -webkit-transform: unset !important;
          transform: unset !important;
  position: static !important;
}
.Offcanvas_menu_list .dropdown-menu > li:not(:last-child) {
  border-bottom: 1px solid rgba(68, 68, 255, 0.05);
}
.Offcanvas_menu_list .dropdown-menu > li > a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 15px;
  color: #272727;
}
.Offcanvas_menu_list .dropdown-menu > li:hover > a, .Offcanvas_menu_list .dropdown-menu > li.active > a {
  color: #4444FF;
  background-color: rgba(68, 68, 255, 0.05);
}

.offcanvas_sidebar .brand_logo {
  display: block;
  margin-bottom: 50px;
}

/* 3.4 - Offcanvas - End
================================================== */
/* 3.5 - Sidebar - start
================================================== */
.sidebar_section {
  padding: 40px;
  border: 1px solid #D6D6D6;
}

.sb_widget:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #272727;
}

.sb_widget_title {
  line-height: 1;
  font-size: 18px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.sb_search .form_item input {
  padding: 0;
  height: 40px;
  border: none;
  border-bottom: 1px solid #D6D6D6;
}
.sb_search .form_item input:focus {
  border-color: #4444FF;
}
.sb_search .form_item input:-moz-placeholder {
  color: #A4A4A4;
}
.sb_search .form_item input::-moz-placeholder {
  color: #A4A4A4;
}
.sb_search .form_item input:-ms-input-placeholder {
  color: #A4A4A4;
}
.sb_search .form_item input::-webkit-input-placeholder {
  color: #A4A4A4;
}
.sb_search .form_item button {
  top: 50%;
  right: 0;
  color: #A4A4A4;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sb_search .form_item button:hover {
  color: #4444FF;
}

.sb_category li:not(:last-child) {
  margin-bottom: 25px;
}
.sb_category a {
  display: block;
  line-height: 1;
  color: #525252;
  font-size: 16px;
}
.sb_category a:hover {
  color: #4444FF;
}
.sb_category a span {
  float: right;
}

.sb_tag_list {
  margin: -3px;
}
.sb_tag_list li {
  padding: 3px;
}
.sb_tag_list a {
  color: #525252;
  display: block;
  line-height: 1;
  font-size: 16px;
  padding: 14px 21px;
  border: 1px solid #EEEEEE;
}
.sb_tag_list a:hover {
  color: #ffffff;
  border-color: #4444FF;
  background-color: #4444FF;
}

/* 3.5 - Sidebar - end
================================================== */
/* 3.6 - Banner - Start
================================================== */
.banner_section {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 150px 0;
  min-height: 1080px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.banner_section .overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
}

.banner_style_1 {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.banner_style_1 .overlay {
  opacity: 0.5;
  background-image: linear-gradient(-29.358deg, #1b217a 0%, #08082c 100%);
}
.banner_style_1 h1 {
  line-height: 1;
  color: #ffffff;
  font-size: 102px;
  margin-bottom: 20px;
  letter-spacing: -0.49px;
}
.banner_style_1 p {
  font-size: 26px;
  margin-bottom: 55px;
  padding-right: 170px;
  letter-spacing: 0.38px;
}

.banner_style_2,
.banner_style_3 {
  padding: 249px 0;
  background-size: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #FAFAFA;
}
.banner_style_2 h1,
.banner_style_3 h1 {
  line-height: 1.1;
  font-size: 180px;
  font-weight: 700;
  margin-bottom: 60px;
/*   color: #4444FF; */
	color: #ff5252;
  letter-spacing: -0.44px;
}
.banner_style_2 h1 span,
.banner_style_3 h1 span {
  padding-left: 40px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-fill-color: transparent;
/*   -webkit-text-stroke-color: #4444FF; */
	  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #ff5252;
}
.banner_style_2 p,
.banner_style_3 p {
  font-size: 18px;
  margin-bottom: 30px;
  letter-spacing: 0.55px;
}
.banner_style_2 .deco_title_1,
.banner_style_2 .deco_title_2,
.banner_style_3 .deco_title_1,
.banner_style_3 .deco_title_2 {
  margin: 0;
  z-index: -1;
  color: #ffffff;
  line-height: 1;
  font-weight: 700;
  font-size: 270px;
  position: absolute;
  letter-spacing: -0.04em;
  text-shadow: 0px 0px 60px rgba(211, 211, 211, 0.43);
}
.banner_style_2 .deco_title_1,
.banner_style_3 .deco_title_1 {
  right: 115px;
  bottom: -115px;
}
.banner_style_2 .deco_title_2,
.banner_style_3 .deco_title_2 {
  top: 155px;
  left: -105px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.banner_style_2 .dot_shape_1,
.banner_style_2 .dot_shape_2,
.banner_style_3 .dot_shape_1,
.banner_style_3 .dot_shape_2 {
  max-width: 200px;
}
.banner_style_2 .dot_shape_1,
.banner_style_3 .dot_shape_1 {
  top: 185px;
  left: -45px;
}
.banner_style_2 .dot_shape_2,
.banner_style_3 .dot_shape_2 {
  right: 300px;
  bottom: 162px;
}
.banner_style_2 .triangle_shape,
.banner_style_3 .triangle_shape {
  left: 80px;
  bottom: 230px;
  max-width: 55px;
}
.banner_style_2 .circle_shape,
.banner_style_3 .circle_shape {
  right: 220px;
  bottom: 150px;
  max-width: 175px;
}
.banner_style_2 .circle_shape_2,
.banner_style_3 .circle_shape_2 {
  top: 170px;
  left: 185px;
  max-width: 120px;
}
.banner_style_2 .tall_shape,
.banner_style_3 .tall_shape {
  top: 0;
  bottom: 0;
  left: 278px;
  width: 260px;
  background-color: rgba(49, 51, 80, 0.03);
}
.banner_style_2 .dot_overlay,
.banner_style_3 .dot_overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.banner_style_3 .tall_shape {
  background-color: rgba(49, 51, 80, 0.2);
}

.banner_style_4 h1 {
  color: #ffffff;
  line-height: 1;
  font-size: 180px;
  margin-bottom: 60px;
  letter-spacing: -0.06em;
}
.banner_style_4 h1 span {
  color: #272727;
}
.banner_style_4 p {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 80px;
}
.banner_style_4 .flex_content_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.banner_style_4 .social_primary a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.banner_style_5 {
  overflow: hidden;
}
.banner_style_5 .big_text {
  left: 0;
  right: 0;
  bottom: -270px;
  line-height: 1;
  font-size: 555px;
  font-weight: 700;
  position: absolute;
  letter-spacing: -0.03em;
  -webkit-text-stroke-width: 1px;
  text-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1);
  -webkit-text-fill-color: rgba(216, 216, 216, 0.03);
  -webkit-text-stroke-color: rgba(112, 112, 112, 0.5);
}
.banner_style_5 h1 {
  font-size: 126px;
  line-height: 126px;
  margin-bottom: 30px;
  letter-spacing: -0.03em;
}
.banner_style_5 p {
  color: #fff;
  opacity: 0.9;
  font-size: 22px;
  margin-bottom: 50px;
  letter-spacing: 0.02em;
}
.banner_style_5 .btn {
  min-width: 220px;
  padding: 24px 40px;
}

/* 3.6 - Banner - End
================================================== */
/* 3.7 - Slider - Start
================================================== */
.slider_section {
  position: relative;
  padding-left: 120px;
  background-color: #131313;
}
.slider_section .carousel_arrow {
  top: 220px;
  z-index: 1;
  right: 90px;
  display: block;
  position: absolute;
}
.slider_section .carousel_arrow button {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  margin: 0 0 15px;
  border-radius: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.4);
}
.slider_section .carousel_arrow button:hover {
  color: #FF5252;
  background-color: #ffffff;
}
.slider_section .slick-dots {
  top: 50%;
  left: auto;
  z-index: 1;
  padding: 0;
  width: auto;
  bottom: auto;
  right: 90px;
  margin-top: 130px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slider_section .slick-dots li {
  width: 80px;
  display: block;
  text-align: center;
}
.slider_section .slick-dots li:not(:last-child) {
  margin: 0 0 5px;
}
.slider_section .slick-dots li button {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  display: inline-block;
  border: 2px solid #909090;
  background-color: transparent;
}
.slider_section .slick-dots li:hover button, .slider_section .slick-dots li.slick-active button {
  opacity: 1;
  border-color: #ffffff;
  background-color: #ffffff;
}
.slider_section .social_area {
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 120px;
  padding-top: 50px;
  position: absolute;
}
.slider_section .brand_logo {
  text-align: center;
}
.slider_section .social_primary {
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.slider_section .social_primary > li {
  width: 100%;
  display: block;
  text-align: center;
}
.slider_section .social_primary > li:not(:last-child) {
  margin: 0 0 20px;
}
.slider_section .social_primary a {
  color: #838386;
}
.slider_section .social_primary a:before {
  display: none;
}
.slider_section .social_primary a:hover {
  color: #ffffff;
}
.slider_section .go_down_btn {
  left: -8px;
  padding: 0;
  bottom: 100px;
  position: absolute;
  white-space: nowrap;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.slider_section .go_down_btn i {
  color: #FF5E15;
}
.slider_section .go_down_btn span {
  display: block;
  color: #838386;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.slider_section .go_down_btn:hover span {
  color: #ffffff;
}

.mouse_wheel_slider .slider_item {
  overflow: hidden;
  position: relative;
}
.mouse_wheel_slider .slider_item .global_link {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  position: absolute;
}
.mouse_wheel_slider .slider_item .item_image {
  overflow: hidden;
  position: relative;
  background-color: #ACACAC;
}
.mouse_wheel_slider .slider_item .item_image:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: "";
  position: absolute;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.65)), to(#000000));
  background: linear-gradient(rgba(0, 0, 0, 0.65) 0%, #000000 100%);
}
.mouse_wheel_slider .slider_item img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.mouse_wheel_slider .slider_item .item_content {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 60px;
  overflow: hidden;
  position: absolute;
}
.mouse_wheel_slider .slider_item .item_title {
  color: #ffffff;
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 18px;
}
.mouse_wheel_slider .slider_item .subtitle {
  color: #ff6d54;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 14px;
  letter-spacing: 0.21em;
}
.mouse_wheel_slider .slider_item p {
  opacity: 0;
  color: #e3e3e3;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: -120px;
  letter-spacing: 0.03em;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.mouse_wheel_slider .slider_item:hover .item_image:before {
  opacity: 0.8;
}
.mouse_wheel_slider .slider_item:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.mouse_wheel_slider .slider_item:hover p {
  opacity: 1;
  margin-bottom: 0;
}

/* 3.7 - Slider - End
================================================== */
/* 3.8 - About - Start
================================================== */
.about_section .image_wrap {
  margin-bottom: 60px;
}
.about_section h2 {
  line-height: 1;
  font-size: 102px;
  margin: 80px 0 60px;
  letter-spacing: -0.49px;
}
.about_section h3 {
  font-size: 26px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.about_section p {
  font-size: 26px;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.progress_item {
  position: relative;
  margin-bottom: 50px;
}

.progress_item .item_title {
  color: #222222;
  line-height: 1;
  font-size: 26px;
  font-weight: 600;
}
.progress_item .progress {
  width: 100%;
  height: 2px;
  margin-top: 15px;
  border-radius: 0;
  overflow: visible;
  background-color: #F5F5F5;
}
.progress_item .progress_bar {
  height: 6px;
  margin-top: -2px;
  position: relative;
  background-color: #4444FF;
}
.progress_item .value_text {
  z-index: 1;
  top: -44px;
  right: -5%;
  font-size: 26px;
  position: absolute;
  color: #4444FF;
}

@-webkit-keyframes Rx_width_60 {
  0% {
    width: 0%;
  }
  100% {
    width: 60%;
  }
}

@keyframes Rx_width_60 {
  0% {
    width: 0%;
  }
  100% {
    width: 60%;
  }
}
.Rx_width_60 {
  -webkit-animation-name: Rx_width_60;
  animation-name: Rx_width_60;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes Rx_width_80 {
  0% {
    width: 0%;
  }
  100% {
    width: 80%;
  }
}

@keyframes Rx_width_100 {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.Rx_width_100 {
  -webkit-animation-name: Rx_width_100;
  animation-name: Rx_width_100;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes Rx_width_84 {
  0% {
    width: 0%;
  }
  100% {
    width: 84%;
  }
}

@keyframes Rx_width_84 {
  0% {
    width: 0%;
  }
  100% {
    width: 84%;
  }
}
.Rx_width_84 {
  -webkit-animation-name: Rx_width_84;
  animation-name: Rx_width_84;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes Rx_width_95 {
  0% {
    width: 0%;
  }
  100% {
    width: 95%;
  }
}

@keyframes Rx_width_95 {
  0% {
    width: 0%;
  }
  100% {
    width: 95%;
  }
}
.Rx_width_95 {
  -webkit-animation-name: Rx_width_95;
  animation-name: Rx_width_95;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes Rx_width_75 {
  0% {
    width: 0%;
  }
  100% {
    width: 75%;
  }
}

@keyframes Rx_width_75 {
  0% {
    width: 0%;
  }
  100% {
    width: 75%;
  }
}
.Rx_width_75 {
  -webkit-animation-name: Rx_width_75;
  animation-name: Rx_width_75;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes Rx_width_90 {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}

@keyframes Rx_width_90 {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}
.Rx_width_90 {
  -webkit-animation-name: Rx_width_90;
  animation-name: Rx_width_90;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.about_section_2 .row {
  margin: -30px;
}
.about_section_2 .row .col {
  padding: 30px;
}
.about_section_2 h2 {
  font-size: 56px;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}
.about_section_2 p {
  color: #818291;
  font-size: 20px;
  padding-right: 55px;
  margin-bottom: 40px;
}
.about_section_2 p strong {
  color: #0E0E0E;
  display: block;
  font-weight: 500;
}
.about_section_2 .image_wrap {
  margin-bottom: 90px;
}

.about_section_3 {
  overflow: visible;
}
.about_section_3 .about_content {
  padding-right: 75px;
}
.about_section_3 h2 {
  color: #ffffff;
  font-size: 72px;
  margin-bottom: 40px;
  letter-spacing: -0.06em;
}
.about_section_3 h2 strong {
  font-weight: 700;
}
.about_section_3 h2 span {
  display: block;
  font-size: 36px;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
}
.about_section_3 p {
  color: #bbbbbb;
  font-size: 26px;
  letter-spacing: 0.04em;
}
.about_section_3 .circle_img_1 {
  top: -60px;
  right: 507px;
  max-width: 176px;
}
.about_section_3 .circle_img_2 {
  top: -128px;
  right: -276px;
  max-width: 728px;
}

.about_section_4 h2,
.about_section_4 h3 {
  color: #d0d0d0;
  font-size: 72px;
  margin-bottom: 40px;
  letter-spacing: -0.04em;
}
.about_section_4 span {
  display: block;
  line-height: 1;
  color: #d0d0d0;
  font-size: 36px;
  margin-bottom: 30px;
  letter-spacing: -0.03em;
}
.about_section_4 p {
  color: #dddddd;
  font-size: 26px;
  letter-spacing: 0.04em;
}
.about_section_4 img {
  margin: 100px 0;
}
.about_section_4 hr {
  margin: 65px 0;
  background-color: #707070;
}

.about_section_5 .about_image {
  padding: 10px;
  margin-bottom: 90px;
  background-color: #ffffff;
  -webkit-box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}
.about_section_5 p {
  letter-spacing: 0.02em;
}

.about_section_6 {
  z-index: 1;
  position: relative;
}
.about_section_6 .big_text {
  left: 0;
  right: 0;
  z-index: -1;
  bottom: -130px;
  line-height: 1;
  color: #f2f2f2;
  font-size: 262px;
  font-weight: 700;
  position: absolute;
  letter-spacing: -0.03em;
}
.about_section_6 .about_image {
  padding: 10px;
  background-color: #ffffff;
  -webkit-box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}
.about_section_6 .about_content {
  padding-left: 30px;
}
.about_section_6 .title_text {
  line-height: 1;
  font-size: 78px;
  margin-bottom: 20px;
  letter-spacing: -0.06em;
}
.about_section_6 p {
  font-size: 26px;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

.skill_item .value_text {
  display: block;
  line-height: 1;
  font-size: 72px;
  position: static;
  color: #272727;
}
.skill_item .progress {
  height: 5px;
  margin-bottom: 20px;
  background-color: rgba(95, 95, 95, 0.1);
}
.skill_item .progress_bar {
  height: 5px;
  margin-top: 0;
  background-color: #FF5252;
}
.skill_item .item_title {
  line-height: 1;
  font-size: 30px;
  margin-bottom: 5px;
}
.skill_item .designation {
  color: #828282;
  display: block;
  line-height: 1;
  font-size: 18px;
}

.about_section_7 {
  z-index: 1;
  position: relative;
}
.about_section_7 .focus_text {
  left: 0;
  right: 0;
  z-index: -1;
  bottom: -60px;
  color: #F5F5F5;
  font-weight: 800;
  font-size: 232px;
  position: absolute;
}
.about_section_7 p {
  color: #5a5c62;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 30px;
  letter-spacing: 0.03em;
}
.about_section_7 p strong {
  color: #2a2b2f;
  font-size: 26px;
  line-height: 36px;
}
.about_section_7 .mission_content:not(:last-child) {
  margin-bottom: 100px;
}
.about_section_7 .mission_content .item_title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 15px;
}
.about_section_7 .photography_tab_wrap {
  position: relative;
  padding: 65px 0 0 65px;
}
.about_section_7 .photography_tab_wrap .tab-pane {
  background-color: #ffffff;
}
.about_section_7 .photography_tab_wrap .tab-pane img {
  opacity: 0.2;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.about_section_7 .photography_tab_wrap .tab-pane img:hover {
  opacity: 1;
}
.about_section_7 .photography_tabs_nav {
  top: 0;
  left: 0;
  z-index: 1;
  position: absolute;
}
.about_section_7 .photography_tabs_nav button {
  color: #2b2c30;
  font-size: 18px;
  line-height: 52px;
  letter-spacing: 0.03em;
}
.about_section_7 .photography_tabs_nav button:hover, .about_section_7 .photography_tabs_nav button.active {
  color: #FF5252;
}

/* 3.8 - About - Start
================================================== */
/* 3.9 - Service - Start
================================================== */
.service_section.bg_gray {
  background-color: #f9f9f9;
}

.service_grid .item_image {
  overflow: hidden;
  margin-bottom: 30px;
}
.service_grid .item_image img {
  width: 100%;
  display: block;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.service_grid:hover .item_image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.service_grid .item_title {
  font-size: 36px;
  margin-bottom: 15px;
  letter-spacing: 0.13px;
}
.service_grid p {
  margin-bottom: 0;
}

.service_primary {
  padding-right: 60px;
}
.service_primary .item_title {
  font-size: 32px;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}
.service_primary p {
  color: #818291;
  font-size: 20px;
}

.service_boxed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  padding: 50px 30px;
  -webkit-box-shadow: 0px 20px 60px #f0f0f0;
          box-shadow: 0px 20px 60px #f0f0f0;
}
.service_boxed .item_icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 135px;
          flex: 0 0 135px;
}
.service_boxed .item_title {
  font-size: 32px;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}
.service_boxed p {
  color: #818291;
  font-size: 20px;
}

.service_item_icon {
  text-align: center;
}
.service_item_icon .item_icon,
.service_item_icon .icon_wrap {
  border-radius: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.service_item_icon .item_icon {
  width: 180px;
  height: 180px;
  margin-bottom: 30px;
  background-color: rgba(255, 109, 84, 0.1);
  border: 2px dashed rgba(255, 109, 84, 0.2);
}
.service_item_icon .icon_wrap {
  width: 140px;
  height: 140px;
  background-color: #ffffff;
}
.service_item_icon .item_title {
  font-size: 26px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.service_item_icon p {
  color: #5a5c62;
  font-size: 18px;
  letter-spacing: 0.03em;
}
.service_item_icon:hover .item_icon {
  background-color: #ffffff;
  border: 2px dashed #ff6d54;
}
.service_item_icon:hover .icon_wrap {
  background-color: #FF5252;
}
.service_item_icon:hover .icon_wrap path {
  fill: #ffffff;
}
.service_item_icon:hover .item_title {
  color: #FF5252;
}

/* 3.9 - Service - End
================================================== */
/* 3.10 - Portfolio - Start
================================================== */
.portfolio_section.bg_dark {
  background-color: #2B2C30;
}

.grid_col_2 .grid-item,
.grid_col_2 .grid-sizer {
  width: 50%;
}

.grid_col_3 .grid-item,
.grid_col_3 .grid-sizer {
  width: 33.333%;
}
.grid_col_3 .width_66 {
  width: 66.666%;
}

.masonry_portfolio {
  margin: -30px;
}
.masonry_portfolio .element-item {
  width: 50%;
  padding: 30px;
}

.masonry_4col {
  margin: -15px;
}
.masonry_4col .element-item {
  width: 25%;
  padding: 15px;
}

.portfolio_card_layout {
  background-color: #ffffff;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.portfolio_card_layout .item_image {
  display: block;
  overflow: hidden;
}
.portfolio_card_layout .item_image img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.portfolio_card_layout .item_content {
  padding: 25px 30px 23px;
}
.portfolio_card_layout .item_title {
  font-size: 36px;
  margin-bottom: 10px;
}
.portfolio_card_layout .item_title a {
  color: #272727;
}
.portfolio_card_layout .item_title a:hover {
  color: #4444FF;
}
.portfolio_card_layout .item_category > li {
  position: relative;
}
.portfolio_card_layout .item_category > li:not(:last-child) {
  margin-right: 17px;
  padding-right: 17px;
}
.portfolio_card_layout .item_category > li:after {
  top: 50%;
  width: 8px;
  right: -4px;
  height: 1px;
  content: "";
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #272727;
}
.portfolio_card_layout .item_category > li:last-child:after {
  display: none;
}
.portfolio_card_layout .item_category a {
  display: block;
  font-size: 18px;
  color: #272727;
}
.portfolio_card_layout .item_category a:hover {
  color: #4444FF;
}
.portfolio_card_layout:hover {
  -webkit-box-shadow: 0 20px 60px 0 rgba(41, 41, 41, 0.2);
          box-shadow: 0 20px 60px 0 rgba(41, 41, 41, 0.2);
}
.portfolio_card_layout:hover .item_image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.portfolio_card_layout:hover .item_title a {
  color: #4444FF;
}

.portfolio_fullimage {
  overflow: hidden;
  position: relative;
}
.portfolio_fullimage .image_wrap {
  width: 100%;
  display: block;
  overflow: hidden;
}
.portfolio_fullimage img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.portfolio_fullimage .item_content {
  opacity: 0;
  z-index: 1;
  left: 30px;
  bottom: 30px;
  padding: 30px;
  max-width: 420px;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  position: absolute;
  background-color: #ffffff;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.portfolio_fullimage h3 {
  font-size: 32px;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}
.portfolio_fullimage:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.portfolio_fullimage:hover .item_content {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.portfolio_fullimage .item_brand_list > li {
  position: relative;
}
.portfolio_fullimage .item_brand_list > li:not(:last-child) {
  margin-right: 6px;
  padding-right: 4px;
}
.portfolio_fullimage .item_brand_list > li:after {
  right: 0;
  bottom: 0;
  content: ",";
  position: absolute;
}
.portfolio_fullimage .item_brand_list > li:last-child:after {
  display: none;
}
.portfolio_fullimage .item_brand_list a {
  display: block;
  color: #272727;
}
.portfolio_fullimage .item_brand_list a:hover {
  color: #4444FF;
}

.double_portfolio_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.double_portfolio_wrap:not(:last-child) {
  margin-bottom: 120px;
}
.double_portfolio_wrap:nth-child(even) .portfolio_fullimage:nth-child(1) {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}
.double_portfolio_wrap .portfolio_fullimage {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.portfolio_list_layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.portfolio_list_layout .image_wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  overflow: hidden;
  position: relative;
}
.portfolio_list_layout .image_wrap:before {
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  font-size: 36px;
  content: "";
  font-weight: 400;
  position: absolute;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  font-family: "Font Awesome 5 Pro";
  background-color: rgba(68, 68, 255, 0.9);
}
.portfolio_list_layout:nth-child(odd) .image_wrap {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}
.portfolio_list_layout .item_category {
  margin-bottom: 20px;
}
.portfolio_list_layout .item_category > li {
  color: #5a5c62;
  font-size: 18px;
  position: relative;
  letter-spacing: 0.03em;
}
.portfolio_list_layout .item_category > li:not(:last-child) {
  margin-right: 5px;
  padding-right: 3px;
}
.portfolio_list_layout .item_category > li:after {
  right: 0;
  bottom: 0;
  content: ",";
  position: absolute;
}
.portfolio_list_layout .item_category > li:last-child:after {
  display: none;
}
.portfolio_list_layout .item_category a {
  color: #5a5c62;
}
.portfolio_list_layout .item_category a:hover {
  color: #4444FF;
}
.portfolio_list_layout .item_content {
  padding: 100px 200px;
}
.portfolio_list_layout .item_title {
  font-size: 32px;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}
.portfolio_list_layout .item_title a {
  color: #272727;
}
.portfolio_list_layout p {
  color: #818291;
  font-size: 20px;
  margin-bottom: 45px;
}
.portfolio_list_layout .btn {
  min-width: 210px;
  padding: 26px 30px;
}
.portfolio_list_layout:hover .image_wrap:before {
  opacity: 1;
}
.portfolio_list_layout:hover .item_title a {
  color: #4444FF;
}

.portfolio_list_layout.style_2 .btn_text {
  color: #FF5252;
}
.portfolio_list_layout.style_2 .btn_text span {
  border-color: #FF5252;
}
.portfolio_list_layout.style_2 .btn_text span:before {
  background-color: #272727;
}
.portfolio_list_layout.style_2 .btn_text:hover {
  color: #272727;
}
.portfolio_list_layout.style_2 .image_wrap:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 82, 82, 0.9);
}
.portfolio_list_layout.style_2 .item_category a:hover {
  color: #FF5252;
}
.portfolio_list_layout.style_2:hover .item_title a {
  color: #FF5252;
}

.portfolio_split_wrap .portfolio_list_layout .image_wrap {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}
.portfolio_split_wrap .portfolio_list_layout:nth-child(even) {
  background-color: #FCFCFC;
}
.portfolio_split_wrap .portfolio_list_layout .item_title {
  font-size: 36px;
}

.portfolio_list_layout_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 90px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.portfolio_list_layout_2 .item_image {
  padding: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 540px;
          flex: 0 0 540px;
  background-color: #ffffff;
  -webkit-box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}
.portfolio_list_layout_2 .image_wrap {
  display: block;
  overflow: hidden;
}
.portfolio_list_layout_2 .image_wrap img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.portfolio_list_layout_2 .item_category {
  margin-bottom: 20px;
}
.portfolio_list_layout_2 .item_category > li {
  color: #989898;
  font-size: 26px;
  position: relative;
  letter-spacing: 0.19em;
}
.portfolio_list_layout_2 .item_category > li:not(:last-child) {
  margin-right: 5px;
  padding-right: 1px;
}
.portfolio_list_layout_2 .item_category > li:after {
  right: 0;
  bottom: -7px;
  content: ",";
  position: absolute;
}
.portfolio_list_layout_2 .item_category > li:last-child:after {
  display: none;
}
.portfolio_list_layout_2 .item_category a {
  display: block;
  line-height: 1;
  color: #989898;
}
.portfolio_list_layout_2 .item_category a:hover {
  color: #4444FF;
}
.portfolio_list_layout_2 .item_title {
  line-height: 1;
  font-size: 72px;
  margin-bottom: 20px;
  letter-spacing: -0.06em;
}
.portfolio_list_layout_2 .item_title a {
  color: #272727;
}
.portfolio_list_layout_2 .item_title a:hover {
  color: #4444FF;
}
.portfolio_list_layout_2 p {
  font-size: 26px;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}
.portfolio_list_layout_2 .btn_text {
  font-size: 26px;
  font-weight: 500;
  color: #FF5252;
  letter-spacing: 0.04em;
}
.portfolio_list_layout_2 .btn_text span {
  border-color: #FF5252;
}
.portfolio_list_layout_2 .btn_text span:before {
  background-color: #4444FF;
}
.portfolio_list_layout_2 .btn_text:hover {
  color: #4444FF;
}
.portfolio_list_layout_2:hover .image_wrap img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.portfolio_list_layout_2:nth-child(odd) .item_content {
  padding: 0 0 0 80px;
}
.portfolio_list_layout_2:nth-child(even) .item_image {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}
.portfolio_list_layout_2:nth-child(even) .item_content {
  padding: 0 80px 0 0;
}

.portfolio_grid_layout {
  position: relative;
}
.portfolio_grid_layout .item_date {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  color: #ffffff;
  font-size: 14px;
  position: absolute;
  padding: 50px 40px;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
}
.portfolio_grid_layout .image_wrap {
  display: block;
  overflow: hidden;
}
.portfolio_grid_layout img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.portfolio_grid_layout .item_content {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
  padding: 40px 120px 40px 40px;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.portfolio_grid_layout .item_content:before {
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  content: "";
  z-index: -1;
  position: absolute;
  background-color: #2B2C30;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.portfolio_grid_layout .item_title {
	color: #ffffff;
	line-height: 1;
/* 	font-size: 36px; */
	font-size: 30px;
	margin-bottom: 15px;
	letter-spacing: -0.08em;
}
.portfolio_grid_layout .item_category > li {
  position: relative;
}
.portfolio_grid_layout .item_category > li:not(:last-child) {
  margin-right: 17px;
  padding-right: 17px;
}
.portfolio_grid_layout .item_category > li:after {
  top: 50%;
  width: 4px;
  height: 4px;
  right: -2px;
  content: "";
  position: absolute;
  border-radius: 100%;
  background-color: #D8D8D8;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.portfolio_grid_layout .item_category > li:last-child:after {
  display: none;
}
.portfolio_grid_layout .item_category a {
  color: #ffffff;
  display: block;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.portfolio_grid_layout .item_category a:hover {
  color: #4444FF;
}
.portfolio_grid_layout .details_link {
  top: 50%;
  opacity: 0;
  right: 40px;
  font-size: 48px;
  position: absolute;
  margin-right: 20px;
  color: #4444FF;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.portfolio_grid_layout .details_link:hover {
  color: #ffffff;
}
.portfolio_grid_layout:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.portfolio_grid_layout:hover .item_content:before {
  height: 100%;
}
.portfolio_grid_layout:hover .details_link {
  opacity: 1;
  margin-right: 0;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

/* 3.10 - Portfolio - End
================================================== */
/* 3.11 - Blog - Start
================================================== */
.blog_section.bg_gray {
  background-color: #f9f9f9;
}
.blog_section.bg_gray_2 {
  background-color: #F7F7F7;
}
.blog_section.bg_gray_3 {
  background-color: #FCFCFC;
}

.blog_3col_masonry {
  margin: -30px;
}
.blog_3col_masonry .element-item {
  padding: 30px;
  width: 33.333%;
}

.recent_post_list > li:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #D6D6D6;
}

.recent_post .item_title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}
.recent_post .item_title a {
  color: #525252;
}
.recent_post .item_title a:hover {
  color: #4444FF;
}
.recent_post .post_date {
  color: #A3A3A3;
  display: block;
  line-height: 1;
  font-size: 16px;
}
.recent_post:hover .item_title a {
  text-decoration: underline;
}

.blog_fullwidth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 90px 0;
  min-height: 760px;
  position: relative;
  -webkit-box-align: flex-End;
      -ms-flex-align: flex-End;
          align-items: flex-End;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.blog_fullwidth .overlay {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(transparent));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
}
.blog_fullwidth .post_meta {
  margin-bottom: 30px;
  color: #ffffff;
}
.blog_fullwidth .post_meta a {
  color: #ffffff;
}
.blog_fullwidth .post_meta a:hover {
  color: #4444FF;
}
.blog_fullwidth .item_title {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.blog_fullwidth p {
  color: #ffffff;
  margin-bottom: 30px;
}
.blog_fullwidth .btn_text {
  color: #ffffff;
}
.blog_fullwidth .btn_text span {
  border-color: #ffffff;
}

.blog_standard {
  margin-bottom: 90px;
}
.blog_standard .item_image {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}
.blog_standard .item_image img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog_standard .post_meta {
  margin-bottom: 30px;
}
.blog_standard .item_title {
  font-size: 36px;
  margin-bottom: 25px;
}
.blog_standard .item_title a {
  color: #272727;
}
.blog_standard .item_title a:hover {
  color: #4444FF;
}
.blog_standard p {
  margin-bottom: 20px;
}
.blog_standard:hover .item_image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.blog_standard:hover .item_title a {
  text-decoration: underline;
}

.blog_boxed_wrapper {
  display: -ms-grid;
  display: grid;
  grid-column-gap: 30px;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
}

.blog_item_boxed {
  padding: 60px 30px;
  position: relative;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  border-bottom: 5px solid #DBDBDB;
}
.blog_item_boxed .blog_category {
  margin-bottom: 20px;
}
.blog_item_boxed .blog_category li {
  position: relative;
}
.blog_item_boxed .blog_category li:not(:last-child) {
  margin-right: 6px;
  padding-right: 4px;
}
.blog_item_boxed .blog_category li:after {
  right: 0;
  bottom: 0;
  content: ",";
  color: #909090;
  position: absolute;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog_item_boxed .blog_category li:last-child:after {
  display: none;
}
.blog_item_boxed .blog_category a {
  color: #909090;
}
.blog_item_boxed .blog_category a:hover {
  color: #ffffff;
}
.blog_item_boxed p {
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 40px;
  color: #272727;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog_item_boxed .post_date {
  display: block;
  line-height: 1;
  font-weight: 700;
  color: #272727;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog_item_boxed .global_link {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  position: absolute;
}
.blog_item_boxed:hover {
  color: #ffffff;
  border-color: #4444FF;
  background-color: #4444FF;
}
.blog_item_boxed:hover .blog_category li:after {
  color: #A4A4FF;
}
.blog_item_boxed:hover .blog_category a {
  color: #A4A4FF;
}
.blog_item_boxed:hover .blog_category a:hover {
  color: #ffffff;
}
.blog_item_boxed:hover p,
.blog_item_boxed:hover .post_date {
  color: #ffffff;
}

.blog_grid {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #ffffff;
}
.blog_grid.has_border {
  border: 2px solid #F2F2F2;
}
.blog_grid .item_image {
  display: block;
  overflow: hidden;
}
.blog_grid .item_image img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog_grid .item_content {
  padding: 30px;
}
.blog_grid .post_date {
  line-height: 1;
  color: #818291;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}
.blog_grid .item_title {
  font-size: 26px;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}
.blog_grid .item_title a {
  color: #000;
}
.blog_grid .btn_text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: lowercase;
}
.blog_grid .btn_text span {
  padding-bottom: 0;
  border-bottom-width: 1px;
}
.blog_grid .btn_text span:before {
  height: 1px;
  bottom: -1px;
}
.blog_grid .item_author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog_grid .item_author .author_image {
  width: 50px;
  height: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  overflow: hidden;
  margin: 0 20px 0 0;
  border-radius: 100%;
}
.blog_grid .item_author .author_title {
  color: #2b2c30;
  font-size: 14px;
}
.blog_grid .item_author .author_title small {
  color: #737373;
  font-size: 14px;
}
.blog_grid:hover {
  border-color: #ffffff;
  -webkit-box-shadow: 0px 20px 30px rgba(204, 204, 204, 0.5);
          box-shadow: 0px 20px 30px rgba(204, 204, 204, 0.5);
}
.blog_grid:hover .item_image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.blog_grid:hover .item_title a {
  color: #4444FF;
}

.blog_item_boxed_2 {
  padding: 65px 40px 60px;
  background-color: #ffffff;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-box-shadow: 0px 0px 10px rgba(219, 219, 219, 0.5);
          box-shadow: 0px 0px 10px rgba(219, 219, 219, 0.5);
}
.blog_item_boxed_2 .post_meta {
  margin-bottom: 39px;
}
.blog_item_boxed_2 .post_meta > li {
  color: #5a5c62;
  font-size: 14px;
  line-height: 24px;
  position: relative;
  letter-spacing: 0.03em;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog_item_boxed_2 .post_meta > li:not(:last-child) {
  margin-right: 24px;
  padding-right: 24px;
}
.blog_item_boxed_2 .post_meta > li:after {
  top: 50%;
  content: "";
  right: -5px;
  width: 10px;
  height: 2px;
  position: absolute;
  background-color: #5A5C62;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog_item_boxed_2 .post_meta > li:last-child:after {
  display: none;
}
.blog_item_boxed_2 .post_meta a {
  color: #5a5c62;
}
.blog_item_boxed_2 .post_meta a:hover {
  color: #FF5252;
}
.blog_item_boxed_2 .item_title {
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 25px;
}
.blog_item_boxed_2 .item_title a {
  color: #2a2b2f;
}
.blog_item_boxed_2 .item_title a:hover {
  text-decoration: underline;
}
.blog_item_boxed_2 p {
  color: #5a5c62;
  font-size: 17px;
  line-height: 32px;
  margin-bottom: 41px;
  letter-spacing: 0.03em;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog_item_boxed_2 .post_admin {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.blog_item_boxed_2 .post_admin .admin_image {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 20px;
  border-radius: 100%;
}
.blog_item_boxed_2 .post_admin .admin_name {
  color: #5a5c62;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.03em;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog_item_boxed_2:hover {
  background-color: #FF5252;
}
.blog_item_boxed_2:hover p,
.blog_item_boxed_2:hover .item_title a,
.blog_item_boxed_2:hover .post_meta li,
.blog_item_boxed_2:hover .post_meta a,
.blog_item_boxed_2:hover .post_admin .admin_name {
  color: #ffffff;
}
.blog_item_boxed_2:hover .post_meta li:after {
  background-color: #ffffff;
}

.blog_boxed_image {
  z-index: 1;
  overflow: hidden;
  position: relative;
}
.blog_boxed_image:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: "";
  position: absolute;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000));
  background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, #000 100%);
}
.blog_boxed_image img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog_boxed_image .item_content {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 30px;
  position: absolute;
}
.blog_boxed_image .item_title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}
.blog_boxed_image .item_author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog_boxed_image .item_author .author_image {
  width: 50px;
  height: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  overflow: hidden;
  margin: 0 20px 0 0;
  border-radius: 100%;
}
.blog_boxed_image .item_author .author_title {
  color: #ffffff;
  font-size: 14px;
}
.blog_boxed_image .item_author .author_title small {
  display: block;
  color: #D5D5D5;
  font-size: 14px;
}
.blog_boxed_image .global_link {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  position: absolute;
}
.blog_boxed_image:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

/* 3.11 - Blog - End
================================================== */
/* 3.12 - Details - Start
================================================== */
.portfolio_details .details_image {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 1080px;
  position: relative;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 100px 0 70px;
}
.portfolio_details .details_image .overlay {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(transparent));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
}
.portfolio_details .image_wrap {
  margin-bottom: 60px;
}
.portfolio_details h1 {
  line-height: 1;
  font-size: 102px;
  margin-bottom: 0;
  letter-spacing: -3px;
}
.portfolio_details .post_category {
  display: block;
  line-height: 1;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 30px;
}
.portfolio_details h2 {
  line-height: 1;
  font-size: 102px;
  margin-bottom: 40px;
  letter-spacing: -4px;
}
.portfolio_details h3 {
  font-size: 36px;
  margin-bottom: 35px;
}
.portfolio_details .details_content p {
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 50px;
}
.portfolio_details .additional_info {
  padding: 70px 0;
  background-color: #F9F9F9;
}
.portfolio_details .additional_info h4 {
  line-height: 1;
  font-size: 26px;
  margin-bottom: 20px;
}
.portfolio_details .additional_info p {
  line-height: 1;
  font-size: 18px;
  margin-bottom: 0;
}

.other_post_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.other_post_item .item_image {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 840px;
          flex: 0 0 840px;
  overflow: hidden;
}
.other_post_item .item_image img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.other_post_item:hover .item_image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.other_post_item .item_content {
  padding: 130px;
}
.other_post_item h3 {
  line-height: 1;
  font-size: 102px;
  letter-spacing: -4px;
  margin-bottom: 100px;
}
.other_post_item h4 {
  line-height: 1;
  font-size: 36px;
  margin-bottom: 20px;
}
.other_post_item span {
  display: block;
  line-height: 1;
  font-size: 18px;
  letter-spacing: 1px;
}
.other_post_item:nth-child(odd) {
  color: #ffffff;
  background-color: #4444FF;
}
.other_post_item:nth-child(odd) h3, .other_post_item:nth-child(odd) h4 {
  color: #ffffff;
}
.other_post_item:nth-child(odd) .item_image {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.other_post_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.other_post_wrap .other_post_item_2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.other_post_item_2 {
  z-index: 1;
  color: #ffffff;
  display: block;
  overflow: hidden;
  text-align: center;
  position: relative;
  padding: 100px 50px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.other_post_item_2:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  position: absolute;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #2B2C30;
}
.other_post_item_2:hover {
  color: #ffffff;
}
.other_post_item_2:hover:before {
  background-color: rgba(255, 109, 48, 0.6);
}
.other_post_item_2 span {
  line-height: 1;
  display: block;
  font-size: 36px;
  letter-spacing: -0.08em;
}
.other_post_item_2 small {
  display: block;
  font-size: 14px;
  margin-bottom: 13px;
  letter-spacing: 0.04em;
}
.other_post_item_2 i {
  top: 50%;
  font-size: 48px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.other_post_item_2 i.icon_left {
  left: 100px;
}
.other_post_item_2 i.icon_right {
  right: 100px;
}

.portfolio_details_2 .item_title {
  line-height: 1;
  color: #2a2b2f;
  font-size: 92px;
  font-weight: 300;
  margin-bottom: 60px;
  letter-spacing: -0.07em;
}
.portfolio_details_2 .item_title strong {
  font-weight: 600;
}
.portfolio_details_2 hr {
  margin: 50px 0;
}
.portfolio_details_2 .description_wrap:not(:last-child) {
  margin-bottom: 30px;
}

.blog_details .blog_fullwidth {
  min-height: 100vh;
}
.blog_details .post_meta {
  margin-bottom: 25px;
}
.blog_details h2 {
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.blog_details .blog_details_content p {
  font-size: 26px;
  margin-bottom: 45px;
  letter-spacing: 0.38px;
}
.blog_details .area_title {
  color: #000;
  font-size: 32px;
  margin-bottom: 40px;
  padding-bottom: 25px;
  letter-spacing: -0.03em;
  border-bottom: 1px solid #E3E3E3;
}
.blog_details .blog_details_content hr {
  margin: 45px 0;
}
.blog_details .blog_post_author_2 p {
  font-size: 18px;
}

.tag_share_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tag_share_links .sb_tag_list,
.tag_share_links .item_share_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tag_share_links h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 30px 0 0;
  letter-spacing: 0.28px;
}

.other_blogpost_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 110px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog_other_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog_other_post span {
  display: block;
  line-height: 1;
  font-size: 18px;
  margin-bottom: 10px;
  color: #272727;
  text-transform: uppercase;
}
.blog_other_post h4 {
  line-height: 1;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 0;
}
.blog_other_post h4 a {
  color: #272727;
}
.blog_other_post .arrow_btn {
  height: 102px;
  color: #D8D8D8;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 102px;
          flex: 0 0 102px;
  font-size: 26px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid rgba(39, 39, 39, 0.1);
}
.blog_other_post:nth-child(odd) .arrow_btn {
  margin-right: 40px;
}
.blog_other_post:nth-child(even) {
  text-align: right;
}
.blog_other_post:nth-child(even) .arrow_btn {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
  margin-left: 40px;
}
.blog_other_post:hover .arrow_btn {
  color: #ffffff;
  border-color: #4444FF;
  background-color: #4444FF;
}
.blog_other_post:hover h4 a {
  color: #4444FF;
}

.blog_post_author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 65px 470px 65px 0;
  border-top: 1px solid #D8D8D8;
  border-bottom: 1px solid #D8D8D8;
}
.blog_post_author .image_wrap {
  height: 120px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  overflow: hidden;
  margin-right: 40px;
  border-radius: 100%;
}
.blog_post_author .author_name {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}
.blog_post_author p {
  font-size: 18px;
}
.blog_post_author .follow_btn {
  top: 50%;
  right: 0;
  width: 330px;
  height: 100px;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 30px;
  position: absolute;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4444FF;
  display: inline-block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #E9E9E9;
  text-transform: uppercase;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.blog_post_author .follow_btn:hover {
  color: #ffffff;
  border-color: #4444FF;
  background-color: #4444FF;
}

.related_post_wrap {
  margin-bottom: 80px;
}
.related_post_wrap .row {
  margin: -15px;
}
.related_post_wrap .col {
  padding: 15px;
}

.details_info {
  margin-bottom: 45px;
}
.details_info li {
  color: #5A5C62;
  font-size: 26px;
  padding-left: 60px;
  position: relative;
}
.details_info li:not(:last-child) {
  margin-bottom: 30px;
}
.details_info li:before {
  left: 0;
  top: 14px;
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  border-radius: 100%;
  background-color: #FF5252;
}

.blog_details.style_2 {
  background-color: #F7F7F7;
}
.blog_details.style_2 .blog_details_content {
  z-index: 1;
  position: relative;
  margin-top: -120px;
  padding: 70px 40px 90px;
  background-color: #ffffff;
}
.blog_details.style_2 .blog_details_content p {
  font-size: 20px;
  letter-spacing: 0;
}
.blog_details.style_2 .blog_details_content hr {
  margin: 30px 0 20px;
}
.blog_details.style_2 .post_meta_2 > li:nth-child(1) {
  width: 45%;
}
.blog_details.style_2 h2 {
  color: #000000;
  font-size: 32px;
  margin-bottom: 0;
  text-align: center;
  padding: 0 120px 50px;
  letter-spacing: -0.03em;
}
.blog_details.style_2 .tag_share_links {
  display: block;
}
.blog_details.style_2 .tag_share_links .sb_tag_list {
  margin-bottom: 30px;
}
.blog_details.style_2 .related_post_wrap .blog_grid {
  -webkit-box-shadow: 0 20px 60px 0 #F0F0F0;
          box-shadow: 0 20px 60px 0 #F0F0F0;
}
.blog_details.style_2 .related_post_wrap .blog_grid .item_content {
  padding: 20px;
}
.blog_details.style_2 .related_post_wrap .blog_grid .item_title {
  font-size: 24px;
  margin-bottom: 15px;
}
.blog_details.style_2 .related_post_wrap .blog_grid .btn_text {
  font-size: 18px;
}
.blog_details.style_2 .comment_area {
  padding-bottom: 50px;
}
.blog_details.style_2 .comment_list > .comment_item {
  margin: 0 0 30px 0;
}
.blog_details.style_2 .comment_list .content_wrap {
  padding: 30px;
  background-color: #F7F7F7;
}
.blog_details.style_2 .comment_list .content_wrap p {
  margin-bottom: 12px;
}
.blog_details.style_2 .comment_list .content_wrap .comment_item {
  margin: 30px 0 0;
}
.blog_details.style_2 .comment_list .content_wrap .content_wrap {
  padding: 0;
}

.blog_details.style_3 .blog_other_post:hover .arrow_btn {
  border-color: #FF5252;
  background-color: #FF5252;
}
.blog_details.style_3 .blog_other_post:hover h4 a,
.blog_details.style_3 .comment_list .btns_group a:hover {
  color: #FF5252;
}
.blog_details.style_3 .comment_form .form_item textarea:focus {
  border-color: #FF5252;
}
.blog_details.style_3 .comment_form .form_item button {
  background-color: #FF5252;
}

.blog_post_author_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
  border: 1px solid #E3E3E3;
  background-color: #ffffff;
  padding: 70px 190px 70px 60px;
}
.blog_post_author_2 .image_wrap {
  width: 120px;
  height: 120px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  overflow: hidden;
  margin: 0 40px 0 0;
  border-radius: 100%;
}
.blog_post_author_2 .author_name {
  font-size: 26px;
  margin-bottom: 16px;
}
.blog_post_author_2 p {
  font-size: 18px;
}
.blog_post_author_2 .follow_btn {
  font-size: 18px;
  font-weight: 600;
  color: #FF5252;
}

/* 3.12 - Details - End
================================================== */
/* 3.13 - Award - Start
================================================== */
.award_section.bg_blue {
  background-color: #4444FF;
}
.award_section.bg_gray {
  background-color: #F9F9F9;
}

.award_item {
  padding-top: 30px;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  border-top: 4px solid #ffffff;
}
.award_item .year_text {
  color: #ffffff;
  line-height: 1;
  font-size: 72px;
  margin-bottom: 30px;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.award_item:hover {
  border-top-color: #ffffff;
}
.award_item .award_list > li:not(:last-child) {
  margin-bottom: 10px;
}
.award_item .award_list a {
  color: #ffffff;
  font-size: 26px;
}
.award_item .award_list a:hover {
  opacity: 0.6;
}

.award_item.style_2 {
  padding: 0;
  border: none;
}
.award_item.style_2 .year_text {
  color: #d0d0d0;
  font-size: 36px;
  letter-spacing: -0.03em;
}
.award_item.style_2 p {
  color: #d0d0d0;
  font-size: 36px;
  letter-spacing: -0.03em;
}

.award_item.style_3 {
  border: none;
  min-height: 590px;
  padding: 120px 60px;
  background-color: #ffffff;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.award_item.style_3 .item_logo {
  margin-bottom: 20px;
}
.award_item.style_3 .item_logo_link {
  max-width: 200px;
}
.award_item.style_3 .award_list a {
  color: #636363;
  font-weight: 300;
}
.award_item.style_3 .award_list a:hover {
  text-decoration: underline;
}
.award_item.style_3 .item_title {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 14px;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.award_item.style_3:hover {
  background-color: #FF5252;
}
.award_item.style_3:hover .item_title {
  color: #ffffff;
}
.award_item.style_3:hover .award_list a {
  color: #ffffff;
}

/* 3.13 - Award - End
================================================== */
/* 3.14 - Client - Start
================================================== */
.client_section.bg_gray {
  background-color: #F9F9F9;
}
.client_section.bg_danger {
  background-color: #FF6D54;
}

.client_item {
  height: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
}
.client_item img {
  max-width: 218px;
}
.client_item:hover {
  z-index: 1;
  -webkit-box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.client_style_3 {
  margin: -25px;
}
.client_style_3 .col {
  padding: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}
.client_style_3 .client_item {
  height: 202px;
  background-color: #2A2A2A;
}
.client_style_3 .client_item:hover {
  background-color: #000000;
}
.client_style_3 .client_item img {
  max-width: 130px;
}

.client_item_2 {
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
.client_item_2:before {
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #272727;
}
.client_item_2 img {
  max-width: 180px;
}
.client_item_2:hover {
  border-color: #272727;
}
.client_item_2:hover:before {
  top: 12px;
  left: 12px;
}

.client_items_group {
  border-top: 1px solid #EDEDED;
  border-left: 1px solid #EDEDED;
}
.client_items_group > li {
  width: 20%;
  border-right: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
}
.client_items_group .client_item {
  height: 160px;
}
.client_items_group .client_item img {
  max-width: 150px;
}

/* 3.14 - Client - End
================================================== */
/* 3.15 - Contact - Start
================================================== */
.contact_section.bg_gray {
  background-color: #F9F9F9;
}

.map_section iframe {
  width: 100%;
  height: 600px;
}

.contact_form {
  padding-top: 30px;
}
.contact_form .row {
  margin: 0 -15px;
}
.contact_form .col {
  padding: 0 15px;
}
.contact_form .btn {
  margin-top: 30px;
}
.contact_form.from_gray .select_option .nice-select {
  background-color: #f9f9f9;
}
.contact_form.from_gray .select_option .nice-select .list {
  background-color: #f9f9f9;
}
.contact_form.from_gray .form_item input,
.contact_form.from_gray .form_item textarea {
  background-color: #f9f9f9;
}

.contact_info_list h3 {
  line-height: 1;
  font-size: 36px;
  margin-bottom: 20px;
}
.contact_info_list a {
  color: #272727;
}
.contact_info_list a:hover {
  color: #4444FF;
}

.contact_info_list_2 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact_info_list_2 li:not(:last-child) {
  margin-bottom: 30px;
}
.contact_info_list_2 span {
  height: 60px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  margin-right: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #4444FF;
}
.contact_info_list_2 a {
  color: #818291;
  font-size: 20px;
}
.contact_info_list_2 a:hover {
  color: #4444FF;
  text-decoration: underline;
}

.contact_area_2 {
  padding-top: 90px;
}
.contact_area_2 h2 {
  font-size: 56px;
  margin-bottom: 35px;
  letter-spacing: -0.02em;
}
.contact_area_2 p {
  font-size: 20px;
}
.contact_area_2 .contact_content {
  padding-right: 60px;
}
.contact_area_2 .select_option .nice-select {
  height: 70px;
  line-height: 66px;
  border: 2px solid #818181;
}
.contact_area_2 .form_item input, .contact_area_2 .form_item textarea {
  border: 2px solid #818181;
}
.contact_area_2 .form_item input {
  height: 70px;
}

.contact_info_wrap_2 .section_title_3 {
  margin-bottom: 62px;
}
.contact_info_wrap_2 p {
  color: #818291;
  font-size: 20px;
  margin-bottom: 30px;
}

.contact_form_2 {
  padding: 150px 0 120px;
}
.contact_form_2 h2 {
  color: #d0d0d0;
  font-size: 72px;
  text-align: center;
  margin-bottom: 70px;
  letter-spacing: -0.04em;
}
.contact_form_2 .select_option .nice-select {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.contact_form_2 .select_option .nice-select:hover {
  border-color: #ffffff;
}
.contact_form_2 .form_item textarea, .contact_form_2 .form_item input {
  color: #ffffff;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.contact_form_2 .form_item textarea:focus, .contact_form_2 .form_item input:focus {
  border-color: #ffffff;
}
.contact_form_2 .form_item textarea:-moz-placeholder, .contact_form_2 .form_item input:-moz-placeholder {
  color: #ffffff;
}
.contact_form_2 .form_item textarea::-moz-placeholder, .contact_form_2 .form_item input::-moz-placeholder {
  color: #ffffff;
}
.contact_form_2 .form_item textarea:-ms-input-placeholder, .contact_form_2 .form_item input:-ms-input-placeholder {
  color: #ffffff;
}
.contact_form_2 .form_item textarea::-webkit-input-placeholder, .contact_form_2 .form_item input::-webkit-input-placeholder {
  color: #ffffff;
}

.contact_icon_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  border: 1px solid #DDDDDD;
}
.contact_icon_box .item_icon {
  width: 112px;
  height: 112px;
  font-size: 30px;
  margin-right: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FF5252;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FFEDED;
  border: 1px solid #FF5252;
}
.contact_icon_box .item_content {
  color: #000;
  line-height: 1;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.dark_contact_section {
  padding: 190px 0 100px;
  background-color: #15161B;
}
.dark_contact_section .select_option .nice-select {
  color: #ffffff;
  padding: 0 40px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
}
.dark_contact_section .select_option .nice-select:hover {
  border-color: #ffffff;
}
.dark_contact_section .form_item input {
  padding: 0 40px;
  border-radius: 50px;
}
.dark_contact_section .form_item textarea {
  padding: 30px 40px;
  border-radius: 34px;
}
.dark_contact_section .form_item input,
.dark_contact_section .form_item textarea {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
}
.dark_contact_section .form_item input:hover, .dark_contact_section .form_item input:focus,
.dark_contact_section .form_item textarea:hover,
.dark_contact_section .form_item textarea:focus {
  border-color: #ffffff;
}
.dark_contact_section .form_item input:-moz-placeholder,
.dark_contact_section .form_item textarea:-moz-placeholder {
  color: #ffffff;
}
.dark_contact_section .form_item input::-moz-placeholder,
.dark_contact_section .form_item textarea::-moz-placeholder {
  color: #ffffff;
}
.dark_contact_section .form_item input:-ms-input-placeholder,
.dark_contact_section .form_item textarea:-ms-input-placeholder {
  color: #ffffff;
}
.dark_contact_section .form_item input::-webkit-input-placeholder,
.dark_contact_section .form_item textarea::-webkit-input-placeholder {
  color: #ffffff;
}

.contact_line_2 a {
  color: #ffffff;
}
.contact_line_2 a:hover {
  color: #4444FF;
  text-decoration: underline;
}
.contact_line_2 span {
  font-size: 26px;
  font-weight: 200;
}
.contact_line_2 strong {
  font-size: 36px;
  font-weight: 600;
}
.contact_line_2 strong a {
  color: #FF5252;
}

.instagram_shoot_wrap ul {
  margin: 0 -15px;
}
.instagram_shoot_wrap ul > li {
  padding: 15px;
}
.instagram_shoot_wrap ul:nth-child(1) {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.instagram_shoot_wrap ul:nth-child(1) > li:nth-child(1) a, .instagram_shoot_wrap ul:nth-child(1) > li:nth-child(2) a, .instagram_shoot_wrap ul:nth-child(1) > li:nth-child(5) a {
  max-width: 200px;
}
.instagram_shoot_wrap ul:nth-child(1) > li:nth-child(3) a {
  max-width: 320px;
}
.instagram_shoot_wrap ul:nth-child(1) > li:nth-child(4) a {
  max-width: 260px;
}
.instagram_shoot_wrap ul:nth-child(2) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.instagram_shoot_wrap ul:nth-child(2) > li:nth-child(1) a, .instagram_shoot_wrap ul:nth-child(2) > li:nth-child(3) a, .instagram_shoot_wrap ul:nth-child(2) > li:nth-child(5) a {
  max-width: 200px;
}
.instagram_shoot_wrap ul:nth-child(2) > li:nth-child(2) a, .instagram_shoot_wrap ul:nth-child(2) > li:nth-child(4) a {
  max-width: 260px;
}

/* 3.15 - Contact - End
================================================== */
/* 3.16 - Counter - Start
================================================== */
.counter_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.counter_item .count_text {
  line-height: 1;
  color: #d0d0d0;
  font-size: 72px;
  margin-right: 40px;
  letter-spacing: -0.06em;
}
.counter_item .item_title {
  margin: 0;
  color: #bdbdbd;
  font-size: 18px;
}
.counter_item .item_title small {
  font-size: inherit;
}

/* 3.16 - Counter - End
================================================== */
/* 3.17 - Team - Start
================================================== */
.team_section.bg_gray {
  background-color: #F9F9F9;
}
.team_section.bg_black {
  background-color: #000000;
}

.team_item {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.team_item .team_image {
  overflow: hidden;
  position: relative;
}
.team_item .team_content {
  padding: 40px 30px 25px;
}
.team_item .team_name {
  line-height: 1;
  font-size: 30px;
  margin-bottom: 10px;
  letter-spacing: 0.13px;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.team_item p {
  line-height: 1;
  color: #525252;
  font-size: 16px;
  margin-bottom: 0;
  letter-spacing: 0.27px;
}
.team_item:hover {
  background-color: #ffffff;
  -webkit-box-shadow: 20px 20px 60px rgba(41, 41, 41, 0.2);
          box-shadow: 20px 20px 60px rgba(41, 41, 41, 0.2);
}
.team_item:hover .team_name {
  color: #4444FF;
}

.team_item_2 .team_image {
  overflow: hidden;
  position: relative;
  margin-bottom: 35px;
}
.team_item_2 .team_image:before {
  top: 0;
  width: 0;
  left: 50%;
  bottom: 0;
  z-index: 1;
  content: "";
  opacity: 0.85;
  position: absolute;
  background-color: #4444FF;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.team_item_2 .team_social {
  z-index: 2;
  right: 20px;
  bottom: 20px;
  overflow: hidden;
  text-align: center;
  position: absolute;
}
.team_item_2 .team_social:before {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  height: 45px;
  position: absolute;
  background-color: #ffffff;
  -webkit-transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.team_item_2 .plus_btn {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  border-top: 1px solid transparent;
}
.team_item_2 .plus_btn,
.team_item_2 .social_primary a {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #282828;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
}
.team_item_2 .social_primary > li {
  margin: 0;
  -webkit-transform: translateX(55px);
          transform: translateX(55px);
  -webkit-transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.team_item_2 .social_primary a {
  z-index: 1;
  font-size: 15px;
}
.team_item_2 .social_primary a:hover {
  color: #ffffff;
}
.team_item_2 .social_primary a:before {
  z-index: -1;
  height: 100%;
}
.team_item_2 .social_primary .facebook a:before {
  background-color: #3b5998;
}
.team_item_2 .social_primary .twitter a:before {
  background-color: #1da1f2;
}
.team_item_2 .social_primary .linkedin a:before {
  background-color: #0a66c2;
}
.team_item_2 .social_primary .youtube a:before {
  background-color: #ff0000;
}
.team_item_2 .social_primary .instagram a:before {
  background-color: #c32aa3;
}
.team_item_2 .team_name {
  line-height: 1;
  font-size: 32px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.team_item_2 .team_title {
  color: #9e9e9e;
  display: block;
  line-height: 1;
  font-size: 18px;
  letter-spacing: 0.03em;
}
.team_item_2:hover .team_image:before {
  width: 100%;
}
.team_item_2:hover .team_social:before {
  height: 100%;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.team_item_2:hover .plus_btn {
  border-color: rgba(0, 0, 0, 0.1);
}
.team_item_2:hover .social_primary > li {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.team_item_2:hover .social_primary > li:nth-child(5) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.team_item_2:hover .social_primary > li:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.team_item_2:hover .social_primary > li:nth-child(3) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.team_item_2:hover .social_primary > li:nth-child(2) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.team_item_2:hover .social_primary > li:nth-child(1) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.team_item_3 {
  border: 1px solid #F2F2F2;
  background-color: #ffffff;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.team_item_3 .team_image {
  overflow: hidden;
  position: relative;
}
.team_item_3 .team_social {
  top: 30px;
  right: 30px;
  z-index: 1;
  position: absolute;
  text-align: center;
}
.team_item_3 .team_social > li {
  -webkit-transform: translateX(60px);
          transform: translateX(60px);
  -webkit-transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.team_item_3 .team_social > li:not(:last-child) {
  margin: 0 0 20px;
}
.team_item_3 .team_social a {
  color: #ffffff;
  display: block;
  line-height: 1;
}
.team_item_3 .team_social a:hover {
  opacity: 0.5;
}
.team_item_3 .image_wrap {
  display: block;
  overflow: hidden;
  background-color: #FF6D54;
}
.team_item_3 .image_wrap img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.team_item_3 .team_content {
  padding: 30px;
}
.team_item_3 .team_name {
  font-size: 36px;
  margin-bottom: 0;
  line-height: 46px;
  letter-spacing: -0.08em;
}
.team_item_3 .team_name a {
  color: #2b2c30;
}
.team_item_3 .team_title {
  color: #5a5c62;
  display: block;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.03em;
}
.team_item_3:hover {
  -webkit-box-shadow: 0px 20px 30px rgba(204, 204, 204, 0.5);
          box-shadow: 0px 20px 30px rgba(204, 204, 204, 0.5);
}
.team_item_3:hover .image_wrap img {
  opacity: 0.1;
}
.team_item_3:hover .team_social > li {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.team_item_3:hover .team_social > li:nth-child(1) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.team_item_3:hover .team_social > li:nth-child(2) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.team_item_3:hover .team_social > li:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.team_item_3:hover .team_social > li:nth-child(4) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/* 3.17 - Team - End
================================================== */
/* 3.18 - Call To Action - Start
================================================== */
.calltoaction_section.bg_gray {
  background-color: #F9F9F9;
}
.calltoaction_section.bg_blue {
  background-color: #4444FF;
}
.calltoaction_section h2 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 30px;
  letter-spacing: 0.19px;
}
.calltoaction_section h3 {
  font-size: 72px;
  margin-bottom: 50px;
  letter-spacing: -1px;
}
.calltoaction_section p {
  font-size: 26px;
  margin-bottom: 35px;
}
.calltoaction_section .mail_text {
  display: block;
  line-height: 1;
  font-size: 56px;
  letter-spacing: -0.02em;
}
.calltoaction_section .mail_text > a {
  text-decoration: underline;
}

.calltoaction_style_2 {
  padding: 240px 0;
}

.calltoaction_boxed {
  padding: 160px;
  position: relative;
  background-color: #4444FF;
}
.calltoaction_boxed:before {
  top: 20px;
  left: 20px;
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #272727;
}
.calltoaction_boxed p {
  font-size: 26px;
  margin-bottom: 35px;
}
.calltoaction_boxed .mail_text {
  display: block;
  line-height: 1;
  font-size: 56px;
  letter-spacing: -0.02em;
}
.calltoaction_boxed .mail_text > a {
  text-decoration: underline;
}

.calltoaction_section_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 740px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #101010;
}
.calltoaction_section_2 h2 {
  color: #d0d0d0;
  font-size: 36px;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.calltoaction_section_2 a {
  color: #803cff;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.calltoaction_section_3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 686px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.calltoaction_section_3 .overlay {
  background-color: rgba(255, 82, 82, 0.9);
}
.calltoaction_section_3 h2 {
  color: #ffffff;
  font-size: 72px;
  margin-bottom: 0;
  letter-spacing: -2.5px;
}

.join_content_wrap {
  padding: 150px 30px;
  background-color: #FF6D54;
}
.join_content_wrap h2 {
  color: #fff;
  font-size: 56px;
  line-height: 72px;
  margin-bottom: 26px;
  letter-spacing: -0.05em;
}
.join_content_wrap p {
  color: #fff;
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 60px;
  letter-spacing: -0.04em;
}
.join_content_wrap .btn {
  overflow: hidden;
  border-radius: 50px;
  border-color: #FF5E15;
  -webkit-box-shadow: 0px 10px 20px rgba(19, 19, 19, 0.3);
          box-shadow: 0px 10px 20px rgba(19, 19, 19, 0.3);
}
.join_content_wrap .btn:hover {
  background-color: #FF5E15;
}
.join_content_wrap .form_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 950px;
  padding-top: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.join_content_wrap .form_item input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1;
          flex: 0 0 1;
  color: #ffffff;
  padding: 0 40px;
  margin-right: 30px;
  border-radius: 50px;
  border: 1px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}
.join_content_wrap .form_item input:-moz-placeholder {
  color: #ffffff;
}
.join_content_wrap .form_item input::-moz-placeholder {
  color: #ffffff;
}
.join_content_wrap .form_item input:-ms-input-placeholder {
  color: #ffffff;
}
.join_content_wrap .form_item input::-webkit-input-placeholder {
  color: #ffffff;
}
.join_content_wrap .form_item button {
  height: 100px;
  color: #ffffff;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 330px;
          flex: 0 0 330px;
  font-size: 18px;
  font-weight: 600;
  line-height: 100px;
  border-radius: 50px;
  background-color: #272727;
}
.join_content_wrap .form_item button:hover {
  background-color: #4444FF;
}

/* 3.18 - Call To Action - End
================================================== */
/* 3.19 - Video - Start
================================================== */
.video_section {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 960px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.video_section .ovarlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
  background-color: rgba(13, 13, 68, 0.8);
}
.video_section .ovarlay.bg_dark {
  background-color: rgba(25, 25, 25, 0.8);
}

.intro_video {
  position: relative;
}
.intro_video:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: "";
  position: absolute;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(transparent));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
}
.intro_video .play_btn_2 {
  left: 50px;
  z-index: 2;
  bottom: 50px;
  position: absolute;
}

/* 3.19 - Video - End
================================================== */
/* 3.20 - Testimonial - Start
================================================== */
.testimonial_section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.testimonial_section.bg_gray {
  background-color: #F7F7F7;
}
.testimonial_section .overlay {
  background-color: rgba(255, 82, 82, 0.9);
}

.testimonial_item_1 p {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
  letter-spacing: 0.8px;
}
.testimonial_item_1 h3 {
  color: #8C8C8C;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 60px;
}

.testimonial_carousel .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: static;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.testimonial_carousel .slick-dots li:not(:last-child) {
  margin-right: 20px;
}
.testimonial_carousel .slick-dots li:hover button, .testimonial_carousel .slick-dots li.slick-active button {
  opacity: 1;
}
.testimonial_carousel .slick-dots button {
  opacity: 0.1;
  width: 14px;
  height: 14px;
  display: block;
  background-color: #ffffff;
}

.testimonial_item_1.style_2 .quote_icon {
  margin-bottom: 70px;
}
.testimonial_item_1.style_2 p {
  color: #d0d0d0;
  font-size: 48px;
  font-weight: 300;
  line-height: 58px;
  margin-bottom: 40px;
  letter-spacing: -0.04em;
}
.testimonial_item_1.style_2 h3 {
  color: #727685;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.06em;
}
.testimonial_item_1.style_2 h3 span {
  display: block;
  color: #d0d0d0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.testimonial_tab .nav {
  width: 467px;
  height: 448px;
  position: relative;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
.testimonial_tab .nav li {
  position: absolute;
}
.testimonial_tab .nav li:nth-child(1) {
  top: -27px;
  left: 94px;
}
.testimonial_tab .nav li:nth-child(2) {
  top: 104px;
  right: 18px;
}
.testimonial_tab .nav li:nth-child(3) {
  top: 186px;
  left: 107px;
}
.testimonial_tab .nav li:nth-child(4) {
  top: 192px;
  right: 124px;
}
.testimonial_tab .nav li:nth-child(5) {
  top: 221px;
  right: -12px;
}
.testimonial_tab .nav li:nth-child(6) {
  left: 24px;
  bottom: 104px;
}
.testimonial_tab .nav li:nth-child(7) {
  right: 64px;
  bottom: 82px;
}
.testimonial_tab .nav button {
  overflow: hidden;
  border-radius: 100%;
}
.testimonial_tab .nav button:hover, .testimonial_tab .nav button.active {
  -webkit-box-shadow: 14px 26px 40px 0 rgba(22, 26, 44, 0.6);
          box-shadow: 14px 26px 40px 0 rgba(22, 26, 44, 0.6);
}
.testimonial_tab .tab-content {
  padding-right: 40px;
}

.testimonial_carousel_2 {
  margin-bottom: 100px;
}
.testimonial_carousel_2 .slider_item {
  padding: 15px;
}

.testimonial_item_2 {
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 20px #f0f0f0;
          box-shadow: 0px 5px 20px #f0f0f0;
}
.testimonial_item_2 .content_wrap {
  padding: 55px 35px;
  text-align: center;
}
.testimonial_item_2 .testimonial_thumbnail {
  width: 140px;
  height: 140px;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 100%;
  display: inline-block;
}
.testimonial_item_2 p {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
.testimonial_item_2 .bottom_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #e0e0e0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.testimonial_item_2 h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}

.testimonial_carousel .carousel_arrow {
  padding-top: 90px;
}
.testimonial_carousel .carousel_arrow button:hover {
  color: #ffffff;
}

.testimonial_item_3 {
  position: relative;
  padding-right: 130px;
}
.testimonial_item_3 p {
  font-size: 46px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 30px;
}
.testimonial_item_3 .admin_chip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonial_item_3 .admin_chip .admin_image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
  overflow: hidden;
  margin-right: 20px;
  border-radius: 100%;
}
.testimonial_item_3 .admin_chip .admin_name {
  line-height: 1;
  font-size: 26px;
  margin-bottom: 2px;
}
.testimonial_item_3 .admin_chip .admin_designation {
  display: block;
  color: #dbdbdb;
  font-size: 18px;
}
.testimonial_item_3 .quote_icon {
  left: 50%;
  bottom: 0;
  display: block;
  line-height: 0;
  font-size: 200px;
  font-weight: 700;
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
}

.testimonial_item_4 {
  padding: 68px 30px 60px;
  border: 2px solid #F8F8F8;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.testimonial_item_4 p {
  color: #2a2b2f;
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 47px;
}
.testimonial_item_4 .testimonial_admin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonial_item_4 .admin_image {
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin-right: 25px;
  border-radius: 100%;
}
.testimonial_item_4 .admin_name {
  color: #2a2b2f;
  font-size: 26px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 5px;
}
.testimonial_item_4 .admin_designation {
  color: #2c405e;
  display: block;
  font-size: 14px;
  line-height: 24px;
}
.testimonial_item_4 p,
.testimonial_item_4 .admin_name,
.testimonial_item_4 .admin_designation {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.testimonial_item_4:hover {
  border-color: #FF5252;
  background-color: #FF5252;
}
.testimonial_item_4:hover p,
.testimonial_item_4:hover .admin_name,
.testimonial_item_4:hover .admin_designation {
  color: #ffffff;
}

/* 3.20 - Testimonial - End
================================================== */
/* 3.21 - Feature - Start
================================================== */
.feature_section h2 {
  line-height: 1;
  font-size: 56px;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}
.feature_section p {
  font-size: 20px;
  margin-bottom: 30px;
}
.feature_section .btn {
  margin-top: 10px;
}

/* 3.21 - Feature - End
================================================== */
/* 3.22 - Pricing - Start
================================================== */
.pricing_item {
  padding: 30px;
  border: 2px solid #F2F2F2;
  background-color: #ffffff;
}
.pricing_item .pricing_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pricing_item .pricing_title {
  margin: 0;
  line-height: 1;
  color: #2a2b2f;
  font-size: 26px;
  font-weight: 400;
}
.pricing_item .pricing_amount {
  color: #2A2B2F;
  display: block;
  line-height: 1;
  margin-bottom: 25px;
}
.pricing_item .pricing_amount sup {
  top: -5px;
  font-size: 25px;
  font-weight: 500;
}
.pricing_item .pricing_amount strong {
  font-size: 35px;
  font-weight: 700;
}
.pricing_item .pricing_info_list {
  margin-bottom: 60px;
}
.pricing_item .pricing_info_list > li {
  font-size: 18px;
}
.pricing_item .pricing_info_list > li:not(:last-child) {
  margin-bottom: 20px;
}
.pricing_item .pricing_btn {
  line-height: 1;
  display: block;
  color: #2B2C30;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 28px 30px 27px;
  background-color: #F2F2F2;
}
.pricing_item:hover .pricing_btn {
  color: #ffffff;
  background-color: #FF5252;
}
.pricing_item.active {
  color: #ffffff;
  border-color: #FF5252;
  background-color: #FF5252;
}
.pricing_item.active .pricing_title,
.pricing_item.active .pricing_amount {
  color: #ffffff;
}
.pricing_item.active .pricing_btn {
  color: #2B2C30;
  background-color: #ffffff;
}
.pricing_item.active:hover .pricing_btn {
  color: #ffffff;
  background-color: #2B2C30;
}

/* 3.22 - Pricing - End
================================================== */
/* 3.23 - Home - Start
================================================== */
.home_personal_portfolio {
  font-family: "Work Sans", sans-serif;
}
.home_personal_portfolio h1, .home_personal_portfolio h2, .home_personal_portfolio h3, .home_personal_portfolio h4, .home_personal_portfolio h5, .home_personal_portfolio h6 {
  font-family: "Work Sans", sans-serif;
}

/* 3.23 - Home - End
================================================== */
/* ================================================== 
* Project Name   :  Dexfolio - Portfolio & Agency Template
* File           :  CSS Base
* Version        :  1.0.0
* Last change    :  11 April 2022
*	css code for responsive layout To make Responsive
================================================== */
/* media screen and (max-width: 1460px) - start
================================================== */
@media screen and (max-width: 1460px) {
  .header_style_2 .main_menu,
.header_style_5 .main_menu {
    padding: 25px 15px;
  }
  .header_style_2.sticky .main_menu,
.header_style_5.sticky .main_menu {
    padding: 15px;
  }

  .main_menu_list > li:not(:last-child) {
    margin-right: 40px;
  }

  .header_style_3 {
    padding: 30px 0;
  }

  .header_style_3.sticky {
    padding: 15px 0;
  }

  .mouse_wheel_slider .slider_item .item_content {
    padding: 20px;
  }

  .mouse_wheel_slider .slider_item .item_title {
    font-size: 28px;
    line-height: 32px;
  }

  .mouse_wheel_slider .slider_item .subtitle {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 10px;
  }

  .mouse_wheel_slider .slider_item p {
    font-size: 16px;
    line-height: 28px;
  }

  .slider_section .social_primary > li:not(:last-child) {
    margin: 0 0 10px;
  }

  .slider_section .go_down_btn span {
    font-size: 12px;
    line-height: 16px;
  }

  .slider_section .carousel_arrow button {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin: 0 0 10px;
  }

  .slider_section .slick-dots li:not(:last-child) {
    margin: 0;
  }

  .slider_section .slick-dots li button {
    width: 10px;
    height: 10px;
  }

  .slider_section .carousel_arrow {
    top: 180px;
    right: 30px;
  }

  .slider_section .slick-dots {
    right: 15px;
    margin-top: 100px;
  }

  .header_style_4 .offcanvas_btn_2 {
    width: 50px;
    height: 50px;
  }
  .header_style_4 .offcanvas_btn_2 svg {
    max-width: 20px;
  }

  .header_style_4 {
    padding: 20px 30px;
  }

  .header_style_4.sticky {
    padding: 15px 30px;
  }

  .slider_section {
    padding-left: 100px;
  }

  .slider_section .social_area {
    width: 100px;
    padding-top: 20px;
  }

  .portfolio_list_layout .item_content {
    padding: 80px 100px;
  }

  .spacer_2 {
    height: 130px;
  }

  .breadcrumb_style_4 .big_text {
    left: 0;
    bottom: -115px;
    font-size: 460px;
  }

  .about_section_6 .big_text {
    bottom: -122px;
    font-size: 230px;
  }

  .other_post_item .item_content {
    padding: 60px;
  }

  .other_post_item h3 {
    font-size: 72px;
    margin-bottom: 50px;
    letter-spacing: -1px;
  }
}
/* media screen and (max-width: 1460px) - end
================================================== */
/* media screen and (max-width: 1360px) - start
================================================== */
@media screen and (max-width: 1360px) {
  .banner_style_2 .circle_shape_2,
.banner_style_3 .circle_shape_2 {
    left: 20px;
    max-width: 100px;
  }

  .portfolio_grid_layout .item_content,
.portfolio_grid_layout .item_date {
    padding: 30px;
  }

  .testimonial_item_4 p {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 40px;
  }

  .other_post_item .item_image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .other_post_item h3 {
    font-size: 54px;
    margin-bottom: 30px;
  }
}
/* media screen and (max-width: 1360px) - end
================================================== */
/* media screen and (max-width: 1199px) - start
================================================== */
@media screen and (max-width: 1199px) {
  body {
    font-size: 16px;
  }

  .header_style_1,
.header_style_1.sticky {
    padding: 20px 15px;
  }

  .banner_section {
    min-height: 100vh;
    padding: 150px 0 100px;
  }

  .banner_style_1 h1 {
    font-size: 72px;
  }

  .banner_style_1 p {
    font-size: 22px;
  }

  .btn,
.btn.btn_shadow {
    font-size: 16px;
    min-width: 230px;
    padding: 27px 35px;
  }

  .section_title_2 .title_text {
    font-size: 72px;
    margin-bottom: 15px;
  }

  .section_title_2 p {
    font-size: 22px;
  }

  .portfolio_card_layout .item_title {
    font-size: 30px;
    margin-bottom: 6px;
  }

  .portfolio_card_layout .item_category a {
    font-size: 16px;
  }

  .masonry_portfolio {
    margin: -15px;
  }

  .masonry_portfolio .element-item {
    padding: 15px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .row {
    margin: -15px;
  }

  .col {
    padding: 15px;
  }

  .service_grid .item_title {
    font-size: 30px;
  }

  .service_grid .item_image {
    margin-bottom: 20px;
  }

  .award_item .year_text {
    font-size: 54px;
    margin-bottom: 15px;
  }

  .award_item .award_list a {
    font-size: 22px;
  }

  .contact_form .btn {
    margin-top: 0;
  }

  .select_option .nice-select {
    height: 70px;
    line-height: 70px;
  }

  .form_item input {
    height: 70px;
  }

  .banner_style_2 .dot_shape_1, .banner_style_2 .dot_shape_2, .banner_style_3 .dot_shape_1, .banner_style_3 .dot_shape_2 {
    max-width: 120px;
  }

  .banner_style_2 .deco_title_1, .banner_style_3 .deco_title_1 {
    right: 0;
    bottom: -90px;
  }

  .banner_style_2 .deco_title_1, .banner_style_2 .deco_title_2, .banner_style_3 .deco_title_1, .banner_style_3 .deco_title_2 {
    font-size: 230px;
  }

  .banner_style_2 .circle_shape, .banner_style_3 .circle_shape {
    right: 180px;
    bottom: 120px;
    max-width: 150px;
  }

  .banner_style_2 .triangle_shape, .banner_style_3 .triangle_shape {
    display: none;
  }

  .main_menu_list > li > a {
    font-size: 16px;
  }

  .portfolio_fullimage .item_content {
    left: 15px;
    right: 15px;
    bottom: 15px;
    max-width: 100%;
  }

  .portfolio_fullimage h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .primary_section_title {
    font-size: 42px;
    margin-bottom: 40px;
  }

  .testimonial_item_2 p {
    font-size: 24px;
    font-weight: 600;
  }

  .testimonial_item_2 h3 {
    font-size: 16px;
  }

  .rating_star li {
    font-size: 14px;
  }

  .slick-dots li button {
    width: 15px;
    height: 15px;
  }

  .contact_area_2 h2 {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .banner_style_2 .dot_shape_1, .banner_style_2 .dot_shape_2, .banner_style_3 .dot_shape_1, .banner_style_3 .dot_shape_2,
.banner_style_2 .circle_shape_2, .banner_style_3 .circle_shape_2 {
    display: none;
  }

  .header_style_3,
.header_style_3.sticky {
    padding: 15px 0;
  }

  .header_contact_info > li {
    font-size: 15px;
  }

  .header_contact_info > li:not(:last-child):after {
    margin: 0 20px;
  }

  .banner_style_4 h1 {
    font-size: 120px;
    margin-bottom: 40px;
  }

  .banner_style_4 p {
    font-size: 20px;
    margin-bottom: 60px;
  }

  .play_btn_2 span {
    width: 70px;
    height: 70px;
  }
  .play_btn_2 span svg {
    max-width: 24px;
  }

  .play_btn_2 small {
    font-size: 20px;
    margin-left: 20px;
  }

  .banner_style_4 .social_primary a {
    font-size: 15px;
  }

  .about_section_3 h2 {
    font-size: 60px;
    margin-bottom: 30px;
  }

  .about_section_3 p {
    font-size: 22px;
    letter-spacing: 0;
  }

  .about_section_3 h2 span {
    font-size: 30px;
    letter-spacing: 0;
  }

  .about_section_3 .circle_img_2 {
    right: -300px;
    max-width: 600px;
  }

  .about_section_3 .circle_img_1 {
    top: -80px;
    right: 380px;
    max-width: 160px;
  }

  .testimonial_item_1.style_2 p {
    font-size: 42px;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .testimonial_item_1.style_2 .quote_icon {
    margin-bottom: 40px;
  }

  .footer_style_3 .contact_info_list li:nth-child(2) {
    font-size: 54px;
  }

  .banner_style_5 h1 {
    line-height: 1;
    font-size: 100px;
    letter-spacing: 0;
  }

  .banner_style_5 .big_text {
    bottom: -80px;
    font-size: 350px;
  }

  .section_title_2 .focus_text {
    font-size: 120px;
  }

  .skill_item .value_text {
    font-size: 54px;
  }

  .skill_item .item_title {
    font-size: 22px;
  }

  .portfolio_list_layout_2 .item_title {
    font-size: 54px;
  }

  .portfolio_list_layout_2 p {
    font-size: 20px;
    letter-spacing: 0;
  }

  .portfolio_list_layout_2 .btn_text {
    font-size: 22px;
    letter-spacing: 0;
  }

  .portfolio_list_layout_2 .item_category > li {
    font-size: 24px;
    letter-spacing: 0;
  }

  .calltoaction_section_3 {
    min-height: auto;
  }

  .calltoaction_section_3 h2 {
    font-size: 66px;
    letter-spacing: -1px;
  }

  .footer_style_4 .contact_line {
    font-size: 84px;
    line-height: 1.2;
    letter-spacing: -1px;
  }

  .slider_section .carousel_arrow {
    display: none;
  }

  .slider_section .slick-dots {
    margin-top: 0;
  }

  .mouse_wheel_slider .slider_item p {
    margin-bottom: -95px;
  }

  .about_section_7 p {
    font-size: 16px;
    line-height: 28px;
  }
  .about_section_7 p strong {
    font-size: 22px;
  }

  .about_section_7 .focus_text {
    bottom: -26px;
    font-size: 190px;
  }

  .section_title_4 .title_text {
    font-size: 78px;
  }

  .section_space_rl {
    padding-left: 15px;
    padding-right: 15px;
  }

  .testimonial_item_4 .admin_name {
    line-height: 1;
    font-size: 22px;
  }

  .testimonial_item_4 p {
    font-size: 24px;
    line-height: 36px;
  }

  .blog_item_boxed_2 .item_title {
    font-size: 30px;
    line-height: 42px;
  }

  .blog_item_boxed_2 .post_meta {
    margin-bottom: 15px;
  }

  .footer_style_4 .contact_line {
    font-size: 66px;
  }

  .footer_style_4 .footer_widget_area {
    padding: 80px 0;
  }

  .footer_style_4 .footer_bottom {
    padding: 25px 0;
  }

  .video_section {
    min-height: 800px;
  }

  .breadcrumb_style_1 {
    padding: 120px 0 80px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .breadcrumb_style_1 h1 {
    font-size: 140px;
    margin-bottom: 20px;
  }

  .portfolio_details .details_image {
    min-height: 770px;
  }

  .portfolio_details h1 {
    font-size: 72px;
  }

  .portfolio_details h2 {
    font-size: 66px;
    margin-bottom: 30px;
    letter-spacing: -2px;
  }

  .portfolio_details .details_content p {
    font-size: 22px;
    letter-spacing: 0;
    margin-bottom: 40px;
  }

  .portfolio_details h3 {
    font-size: 30px;
  }

  .other_post_item .item_image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .other_post_item .item_content {
    padding: 60px;
  }

  .other_post_item h3 {
    font-size: 66px;
    margin-bottom: 50px;
    letter-spacing: -2px;
  }

  .other_post_item h4 {
    font-size: 26px;
  }

  .breadcrumb_style_2 {
    padding: 220px 0 0;
  }

  .about_section_2 .image_wrap {
    margin-bottom: 60px;
  }

  .team_item_2 .team_image {
    margin-bottom: 25px;
  }

  .team_item_2 .team_name {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .team_item_2 .team_title {
    font-size: 15px;
  }

  .calltoaction_style_2 {
    padding: 140px 0;
  }

  .section_space_lg {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .footer_style_2 .footer_bottom {
    padding-bottom: 25px;
  }

  .portfolio_list_layout .item_content {
    padding: 60px;
  }

  .breadcrumb_style_2.pb_space {
    padding: 220px 0 80px;
  }

  .filter-btns-group button {
    font-size: 20px;
  }

  .filter-btns-group li:not(:last-child) {
    margin-right: 30px;
  }

  .blog_details.style_2 .blog_details_content p {
    font-size: 18px;
  }

  .blog_details .blog_details_content p {
    margin-bottom: 35px;
  }

  .contact_section .section_title_3,
.contact_info_wrap_2 .section_title_3 {
    margin-bottom: 30px;
  }

  .section_title_3 .title_text {
    font-size: 48px;
    margin-bottom: 0;
    letter-spacing: 0;
  }

  .section_space {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .breadcrumb_style_3 {
    padding-top: 230px;
  }

  .about_section_4 h2, .about_section_4 h3 {
    font-size: 60px;
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: 30px;
  }

  .about_section_4 p {
    font-size: 22px;
    letter-spacing: 0;
  }

  .about_section_4 span {
    font-size: 30px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  .award_item.style_2 p {
    font-size: 28px;
    letter-spacing: 0;
  }

  .award_item.style_2 .year_text {
    font-size: 32px;
    letter-spacing: 0;
  }

  .breadcrumb_style_4 .big_text {
    bottom: -100px;
    font-size: 400px;
  }

  .breadcrumb_style_4 {
    min-height: 500px;
  }

  .about_section_6 .about_content {
    padding: 0;
  }

  .section_title_2 .title_text {
    font-size: 54px;
  }

  .section_title_2 p {
    font-size: 20px;
  }

  .testimonial_item_3 p {
    font-size: 38px;
  }

  .video_section {
    min-height: 600px;
  }

  .play_btn {
    width: 100px;
    height: 100px;
  }

  .blog_grid .item_title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .blog_grid .post_date {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .blog_grid .btn_text {
    font-size: 16px;
  }

  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .portfolio_list_layout .item_category {
    margin-bottom: 10px;
  }

  .portfolio_list_layout .item_category > li {
    font-size: 16px;
  }

  .portfolio_list_layout .item_content {
    padding: 40px;
  }

  .portfolio_split_wrap .portfolio_list_layout .item_title {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .portfolio_list_layout p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .instagram_shoot_wrap ul:nth-child(1) > li:nth-child(1) a,
.instagram_shoot_wrap ul:nth-child(1) > li:nth-child(2) a,
.instagram_shoot_wrap ul:nth-child(1) > li:nth-child(5) a,
.instagram_shoot_wrap ul:nth-child(2) > li:nth-child(1) a,
.instagram_shoot_wrap ul:nth-child(2) > li:nth-child(3) a,
.instagram_shoot_wrap ul:nth-child(2) > li:nth-child(5) a {
    max-width: 160px;
  }

  .instagram_shoot_wrap ul:nth-child(1) > li:nth-child(4) a,
.instagram_shoot_wrap ul:nth-child(2) > li:nth-child(2) a,
.instagram_shoot_wrap ul:nth-child(2) > li:nth-child(4) a {
    max-width: 230px;
  }

  .instagram_shoot_wrap ul:nth-child(1) > li:nth-child(3) a {
    max-width: 260px;
  }
}
/* media screen and (max-width: 1199px) - end
================================================== */
/* media screen and (max-width: 1024px) - start
================================================== */
@media screen and (max-width: 1024px) {
  .banner_style_2 h1, .banner_style_3 h1 {
    font-size: 154px;
  }

  .banner_style_2 .circle_shape, .banner_style_3 .circle_shape {
    right: 100px;
    bottom: 170px;
    max-width: 90px;
  }

  .banner_style_2 .dot_shape_2, .banner_style_3 .dot_shape_2 {
    right: 100px;
    bottom: 162px;
  }

  .progress_item .item_title,
.progress_item .value_text {
    font-size: 20px;
  }

  .progress_item .value_text {
    top: -40px;
  }

  .feature_section h2 {
    font-size: 48px;
    margin-bottom: 25px;
  }

  .feature_section p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .offcanvas_btn_2 {
    width: 60px;
    height: 60px;
  }
  .offcanvas_btn_2 svg {
    max-width: 22px;
  }

  .main_menu_list > li > a {
    font-size: 14px;
    padding: 10px 0;
  }

  .main_menu_list .dropdown > a:after {
    font-size: 14px;
    margin-left: 4px;
  }

  .main_menu_list > li:not(:last-child) {
    margin-right: 25px;
  }

  .header_style_2 .brand_logo {
    max-width: 120px;
  }

  .line_decoration_y .line_item:nth-child(1) {
    left: 15px;
    width: 90px;
  }

  .line_decoration_y .line_item:nth-child(3) {
    width: 90px;
    right: 15px;
  }

  .contact_area_2 .contact_content {
    padding-right: 0;
  }

  .client_style_3 .client_item {
    height: 120px;
    padding: 20px;
  }

  .testimonial_item_1.style_2 p {
    font-size: 36px;
  }

  .testimonial_tab .nav {
    width: auto;
    max-width: 467px;
  }

  .testimonial_tab .nav li:nth-child(3) {
    left: 30px;
  }

  .portfolio_list_layout_2:nth-child(odd) .item_content,
.portfolio_list_layout_2:nth-child(even) .item_content {
    padding: 0 30px;
  }

  .service_item_icon .item_title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .service_item_icon p {
    font-size: 16px;
  }

  .service_item_icon .item_icon {
    width: 140px;
    height: 140px;
  }
  .service_item_icon .item_icon svg {
    max-height: 50px;
  }

  .service_item_icon .icon_wrap {
    width: 110px;
    height: 110px;
  }

  .section_title .title_text {
    font-size: 120px;
    margin-bottom: 15px;
    letter-spacing: -8px;
  }

  .about_section p {
    font-size: 22px;
    letter-spacing: 0;
    margin-bottom: 40px;
  }

  .section_title {
    margin-bottom: 60px;
  }

  .spacer {
    height: 120px;
  }

  .about_section h2 {
    font-size: 78px;
    margin: 40px 0 45px;
  }

  .about_section h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .calltoaction_section h2 {
    font-size: 22px;
  }

  .calltoaction_section h3 {
    font-size: 60px;
  }

  .video_section {
    min-height: 600px;
  }

  .play_btn {
    width: 120px;
    height: 120px;
  }

  .testimonial_item_1 p {
    font-size: 42px;
    margin-bottom: 40px;
  }

  .section_title .title_text {
    margin-bottom: 25px;
  }

  .section_title p {
    font-size: 24px;
  }

  .blog_fullwidth .item_title {
    font-size: 48px;
  }

  .blog_standard .item_title {
    font-size: 30px;
  }

  .post_meta .admin_thumbnail {
    margin-right: 15px;
  }

  .post_meta svg, .post_meta i {
    margin-right: 15px;
  }

  .btn_text {
    font-size: 16px;
    letter-spacing: 0;
  }

  .pagination_nav a {
    width: 70px;
    height: 70px;
    font-size: 18px;
  }

  .sidebar_section {
    padding: 25px;
  }

  .blog_details .blog_details_content p {
    font-size: 24px;
    letter-spacing: 0;
    margin-bottom: 35px;
  }

  .blog_item_boxed p {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .blog_item_boxed {
    padding: 40px 15px;
  }

  .breadcrumb_style_2 h1 {
    font-size: 100px;
    margin-bottom: 35px;
  }

  .breadcrumb_style_2 p {
    font-size: 22px;
  }

  .about_section_2 p {
    font-size: 18px;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .calltoaction_section .mail_text {
    font-size: 42px;
  }

  .calltoaction_style_2 {
    padding: 120px 0;
  }

  .footer_style_2 .footer_widget_title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .feature_section h2 {
    font-size: 42px;
    line-height: 1.2;
  }

  .service_primary {
    padding-right: 0;
  }
  .service_primary p {
    font-size: 18px;
  }

  .service_primary .item_title {
    font-size: 28px;
    letter-spacing: 0;
    margin-bottom: 20px;
  }

  .service_boxed {
    padding: 50px 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .service_boxed p {
    font-size: 18px;
  }

  .service_boxed .item_title {
    font-size: 30px;
    letter-spacing: 0;
  }

  .section_title_3 .title_text {
    font-size: 48px;
    letter-spacing: 0;
  }

  .section_title_3 p {
    font-size: 18px;
  }

  .service_boxed .item_icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
  }

  .double_portfolio_wrap:not(:last-child) {
    margin-bottom: 50px;
  }

  .portfolio_list_layout p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .portfolio_list_layout .item_title {
    font-size: 26px;
    letter-spacing: 0;
    margin-bottom: 20px;
  }

  .portfolio_list_layout .item_content {
    padding: 30px;
  }

  .calltoaction_boxed {
    padding: 80px;
  }

  .calltoaction_boxed p {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .calltoaction_boxed .mail_text {
    font-size: 42px;
  }

  .blog_grid .item_content {
    padding: 25px;
  }

  .blog_grid .item_title {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: 15px;
  }

  .blog_grid .post_date {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .blog_grid .btn_text {
    font-size: 16px;
  }

  .load_more {
    margin-top: 60px;
  }

  .blog_details.style_2 h2 {
    line-height: 1.2;
    letter-spacing: 0;
    padding: 0 50px 50px;
  }

  .contact_info_wrap_2 p {
    font-size: 18px;
  }

  .contact_info_list_2 a {
    font-size: 18px;
  }

  .about_section_4 h2, .about_section_4 h3 {
    font-size: 54px;
  }

  .about_section_4 p {
    font-size: 20px;
  }

  .award_item.style_2 p {
    font-size: 24px;
  }

  .about_section_4 hr {
    margin: 40px 0;
  }

  .calltoaction_section_2 {
    min-height: auto;
  }

  .calltoaction_section_2 a {
    font-size: 48px;
    letter-spacing: 0;
  }

  .calltoaction_section_2 h2 {
    font-size: 32px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  .client_style_3 .col {
    padding: 15px;
  }

  .contact_form_2 h2 {
    font-size: 54px;
    letter-spacing: 0;
    margin-bottom: 50px;
  }

  .contact_form_2 {
    padding: 120px 0 80px;
  }

  .breadcrumb_style_4 {
    min-height: auto;
    padding: 150px 0 80px;
  }

  .breadcrumb_style_4 .page_title {
    font-size: 90px;
  }

  .breadcrumb_style_4 .big_text {
    bottom: 0;
    line-height: 0.7;
    font-size: 240px;
  }

  .about_section_6 .big_text {
    bottom: -100px;
    font-size: 170px;
  }

  .about_section_5 .about_image {
    margin-bottom: 50px;
  }

  .award_item.style_3 .item_title {
    font-size: 42px;
  }

  .contact_icon_box .item_content {
    font-size: 20px;
  }

  .contact_icon_box .item_icon {
    width: 90px;
    height: 90px;
    font-size: 24px;
    margin-right: 20px;
  }

  .contact_icon_box .item_content {
    font-size: 20px;
  }

  .join_content_wrap {
    padding: 100px 30px;
  }

  .portfolio_grid_layout .item_title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .team_item_3 .team_name {
    line-height: 1;
    font-size: 26px;
    letter-spacing: 0;
    margin-bottom: 8px;
  }

  .team_item_3 .team_title {
    line-height: 1;
    font-size: 16px;
    letter-spacing: 0;
  }

  .join_content_wrap h2 {
    line-height: 1;
    letter-spacing: 0;
  }

  .join_content_wrap p {
    letter-spacing: 0;
    margin-bottom: 50px;
  }

  .breadcrumb_style_5 {
    padding: 200px 0;
    min-height: auto;
  }

  .breadcrumb_style_5 .big_text {
    font-size: 200px;
  }

  .masonry_4col .element-item {
    width: 33.333%;
  }

  .portfolio_details_2 .item_title {
    font-size: 78px;
    margin-bottom: 40px;
    letter-spacing: -3px;
  }

  .blog_boxed_image .item_title {
    font-size: 18px;
  }

  .blog_post_author_2 {
    padding: 50px;
    margin-bottom: 60px;
  }

  .blog_details .blog_details_content p {
    font-size: 20px;
  }

  .section_title_2 {
    margin-bottom: 30px;
  }

  .section_space {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .backtotop {
    bottom: 130px;
  }
  .backtotop .scroll {
    width: 40px;
    height: 40px;
  }
}
/* media screen and (max-width: 1024px) - end
================================================== */
/* media screen and (max-width: 991px) - start
================================================== */
@media screen and (max-width: 991px) {
  .header_style_1, .header_style_1.sticky {
    padding: 15px;
  }

  .load_more {
    margin-top: 45px;
  }

  .section_space {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section_title_2 p {
    font-size: 18px;
  }

  .section_title_2 .title_text {
    font-size: 54px;
    margin-bottom: 10px;
  }

  .banner_style_1 h1 {
    font-size: 60px;
    line-height: 1.2;
  }

  .banner_section {
    min-height: auto;
  }

  .banner_style_1 p {
    font-size: 20px;
    padding-right: 330px;
  }

  .portfolio_card_layout .item_content {
    padding: 20px 15px 15px;
  }

  .portfolio_card_layout .item_title {
    font-size: 20px;
  }

  .btn,
.btn.btn_shadow {
    font-size: 14px;
  }

  .service_grid .item_title {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .award_item .award_list a {
    font-size: 20px;
  }

  .award_item .year_text {
    font-size: 48px;
  }

  .client_item {
    height: 200px;
    padding: 20px;
  }

  .backtotop .scroll {
    width: 40px;
    height: 40px;
  }

  .backtotop {
    right: 15px;
  }

  .header_style_2 .main_menu,
.header_style_2.sticky .main_menu,
.header_style_5 .main_menu,
.header_style_5.sticky .main_menu {
    padding: 15px;
  }

  .mobile_menu_btn {
    padding: 0;
    border: none;
    line-height: 1;
    font-size: 26px;
    border-radius: 0;
  }
  .mobile_menu_btn:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .header_btns_group > li:not(:last-child) {
    margin-right: 15px;
  }

  .main_menu_inner {
    left: 0;
    right: 0;
    position: fixed;
    background-color: #ffffff;
    border-top: 1px solid #f5f5f5;
    -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.02);
            box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.02);
  }

  .main_menu_list > li,
.main_menu_list > li:not(:last-child) {
    margin: 0;
  }

  .main_menu_list {
    padding: 15px;
  }
  .main_menu_list > li {
    width: 100%;
    display: block;
  }
  .main_menu_list > li:not(:last-child) {
    border-bottom: 1px solid #f5f5f5;
  }
  .main_menu_list > li a {
    font-size: 15px;
    padding: 15px 0;
  }

  .header_style_2 .main_menu_inner {
    top: 90px;
  }

  .main_menu_list .submenu {
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: transparent;
  }

  .main_menu_list .submenu > li > a {
    padding: 15px 20px;
  }

  .order-last {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .section_space_lg {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .footer_style_2 .footer_bottom {
    padding-bottom: 30px;
  }

  .footer_style_2 .footer_widget_title {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .white_content .mobile_menu_btn {
    color: #ffffff;
  }

  .white_content.sticky .mobile_menu_btn {
    color: #272727;
  }

  .white_content.sticky .mobile_menu_btn:hover {
    color: #4444FF;
  }

  .header_style_2.white_content .main_menu_list > li > a {
    color: #272727;
  }

  .header_style_2.white_content .main_menu_list > li:hover > a,
.header_style_2.white_content .main_menu_list > li.active > a {
    color: #4444FF;
  }

  .header_style_3 .header_contact_info {
    display: none;
  }

  .play_btn_2 span svg {
    max-width: 16px;
  }

  .counter_item .count_text {
    font-size: 54px;
    margin-right: 20px;
  }

  .counter_item .item_title {
    font-size: 15px;
  }

  .testimonial_tab .nav {
    margin: 0 auto 30px;
  }

  .testimonial_item_1.style_2 {
    text-align: center;
  }

  .banner_style_5 h1 {
    font-size: 84px;
  }

  .banner_style_5 p {
    font-size: 20px;
  }

  .banner_style_5 .big_text {
    font-size: 290px;
  }

  .section_title_2 .focus_text {
    font-size: 100px;
  }

  .about_section_5 .about_image {
    margin-bottom: 40px;
  }

  .skill_item .designation {
    font-size: 14px;
    margin-top: 10px;
  }

  .calltoaction_section_3 h2 {
    font-size: 54px;
  }

  .award_item.style_3 {
    min-height: 403px;
    padding: 60px 40px;
  }

  .award_item.style_3 .item_title {
    font-size: 36px;
  }

  .client_items_group > li {
    width: 25%;
  }

  .footer_style_4 .contact_line {
    font-size: 66px;
  }

  .footer_style_4 .footer_contact_list > li:not(:last-child) {
    margin-bottom: 0;
  }

  .footer_style_4 .footer_info_list > li:not(:last-child) {
    margin-bottom: 10px;
  }

  .footer_style_4 .footer_bottom {
    padding: 30px 0;
  }

  .slider_section .social_area {
    display: none;
  }

  .slider_section {
    padding: 0;
  }

  .header_style_4 {
    padding: 15px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header_style_4.sticky {
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .section_title p {
    font-size: 20px;
  }

  .breadcrumb_style_1 h1 {
    font-size: 120px;
  }

  .breadcrumb_style_1 p {
    font-size: 20px;
  }

  .portfolio_details h1 {
    font-size: 60px;
    letter-spacing: 0;
  }

  .portfolio_details .post_category {
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }

  .portfolio_details .additional_info {
    padding: 50px 0;
  }

  .portfolio_details .additional_info h4 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .portfolio_details .details_content p {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .portfolio_details h2 {
    font-size: 54px;
  }

  .other_post_item h3 {
    font-size: 48px;
    letter-spacing: 0;
    margin-bottom: 35px;
  }

  .other_post_item h4 {
    font-size: 24px;
  }

  .other_post_item .item_content {
    padding: 30px;
  }

  .blog_fullwidth {
    min-height: auto;
    padding: 90px 15px;
  }

  .blog_fullwidth .post_meta {
    margin-bottom: 20px;
  }

  .blog_fullwidth .item_title {
    font-size: 42px;
  }

  .sidebar_section {
    padding: 30px;
    margin-top: 40px;
  }

  .blog_fullwidth .post_meta > li:not(:last-child),
.blog_standard .post_meta > li:not(:last-child) {
    margin: 0 0 20px;
  }

  .blog_fullwidth .post_meta > li,
.blog_standard .post_meta > li {
    width: 100%;
    display: table;
  }

  .blog_fullwidth .item_title {
    font-size: 30px;
  }

  .blog_standard .item_title {
    font-size: 24px;
  }

  .pagination_nav a {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .blog_details .blog_details_content p {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .blog_details h2 {
    font-size: 34px;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .blog_post_author {
    display: block;
    padding: 60px 0;
    margin-bottom: 50px;
  }

  .blog_post_author .follow_btn {
    width: auto;
    height: auto;
    position: static;
    -webkit-transform: unset;
            transform: unset;
    margin-top: 20px;
    padding: 15px 40px;
  }

  .blog_post_author .image_wrap {
    width: 120px;
    height: 120px;
    margin: 0 0 30px;
  }

  .comment_form .form_item button {
    height: 86px;
    font-size: 30px;
    -webkit-transform: unset;
            transform: unset;
    margin-top: 15px;
    position: static;
    line-height: 86px;
  }

  .comment_form .thumbnail_wrap {
    top: 0;
    -webkit-transform: unset;
            transform: unset;
  }

  .breadcrumb_style_2 h1 span {
    margin-left: 0;
  }

  .about_section_2 .row {
    margin: -15px;
  }

  .about_section_2 .row .col {
    padding: 15px;
  }

  .service_primary p {
    font-size: 16px;
  }

  .section_title_3 .title_text {
    font-size: 42px;
  }

  .btn,
.btn.btn_shadow {
    min-width: auto;
    padding: 20px 35px;
  }

  .portfolio_list_layout p {
    font-size: 16px;
  }

  .blog_3col_masonry .element-item {
    width: 50%;
  }

  .blog_details.style_2 .post_meta_2 > li:nth-child(1) {
    width: auto;
  }

  .blog_details.style_2 .blog_details_content p {
    font-size: 16px;
  }

  .contact_info_list_2 span {
    margin-right: 15px;
  }

  .contact_info_list_2 li:not(:last-child) {
    margin-bottom: 15px;
  }

  .about_section_7 .mission_content .item_title {
    line-height: 1;
    font-size: 30px;
    margin-bottom: 0;
  }

  .team_item_3 .team_content {
    padding: 20px;
  }

  .team_item_3 .team_name {
    line-height: 1;
    font-size: 26px;
    margin-bottom: 10px;
  }

  .team_item_3 .team_title {
    line-height: 1;
    font-size: 16px;
  }

  .section_title_4 {
    margin-bottom: 20px;
  }

  .about_section_7 .mission_content:not(:last-child) {
    margin-bottom: 30px;
  }

  .about_section_7 .photography_tabs_nav button {
    line-height: 2.3;
  }

  .header_style_5.white_content .main_menu_list > li > a {
    color: #272727;
  }

  .header_style_5.white_content .main_menu_list > li:hover > a,
.header_style_5.white_content .main_menu_list > li.active > a {
    color: #FF5252;
  }

  .header_style_5 .main_menu_inner {
    top: 90px;
  }

  .blog_fullwidth {
    padding: 150px 15px 80px;
  }

  .blog_details .blog_fullwidth {
    min-height: 500px;
  }

  .details_info li {
    font-size: 18px;
    padding-left: 30px;
  }

  .details_info li:before {
    top: 11px;
    width: 8px;
    height: 8px;
  }

  .join_content_wrap .form_item {
    display: block;
  }

  .join_content_wrap .form_item button {
    height: 70px;
    font-size: 16px;
    padding: 0 30px;
    line-height: 70px;
    margin-top: 20px;
  }

  .other_post_item_2 i.icon_left {
    left: 15px;
  }

  .other_post_item_2 i.icon_right {
    right: 15px;
  }

  .footer_style_2 .footer_widget_area {
    padding: 80px 0;
  }

  .footer_style_2 .brand_logo {
    margin-bottom: 30px;
  }

  .portfolio_list_layout_2 {
    display: block;
  }

  .portfolio_list_layout_2:nth-child(odd) .item_content,
.portfolio_list_layout_2:nth-child(even) .item_content {
    padding: 40px 0 0;
  }

  .about_section h2 {
    font-size: 54px;
    margin: 40px 0 35px;
  }

  .section_title .title_text {
    font-size: 100px;
  }

  .breadcrumb_style_2 {
    padding: 140px 0 0;
  }

  .breadcrumb_style_1 {
    min-height: auto;
    padding: 200px 0 80px;
  }

  .portfolio_details .details_image {
    min-height: auto;
    padding: 200px 0 80px;
  }

  .breadcrumb_style_2.pb_space {
    padding: 130px 0 60px;
  }

  .blog_details.style_2 .blog_details_content {
    margin-top: -80px;
  }
}
/* media screen and (max-width: 991px) - end
================================================== */
/* media screen and (max-width: 767px) - start
================================================== */
@media screen and (max-width: 767px) {
  .banner_style_1 h1 {
    font-size: 54px;
  }

  .banner_style_1 p {
    padding-right: 0;
  }

  .section_title_2 .title_text {
    font-size: 48px;
    margin-bottom: 15px;
  }

  .section_title_2 p {
    font-size: 16px;
  }

  .banner_style_2 .tall_shape,
.banner_style_3 .tall_shape {
    left: 0;
    width: 50%;
  }

  .banner_style_2 .deco_title_1,
.banner_style_2 .deco_title_2,
.banner_style_3 .deco_title_1,
.banner_style_3 .deco_title_2 {
    font-size: 160px;
  }

  .banner_style_2 .deco_title_2,
.banner_style_3 .deco_title_2 {
    top: 90px;
    left: -62px;
  }

  .banner_style_2 .deco_title_1,
.banner_style_3 .deco_title_1 {
    right: 0;
    bottom: -50px;
  }

  .banner_style_2 h1, .banner_style_3 h1 {
    font-size: 100px;
  }

  .grid_col_3 .grid-item, .grid_col_3 .grid-sizer {
    width: 100%;
  }

  .testimonial_item_2 .content_wrap {
    padding: 40px 30px;
  }

  .testimonial_item_2 .testimonial_thumbnail {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .testimonial_item_2 p {
    font-size: 18px;
    font-weight: 500;
  }

  .testimonial_item_2 .bottom_area {
    display: block;
    padding: 15px 30px;
  }

  .banner_style_4 h1 {
    font-size: 90px;
  }

  .banner_style_4 p {
    margin-bottom: 50px;
  }

  .play_btn_2 {
    margin-bottom: 20px;
  }
  .play_btn_2 span {
    width: 60px;
    height: 60px;
  }

  .banner_style_4 .flex_content_wrap {
    display: block;
  }

  .about_section_3 .circle_img_2 {
    top: -80px;
    right: -300px;
    max-width: 500px;
  }

  .about_section_3 .circle_img_1 {
    top: -60px;
    right: 220px;
    max-width: 120px;
  }

  .about_section_3 h2 {
    font-size: 48px;
    letter-spacing: 0;
  }

  .about_section_3 p {
    font-size: 18px;
  }

  .about_section_3 h2 span {
    font-size: 26px;
  }

  .play_btn_2 small {
    font-size: 18px;
  }

  .client_style_3 .col {
    padding: 15px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333%;
            flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .footer_style_3 .footer_bottom {
    padding-top: 60px;
  }

  .footer_style_3 .footer_bottom .container {
    display: block;
    text-align: center;
  }
  .footer_style_3 .brand_logo {
    margin-bottom: 30px;
  }

  .portfolio_list_layout_2 {
    display: block;
    margin-top: 60px;
  }

  .portfolio_list_layout_2:nth-child(odd) .item_content,
.portfolio_list_layout_2:nth-child(even) .item_content {
    padding: 30px 0 0;
  }

  .portfolio_list_layout_2 .item_title {
    font-size: 42px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  .portfolio_list_layout_2 p {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .portfolio_list_layout_2 .item_category > li {
    font-size: 20px;
  }

  .portfolio_list_layout_2 .btn_text {
    font-size: 18px;
  }

  .award_item.style_3 {
    min-height: auto;
    padding: 50px 30px;
  }

  .client_items_group > li {
    width: 33.333%;
  }

  .footer_style_4 .footer_bottom .container {
    display: block;
  }
  .footer_style_4 .footer_bottom .social_primary {
    margin-top: 15px;
  }

  .footer_style_4 .contact_line {
    font-size: 42px;
  }

  .footer_style_4 .footer_widget_area {
    padding: 50px 0;
  }

  .section_title_4 .title_text {
    font-size: 60px;
  }

  .about_section_7 .focus_text {
    bottom: 0;
    line-height: 1;
    font-size: 150px;
  }

  .portfolio_grid_layout .item_title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .portfolio_grid_layout .item_category > li:not(:last-child) {
    margin-right: 12px;
    padding-right: 12px;
  }

  .portfolio_grid_layout .item_content,
.portfolio_grid_layout .item_date {
    padding: 20px;
  }

  .testimonial_item_4 p {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
  }

  .testimonial_item_4 .admin_image {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }

  .section_title .title_text {
    font-size: 100px;
  }

  .about_section p {
    font-size: 18px;
  }

  .about_section h2 {
    font-size: 66px;
    margin: 0 0 30px;
  }

  .about_section .image_wrap {
    margin-bottom: 40px;
  }

  .about_section h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .team_item .team_content {
    padding: 20px;
  }

  .team_item .team_name {
    font-size: 20px;
  }

  .team_item p {
    font-size: 12px;
  }

  .calltoaction_section h3 {
    font-size: 48px;
  }

  .testimonial_item_1 p {
    font-size: 36px;
  }

  .testimonial_item_1 h3 {
    font-size: 24px;
    margin-bottom: 50px;
  }

  .portfolio_card_layout .item_title {
    font-size: 16px;
  }

  .portfolio_card_layout .item_category a {
    font-size: 14px;
  }

  .breadcrumb_style_1 h1 {
    font-size: 110px;
  }

  .portfolio_details h2 {
    font-size: 48px;
  }

  .portfolio_details .details_content p {
    font-size: 18px;
  }

  .portfolio_details .image_wrap {
    margin-bottom: 20px;
  }

  .portfolio_details h3 {
    font-size: 24px;
    font-weight: 600;
  }

  .other_post_item {
    display: block;
  }
  .other_post_item:not(:last-child) {
    margin-bottom: 20px;
  }

  .other_post_item h3 {
    font-size: 42px;
    margin-bottom: 25px;
  }

  figure {
    padding: 50px;
    margin-bottom: 40px;
  }

  figure .blockquote-footer {
    font-size: 20px;
    padding-top: 0;
  }

  .tag_share_links {
    display: block;
    margin-bottom: 60px;
  }

  .tag_share_links .sb_tag_list,
.tag_share_links .item_share_links {
    display: block;
  }

  .tag_share_links h3 {
    margin: 0 0 15px;
  }

  .tag_share_links .sb_tag_list {
    margin-bottom: 30px;
  }

  .other_blogpost_wrap {
    display: block;
    margin-bottom: 80px;
  }

  .blog_other_post:not(:last-child) {
    margin-bottom: 20px;
  }

  .blog_other_post:nth-child(even) .arrow_btn {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin: 0 10px 0 0;
  }

  .blog_other_post:nth-child(even) {
    text-align: left;
  }

  .blog_other_post:nth-child(odd) .arrow_btn {
    margin-right: 10px;
  }

  .blog_other_post .arrow_btn {
    height: 70px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
            flex: 0 0 70px;
  }

  .blog_other_post h4 {
    font-size: 20px;
  }

  .blog_other_post span {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .breadcrumb_style_2 h1 {
    font-size: 84px;
  }

  .breadcrumb_style_2 p {
    font-size: 20px;
  }

  .about_section_2 h2 {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .about_section_2 p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .feature_section h2 {
    font-size: 36px;
  }

  .section_title_3 .title_text {
    font-size: 36px;
  }

  .service_boxed p {
    font-size: 16px;
  }

  .service_boxed .item_title {
    font-size: 26px;
  }

  .slick-dots li button {
    width: 10px;
    height: 10px;
  }

  .slick-dots li:not(:last-child) {
    margin: 0 15px 0 0;
  }

  .portfolio_list_layout:not(:last-child) {
    margin-bottom: 20px;
  }

  .portfolio_list_layout,
.portfolio_list_layout .image_wrap {
    display: block;
  }

  .portfolio_list_layout {
    padding: 15px;
  }

  .portfolio_list_layout .item_content {
    padding: 20px 0 10px;
  }

  .portfolio_list_layout .item_title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .portfolio_list_layout p {
    margin-bottom: 15px;
  }

  .breadcrumb_style_2 h1 {
    margin-bottom: 15px;
  }

  .calltoaction_boxed {
    padding: 70px 40px;
  }

  .calltoaction_boxed p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .calltoaction_boxed .mail_text {
    font-size: 30px;
  }

  .blog_details.style_2 h2 {
    padding: 0 0 50px;
  }

  .contact_info_wrap_2 p {
    font-size: 16px;
  }

  .contact_info_list_2 a {
    font-size: 16px;
  }

  .about_section_4 h2, .about_section_4 h3 {
    font-size: 42px;
  }

  .about_section_4 p {
    font-size: 18px;
  }

  .about_section_4 img {
    margin: 40px 0;
  }

  .breadcrumb_style_4 .big_text {
    font-size: 220px;
  }

  .breadcrumb_style_4 {
    padding: 150px 0 50px;
  }

  .breadcrumb_style_4 .page_title {
    font-size: 84px;
  }

  .about_section_6 .big_text {
    left: 0;
    bottom: -100px;
    font-size: 110px;
  }

  .testimonial_item_3 {
    padding: 0;
  }

  .testimonial_item_3 p {
    font-size: 30px;
  }

  .testimonial_carousel .carousel_arrow {
    padding-top: 50px;
  }

  .video_section {
    min-height: 450px;
  }

  .play_btn {
    width: 80px;
    height: 80px;
  }
  .play_btn svg {
    height: 22px;
  }

  .about_section_7 .photography_tab_wrap {
    padding: 0;
  }

  .about_section_7 .photography_tabs_nav button {
    font-size: 16px;
    line-height: 2.2;
  }

  .about_section_7 .photography_tabs_nav {
    position: static;
    margin-bottom: 30px;
  }

  .breadcrumb_style_5 .big_text {
    font-size: 150px;
  }

  .breadcrumb_style_5 {
    padding: 200px 0 150px;
  }

  .masonry_4col .element-item {
    width: 50%;
  }

  .filter-btns-group {
    margin-bottom: 40px;
  }

  .other_post_item_2 {
    padding: 60px 30px;
  }

  .other_post_item_2 i {
    font-size: 42px;
  }

  .other_post_item_2 i.icon_left {
    left: 30px;
  }

  .other_post_item_2 i.icon_right {
    right: 30px;
  }

  .other_post_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .other_post_wrap .other_post_item_2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .other_post_wrap .other_post_item_2:not(:last-child) {
    border-bottom: 1px solid #000000;
  }

  .other_post_wrap .other_post_item_2:first-child {
    text-align: right;
  }

  .other_post_wrap .other_post_item_2:last-child {
    text-align: left;
  }

  .blog_post_author_2 {
    display: block;
  }

  .blog_post_author_2 .image_wrap {
    margin: 0 0 30px 0;
  }

  .footer_style_1 .footer_bottom,
.footer_style_2 .footer_bottom {
    display: block;
    padding-right: 50px;
  }
  .footer_style_1 .footer_bottom .copyright_text,
.footer_style_2 .footer_bottom .copyright_text {
    padding-bottom: 15px;
  }

  .service_grid .item_title {
    font-size: 20px;
  }
}
/* media screen and (max-width: 767px) - end
================================================== */
/* media screen and (max-width: 575px) - start
================================================== */
@media screen and (max-width: 575px) {
  .offcanvas_btn_1 .bar_icon small {
    height: 2px;
  }

  .offcanvas_btn_1 .menu_text {
    margin-right: 15px;
  }

  .offcanvas_sidebar {
    width: 300px;
    right: -320px;
    padding: 70px 20px 50px;
  }

  .btn,
.btn.btn_shadow {
    min-width: auto;
    padding: 21px 40px;
  }

  .banner_style_1 h1 {
    font-size: 48px;
  }

  .banner_style_1 p {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .section_title_2 .title_text {
    font-size: 42px;
  }

  .masonry_portfolio .element-item {
    width: 100%;
  }

  .select_option .nice-select {
    height: 56px;
    font-size: 16px;
    padding: 0 20px;
    line-height: 56px;
  }

  .form_item input {
    height: 56px;
    padding: 0 20px;
  }

  .form_item textarea {
    min-height: 160px;
    padding: 15px 20px;
  }

  .footer_section .brand_logo {
    margin-bottom: 20px;
  }

  .section_space_lg {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .banner_style_2 .deco_item,
.banner_style_3 .deco_item {
    display: none;
  }

  .offcanvas_btn_2 {
    width: 40px;
    height: 40px;
  }

  .offcanvas_btn_2 svg {
    max-width: 16px;
  }

  .header_style_2 .brand_logo {
    max-width: 100px;
  }

  .header_style_2 .main_menu_inner {
    top: 70px;
  }

  .mobile_menu_btn {
    font-size: 24px;
  }

  .progress_item .item_title, .progress_item .value_text {
    font-size: 15px;
  }

  .progress_item .value_text {
    top: -30px;
  }

  .progress_item .progress_bar {
    height: 4px;
    margin-top: -1px;
  }

  .progress_item .progress {
    height: 2px;
    margin-top: 12px;
  }

  .feature_section h2 {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .feature_section p {
    font-size: 16px;
  }

  .header_style_3 .brand_logo .brand_link {
    max-width: 130px;
  }

  .about_section_3 h2 {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .about_section_3 h2 span {
    font-size: 20px;
  }

  .about_section_3 p {
    font-size: 16px;
  }

  .grid_col_2 .grid-item, .grid_col_2 .grid-sizer {
    width: 100%;
  }

  .client_style_3 .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .testimonial_item_1.style_2 p {
    font-size: 30px;
  }

  .footer_style_3 .contact_info_list li:nth-child(2) {
    font-size: 30px;
  }

  .footer_style_3 .contact_info_list li:nth-child(3) {
    font-size: 20px;
  }

  .footer_style_3 .contact_info_list {
    padding: 40px 0;
  }

  .footer_style_3 {
    padding: 80px 0 40px;
  }

  .banner_style_5 .big_text {
    bottom: -40px;
    font-size: 180px;
  }

  .banner_style_5 h1 {
    font-size: 72px;
  }

  .banner_style_5 p {
    font-size: 18px;
  }

  .calltoaction_section_3 h2 {
    font-size: 42px;
  }

  .client_items_group .client_item {
    height: 120px;
  }

  .client_items_group > li {
    width: 50%;
  }

  .mouse_wheel_slider .slider_item p {
    opacity: 1;
    margin-bottom: 0;
  }

  .section_title .title_text {
    font-size: 80px;
    letter-spacing: -4px;
  }

  .about_section h2 {
    font-size: 54px;
  }

  .about_section p {
    font-size: 16px;
  }

  .about_section .image_wrap {
    margin-bottom: 20px;
  }

  .calltoaction_section h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .calltoaction_section h3 {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .section_title p {
    font-size: 18px;
  }

  .section_title {
    margin-bottom: 40px;
  }

  .video_section {
    min-height: 400px;
  }

  .play_btn {
    width: 80px;
    height: 80px;
  }
  .play_btn svg {
    max-width: 20px;
  }

  .section_title_2 {
    margin-bottom: 40px;
  }

  .contact_form {
    padding-top: 0;
  }

  .breadcrumb_style_1 h1 {
    font-size: 90px;
    margin-bottom: 10px;
  }

  .breadcrumb_style_1 p {
    font-size: 18px;
  }

  .portfolio_details h1 {
    font-size: 42px;
  }

  .blog_details h2 {
    font-size: 26px;
  }

  .blog_details .blog_details_content p {
    font-size: 18px;
  }

  .comment_list .name_wrap {
    display: block;
  }

  .comment_list .comment_date {
    font-size: 14px;
  }

  .comment_form .form_item button {
    height: 70px;
    font-size: 26px;
    line-height: 70px;
  }

  .blog_boxed_wrapper {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .breadcrumb_style_2 h1 {
    font-size: 72px;
  }

  .about_section_2 .image_wrap {
    margin-bottom: 30px;
  }

  .section_space {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .about_section_2 h2 {
    font-size: 36px;
  }

  .calltoaction_section p {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .calltoaction_section .mail_text {
    font-size: 32px;
  }

  .breadcrumb_style_2 p {
    font-size: 18px;
  }

  .breadcrumb_style_2 {
    padding: 150px 0 0;
  }

  .breadcrumb_style_2 .deco_item {
    display: none;
  }

  .service_boxed {
    display: block;
  }

  .service_boxed .item_icon {
    margin-bottom: 25px;
  }

  .section_title_3 {
    margin-bottom: 40px;
  }

  .double_portfolio_wrap:not(:last-child) {
    margin-bottom: 30px;
  }

  .double_portfolio_wrap {
    display: block;
  }

  .double_portfolio_wrap .portfolio_fullimage:not(:last-child) {
    margin-bottom: 15px;
  }

  .filter-btns-group li:not(:last-child) {
    margin: 0 0 20px;
  }

  .filter-btns-group li {
    width: 100%;
    text-align: center;
  }

  .blog_details.style_2 .blog_details_content {
    margin-top: -30px;
    padding: 40px 20px;
  }

  .blog_details .area_title {
    font-size: 24px;
    letter-spacing: 0;
    margin-bottom: 30px;
    padding-bottom: 10px;
  }

  .calltoaction_section_2 a {
    font-size: 26px;
  }

  .calltoaction_section_2 h2 {
    font-size: 20px;
  }

  .about_section_4 h2, .about_section_4 h3 {
    font-size: 36px;
  }

  .about_section_4 p {
    font-size: 16px;
  }

  .about_section_4 span {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .award_item.style_2 p {
    font-size: 18px;
  }

  .contact_form_2 h2 {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .contact_form_2 {
    padding: 100px 0 80px;
  }

  .breadcrumb_style_4 .big_text {
    font-size: 130px;
  }

  .breadcrumb_style_4 .page_title {
    font-size: 54px;
  }

  .testimonial_item_3 p {
    font-size: 26px;
  }

  .text_sm_center {
    text-align: center;
  }

  .contact_icon_box .item_icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .contact_icon_box .item_content {
    font-size: 16px;
  }

  .breadcrumb_style_5 .big_text {
    font-size: 170px;
  }

  .breadcrumb_style_5 .page_title {
    font-size: 84px;
  }

  .header_style_5 .main_menu_inner {
    top: 88px;
  }

  .breadcrumb_style_5 .big_text {
    font-size: 110px;
  }

  .breadcrumb_style_5 {
    padding: 170px 0 80px;
  }

  .breadcrumb_style_5 .page_title {
    font-size: 72px;
  }

  .portfolio_details_2 .item_title {
    font-size: 66px;
  }

  .breadcrumb_style_1 p {
    font-size: 16px;
  }

  .breadcrumb_style_1 {
    padding: 160px 0 60px;
  }

  .social_wrap {
    display: block;
  }

  .social_title {
    margin: 0 0 10px 0;
  }

  .comment_list .comment_item,
.comment_list .content_wrap .comment_item {
    display: block;
  }

  .comment_list .image_wrap {
    margin: 0 0 20px 0;
  }

  .map_section iframe {
    height: 300px;
  }
}
/* media screen and (max-width: 575px) - end
================================================== */
/* media screen and (max-width: 425px) - start
================================================== */
@media screen and (max-width: 425px) {
  .banner_style_1 h1 {
    font-size: 42px;
  }

  .award_item .award_list a {
    font-size: 18px;
  }

  .banner_style_2 h1, .banner_style_3 h1 {
    font-size: 72px;
    margin-bottom: 35px;
  }

  .banner_style_2 h1 span, .banner_style_3 h1 span {
    padding-left: 0;
  }

  .banner_style_2 p, .banner_style_3 p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .banner_style_2 .deco_title_1, .banner_style_2 .deco_title_2, .banner_style_3 .deco_title_1, .banner_style_3 .deco_title_2 {
    font-size: 100px;
  }

  .banner_style_2 .deco_title_2, .banner_style_3 .deco_title_2 {
    left: -30px;
  }

  .banner_style_2 .deco_title_1, .banner_style_3 .deco_title_1 {
    bottom: -30px;
  }

  .progress_item {
    margin-bottom: 30px;
  }

  .primary_section_title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .contact_area_2 h2 {
    font-size: 36px;
  }

  .contact_area_2 p {
    font-size: 16px;
  }

  .banner_style_4 h1 {
    font-size: 72px;
    margin-bottom: 20px;
  }

  .banner_style_4 p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .play_btn_2 span {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .play_btn_2 span svg {
    max-width: 12px;
  }

  .play_btn_2 small {
    font-size: 15px;
    margin-left: 10px;
  }

  .play_btn_2 {
    margin-bottom: 30px;
  }

  .banner_style_4 .social_primary a {
    font-size: 14px;
  }

  .about_section_3 h2 {
    font-size: 30px;
  }

  .testimonial_item_1.style_2 p {
    font-size: 24px;
  }

  .client_style_3 .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .footer_style_3 h2 {
    font-size: 30px;
  }

  .footer_style_3 .contact_info_list li:nth-child(2) {
    font-size: 24px;
  }

  .about_section_3 .about_content {
    padding-right: 0;
  }

  .testimonial_tab .nav li:nth-child(4) {
    right: 70px;
  }

  .testimonial_tab .nav {
    margin-bottom: 0;
  }
  .testimonial_tab .nav li:nth-child(1) {
    top: 0;
    left: 64px;
  }

  .testimonial_tab .tab-content {
    padding-right: 0;
  }

  .banner_style_5 h1 {
    font-size: 60px;
  }

  .banner_style_5 .btn {
    min-width: auto;
    padding: 24px 40px;
  }

  .banner_style_5 .big_text {
    bottom: -30px;
    font-size: 120px;
  }

  .section_title_2 .focus_text {
    font-size: 76px;
  }

  .calltoaction_section_3 h2 {
    font-size: 30px;
  }

  .section_title_4 .title_text {
    font-size: 48px;
  }

  .about_section_7 p strong {
    font-size: 20px;
    line-height: 30px;
  }

  .about_section_7 p {
    margin-bottom: 20px;
  }

  .about_section_7 .focus_text {
    font-size: 84px;
  }

  .blog_item_boxed_2 .item_title {
    font-size: 24px;
    line-height: 30px;
  }

  .testimonial_item_4 {
    padding: 50px 30px;
  }

  .blog_item_boxed_2 {
    padding: 50px 30px;
  }

  .blog_item_boxed_2 p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 25px;
  }

  .blog_item_boxed_2 .post_admin .admin_name {
    line-height: 1;
    font-size: 16px;
  }

  .blog_item_boxed_2 .post_admin .admin_image {
    width: 55px;
    height: 55px;
    margin-right: 10px;
  }

  .spacer {
    height: 80px;
  }

  .section_title .title_text {
    font-size: 66px;
    letter-spacing: -2px;
  }

  .about_section h2 {
    font-size: 30px;
  }

  .about_section h3 {
    font-size: 18px;
    font-weight: 600;
  }

  .calltoaction_section h3 {
    font-size: 36px;
  }

  .breadcrumb_style_1 h1 {
    font-size: 72px;
  }

  .feature_section h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .service_primary .item_title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .section_title_3 .title_text {
    font-size: 30px;
  }

  .section_title_3 p {
    font-size: 16px;
  }

  .service_boxed .item_title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .intro_video .play_btn_2 {
    left: 20px;
    bottom: 20px;
  }

  .portfolio_fullimage .item_content {
    padding: 20px;
  }

  .portfolio_fullimage h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .calltoaction_section_2 a {
    font-size: 20px;
  }

  .testimonial_item_3 p {
    font-size: 22px;
  }

  .breadcrumb_style_5 .big_text {
    font-size: 138px;
  }

  .breadcrumb_style_5 .page_title {
    font-size: 72px;
  }

  .breadcrumb_style_5 {
    padding: 170px 0 70px;
  }

  .about_section_7 p strong {
    font-size: 18px;
  }

  .portfolio_details_2 .item_title {
    font-size: 54px;
  }

  .other_post_item_2 span {
    font-size: 30px;
    letter-spacing: 0;
  }

  .contact_info_list h3 {
    font-size: 26px;
  }

  .section_title_2 .title_text {
    font-size: 34px;
  }

  .blog_details.style_2 h2 {
    font-size: 22px;
    padding-bottom: 30px;
  }

  .blog_details.style_2 .related_post_wrap .blog_grid .item_title {
    font-size: 20px;
  }

  .blog_details.style_2 .related_post_wrap .blog_grid .btn_text {
    font-size: 16px;
  }
}
/* media screen and (max-width: 425px) - end
================================================== */
/* media screen and (max-width: 375px) - start
================================================== */
@media screen and (max-width: 375px) {
  .banner_style_1 h1 {
    font-size: 36px;
  }

  .portfolio_card_layout .item_title,
.service_grid .item_title {
    font-size: 22px;
  }

  .header_style_1 .brand_logo .brand_link {
    max-width: 130px;
  }

  .banner_style_5 h1 {
    font-size: 50px;
  }

  .slider_section .slick-dots li {
    width: auto;
    line-height: 1;
  }

  .mouse_wheel_slider .slider_item p {
    font-size: 14px;
    line-height: 24px;
  }

  .mouse_wheel_slider .slider_item .item_title {
    line-height: 1;
    font-size: 24px;
  }

  .section_title_4 {
    margin-bottom: 36px;
  }

  .section_title_4 .title_text {
    font-size: 42px;
  }

  .about_section_7 .focus_text {
    font-size: 70px;
  }

  .section_title .title_text {
    font-size: 54px;
  }

  .testimonial_item_1 p {
    font-size: 30px;
    font-weight: 600;
  }

  .breadcrumb_style_2 h1 {
    font-size: 60px;
    margin-bottom: 15px;
  }

  .breadcrumb_style_5 .big_text {
    font-size: 100px;
  }

  .breadcrumb_style_5 .page_title {
    font-size: 60px;
  }

  .client_item {
    height: 170px;
  }
}
/* media screen and (max-width: 375px) - end
================================================== */
/* media screen and (max-width: 320px) - start
================================================== */
/* media screen and (max-width: 320px) - end
================================================== */