/* animation */
@-webkit-keyframes zoom {
	0% {
	  -webkit-transform: scale(1);
	  -ms-transform: scale(1);
	  transform: scale(1); }
	50% {
	  -webkit-transform: scale(1.05);
	  -ms-transform: scale(1.05);
	  transform: scale(1.05); }
	100% {
	  -webkit-transform: scale(1.1);
	  -ms-transform: scale(1.1);
	  transform: scale(1.1); } }
  @keyframes zoom {
	0% {
	  -webkit-transform: scale(1.1);
	  -ms-transform: scale(1.1);
	  transform: scale(1.1); }
	50% {
	  -webkit-transform: scale(1.05);
	  -ms-transform: scale(1.05);
	  transform: scale(1.05); }
	100% {
	  -webkit-transform: scale(1);
	  -ms-transform: scale(1);
	  transform: scale(1); } }
  @-webkit-keyframes shake {
	0% {
	  -webkit-transform: rotate(7deg);
	  -ms-transform: rotate(7deg);
	  transform: rotate(7deg); }
	50% {
	  -webkit-transform: rotate(0deg);
	  -ms-transform: rotate(0deg);
	  transform: rotate(0deg); }
	100% {
	  -webkit-transform: rotate(7deg);
	  -ms-transform: rotate(7deg);
	  transform: rotate(7deg); } }
  @keyframes shake {
	0% {
	  -webkit-transform: rotate(7deg);
	  -ms-transform: rotate(7deg);
	  transform: rotate(7deg); }
	50% {
	  -webkit-transform: rotate(0deg);
	  -ms-transform: rotate(0deg);
	  transform: rotate(0deg); }
	100% {
	  -webkit-transform: rotate(7deg);
	  -ms-transform: rotate(7deg);
	  transform: rotate(7deg); } }
  @-webkit-keyframes down {
	0% {
	  -webkit-transform: translateY(5px);
	  -ms-transform: translateY(5px);
	  transform: translateY(5px); }
	50% {
	  -webkit-transform: translateY(0px);
	  -ms-transform: translateY(0px);
	  transform: translateY(0px); }
	100% {
	  -webkit-transform: translateY(5px);
	  -ms-transform: translateY(5px);
	  transform: translateY(5px); } }
  @keyframes down {
	0% {
	  -webkit-transform: translateY(5px);
	  -ms-transform: translateY(5px);
	  transform: translateY(5px); }
	50% {
	  -webkit-transform: translateY(0px);
	  -ms-transform: translateY(0px);
	  transform: translateY(0px); }
	100% {
	  -webkit-transform: translateY(5px);
	  -ms-transform: translateY(5px);
	  transform: translateY(5px); } }
	  .body_wrap {
		overflow: hidden;
		position: relative; }

	  .bg_img {
		background-position: center center;
		background-size: cover;
		background-repeat: no-repeat;
		width: 100%;
		height: 100%; }

	  .gray-bg {
		background: #F3F3F5; }

	  .black-bg {
		background: #000; }

	  .white-bg {
		background: #ffffff; }

	  .white {
		color: #ffffff; }

	  .pos-rel {
		position: relative; }

	  .pos-absolute {
		position: absolute; }

	  .f-right {
		float: right; }
	  .maxw_1440 {
		  max-width: 1440px;
	  }
	  .br-10 {
		border-radius: 10px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		-ms-border-radius: 10px;
		-o-border-radius: 10px; }

	  .section-title .subtitle {
		font-size: 18px;
		font-weight: 500;
		display: inline-block;
		margin-bottom: 5px;
		color: var(--main-color-2);
		letter-spacing: 1px;
		font-family: "Roboto", sans-serif;
	}
		.section-title .subtitle i {
		  margin-right: 5px; }
	.section-title .title {
		font-size: 50px;
		color: #010101;
		text-transform: capitalize;
		line-height: 1.3;
		font-family: "Roboto", sans-serif;
		letter-spacing: 1.1px;
	}
	.section-title .title span::before {
		position: absolute;
		content: "";
		bottom: 0;
		left: 0;
		left: 7px;
		bottom: -3px;
		-webkit-animation: shape-animation 3s infinite;
		animation: shape-animation 3s infinite;
		background-image: url(../images/shape_1.png);
		width: 100%;
		height: 10px;
		z-index: 22;
		background-repeat: no-repeat;
	}
	.section-title p {
		font-family: "Roboto", sans-serif;
		color: #5B646B;
		font-size: 16px;
	}

		@media only screen and (min-width: 1200px) and (max-width: 1500px) {
		  .section-title .title {
			font-size: 42px; } }
		@media (max-width: 1199px) {
		  .section-title .title {
			font-size: 38px; } }
		@media (max-width: 767px) {
		  .section-title .title br {
			display: none; } }
		.section-title .title span {
		  position: relative;
		  color: var(--main-color-2); }
		  .section-title .title span img {
			position: absolute;
			left: 0px;
			bottom: -2px;
			-webkit-animation: shape-animation 3s infinite;
			animation: shape-animation 3s infinite; }
	  .section-title--white .title {
		color: #ffffff; }

	  .border_effect a {
		display: inline !important;
		width: 100%;
		background-repeat: no-repeat;
		background-position-y: -2px;
		background-image: linear-gradient(transparent calc(100% - 2px), currentColor 1px);
		transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
		background-size: 0 100%;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden; }
		.border_effect a:hover {
		  background-size: 100% 100%;
		  color: inherit; }

	  /* play btn animation */
	  .video_icon {
		position: absolute;
		background: var(--main-color-2);
		color: #ffffff;
		height: 110px;
		width: 110px;
		top: 50%;
		left: 0;
		right: 0;
		margin: auto;
		text-align: center;
		font-size: 20px;
		line-height: 110px;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		border-radius: 50%;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		-ms-border-radius: 50%;
		-o-border-radius: 50%; }
		@media (max-width: 767px) {
		  .video_icon {
			width: 80px;
			height: 80px;
			line-height: 80px; } }

	  .video_icon:hover {
		color: #ffffff; }

	  .video_icon::before, .video_icon::after {
		position: absolute;
		content: "";
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		border-radius: 50%;
		background-color: var(--main-color-2);
		opacity: 0.15;
		z-index: -10; }

	  .video_icon::before {
		z-index: -10;
		-webkit-animation: inner-ripple 2000ms linear infinite;
		-moz-animation: inner-ripple 2000ms linear infinite;
		animation: inner-ripple 2000ms linear infinite; }

	  .video_icon::after {
		z-index: -10;
		-webkit-animation: outer-ripple 2000ms linear infinite;
		-moz-animation: outer-ripple 2000ms linear infinite;
		animation: outer-ripple 2000ms linear infinite; }

	  .updown-animate {
		animation-name: updown;
		-moz-animation-name: updown;
		-ms-animation-name: updown;
		-o-animation-name: updown;
		animation-duration: 2s;
		-moz-animation-duration: 2s;
		-ms-animation-duration: 2s;
		-o-animation-duration: 2s;
		animation-iteration-count: infinite;
		-moz-animation-iteration-count: infinite;
		-ms-animation-iteration-count: infinite;
		-o-animation-iteration-count: infinite;
		animation-timing-function: linear;
		-moz-animation-timing-function: linear;
		-ms-animation-timing-function: linear;
		-o-animation-timing-function: linear;
		margin-top: 5px; }

	  .updown-animate-2 {
		animation-duration: 4s;
		-moz-animation-duration: 4s;
		-ms-animation-duration: 4s;
		-o-animation-duration: 4s; }

	  /* animation */
	  @keyframes outer-ripple {
		0% {
		  transform: scale(1);
		  filter: alpha(opacity=50);
		  opacity: 0.5;
		  -webkit-transform: scale(1);
		  -moz-transform: scale(1);
		  -ms-transform: scale(1);
		  -o-transform: scale(1);
		  -webkit-filter: alpha(opacity=50); }
		80% {
		  transform: scale(1.5);
		  filter: alpha(opacity=0);
		  opacity: 0;
		  -webkit-transform: scale(1.5);
		  -moz-transform: scale(1.5);
		  -ms-transform: scale(1.5);
		  -o-transform: scale(1.5); }
		100% {
		  transform: scale(2.5);
		  filter: alpha(opacity=0);
		  opacity: 0;
		  -webkit-transform: scale(2.5);
		  -moz-transform: scale(2.5);
		  -ms-transform: scale(2.5);
		  -o-transform: scale(2.5); } }
	  @-webkit-keyframes outer-ripple {
		0% {
		  transform: scale(1);
		  filter: alpha(opacity=50);
		  opacity: 0.5;
		  -webkit-transform: scale(1);
		  -moz-transform: scale(1);
		  -ms-transform: scale(1);
		  -o-transform: scale(1); }
		80% {
		  transform: scale(2.5);
		  filter: alpha(opacity=0);
		  opacity: 0;
		  -webkit-transform: scale(2.5);
		  -moz-transform: scale(2.5);
		  -ms-transform: scale(2.5);
		  -o-transform: scale(2.5); }
		100% {
		  transform: scale(3.5);
		  filter: alpha(opacity=0);
		  opacity: 0;
		  -webkit-transform: scale(3.5);
		  -moz-transform: scale(3.5);
		  -ms-transform: scale(3.5);
		  -o-transform: scale(3.5); } }
	  @-moz-keyframes outer-ripple {
		0% {
		  transform: scale(1);
		  filter: alpha(opacity=50);
		  opacity: 0.5;
		  -webkit-transform: scale(1);
		  -moz-transform: scale(1);
		  -ms-transform: scale(1);
		  -o-transform: scale(1); }
		80% {
		  transform: scale(2.5);
		  filter: alpha(opacity=0);
		  opacity: 0;
		  -webkit-transform: scale(2.5);
		  -moz-transform: scale(2.5);
		  -ms-transform: scale(2.5);
		  -o-transform: scale(2.5); }
		100% {
		  transform: scale(3.5);
		  filter: alpha(opacity=0);
		  opacity: 0;
		  -webkit-transform: scale(3.5);
		  -moz-transform: scale(3.5);
		  -ms-transform: scale(3.5);
		  -o-transform: scale(3.5); } }
	  @keyframes shape-animation {
		0% {
		  width: 0; }
		15% {
		  width: 95%; }
		85% {
		  opacity: 1; }
		90% {
		  width: 95%;
		  opacity: 0; }
		to {
		  width: 0;
		  opacity: 0; } }
	  @keyframes shape-animation-2 {
		0% {
		  width: 0; }
		15% {
		  width: 125%; }
		85% {
		  opacity: 1; }
		90% {
		  width: 125%;
		  opacity: 0; }
		to {
		  width: 0;
		  opacity: 0; } }
	  @keyframes spin {
		0% {
		  transform: rotate(0deg); }
		100% {
		  transform: rotate(360deg); } }
	  @keyframes spin-2 {
		0% {
		  transform: rotate(0deg); }
		100% {
		  transform: rotate(-360deg); } }
	  @-webkit-keyframes zoominup {
		0% {
		  transform: scale(1.2); }
		50% {
		  transform: scale(1); }
		100% {
		  transform: scale(1.2); } }
	  @-webkit-keyframes updown {
		0% {
		  transform: translateY(-10px);
		  -webkit-transform: translateY(-10px);
		  -moz-transform: translateY(-10px);
		  -ms-transform: translateY(-10px);
		  -o-transform: translateY(-10px); }
		50% {
		  transform: translateY(-5px);
		  -webkit-transform: translateY(-5px);
		  -moz-transform: translateY(-5px);
		  -ms-transform: translateY(-5px);
		  -o-transform: translateY(-5px); }
		100% {
		  transform: translateY(-10px);
		  -webkit-transform: translateY(-10px);
		  -moz-transform: translateY(-10px);
		  -ms-transform: translateY(-10px);
		  -o-transform: translateY(-10px); } }
	  /* order & unorder list reset - start */
	  .ul_li, .ul_li_right, .ul_li_center {
		margin: 0px;
		padding: 0px;
		display: flex;
		flex-wrap: wrap;
		align-items: center; }

	  .ul_li > li, .ul_li_right > li, .ul_li_center > li {
		float: left;
		list-style: none;
		display: inline-block; }

	  .ul_li {
		justify-content: flex-start; }

	  .ul_li_center {
		justify-content: center; }

	  .ul_li_right {
		justify-content: flex-end; }

	  .ul_li_block {
		margin: 0px;
		padding: 0px;
		display: block; }

	  .ul_li_block > li {
		display: block;
		list-style: none; }

	  .custom-width {
		max-width: 1600px; }
		@media only screen and (min-width: 1200px) and (max-width: 1500px) {
		  .custom-width {
			max-width: 1350px; } }

	  .maxw_1800 {
		max-width: 1800px; }
		@media only screen and (min-width: 1200px) and (max-width: 1500px) {
		  .maxw_1800 {
			max-width: 1300px; } }
		@media (max-width: 1199px) {
		  .maxw_1800 {
			max-width: 960px; } }
		@media (max-width: 991px) {
		  .maxw_1800 {
			max-width: 720px; } }

	  .maxw_1660 {
		max-width: 1660px; }

	  .maxw_1320 {
		max-width: 1320px; }

	  .padding-lr-45 {
		padding-left: 45px;
		padding-right: 45px; }
		@media only screen and (min-width: 1200px) and (max-width: 1500px) {
		  .padding-lr-45 {
			padding-left: 20px;
			padding-right: 20px; } }
		@media (max-width: 1199px) {
		  .padding-lr-45 {
			padding-left: 0;
			padding-right: 0; } }

	  /*--
		  - Margin & Padding
	  -----------------------------------------*/
	  /*-- Margin Top --*/
	  .mt-none-5 {
		margin-top: -5px; }

	  .mt-none-10 {
		margin-top: -10px; }

	  .mt-none-15 {
		margin-top: -15px; }

	  .mt-none-20 {
		margin-top: -20px; }

	  .mt-none-25 {
		margin-top: -25px; }

	  .mt-none-30 {
		margin-top: -30px; }

	  .mt-none-35 {
		margin-top: -35px; }

	  .mt-none-40 {
		margin-top: -40px; }

	  .mt-none-45 {
		margin-top: -45px; }

	  .mt-none-50 {
		margin-top: -50px; }

	  .mt-none-55 {
		margin-top: -55px; }

	  .mt-none-60 {
		margin-top: -60px; }

	  .mt-none-65 {
		margin-top: -65px; }

	  .mt-none-70 {
		margin-top: -70px; }

	  .mt-none-75 {
		margin-top: -75px; }

	  .mt-none-80 {
		margin-top: -80px; }

	  .mt-none-85 {
		margin-top: -85px; }

	  .mt-none-90 {
		margin-top: -90px; }

	  .mt-none-95 {
		margin-top: -95px; }

	  .mt-none-100 {
		margin-top: -100px; }

	  /*-- Margin Top --*/
	  .mt-5 {
		margin-top: 5px; }

	  .mt-10 {
		margin-top: 10px; }

	  .mt-15 {
		margin-top: 15px; }

	  .mt-20 {
		margin-top: 20px; }

	  .mt-25 {
		margin-top: 25px; }

	  .mt-30 {
		margin-top: 30px; }

	  .mt-35 {
		margin-top: 35px; }

	  .mt-40 {
		margin-top: 40px; }

	  .mt-45 {
		margin-top: 45px; }

	  .mt-50 {
		margin-top: 50px; }

	  .mt-55 {
		margin-top: 55px; }

	  .mt-60 {
		margin-top: 60px; }

	  .mt-65 {
		margin-top: 65px; }

	  .mt-70 {
		margin-top: 70px; }

	  .mt-75 {
		margin-top: 75px; }

	  .mt-80 {
		margin-top: 80px; }

	  .mt-85 {
		margin-top: 85px; }

	  .mt-90 {
		margin-top: 90px; }

	  .mt-95 {
		margin-top: 95px; }

	  .mt-100 {
		margin-top: 100px; }

	  .mt-105 {
		margin-top: 105px; }

	  .mt-110 {
		margin-top: 110px; }

	  .mt-115 {
		margin-top: 115px; }

	  .mt-120 {
		margin-top: 120px; }

	  .mt-125 {
		margin-top: 125px; }

	  .mt-130 {
		margin-top: 130px; }

	  .mt-135 {
		margin-top: 135px; }

	  .mt-140 {
		margin-top: 140px; }

	  .mt-145 {
		margin-top: 145px; }

	  .mt-150 {
		margin-top: 150px; }

	  .mt-155 {
		margin-top: 155px; }

	  .mt-160 {
		margin-top: 160px; }

	  .mt-165 {
		margin-top: 165px; }

	  .mt-170 {
		margin-top: 170px; }

	  .mt-175 {
		margin-top: 175px; }

	  .mt-180 {
		margin-top: 180px; }

	  .mt-185 {
		margin-top: 185px; }

	  .mt-190 {
		margin-top: 190px; }

	  .mt-195 {
		margin-top: 195px; }

	  .mt-200 {
		margin-top: 200px; }

	  /*-- Margin Bottom --*/
	  .mb-5 {
		margin-bottom: 5px; }

	  .mb-10 {
		margin-bottom: 10px; }

	  .mb-15 {
		margin-bottom: 15px; }

	  .mb-20 {
		margin-bottom: 20px; }

	  .mb-25 {
		margin-bottom: 25px; }

	  .mb-30 {
		margin-bottom: 30px; }

	  .mb-35 {
		margin-bottom: 35px; }

	  .mb-40 {
		margin-bottom: 40px; }

	  .mb-45 {
		margin-bottom: 45px; }

	  .mb-50 {
		margin-bottom: 50px; }

	  .mb-55 {
		margin-bottom: 55px; }

	  .mb-60 {
		margin-bottom: 60px; }

	  .mb-65 {
		margin-bottom: 65px; }

	  .mb-70 {
		margin-bottom: 70px; }

	  .mb-75 {
		margin-bottom: 75px; }

	  .mb-80 {
		margin-bottom: 80px; }

	  .mb-85 {
		margin-bottom: 85px; }

	  .mb-90 {
		margin-bottom: 90px; }

	  .mb-95 {
		margin-bottom: 95px; }

	  .mb-100 {
		margin-bottom: 100px; }

	  .mb-105 {
		margin-bottom: 105px; }

	  .mb-110 {
		margin-bottom: 110px; }

	  .mb-115 {
		margin-bottom: 115px; }

	  .mb-120 {
		margin-bottom: 120px; }

	  .mb-125 {
		margin-bottom: 125px; }

	  .mb-130 {
		margin-bottom: 130px; }

	  .mb-135 {
		margin-bottom: 135px; }

	  .mb-140 {
		margin-bottom: 140px; }

	  .mb-145 {
		margin-bottom: 145px; }

	  .mb-150 {
		margin-bottom: 150px; }

	  .mb-155 {
		margin-bottom: 155px; }

	  .mb-160 {
		margin-bottom: 160px; }

	  .mb-165 {
		margin-bottom: 165px; }

	  .mb-170 {
		margin-bottom: 170px; }

	  .mb-175 {
		margin-bottom: 175px; }

	  .mb-180 {
		margin-bottom: 180px; }

	  .mb-185 {
		margin-bottom: 185px; }

	  .mb-190 {
		margin-bottom: 190px; }

	  .mb-195 {
		margin-bottom: 195px; }

	  .mb-200 {
		margin-bottom: 200px; }

	  /*-- Margin Left --*/
	  .ml-5 {
		margin-left: 5px; }

	  .ml-10 {
		margin-left: 10px; }

	  .ml-15 {
		margin-left: 15px; }

	  .ml-20 {
		margin-left: 20px; }

	  .ml-25 {
		margin-left: 25px; }

	  .ml-30 {
		margin-left: 30px; }

	  .ml-35 {
		margin-left: 35px; }

	  .ml-40 {
		margin-left: 40px; }

	  .ml-45 {
		margin-left: 45px; }

	  .ml-50 {
		margin-left: 50px; }

	  .ml-55 {
		margin-left: 55px; }

	  .ml-60 {
		margin-left: 60px; }

	  .ml-65 {
		margin-left: 65px; }

	  .ml-70 {
		margin-left: 70px; }

	  .ml-75 {
		margin-left: 75px; }

	  .ml-80 {
		margin-left: 80px; }

	  .ml-85 {
		margin-left: 85px; }

	  .ml-90 {
		margin-left: 90px; }

	  .ml-95 {
		margin-left: 95px; }

	  .ml-100 {
		margin-left: 100px; }

	  .ml-105 {
		margin-left: 105px; }

	  .ml-110 {
		margin-left: 110px; }

	  .ml-115 {
		margin-left: 115px; }

	  .ml-120 {
		margin-left: 120px; }

	  .ml-125 {
		margin-left: 125px; }

	  .ml-130 {
		margin-left: 130px; }

	  .ml-135 {
		margin-left: 135px; }

	  .ml-140 {
		margin-left: 140px; }

	  .ml-145 {
		margin-left: 145px; }

	  .ml-150 {
		margin-left: 150px; }

	  .ml-155 {
		margin-left: 155px; }

	  .ml-160 {
		margin-left: 160px; }

	  .ml-165 {
		margin-left: 165px; }

	  .ml-170 {
		margin-left: 170px; }

	  .ml-175 {
		margin-left: 175px; }

	  .ml-180 {
		margin-left: 180px; }

	  .ml-185 {
		margin-left: 185px; }

	  .ml-190 {
		margin-left: 190px; }

	  .ml-195 {
		margin-left: 195px; }

	  .ml-200 {
		margin-left: 200px; }

	  /*-- Margin Right --*/
	  .mr-5 {
		margin-right: 5px; }

	  .mr-10 {
		margin-right: 10px; }

	  .mr-15 {
		margin-right: 15px; }

	  .mr-20 {
		margin-right: 20px; }

	  .mr-25 {
		margin-right: 25px; }

	  .mr-30 {
		margin-right: 30px; }

	  .mr-35 {
		margin-right: 35px; }

	  .mr-40 {
		margin-right: 40px; }

	  .mr-45 {
		margin-right: 45px; }

	  .mr-50 {
		margin-right: 50px; }

	  .mr-55 {
		margin-right: 55px; }

	  .mr-60 {
		margin-right: 60px; }

	  .mr-65 {
		margin-right: 65px; }

	  .mr-70 {
		margin-right: 70px; }

	  .mr-75 {
		margin-right: 75px; }

	  .mr-80 {
		margin-right: 80px; }

	  .mr-85 {
		margin-right: 85px; }

	  .mr-90 {
		margin-right: 90px; }

	  .mr-95 {
		margin-right: 95px; }

	  .mr-100 {
		margin-right: 100px; }

	  .mr-105 {
		margin-right: 105px; }

	  .mr-110 {
		margin-right: 110px; }

	  .mr-115 {
		margin-right: 115px; }

	  .mr-120 {
		margin-right: 120px; }

	  .mr-125 {
		margin-right: 125px; }

	  .mr-130 {
		margin-right: 130px; }

	  .mr-135 {
		margin-right: 135px; }

	  .mr-140 {
		margin-right: 140px; }

	  .mr-145 {
		margin-right: 145px; }

	  .mr-150 {
		margin-right: 150px; }

	  .mr-155 {
		margin-right: 155px; }

	  .mr-160 {
		margin-right: 160px; }

	  .mr-165 {
		margin-right: 165px; }

	  .mr-170 {
		margin-right: 170px; }

	  .mr-175 {
		margin-right: 175px; }

	  .mr-180 {
		margin-right: 180px; }

	  .mr-185 {
		margin-right: 185px; }

	  .mr-190 {
		margin-right: 190px; }

	  .mr-195 {
		margin-right: 195px; }

	  .mr-200 {
		margin-right: 200px; }

	  /*-- Padding Top --*/
	  .pt-5 {
		padding-top: 5px; }

	  .pt-10 {
		padding-top: 10px; }

	  .pt-15 {
		padding-top: 15px; }

	  .pt-20 {
		padding-top: 20px; }

	  .pt-25 {
		padding-top: 25px; }

	  .pt-30 {
		padding-top: 30px; }

	  .pt-35 {
		padding-top: 35px; }

	  .pt-40 {
		padding-top: 40px; }

	  .pt-45 {
		padding-top: 45px; }

	  .pt-50 {
		padding-top: 50px; }

	  .pt-55 {
		padding-top: 55px; }

	  .pt-60 {
		padding-top: 60px; }

	  .pt-65 {
		padding-top: 65px; }

	  .pt-70 {
		padding-top: 70px; }

	  .pt-75 {
		padding-top: 75px; }

	  .pt-80 {
		padding-top: 80px; }

	  .pt-85 {
		padding-top: 85px; }

	  .pt-90 {
		padding-top: 90px; }

	  .pt-95 {
		padding-top: 95px; }

	  .pt-100 {
		padding-top: 100px; }

	  .pt-105 {
		padding-top: 105px; }

	  .pt-110 {
		padding-top: 110px; }

	  .pt-115 {
		padding-top: 115px; }

	  .pt-120 {
		padding-top: 120px; }

	  .pt-125 {
		padding-top: 125px; }

	  .pt-130 {
		padding-top: 130px; }

	  .pt-135 {
		padding-top: 135px; }

	  .pt-140 {
		padding-top: 140px; }

	  .pt-145 {
		padding-top: 145px; }

	  .pt-150 {
		padding-top: 150px; }

	  .pt-155 {
		padding-top: 155px; }

	  .pt-160 {
		padding-top: 160px; }

	  .pt-165 {
		padding-top: 165px; }

	  .pt-170 {
		padding-top: 170px; }

	  .pt-175 {
		padding-top: 175px; }

	  .pt-180 {
		padding-top: 180px; }

	  .pt-185 {
		padding-top: 185px; }

	  .pt-190 {
		padding-top: 190px; }

	  .pt-195 {
		padding-top: 195px; }

	  .pt-200 {
		padding-top: 200px; }

	  /*-- Padding Bottom --*/
	  .pb-5 {
		padding-bottom: 5px; }

	  .pb-10 {
		padding-bottom: 10px; }

	  .pb-15 {
		padding-bottom: 15px; }

	  .pb-20 {
		padding-bottom: 20px; }

	  .pb-25 {
		padding-bottom: 25px; }

	  .pb-30 {
		padding-bottom: 30px; }

	  .pb-35 {
		padding-bottom: 35px; }

	  .pb-40 {
		padding-bottom: 40px; }

	  .pb-45 {
		padding-bottom: 45px; }

	  .pb-50 {
		padding-bottom: 50px; }

	  .pb-55 {
		padding-bottom: 55px; }

	  .pb-60 {
		padding-bottom: 60px; }

	  .pb-65 {
		padding-bottom: 65px; }

	  .pb-70 {
		padding-bottom: 70px; }

	  .pb-75 {
		padding-bottom: 75px; }

	  .pb-80 {
		padding-bottom: 80px; }

	  .pb-85 {
		padding-bottom: 85px; }

	  .pb-90 {
		padding-bottom: 90px; }

	  .pb-95 {
		padding-bottom: 95px; }

	  .pb-100 {
		padding-bottom: 100px; }

	  .pb-105 {
		padding-bottom: 105px; }

	  .pb-110 {
		padding-bottom: 110px; }

	  .pb-115 {
		padding-bottom: 115px; }

	  .pb-120 {
		padding-bottom: 120px; }

	  .pb-125 {
		padding-bottom: 125px; }

	  .pb-130 {
		padding-bottom: 130px; }

	  .pb-135 {
		padding-bottom: 135px; }

	  .pb-140 {
		padding-bottom: 140px; }

	  .pb-145 {
		padding-bottom: 145px; }

	  .pb-150 {
		padding-bottom: 150px; }

	  .pb-155 {
		padding-bottom: 155px; }

	  .pb-160 {
		padding-bottom: 160px; }

	  .pb-165 {
		padding-bottom: 165px; }

	  .pb-170 {
		padding-bottom: 170px; }

	  .pb-175 {
		padding-bottom: 175px; }

	  .pb-180 {
		padding-bottom: 180px; }

	  .pb-185 {
		padding-bottom: 185px; }

	  .pb-190 {
		padding-bottom: 190px; }

	  .pb-195 {
		padding-bottom: 195px; }

	  .pb-200 {
		padding-bottom: 200px; }

	  /*-- Padding Left --*/
	  .pl-5 {
		padding-left: 5px; }

	  .pl-10 {
		padding-left: 10px; }

	  .pl-15 {
		padding-left: 15px; }

	  .pl-20 {
		padding-left: 20px; }

	  .pl-25 {
		padding-left: 25px; }

	  .pl-30 {
		padding-left: 30px; }

	  .pl-35 {
		padding-left: 35px; }

	  .pl-40 {
		padding-left: 40px; }

	  .pl-45 {
		padding-left: 45px; }

	  .pl-50 {
		padding-left: 50px; }

	  .pl-55 {
		padding-left: 55px; }

	  .pl-60 {
		padding-left: 60px; }

	  .pl-65 {
		padding-left: 65px; }

	  .pl-70 {
		padding-left: 70px; }

	  .pl-75 {
		padding-left: 75px; }

	  .pl-80 {
		padding-left: 80px; }

	  .pl-85 {
		padding-left: 85px; }

	  .pl-90 {
		padding-left: 90px; }

	  .pl-95 {
		padding-left: 95px; }

	  .pl-100 {
		padding-left: 100px; }

	  .pl-105 {
		padding-left: 105px; }

	  .pl-110 {
		padding-left: 110px; }

	  .pl-115 {
		padding-left: 115px; }

	  .pl-120 {
		padding-left: 120px; }

	  .pl-125 {
		padding-left: 125px; }

	  .pl-130 {
		padding-left: 130px; }

	  .pl-135 {
		padding-left: 135px; }

	  .pl-140 {
		padding-left: 140px; }

	  .pl-145 {
		padding-left: 145px; }

	  .pl-150 {
		padding-left: 150px; }

	  .pl-155 {
		padding-left: 155px; }

	  .pl-160 {
		padding-left: 160px; }

	  .pl-165 {
		padding-left: 165px; }

	  .pl-170 {
		padding-left: 170px; }

	  .pl-175 {
		padding-left: 175px; }

	  .pl-180 {
		padding-left: 180px; }

	  .pl-185 {
		padding-left: 185px; }

	  .pl-190 {
		padding-left: 190px; }

	  .pl-195 {
		padding-left: 195px; }

	  .pl-200 {
		padding-left: 200px; }

	  /*-- Padding Right --*/
	  .pr-5 {
		padding-right: 5px; }

	  .pr-10 {
		padding-right: 10px; }

	  .pr-15 {
		padding-right: 15px; }

	  .pr-20 {
		padding-right: 20px; }

	  .pr-25 {
		padding-right: 25px; }

	  .pr-30 {
		padding-right: 30px; }

	  .pr-35 {
		padding-right: 35px; }

	  .pr-40 {
		padding-right: 40px; }

	  .pr-45 {
		padding-right: 45px; }

	  .pr-50 {
		padding-right: 50px; }

	  .pr-55 {
		padding-right: 55px; }

	  .pr-60 {
		padding-right: 60px; }

	  .pr-65 {
		padding-right: 65px; }

	  .pr-70 {
		padding-right: 70px; }

	  .pr-75 {
		padding-right: 75px; }

	  .pr-80 {
		padding-right: 80px; }

	  .pr-85 {
		padding-right: 85px; }

	  .pr-90 {
		padding-right: 90px; }

	  .pr-95 {
		padding-right: 95px; }

	  .pr-100 {
		padding-right: 100px; }

	  .pr-105 {
		padding-right: 105px; }

	  .pr-110 {
		padding-right: 110px; }

	  .pr-115 {
		padding-right: 115px; }

	  .pr-120 {
		padding-right: 120px; }

	  .pr-125 {
		padding-right: 125px; }

	  .pr-130 {
		padding-right: 130px; }

	  .pr-135 {
		padding-right: 135px; }

	  .pr-140 {
		padding-right: 140px; }

	  .pr-145 {
		padding-right: 145px; }

	  .pr-150 {
		padding-right: 150px; }

	  .pr-155 {
		padding-right: 155px; }

	  .pr-160 {
		padding-right: 160px; }

	  .pr-165 {
		padding-right: 165px; }

	  .pr-170 {
		padding-right: 170px; }

	  .pr-175 {
		padding-right: 175px; }

	  .pr-180 {
		padding-right: 180px; }

	  .pr-185 {
		padding-right: 185px; }

	  .pr-190 {
		padding-right: 190px; }

	  .pr-195 {
		padding-right: 195px; }

	  .pr-200 {
		padding-right: 200px; }


	  /* typography css end */
	  /*----------------------------------------*/
	  /*  02. header
	  /*----------------------------------------*/
	  .header__area .container {
		max-width: 1600px; }
	  .header__top {
		background-color: #0F1112;
		padding: 8px 0;
	}
	.header__top .social-links {
		margin-top: 0;
	}
		@media (max-width: 991px) {
		  .header__top {
			display: none; } }
	  .header__top-right .social-links.ml-30 {
		margin-left: 20px; }
	  .header__top-text {
		color: #ffffff;
		font-size: 15px; }
		@media (max-width: 1199px) {
		  .header__top-text {
			font-size: 13px; } }
		.header__top-text i {
		  color: var(--main-color-2);
		  margin-right: 5px;
		  font-size: 16px; }
		.header__top-text span {
		  color: var(--main-color-2); }
		.header__top-text p {
		  color: #ffffff;
		  margin-bottom: 0;
		}
		.header__top-text p a,
		.header__top-text p a:hover {
			color: var(--main-color-2);
		}
	  .header__logo {
		max-width: 180px; }
		@media (max-width: 1199px) {
		  .header__logo {
			max-width: 160px; } }
		.header__logo img {
		  width: 100%; }
	  .header__info-wrap {
		display: flex;
		align-items: center;
		flex-wrap: wrap; }
	  .header__info {
		padding: 15px 0; }
		@media (max-width: 991px) {
		  .header__info {
			display: none; } }
	  .header__contact-info {
		flex: 1; }
		.header__contact-info li {
			display: flex;
			align-items: center;
			font-size: 16px;
			font-weight: 500;
			color: #121D2C;
			font-family: "Roboto", sans-serif;
		}
		  @media (max-width: 1199px) {
			.header__contact-info li {
			  font-size: 15px; } }
		  .header__contact-info li:not(:last-child) {
			margin-right: 70px; }
			@media only screen and (min-width: 1200px) and (max-width: 1500px) {
			  .header__contact-info li:not(:last-child) {
				margin-right: 30px; } }
			@media (max-width: 1199px) {
			  .header__contact-info li:not(:last-child) {
				margin-right: 20px; } }
		  .header__contact-info li a {
			font-size: 16px;
			font-weight: 500;
			color: #121D2C; }
		  .header__contact-info li i {
			width: 38px;
			height: 38px;
			border-radius: 50%;
			-webkit-border-radius: 50%;
			-moz-border-radius: 50%;
			-ms-border-radius: 50%;
			-o-border-radius: 50%;
			border: 1px solid var(--main-color-2);
			color: var(--main-color-2);
			font-size: 15px;
			margin-right: 10px;
			display: flex;
			align-items: center;
			justify-content: center; }
			@media (max-width: 1199px) {
			  .header__contact-info li i {
				width: auto;
				height: auto;
				border: 0;
				margin-right: 10px; } }
	  .header__btn {
		line-height: 1; }
		@media (max-width: 991px) {
		  .header__btn .thm-btn {
			background-color: var(--main-color-2); }
			.header__btn .thm-btn:hover {
			  background-color: #2E2E2E;
			  border-color: #2E2E2E; } }
	  .header__main {
		height: 86px;
		display: flex;
		align-items: center;
		margin-bottom: -86px;
		z-index: 3;
		position: relative;
		background-color: rgba(255, 255, 255, 0.06); }
		@media (max-width: 991px) {
		  .header__main {
			margin-bottom: 0; } }
			.header__transparent {
				position: absolute;
				top: 5px;
				left: 0;
				width: 100%;
				z-index: 9;
			}
	  .header__style-2 .container {
		max-width: 1520px; }
	  @media (max-width: 991px) {
		.header__style-2 {
		  padding: 15px 0px; } }
	  .header__style-2 .header__icons .icon {
		border-color: #ffffff; }
		.header__style-2 .header__icons .icon span {
		  color: #ffffff; }
	  .header__style-2 .header__logo a img:nth-child(2) {
		display: none; }
	  .header__style-2.sticky-header .header__logo a img:nth-child(1) {
		display: none; }
	  .header__style-2.sticky-header .header__logo a img:nth-child(2) {
		display: inline-block; }
	  @media (max-width: 767px) {
		.header__style-2 .header__btn .thm-btn {
		  display: none; } }

	  .main_menu_wrap {
		flex: 1; }

	  .main_menu {
		justify-content: center; }

	  .main_menu ul li {
		display: inline-block;
		margin-right: 50px;
		position: relative; }
		@media (max-width: 1199px) {
		  .main_menu ul li {
			margin-right: 30px; } }

	  .main_menu ul li:last-child {
		margin-right: 0; }

		.main_menu ul li a {
			padding: 25px 0;
			color: #ffffff;
			font-weight: 500;
			font-size: 16px;
			display: inline-block;
			position: relative;
			font-family: "Roboto", sans-serif;
		}
		@media (max-width: 1199px) {
		  .main_menu ul li a {
			font-size: 15px; } }

	  .main_menu ul li:hover > a::before, .main_menu ul li.active > a::before {
		width: 100%;
		right: auto;
		left: 0; }

	  .main_menu ul li:hover > a, .main_menu ul li.active > a, .sticky-header .main_menu ul li.active > a {
		color: var(--main-color-2); }

	  .main_menu ul li ul.sub-menu {
		position: absolute;
		top: 100%;
		min-width: 230px;
		background: #fff;
		padding: 15px 0;
		border-radius: 3px;
		z-index: 99;
		transform-origin: 50% 0;
		box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
		transform: scaleY(0);
		-webkit-transform: scaleY(0);
		-moz-transform: scaleY(0);
		-ms-transform: scaleY(0);
		-o-transform: scaleY(0);
		transition: all 0.3s ease-out 0s;
		-webkit-transition: all 0.3s ease-out 0s;
		-moz-transition: all 0.3s ease-out 0s;
		-ms-transition: all 0.3s ease-out 0s;
		-o-transition: all 0.3s ease-out 0s; }

	  .main_menu ul li:hover > ul.sub-menu {
		transform: scaleY(1);
		-webkit-transform: scaleY(1);
		-moz-transform: scaleY(1);
		-ms-transform: scaleY(1);
		-o-transform: scaleY(1); }

	  .main_menu ul li ul.sub-menu li {
		margin: 0;
		display: block;
		padding: 6px 25px; }

	  .main_menu ul li ul.sub-menu li a {
		color: #1e1d23;
		display: block;
		padding: 0;
		text-transform: capitalize; }

	  .main_menu ul .menu-item-has-children > a::after {
		content: "+";
		font-size: 16px;
		transform: translateY(-1px);
		display: inline-block;
		padding-left: 7px;
		font-weight: 500; }

	  .main_menu ul li ul.sub-menu li:hover > a, .main_menu ul li ul.sub-menu li.active > a {
		color: var(--main-color-2); }

	  .main_menu ul li ul.sub-menu li a::before {
		background: none; }

	  .main_menu ul li ul.sub-menu li ul.sub-menu {
		top: 10%;
		left: 100%;
		transform-origin: 50% 0;
		transform: scaleY(0);
		-webkit-transform: scaleY(0);
		-moz-transform: scaleY(0);
		-ms-transform: scaleY(0);
		-o-transform: scaleY(0); }

	  .main_menu ul li ul.sub-menu li:hover > ul.sub-menu {
		top: 0;
		transform: scaleY(1);
		-webkit-transform: scaleY(1);
		-moz-transform: scaleY(1);
		-ms-transform: scaleY(1);
		-o-transform: scaleY(1); }

	  .main_menu ul .menu-item-has-children ul.sub-menu .menu-item-has-children > a::after {
		position: absolute;
		top: 8px;
		right: 0;
		line-height: 1;
		content: "+";
		font-size: 16px; }

	  .header_icons {
		margin-left: 80px; }

		.header__icons .icon {
			width: 45px;
			height: 43px;
			text-align: center;
			border: 1px solid rgba(255, 255, 255, 0.44);
			line-height: 43px;
			color: #ffffff;
			position: relative;
			margin-left: 20px;
			cursor: pointer;
			border-radius: 2px;
			-webkit-border-radius: 2px;
			-moz-border-radius: 2px;
			-ms-border-radius: 2px;
			-o-border-radius: 2px;
			display: flex;
			align-items: center;
			justify-content: center;
		}
		@media (max-width: 1199px) {
		  .header__icons .icon {
			width: 43px;
			height: 43px;
			line-height: 41px;
			font-size: 14px; } }
		@media (max-width: 991px) {
		  .header__icons .icon {
			border: 1px solid rgba(0, 0, 0, 0.44);
			font-size: 16px; } }

	  .header__icons .icon > span {
		color: #ffffff; }
		@media (max-width: 991px) {
		  .header__icons .icon span {
			color: #121D2C; } }

	  .header__icons .cart_counter {
		top: -10px;
		right: -10px;
		height: 25px;
		color: #ffffff;
		min-width: 25px;
		font-size: 12px;
		line-height: 25px;
		text-align: center;
		position: absolute;
		border-radius: 45px;
		background-color: var(--main-color-2); }

	  .header_right .search_box {
		position: relative;
		padding: 0; }

	  .header_right .search_box input {
		padding: 0px 25px;
		background: #fff;
		outline: none;
		color: #1e1d23;
		width: 350px;
		height: 55px;
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		-ms-border-radius: 5px;
		-o-border-radius: 5px;
		border-radius: 10px;
		box-shadow: 0px 12px 8px 0px rgba(213, 151, 96, 0.06);
		padding-right: 50px; }

	  .header_right .search_box button {
		position: absolute;
		background: transparent;
		top: 0;
		right: 18px;
		bottom: 0;
		border: 0;
		color: #1e1d23;
		font-size: 18px; }

	  @media (min-width: 1200px) and (max-width: 1300px) {
		.main_menu ul li {
		  margin-right: 35px; } }
	  @media (max-width: 991px) {
		.header_search_wrap, .cart_wishlist {
		  display: none; } }
	  .margin-lr-45 {
		margin-left: 45px;
		margin-right: 45px; }
		@media only screen and (min-width: 1200px) and (max-width: 1500px) {
		  .margin-lr-45 {
			margin-left: 20px;
			margin-right: 20px; } }
		@media (max-width: 1199px) {
		  .margin-lr-45 {
			margin-left: 0;
			margin-right: 0; } }

	  .sticky-header {
		background: #ffffff;
		left: 0;
		margin: auto;
		position: fixed;
		top: 0;
		width: 100%;
		border-bottom: 0;
		box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
		z-index: 44;
		-webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
		animation: 300ms ease-in-out 0s normal none 1 running fadeInDown; }

	  .sticky-header .thm-btn {
		background-color: var(--main-color-2); }
		.sticky-header .thm-btn:hover {
		  background-color: #2E2E2E;
		  border-color: #2E2E2E; }
	  .sticky-header .main_menu ul li a {
		color: #121D2C; }
	  .sticky-header .header__icons .icon {
		border: 1px solid rgba(0, 0, 0, 0.44);
		color: #121D2C; }
		.sticky-header .header__icons .icon span {
		  color: #121D2C; }

	  @media (max-width: 767px) {
		.search-box-outer {
			display: none !important;
		}
		.header__main .cart-box {
			display: none;
		}
	}



	  .thm-btn {
		font-size: 16px;
		padding: 19px 30px;
		padding-right: 52px;
		z-index: 1;
		text-align: center;
		color: #ffffff;
		background: var(--main-color-2);
		display: inline-block;
		line-height: 1.3;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
		border-radius: 2px;
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
		-ms-border-radius: 2px;
		-o-border-radius: 2px;
		overflow: hidden;
		position: relative;
		font-weight: 500;
		text-transform: capitalize; }
		@media (max-width: 1199px) {
		  .thm-btn {
			padding: 17px 28px;
			padding-right: 50px; } }
		.thm-btn i {
		  position: absolute;
		  top: 50%;
		  right: 30px;
		  -webkit-transform: translateY(-50%);
		  -ms-transform: translateY(-50%);
		  transform: translateY(-50%);
		  color: #fff;
		  font-size: 13px;
		  transition: all .3s ease; }
		.thm-btn:hover {
		  background-color: #2E2E2E; }
		  .thm-btn:hover i {
			right: 28px; }
		  .thm-btn:hover .btn-wrap span:nth-child(1) {
			-webkit-transform: translateY(-150%);
			-ms-transform: translateY(-150%);
			transform: translateY(-150%); }
		  .thm-btn:hover .btn-wrap span:nth-child(2) {
			top: 50%;
			-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
			transform: translateY(-50%); }
		.thm-btn .btn-wrap {
		  position: relative;
		  overflow: hidden;
		  display: block;
		  font-family: "Roboto", sans-serif;
		  }
		  .thm-btn .btn-wrap span {
			color: #ffffff;
			-webkit-transition: all 0.3s ease;
			-o-transition: all 0.3s ease;
			transition: all 0.3s ease; }
			.thm-btn .btn-wrap span:nth-child(1) {
			  display: block;
			  position: relative; }
			.thm-btn .btn-wrap span:nth-child(2) {
			  position: absolute;
			  top: 100%;
			  display: block; }
		.thm-btn--2 {
		  background-color: #2E2E2E; }
		  .thm-btn--2:hover {
			background: var(--main-color-2); }
		.thm-btn--transparent {
		  background-color: rgba(0, 0, 0, 0.24);
		  border-radius: 30px;
		  -webkit-border-radius: 30px;
		  -moz-border-radius: 30px;
		  -ms-border-radius: 30px;
		  -o-border-radius: 30px;
		  border: 1px solid var(--main-color-2); }
		  .thm-btn--transparent:hover {
			background-color: var(--main-color-2); }
		.thm-btn--radius {
		  border-radius: 30px;
		  -webkit-border-radius: 30px;
		  -moz-border-radius: 30px;
		  -ms-border-radius: 30px;
		  -o-border-radius: 30px; }

	  .btns a {
		margin-right: 30px;
		margin-top: 20px; }
		.btns a:last-child {
		  margin-right: 0; }
		@media (max-width: 991px) {
		  .btns a {
			margin-right: 20px; } }

	  /* backtoup */
	  .progress-wrap {
		position: fixed;
		right: 30px;
		bottom: 40px;
		height: 40px;
		width: 40px;
		cursor: pointer;
		display: block;
		border-radius: 50%;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		-ms-border-radius: 50%;
		-o-border-radius: 50%;
		box-shadow: inset 0 0 0 2px rgba(255, 23, 73, 0.2);
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: all 200ms linear;
		transition: all 200ms linear;
		transform: translateY(15px);
		-webkit-transform: translateY(15px);
		-moz-transform: translateY(15px);
		-ms-transform: translateY(15px);
		-o-transform: translateY(15px); }

	  .progress-wrap.active-progress {
		opacity: 1;
		visibility: visible;
		transform: translateY(0); }

	  .progress-wrap::after {
		position: absolute;
		content: '\f176';
		font-family: "Font Awesome 5 Pro";
		text-align: center;
		line-height: 40px;
		font-size: 17px;
		color: var(--main-color-2);
		left: 0;
		top: 0;
		height: 40px;
		width: 40px;
		cursor: pointer;
		display: block;
		z-index: 1;
		-webkit-transition: all 200ms linear;
		transition: all 200ms linear; }

	  .progress-wrap svg path {
		fill: none; }

	  .progress-wrap svg.progress-circle path {
		stroke: var(--main-color-2);
		stroke-width: 4;
		box-sizing: border-box;
		-webkit-transition: all 200ms linear;
		transition: all 200ms linear; }

	  /* social link */
	  .social-links {
		line-height: 0; }
		.social-links a {
		  width: 45px;
		  height: 45px;
		  text-align: center;
		  display: inline-block;
		  background-color: rgba(255, 255, 255, 0.1);
		  color: #ffffff;
		  text-decoration: none;
		  position: relative;
		  z-index: 1;
		  overflow: hidden;
		  border-radius: 2px;
		  -webkit-border-radius: 2px;
		  -moz-border-radius: 2px;
		  -ms-border-radius: 2px;
		  -o-border-radius: 2px; }
		  .social-links a:last-child {
			  margin-right: 0;
		  }
		  .social-links a i {
			position: absolute;
			left: 50%;
			top: 50%;
			-webkit-transition: all 0.3s;
			-o-transition: all 0.3s;
			transition: all 0.3s;
			transform: translate(-50%, -50%); }
			.social-links a i:nth-child(2) {
			  top: 100%;
			  opacity: 0; }
		  .social-links a:hover i:nth-child(1) {
			top: -100%;
			opacity: 0;
			-webkit-transform: translateX(-50%);
			-ms-transform: translateX(-50%);
			transform: translateX(-50%); }
		  .social-links a:hover i:nth-child(2) {
			top: 50%;
			opacity: 1;
			-webkit-transform: translate(-50%, -50%);
			-ms-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%); }
		  .social-links a:not(:last-child) {
			margin-right: 7px; }
		  .social-links a::before {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: var(--main-color-2);
			content: "";
			z-index: -1;
			opacity: 0;
			transition: .3s; }
		  .social-links a:hover::before {
			opacity: 1; }
		.social-links--2 a {
		  background: transparent;
		  width: 25px;
		  height: 30px; }
		  .social-links--2 a:hover {
			color: var(--main-color-2); }
		  .social-links--2 a::before {
			background: transparent; }
/*----------------------------------------*/
/*  03. hero
/*----------------------------------------*/
.hero__wrap {
	background-color: #000;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
	@media (max-width: 767px) {
	  .hero__wrap {
		padding: 100px 15px;
		display: inherit !important; } }
  .hero__style-1 .hero__content {
	width: 50%;
	height: 100%;
	padding-left: 190px;
	z-index: 2;
	position: relative;
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	transform: translateY(30px); }
	@media only screen and (min-width: 1200px) and (max-width: 1500px) {
	  .hero__style-1 .hero__content {
		padding-left: 30px; } }
	@media (max-width: 1199px) {
	  .hero__style-1 .hero__content {
		padding-left: 20px; } }
	@media (max-width: 991px) {
	  .hero__style-1 .hero__content {
		width: 55%;
		-webkit-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px); } }
	@media (max-width: 767px) {
	  .hero__style-1 .hero__content {
		width: 100%;
		padding-left: 0; } }
  .hero__content .subtitle {
	color: var(--main-color-2);
	font-size: 18px;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 15px; }
	.hero__content .subtitle i {
	  margin-right: 8px; }
	.hero__content .title {
	font-size: 70px;
	color: #ffffff;
	margin-bottom: 35px;
	font-family: "Roboto", sans-serif;
	line-height: 1.2;
}
	@media only screen and (min-width: 1200px) and (max-width: 1500px) {
	  .hero__content .title {
		font-size: 60px; } }
	@media (max-width: 1199px) {
	  .hero__content .title {
		font-size: 48px; } }
	@media (max-width: 991px) {
	  .hero__content .title {
		font-size: 45px; } }
	@media (max-width: 767px) {
	  .hero__content .title {
		font-size: 38px; } }
	.hero__content .title span {
	  position: relative;
	  font-style: italic;
	  color: #ffffff;

	 }
	 .hero__content .title span::before {
		position: absolute;
		content: "";
		bottom: 0;
		left: 0;
		left: 7px;
		bottom: -1px;
		-webkit-animation: shape-animation 3s infinite;
		animation: shape-animation 3s infinite;
		background-image: url(../images/shape_1.png);
		width: 100%;
		height: 10px;
		z-index: 22;
		background-repeat: no-repeat;
	}
  .hero__content p {
	color: #CFCFCF;
	font-size: 18px;
	line-height: 30px;
	font-family: "Roboto", sans-serif;
	}
	@media (max-width: 991px) {
	  .hero__content p br {
		display: none; } }
  .hero__height {
	min-height: 835px; }
	@media only screen and (min-width: 1200px) and (max-width: 1500px) {
	  .hero__height {
		min-height: 750px; } }
	@media (max-width: 1199px) {
	  .hero__height {
		min-height: 700px; } }
	@media (max-width: 991px) {
	  .hero__height {
		min-height: 650px; } }
  .hero__img {
	position: absolute;
	top: 0;
	right: 0;
	width: 45%;
	height: 100%; }
	.hero__img img {
	  width: 100%;
	  height: 100% !important;
	  background-repeat: no-repeat;
	  background-size: cover;
	  background-position: center;
	  object-fit: cover; }
	@media (max-width: 991px) {
	  .hero__img {
		width: 43%; } }
	@media (max-width: 767px) {
	  .hero__img {
		width: 100%;
		position: relative;
		margin-top: 50px; } }
  .hero__shape .shape {
	position: absolute;
	z-index: -1; }
	.hero__shape .shape--1 {
	  bottom: 50%;
	  left: 0; }
	  .hero__shape .shape--1 img {
		animation: shape-animation 4s infinite; }
	.hero__shape .shape--2 {
	  bottom: 0;
	  left: 0; }
	.hero__shape .shape--3 {
	  top: 5%;
	  left: 30%; }
  .hero__video .popup-video {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: -55px;
	width: 110px;
	height: 110px;
	background-color: var(--main-color-2);
	line-height: 110px;
	text-align: center;
	font-size: 20px;
	color: #ffffff;
	display: inline-block;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%; }
	@media (max-width: 991px) {
	  .hero__video .popup-video {
		left: -40px;
		width: 80px;
		height: 80px;
		line-height: 80px; } }
	@media (max-width: 767px) {
	  .hero__video .popup-video {
		left: 50%;
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%); } }
	.hero__video .popup-video::before {
	  position: absolute;
	  top: -11px;
	  left: -10px;
	  right: -10px;
	  bottom: -10px;
	  content: "";
	  border: 2px dashed var(--main-color-2);
	  border-radius: 50%;
	  animation: spin 12s infinite linear;
	  -webkit-animation: spin 12s infinite linear; }
  .hero__style-2 {
	min-height: 1190px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat; }
	@media (max-width: 1199px) {
	  .hero__style-2 {
		min-height: 1050px; } }
  .hero__style-2 .hero__content {
	-webkit-transform: translateY(-150px);
	-ms-transform: translateY(-150px);
	transform: translateY(-150px); }
	.hero__style-2 .hero__content .title {
	  font-size: 65px; }
	  @media (max-width: 1199px) {
		.hero__style-2 .hero__content .title {
		  font-size: 48px; } }
	  @media (max-width: 767px) {
		.hero__style-2 .hero__content .title {
		  font-size: 27px;
		  line-height: 1.4; } }
	  .hero__style-2 .hero__content .title span {
		font-style: normal; }

  .client-benifit {
	background-color: #ffffff;
	padding: 40px 50px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.11);
	margin-top: -395px;
	position: relative; }

	.client-benifit .expernice-text {
		line-height: 1.2;
		margin-top: -25px;
	}
	@media (max-width: 767px) {
	  .client-benifit {
		padding: 40px 20px;
		padding-bottom: 60px; } }
	.client-benifit::before, .client-benifit::after {
	  position: absolute;
	  left: 0;
	  bottom: 0;
	  content: "";
	  background-color: var(--main-color-2);
	  width: 4px;
	  height: 98px;
	  clip-path: polygon(0px 0px, 100% 4.96%, 100% 97.06%, 0% 100%); }
	.client-benifit::after {
	  left: auto;
	  right: 0;
	  bottom: auto;
	  top: 0;
	  clip-path: polygon(0px 4px, 100% 1.9%, 150% 100.12%, 0% 97.96%); }
	.client-benifit__expernice-box {
	  background-color: var(--main-color-2);
	  padding: 20px 12px 15px 20px;
	  max-width: 140px;
	  border-radius: 5px;
	  -webkit-border-radius: 5px;
	  -moz-border-radius: 5px;
	  -ms-border-radius: 5px;
	  -o-border-radius: 5px;
	  position: relative; }
	  .client-benifit__expernice-box::before {
		position: absolute;
		left: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		content: "";
		background-color: #1A1A2A;
		width: 4px;
		height: 98px;
		clip-path: polygon(0px 0px, 100% 4.96%, 100% 97.06%, 0% 100%); }
	  .client-benifit__expernice-box .expernice-text span {
		color: #ffffff;
		font-family: "Roboto", sans-serif;
}
	  .client-benifit__expernice-box .expernice-text .years {
		font-size: 14px;
		margin-left: -10px; }
	  .client-benifit__expernice-box .expernice-number {
		font-size: 55px;
		position: relative;
		letter-spacing: 0; }
		.client-benifit__expernice-box .expernice-number .plus {
		  position: absolute;
		  top: 0;
		  right: -10px;
		  color: #FF92A9;
		  font-size: 30px;
		  font-weight: 400; }
	  .client-benifit__expernice-box .expernice {
		font-size: 15px;
		font-weight: 600;
		color: #ffffff;
		text-transform: uppercase;
		font-family: "Roboto", sans-serif;
}
	.client-benifit__item h4 {
	  font-size: 15px;
	  color: #121D2C;
	  font-weight: 500;
	  letter-spacing: 0;
	  margin-top: 20px;
	  font-family: "Roboto", sans-serif;
	 }
	  .client-benifit__item img {
		  max-width: 60px !important;
	  }
	@media (max-width: 767px) {
	  .client-benifit .hero__video {
		display: flex;
		justify-content: center; } }
	.client-benifit .hero__video .popup-video {
	  top: 50%;
	  -webkit-transform: translate(-39%, -95%);
	  -ms-transform: translate(-39%, -95%);
	  transform: translate(-39%, -95%);
	  left: 50%;
	  width: 95px;
	  height: 95px;
	  line-height: 95px; }
	  @media (max-width: 1199px) {
		.client-benifit .hero__video .popup-video {
		  -webkit-transform: translate(-50%, -40%);
		  -ms-transform: translate(-50%, -40%);
		  transform: translate(-50%, -40%); } }
	  @media (max-width: 767px) {
		.client-benifit .hero__video .popup-video {
		  -webkit-transform: translate(0);
		  -ms-transform: translate(0);
		  transform: translate(0);
		  position: unset; } }
	.client-benifit__mbps {
	  position: absolute;
	  top: 20px;
	  right: 180px; }
	  .client-benifit__mbps .mbps-text .mbps-number {
		  font-size: 50px;
		  font-family: "Roboto", sans-serif;
	  }
	  @media (max-width: 991px) {
		.client-benifit__mbps {
		  right: 30px; } }
	  @media (max-width: 767px) {
		.client-benifit__mbps {
		  position: unset;
		  display: flex;
		  justify-content: center;
		  margin-top: 50px; } }
	  .client-benifit__mbps .mbps-number .odometer {
		font-size: 51px;
		font-weight: 700; }
	  .client-benifit__mbps .mbps-number .plus {
		top: -33px;
		right: 5px;
		font-size: 27px; }
	  .client-benifit__mbps .mbps-text {
		margin: 0;
		padding: 0; }
		.client-benifit__mbps .mbps-text::before {
		  display: none; }
	.client-benifit__shape {
	  position: absolute;
	  bottom: 0;
	  left: 50%;
	  -webkit-transform: translateX(-50%);
	  -ms-transform: translateX(-50%);
	  transform: translateX(-50%);
	  width: 143px;
	  height: 2px;
	  background-color: var(--main-color-2); }
	  .client-benifit__shape::before {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		content: "";
		background-color: var(--main-color-2);
		width: 8px;
		height: 8px;
		border-radius: 50%;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		-ms-border-radius: 50%;
		-o-border-radius: 50%; }

		/*----------------------------------------*/
/*  04. about
/*----------------------------------------*/
.about__img-box1 {
	margin-left: 30px;
	margin-right: 40px;
	position: relative;
	margin-top: 55px; }
	@media (max-width: 1199px) {
	  .about__img-box1 {
		margin-left: 0;
		margin-right: 25px; } }
	@media (max-width: 767px) {
	  .about__img-box1 {
		margin-right: 15px; } }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
	.about__content {
	  padding-left: 0; } }
  @media (max-width: 1199px) {
	.about__content {
	  padding-left: 0; } }
  @media (max-width: 767px) {
	.about__content {
	  margin-top: 70px; } }
  .about__text-box {
	position: relative;
	margin-right: 120px;
	z-index: 1; }
	@media only screen and (min-width: 1200px) and (max-width: 1500px) {
	  .about__text-box {
		margin-right: 90px; } }
	@media (max-width: 1199px) {
	  .about__text-box {
		margin-right: 15px; } }
	@media (max-width: 991px) {
	  .about__text-box {
		margin-right: 40px; } }
	.about__text-box .shape {
	  position: absolute;
	  top: -14px;
	  left: -11px;
	  z-index: -1;
	  -webkit-animation: zoominup 2s infinite;
	  animation: zoominup 2s infinite; }
	.about__text-box .icon {
	  width: 70px; }
	.about__text-box .content {
	  width: calc(100% - 70px); }
	  .about__text-box .content h4 {
		font-size: 20px;
		margin-bottom: 7px;
		font-family: "Roboto", sans-serif;
}
	  .about__text-box .content p {
		font-size: 14px;
		line-height: 24px; }
	.about__text-box--2 {
	  margin-left: 50px;
	  margin-right: 0; }
	  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
		.about__text-box--2 {
		  margin-left: 27px; } }
	  @media (max-width: 1199px) {
		.about__text-box--2 {
		  margin-left: 0; } }
	  @media (max-width: 991px) {
		.about__text-box--2 {
		  margin-left: 40px; } }
	  @media (max-width: 767px) {
		.about__text-box--2 {
		  margin-left: 0; } }
	  .about__text-box--2 .shape {
		top: -7px;
		left: -12px; }
  .about__list li {
	font-size: 15px;
	font-family: "Roboto", sans-serif;
}
	.about__list li:not(:last-child) {
	  margin-bottom: 18px; }
	.about__list li i {
	  font-size: 12px;
	  border-radius: 50%;
	  -webkit-border-radius: 50%;
	  -moz-border-radius: 50%;
	  -ms-border-radius: 50%;
	  -o-border-radius: 50%;
	  text-align: center;
	  line-height: 24px;
	  width: 25px;
	  height: 25px;
	  border: 1px solid var(--main-color-2);
	  color: var(--main-color-2);
	  margin-right: 15px;
	  -webkit-transition: 0.3s;
	  -o-transition: 0.3s;
	  transition: 0.3s; }
	.about__list li:hover i {
	  background-color: var(--main-color-2);
	  color: #ffffff; }
  .about__shape {
	position: absolute;
	top: -12px;
	right: -100px; }
	@media (max-width: 1199px) {
	  .about__shape {
		display: none; } }
  .about__icon-mobile {
	position: absolute;
	top: -28px;
	left: 80px;
	text-align: center;
	position: relative;
	width: 44px;
	line-height: 46px; }
	@media (max-width: 1199px) {
	  .about__icon-mobile {
		left: 25px; } }
	@media (max-width: 767px) {
	  .about__icon-mobile {
		left: -10px; } }
	.about__icon-mobile i {
	  font-size: 20px;
	  color: var(--main-color-2); }
	.about__icon-mobile::before {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 44px;
	  height: 44px;
	  border-radius: 50%;
	  -webkit-border-radius: 50%;
	  -moz-border-radius: 50%;
	  -ms-border-radius: 50%;
	  -o-border-radius: 50%;
	  border: 1px dashed var(--main-color-2);
	  content: "";
	  animation: spin 12s infinite linear;
	  -webkit-animation: spin 12s infinite linear; }
  .about__icon-world {
	position: absolute;
	top: -56px;
	right: 10px;
	width: 70px;
	height: 70px;
	background: var(--main-color-2);
	text-align: center;
	line-height: 70px;
	font-size: 42px;
	color: #ffffff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%; }
	.about__icon-world i {
	  animation: spin 12s infinite linear; }
  .about__icon-wifi {
	position: absolute;
	bottom: 0;
	left: -8px;
	width: 75px;
	height: 75px;
	background: var(--main-color-2);
	text-align: center;
	line-height: 77px;
	font-size: 27px;
	color: #ffffff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%; }
	@media (max-width: 1199px) {
	  .about__icon-wifi {
		bottom: -105px;
		left: -120px; } }
	@media (max-width: 991px) {
	  .about__icon-wifi {
		bottom: 0;
		left: 0; } }
	.about__icon-wifi::before {
	  position: absolute;
	  top: -7px;
	  right: -7px;
	  bottom: -7px;
	  left: -7px;
	  content: "";
	  border: 1px dashed #E2DEDE;
	  animation: spin 10s infinite linear;
	  -webkit-animation: spin 10s infinite linear;
	  border-radius: 50%;
	  -webkit-border-radius: 50%;
	  -moz-border-radius: 50%;
	  -ms-border-radius: 50%;
	  -o-border-radius: 50%; }
  .about__icon-bullseye {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	background-color: #ffffff;
	font-size: 20px;
	color: var(--main-color-2);
	text-align: center;
	line-height: 70px;
	position: absolute;
	top: 17px;
	right: 17px; }
	.about__icon-bullseye img {
	  margin-right: -5px;
	  margin-top: -3px; }
  .about__img-ml-mt {
	margin-left: -100px;
	transform: translateY(20px); }
	@media (max-width: 1199px) {
	  .about__img-ml-mt {
		margin-left: 0; } }

  .mbps-number {
	color: var(--main-color-2);
	position: relative;
	padding-right: 10px; }
	.mbps-number .odometer {
	  font-size: 80px; }
	  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
		.mbps-number .odometer {
		  font-size: 70px; } }
	  @media (max-width: 1199px) {
		.mbps-number .odometer {
		  font-size: 55px; } }
	.mbps-number .plus {
	  position: absolute;
	  top: -17px;
	  right: -2px;
	  color: #BDBDBD;
	  font-size: 30px;
	  font-weight: 400; }

  .mbps-text {
	padding-right: 20px;
	position: relative;
	font-family: "Roboto", sans-serif;
}
	.mbps-text span {
	  color: var(--main-color-2); }
	.mbps-text::before {
	  position: absolute;
	  top: 50%;
	  right: 0;
	  width: 5px;
	  -webkit-transform: translateY(-50%);
	  -ms-transform: translateY(-50%);
	  transform: translateY(-50%);
	  background-color: var(--main-color-2);
	  height: 87px;
	  content: "";
	  border-top-right-radius: 3px;
	  border-bottom-right-radius: 3px; }
	  @media (max-width: 767px) {
		.mbps-text::before {
		  display: none; } }
	.mbps-text .mbps {
	  font-size: 25px;
	  color: #150E0E;
	  font-family: "Roboto", sans-serif;
}

  .review-box {
	background-color: #ffffff;
	position: absolute;
	left: -30px;
	bottom: 88px;
	padding: 20px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.07);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	min-width: 130px;
}
	@media (max-width: 1199px) {
	  .review-box {
		left: 230px;
		bottom: -110px;
		width: 150px; } }
	@media (max-width: 991px) {
	  .review-box {
		left: -30px;
		bottom: 76px; } }
	@media (max-width: 767px) {
	  .review-box {
		bottom: -40px; } }
	.review-box .avatar {
	  width: 68px;
	  height: 68px;
	  border-radius: 50%;
	  -webkit-border-radius: 50%;
	  -moz-border-radius: 50%;
	  -ms-border-radius: 50%;
	  -o-border-radius: 50%;
	  overflow: hidden;
	  margin: auto;
	  margin-bottom: 2px; }
	.review-box .desic {
	  color: #ACADB0;
	  font-size: 11px;
	  display: inline-block;
	  margin-bottom: -4px; }
	.review-box .name {
	  font-size: 11px;
	  font-weight: 500;
	  margin-bottom: 10px; }
	.review-box .ratting i {
	  color: var(--main-color-2);
	  font-size: 10px;
	  margin: 0 1px; }
	  .review-box .ratting i.diseble {
		color: #B6B6B6; }
/*----------------------------------------*/
/*  05. cursor
/*----------------------------------------*/
.cb-cursor {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 150;
	contain: layout style size;
	pointer-events: none;
	will-change: transform;
	-webkit-transition: opacity 3s, color 0.4s;
	-o-transition: opacity 3s, color 0.4s;
	-moz-transition: opacity 3s, color 0.4s;
	transition: opacity 3s, color 0.4s; }

  .cb-cursor:before {
	content: "";
	position: absolute;
	top: -30px;
	left: -30px;
	width: 60px;
	height: 60px;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	background-color: var(--main-color-2);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	-webkit-transition: opacity 1s, -webkit-transform 0.3s ease-in-out;
	transition: opacity 1s, -webkit-transform 0.3s ease-in-out;
	-o-transition: opacity 1s, -o-transform 0.3s ease-in-out;
	-moz-transition: transform 0.3s ease-in-out, opacity 1s, -moz-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, opacity 1s;
	transition: transform 0.3s ease-in-out, opacity 1s, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
	opacity: 1 !important; }

  .cb-cursor-text {
	position: absolute;
	top: -50px;
	left: -50px;
	width: 100px;
	height: 100px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transform: scale(0) rotate(10deg);
	-moz-transform: scale(0) rotate(10deg);
	-ms-transform: scale(0) rotate(10deg);
	-o-transform: scale(0) rotate(10deg);
	transform: scale(0) rotate(10deg);
	opacity: 0;
	color: white;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	letter-spacing: -0.01em;
	-webkit-transition: opacity 0.4s, -webkit-transform 0.3s;
	transition: opacity 0.4s, -webkit-transform 0.3s;
	-o-transition: opacity 0.4s, -o-transform 0.3s;
	-moz-transition: opacity 0.4s, transform 0.3s, -moz-transform 0.3s;
	transition: opacity 0.4s, transform 0.3s;
	transition: opacity 0.4s, transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s; }

  @supports (mix-blend-mode: exclusion) {
	.cb-cursor.-exclusion, .cb-cursor.-opaque {
	  mix-blend-mode: exclusion; } }
  @supports (mix-blend-mode: exclusion) {
	.cb-cursor.-exclusion:before, .cb-cursor.-opaque:before {
	  background: white; } }
  .cb-cursor.-normal, .cb-cursor.-text {
	mix-blend-mode: normal; }

  .cb-cursor.-inverse {
	color: white; }

  .cb-cursor.-visible:before {
	-webkit-transform: scale(0.2);
	-moz-transform: scale(0.2);
	-ms-transform: scale(0.2);
	-o-transform: scale(0.2);
	transform: scale(0.2); }

  .cb-cursor.-visible.-active:before {
	-webkit-transform: scale(0.23);
	-moz-transform: scale(0.23);
	-ms-transform: scale(0.23);
	-o-transform: scale(0.23);
	transform: scale(0.23);
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s; }

  .cb-cursor.-pointer:before {
	-webkit-transform: scale(0.15);
	-moz-transform: scale(0.15);
	-ms-transform: scale(0.15);
	-o-transform: scale(0.15);
	transform: scale(0.15); }

  .cb-cursor.-text:before {
	opacity: 0.85;
	-webkit-transform: scale(1.7);
	-moz-transform: scale(1.7);
	-ms-transform: scale(1.7);
	-o-transform: scale(1.7);
	transform: scale(1.7); }

  .cb-cursor.-text .cb-cursor-text {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1); }

  .cb-cursor.-text.-active:before {
	-webkit-transform: scale(1.6);
	-moz-transform: scale(1.6);
	-ms-transform: scale(1.6);
	-o-transform: scale(1.6);
	transform: scale(1.6);
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s; }

  .cb-cursor.-opaque:before {
	-webkit-transform: scale(1.32);
	-moz-transform: scale(1.32);
	-ms-transform: scale(1.32);
	-o-transform: scale(1.32);
	transform: scale(1.32); }

  .cb-cursor.-opaque.-active:before {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2); }

  .cb-cursor.-lg:before {
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	-o-transform: scale(2);
	transform: scale(2); }

  .cb-cursor.-hidden:before {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0); }

  .cb-demo {
	background: #fff; }

  .cb-demo-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100vh; }

  .cb-demo-container {
	padding: 0 20px; }

  @media (min-width: 1600px) {
	.cb-demo-container {
	  padding: 0 120px; } }
  .cb-demo-row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	margin: 30px 0; }

  @media (min-width: 1600px) {
	.cb-demo-row {
	  margin: 60px 0; } }
  .cb-demo-item {
	position: relative;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 50px 30px;
	margin: 0 20px;
	color: #000;
	width: 500px; }

  @media (min-width: 1600px) {
	.cb-demo-item {
	  padding: 90px 30px;
	  margin: 0 30px; } }
  .cb-demo-item-text {
	position: relative;
	max-width: 70%;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 300;
	line-height: 150%; }

  .cb-demo-item:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #f8f8f8;
	-webkit-transition: -webkit-box-shadow 0.2s;
	transition: -webkit-box-shadow 0.2s;
	-o-transition: box-shadow 0.2s;
	-moz-transition: box-shadow 0.2s, -moz-box-shadow 0.2s;
	transition: box-shadow 0.2s;
	transition: box-shadow 0.2s, -webkit-box-shadow 0.2s, -moz-box-shadow 0.2s; }
/*----------------------------------------*/
/*  06. pricing
/*----------------------------------------*/
.mbps-pricing__wrap {
	z-index: 1; }
  .mbps-pricing__tab {
	justify-content: center;
	border: 0;
	margin-top: -22px; }
	.mbps-pricing__tab .nav-item {
	  margin: 0 10px;
	  margin-top: 22px !important; }
	  @media (max-width: 1199px) {
		.mbps-pricing__tab .nav-item {
		  margin: 0 5px; } }
	  .mbps-pricing__tab .nav-item .nav-link {
		color: var(--main-color-2);
		background-color: #ffffff;
		font-size: 18px;
		font-weight: 500;
		text-transform: uppercase;
		padding: 10px 48px;
		border: 0;
		border-radius: 5px;
		position: relative; }
		@media only screen and (min-width: 1200px) and (max-width: 1500px) {
		  .mbps-pricing__tab .nav-item .nav-link {
			font-size: 17px;
			padding: 8px 25px; } }
		@media (max-width: 1199px) {
		  .mbps-pricing__tab .nav-item .nav-link {
			font-size: 14px;
			padding: 6px 25px; } }
		@media (max-width: 991px) {
		  .mbps-pricing__tab .nav-item .nav-link {
			font-size: 15px;
			padding: 8px 30px; } }
		.mbps-pricing__tab .nav-item .nav-link::before {
		  position: absolute;
		  left: 0;
		  right: 0;
		  bottom: -6px;
		  margin: auto;
		  content: "";
		  background: var(--main-color-2);
		  width: 12px;
		  height: 12px;
		  opacity: 0;
		  -webkit-transform: rotate(45deg);
		  -ms-transform: rotate(45deg);
		  transform: rotate(45deg);
		  -webkit-transition: 0.3s;
		  -o-transition: 0.3s;
		  transition: 0.3s;
		  z-index: -1; }
		.mbps-pricing__tab .nav-item .nav-link.active {
		  background-color: var(--main-color-2);
		  color: #ffffff; }
		  .mbps-pricing__tab .nav-item .nav-link.active::before {
			opacity: 1; }
  .mbps-pricing__tab-content {
	text-align: center; }
  .mbps-pricing__price {
	font-size: 20px;
	color: #121D2C;
	background-color: #ffffff;
	padding: 3px 30px;
	border: 1px solid var(--main-color-2);
	display: inline-block;
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	-o-border-radius: 7px;
	margin-top: 50px;
	font-weight: 500; }
	.mbps-pricing__price span {
	  font-size: 67px;
	  font-weight: 700;
	  color: var(--main-color-2);
	  line-height: 1.2; }
  .mbps-pricing__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 30px; }
	.mbps-pricing__list li {
		font-size: 18px;
		min-width: 300px;
		margin-top: 30px;
		color: #5B646B;
	}
	  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
		.mbps-pricing__list li {
		  font-size: 16px;
		  margin-top: 20px; } }
	  .mbps-pricing__list li:nth-child(1), .mbps-pricing__list li:nth-child(3) {
		margin-right: 30px; }
	  .mbps-pricing__list li i {
		margin-right: 10px;
		font-size: 16px;
		color: var(--main-color-2); }
  .mbps-pricing__price-box-wrap {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin-top: 70px;
	flex-wrap: wrap; }
  .mbps-pricing__price-box {
	position: absolute;
	top: 82px;
	left: 200px;
	z-index: 1;
	width: 287px; }
	@media only screen and (min-width: 1200px) and (max-width: 1500px) {
	  .mbps-pricing__price-box {
		left: 25px; } }
	@media (max-width: 1199px) {
	  .mbps-pricing__price-box {
		left: 12px; } }
	@media (max-width: 991px) {
	  .mbps-pricing__price-box {
		position: relative;
		top: 0; } }
	@media (max-width: 767px) {
	  .mbps-pricing__price-box {
		left: 0; } }
	.mbps-pricing__price-box .thumb {
	  border-radius: 11px;
	  -webkit-border-radius: 11px;
	  -moz-border-radius: 11px;
	  -ms-border-radius: 11px;
	  -o-border-radius: 11px;
	  overflow: hidden; }
	  .mbps-pricing__price-box .thumb img {
		width: 100%; }
	  .mbps-pricing__price-box .thumb::before {
		position: absolute;
		bottom: -9px;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: var(--main-color-2);
		content: "";
		z-index: -1;
		border-radius: 20px;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		-ms-border-radius: 20px;
		-o-border-radius: 20px; }
	.mbps-pricing__price-box--2 {
	  right: 195px;
	  left: auto;
	  bottom: 78px;
	  top: auto; }
	  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
		.mbps-pricing__price-box--2 {
		  right: 25px; } }
	  @media (max-width: 1199px) {
		.mbps-pricing__price-box--2 {
		  right: 12px; } }
	  @media (max-width: 991px) {
		.mbps-pricing__price-box--2 {
		  bottom: 0; } }
	  @media (max-width: 767px) {
		.mbps-pricing__price-box--2 {
		  right: 0;
		  margin-top: 50px; } }
	  .mbps-pricing__price-box--2 .mbps-pricing__price-box-btn {
		left: 30px;
		right: auto; }
	  .mbps-pricing__price-box--2 .thumb::before {
		bottom: 0;
		top: -9px; }
		@media (max-width: 767px) {
		  .mbps-pricing__price-box--2 .thumb::before {
			bottom: -9px;
			top: auto; } }
  .mbps-pricing__price-box-btn {
	position: absolute;
	display: flex;
	justify-content: center;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%); }
	.mbps-pricing__price-box-btn .thm-btn {
	  padding-top: 15px;
	  padding-bottom: 15px; }
  .mbps-pricing__price-box-mbps {
	position: absolute;
	top: 26px;
	left: 13px;
	width: 90px;
	height: 90px;
	background: var(--main-color-2);
	text-align: center;
	border-radius: 50%;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center; }
	.mbps-pricing__price-box-mbps::before {
	  position: absolute;
	  top: 5px;
	  right: 5px;
	  bottom: 5px;
	  left: 5px;
	  content: "";
	  border: 1px dashed #FFA2B6;
	  border-radius: 50%;
	  -webkit-border-radius: 50%;
	  -moz-border-radius: 50%;
	  -ms-border-radius: 50%;
	  -o-border-radius: 50%; }
	.mbps-pricing__price-box-mbps h2 {
	  color: #ffffff;
	  line-height: 1; }
	.mbps-pricing__price-box-mbps span {
	  font-size: 15px;
	  font-weight: 600;
	  margin-top: 1px;
	  display: block;
	  color: #fff;
	  text-transform: uppercase; }
  .mbps-pricing__price-box:hover .mbps-pricing__price-box-mbps::before {
	animation: spin 12s infinite linear;
	-webkit-animation: spin 12s infinite linear; }
  .mbps-pricing__price-box-price {
	position: absolute;
	top: 50px;
	left: 32px; }
	.mbps-pricing__price-box-price span {
	  color: #ffffff;
	  font-size: 18px;
	  font-weight: 500; }
	  .mbps-pricing__price-box-price > span {
		display: block;
	  }
	.mbps-pricing__price-box-price .price-text {
	  background: none !important;
	  border: 0;
	  padding: 0;
	  margin: 0;
	  color: #ffffff;
	  margin-top: 15px; }
	  .mbps-pricing__price-box-price .price-text span {
		font-size: 67px;
		font-weight: 700;
		color: var(--main-color-2);
		line-height: 1.2; }
	  .mbps-pricing__price-box-price .price-text .price {
		color: var(--main-color-2); }
  .mbps-pricing__bg {
	position: absolute;
	left: 0;
	top: 70px;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	z-index: -1; }
  .mbps-pricing__remote-img {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1; }

  .pricing__item {
	border: 1px solid #E6E6EA;
	padding: 40px 20px;
	position: relative;
	z-index: 1; }
	.pricing__item::before {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 0;
	  height: 100%;
	  z-index: -1;
	  background: url(../images/price_bg.jpg) no-repeat;
	  background-size: auto;
	  background-size: cover;
	  content: "";
	  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	  -o-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86); }
	.pricing__item:hover::before, .pricing__item.active::before {
	  width: 100%;
	}
	.pricing__item .head {
	  font-size: 20px;
	  font-weight: 700;
	  color: #121D2C;
	  display: inline-block;
	  margin-bottom: 10px;
	  -webkit-transition: 0.3s;
	  -o-transition: 0.3s;
	  transition: 0.3s;
	  font-family: "Roboto", sans-serif;
}
	.pricing__item .price-wrap {
	  line-height: 1.2;
	  -webkit-transition: 0.3s;
	  -o-transition: 0.3s;
	  transition: 0.3s;
	  font-family: "Roboto", sans-serif;
	  }
	  .pricing__item .price-wrap span {
		color: var(--main-color-2);
		font-size: 27px; }
	  .pricing__item .price-wrap .price {
		font-size: 47px;
		font-weight: 700; }
	  .pricing__item .price-wrap .sign {
		position: absolute; }
	.pricing__item:hover .head,
	.pricing__item:hover .price-wrap span,
	.pricing__item.active .head,
	.pricing__item.active .price-wrap span {
	  color: #ffffff;
	}
  .pricing__item:hover .pricing__lists li,
  .pricing__item.active .pricing__lists li {
	color: #ffffff; }
  .pricing__item:hover .pricing__btn a,
  .pricing__item.active .pricing__btn a {
	background-color: #ffffff; }
  .pricing__item:hover .pricing__btn a span,
  .pricing__item.active .pricing__btn a span {
	color: var(--main-color-2); }
  .pricing__icon {
	margin-top: 18px;
	margin-bottom: 30px;
	padding: 15px 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s; }
	.pricing__icon li {
	  color: #ffffff;
	  width: 58px;
	  height: 58px;
	  border-radius: 50%;
	  -webkit-border-radius: 50%;
	  -moz-border-radius: 50%;
	  -ms-border-radius: 50%;
	  -o-border-radius: 50%;
	  background-color: #ffffff;
	  color: var(--main-color-2);
	  font-size: 30px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.03);
	  z-index: 1;
	  position: relative;
	  -webkit-transition: 0.3s;
	  -o-transition: 0.3s;
	  transition: 0.3s; }
	  .pricing__icon li:not(:last-child) {
		margin-right: 30px; }
		@media only screen and (min-width: 1200px) and (max-width: 1500px) {
		  .pricing__icon li:not(:last-child) {
			margin-right: 17px; } }
	  .pricing__icon li:nth-child(2) {
		background-color: var(--main-color-2);
		color: #ffffff;
		width: 70px;
		height: 70px; }
  .pricing__lists {
	text-align: left;
	padding-left: 30px; }
	@media only screen and (min-width: 1200px) and (max-width: 1500px) {
	  .pricing__lists {
		padding-left: 0; } }
	.pricing__lists li {
	  font-size: 18px;
	  color: #5B646B;
	  font-family: "Roboto", sans-serif;
	}
	  .pricing__lists li:not(:last-child) {
		margin-bottom: 20px; }
	  .pricing__lists li i {
		margin-right: 8px;
		color: var(--main-color-2); }
  .pricing__btn a {
	padding: 16px 35px; }
	.pricing__btn a:hover {
	  background-color: #ffffff; }
	  .pricing__btn a:hover span {
		color: var(--main-color-2); }

/*----------------------------------------*/
/*  07. subscribe
/*----------------------------------------*/
.discout-price {
	position: absolute;
	top: -35px;
	left: 0; }
	.discout-price__text {
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  -webkit-transform: translate(-50%, -50%);
	  -ms-transform: translate(-50%, -50%);
	  transform: translate(-50%, -50%);
	  text-align: center;
	  font-size: 34px;
	  font-weight: 500;
	  line-height: 1;
	  color: #ffffff;
	  margin-top: -10px; }
	  .discout-price__text span {
		font-size: 15px;
		font-weight: 600;
		color: #ffffff;
		margin-top: 6px;
		display: block;
		text-transform: uppercase; }

  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
	.subscribe__area .container {
	  max-width: 1140px; } }
  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
	.subscribe__content {
	  padding-left: 35px; } }
  @media (max-width: 1199px) {
	.subscribe__content {
	  padding-left: 0; } }
  .subscribe__price {
	font-size: 18px;
	color: #121D2C;
	font-weight: 500;
	padding-right: 25px;
	margin-right: 20px;
	position: relative;
	font-family: "Roboto", sans-serif;
}
	.subscribe__price::before {
	  position: absolute;
	  bottom: 7px;
	  right: 0;
	  width: 2px;
	  height: 22px;
	  background-color: #C4C4C4;
	  content: "";
	  border-radius: 6px;
	  -webkit-border-radius: 6px;
	  -moz-border-radius: 6px;
	  -ms-border-radius: 6px;
	  -o-border-radius: 6px; }
	.subscribe__price > span {
	  font-size: 58px;
	  font-weight: 700;
	  color: var(--main-color-2);
	  font-family: "Roboto", sans-serif;
}
  .subscribe__price-text {
	font-size: 18px;
	color: var(--main-color-2);
	text-decoration: underline;
	font-family: "Roboto", sans-serif;
}
	.subscribe__price-text img {
		width: 30px;
	}
	.subscribe__price-text:hover {
	  color: var(--main-color-2);
	  text-decoration: underline; }
	.subscribe__price-text img {
	  margin-right: 10px; }
  @media (max-width: 991px) {
	.subscribe__img {
	  margin-left: 0; } }
  .subscribe__wrap {
	background-color: var(--main-color-2);
	padding: 50px 37px 50px 55px; }
	@media (max-width: 991px) {
	  .subscribe__wrap {
		padding: 50px 40px; } }
	.subscribe__wrap .title {
		font-size: 42px;
		line-height: 1.3;
		color: #ffffff;
		font-family: "Roboto", sans-serif;
	}
	  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
		.subscribe__wrap .title {
		  font-size: 37px; } }
	  @media (max-width: 1199px) {
		.subscribe__wrap .title {
		  font-size: 36px; } }
	  @media (max-width: 991px) {
		.subscribe__wrap .title {
		  text-align: center; } }
	  @media (max-width: 767px) {
		.subscribe__wrap .title {
		  font-size: 25px; } }
  .subscribe__bg {
	background: url(../images/subscribe__shape.png) no-repeat;
	background-size: auto;
	background-size: cover;
	background-color: var(--main-color-2); }
  .subscribe__form {
	position: relative;
	margin-left: 30px; }
	@media only screen and (min-width: 1200px) and (max-width: 1500px) {
	  .subscribe__form {
		margin-left: 0; } }
	@media (max-width: 1199px) {
	  .subscribe__form {
		margin-left: 0; } }
	.subscribe__form input {
	  width: calc(100% - 225px);
	  height: 59px;
	  padding: 20px;
	  border: 0;
	  border-radius: 2px;
	  -webkit-border-radius: 2px;
	  -moz-border-radius: 2px;
	  -ms-border-radius: 2px;
	  -o-border-radius: 2px; }
	  @media (max-width: 767px) {
		.subscribe__form input {
		  width: 100%; } }
	.subscribe__form button {
	  position: absolute;
	  right: 0;
	  top: 0;
	  height: 59px;
	  font-family: "Roboto", sans-serif;
	  }
	  .subscribe__form button:hover {
		background-color: #2E2E2E; }
	  @media (max-width: 767px) {
		.subscribe__form button {
		  position: relative;
		  margin-top: 10px; } }
	.subscribe__form--2 {
	  margin-left: 0; }
	  .subscribe__form--2 input, .subscribe__form--2 button {
		height: 70px; }

  .mt-none-105 {
	margin-top: -105px; }
/*----------------------------------------*/
/*  08. services
/*----------------------------------------*/
.services__area [class^="col-"]:last-child .services__item {
	border-right: 0; }
  @media (max-width: 1199px) {
	.services__area [class^="col-"]:nth-child(2) .services__item {
	  border-right: 0; } }
  .services__area [class^="col-"]:nth-child(3) .services__item, .services__area [class^="col-"]:nth-child(4) .services__item {
	border-bottom: 0; }
  .services__item {
	background-color: #F9F9FC;
	padding: 70px 40px 85px 40px;
	border-right: 1px solid #E9EEF1;
	position: relative;
	z-index: 1; }
	@media only screen and (min-width: 1200px) and (max-width: 1500px) {
	  .services__item {
		padding: 70px 25px 60px 32px; } }
	@media (max-width: 1199px) {
	  .services__item {
		padding: 70px 50px 60px 70px;
		border-bottom: 1px solid #E9EEF1; } }
	@media (max-width: 991px) {
	  .services__item {
		padding: 70px 40px 60px 50px; } }
	@media (max-width: 767px) {
	  .services__item {
		padding: 70px 30px 50px 40px; } }
	.services__item::before {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 0;
	  height: 100%;
	  z-index: -1;
	  background: url(../images/service_bg_02.jpg) no-repeat;
	  background-size: auto;
	  background-size: cover;
	  content: "";
	  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	  -o-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86); }
	.services__item.active::before, .services__item:hover::before {
	  width: 100%; }
	.services__item.active .services__icon::before, .services__item:hover .services__icon::before {
	  background-color: var(--main-color-2); }
	.services__item.active .services__icon img, .services__item:hover .services__icon img {
	  filter: brightness(0) invert(1); }
	.services__item.active .services__title a, .services__item:hover .services__title a {
	  color: #ffffff; }
	.services__item.active .services__list p, .services__item:hover .services__list p {
	  color: #ffffff; }
	.services__item--2 {
	  background-color: #ffffff;
	  box-shadow: 0px 4px 29px rgba(0, 0, 0, 0.05);
	  padding: 70px 40px 60px 40px; }
	  @media (max-width: 1199px) {
		.services__item--2 {
		  padding: 70px 25px 50px 35px; } }
  .services__icon {
	margin-bottom: 47px;
	display: inline-block;
	position: relative;
	height: 50px;
	z-index: 1; }
	.services__icon img {
	  -webkit-transition: 0.3s;
	  -o-transition: 0.3s;
	  transition: 0.3s; }
	.services__icon::before {
	  position: absolute;
	  top: -33px;
	  left: -12px;
	  width: 75px;
	  height: 105px;
	  background-color: #F9F0F5;
	  content: "";
	  z-index: -1;
	  border-radius: 37px;
	  border-radius: 37px;
	  -webkit-border-radius: 37px;
	  -moz-border-radius: 37px;
	  -ms-border-radius: 37px;
	  -o-border-radius: 37px;
	  -webkit-transform: rotate(45deg);
	  -ms-transform: rotate(45deg);
	  transform: rotate(45deg);
	  -webkit-transition: 0.3s;
	  -o-transition: 0.3s;
	  transition: 0.3s; }
  .services__title {
	font-size: 20px;
	margin-bottom: 30px;
	font-style: 28px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;

	font-family: "Roboto", sans-serif;
	letter-spacing: 1.1px;
}
.services__title a {
	color: #010101;
}
  .services__bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 40%;
	height: 100%; }
  .services__list p {
	font-size: 15px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s; }

	.services__list p {
	  margin-bottom: 13px;
	  position: relative;
	  padding-left: 23px;
	  font-family: "Roboto", sans-serif;
	}
	.services__list p:last-child {
		margin-bottom: 0;
	}
	.services__list p::before {
		position: absolute;
		color: var(--main-color-2);
		left: 0;
		top: 1px;
		content: "\f058";
		font-family: 'Font Awesome 5 Pro';
		font-weight: 300;
	}
	.services__list p i {
	  color: var(--main-color-2);
	  margin-right: 8px; }
  .services__btn .thm-btn {
	border-radius: 0;
	padding: 0;
	background-color: transparent !important;
	padding-right: 50px; }

	.services__btn .thm-btn span, .services__btn .thm-btn i {
	  color: var(--main-color-2); }

	.services__btn-black .thm-btn span, .services__btn-black .thm-btn i {
		color: #010101;
	}
	.services__item:hover .services__btn-black .thm-btn span,
	.services__item:hover .services__btn-black .thm-btn i,
	.services__item.active .services__btn-black .thm-btn span,
	.services__item.active .services__btn-black .thm-btn i {
		color: var(--main-color-2);
	}

  /*----------------------------------------*/
  /*  09. speed test
  /*----------------------------------------*/
  .speed-test__list li {
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	color: #121D2C;
	letter-spacing: 1px; }
	.speed-test__list li:not(:last-child) {
	  margin-right: 70px; }
	  @media (max-width: 767px) {
		.speed-test__list li:not(:last-child) {
		  margin-right: 18px; } }
	.speed-test__list li i {
	  margin-right: 6px; }
	.speed-test__list li.result i {
	  color: var(--main-color-2); }
	.speed-test__list li.setting i {
	  color: var(--main-color-2); }
	.speed-test__list li.signal i {
	  color: #08BF51; }
	@media (max-width: 767px) {
	  .speed-test__list li {
		font-size: 16px; } }
  .speed-test__info-item:not(:last-child) {
	margin-right: 80px; }
	@media (max-width: 1199px) {
	  .speed-test__info-item:not(:last-child) {
		margin-right: 45px; } }
	@media (max-width: 991px) {
	  .speed-test__info-item:not(:last-child) {
		margin-right: 26px; } }
  .speed-test__info-item .icon {
	margin-right: 10px; }
	.speed-test__info-item .icon {
	  color: #02D8A4; }
	.speed-test__info-item .icon.transfer-icon {
	  color: #F5B307; }
	.speed-test__info-item:nth-child(3) .icon {
	  color: #F3441D; }
  .speed-test__info-item .info-head {
	font-size: 20px;
	text-transform: uppercase;
	color: #121D2C;
	font-weight: 500; }
	@media (max-width: 991px) {
	  .speed-test__info-item .info-head {
		font-size: 15px; } }
  .speed-test__info-item .info-data {
	font-size: 16px;
	color: #95989B;
	font-weight: 500; }
  .speed-test__info-item .sd-number {
	font-size: 45px;
	font-weight: 500; }
	@media (max-width: 991px) {
	  .speed-test__info-item .sd-number {
		font-size: 30px; } }
  .speed-test__btn .thm-btn {
	padding: 16px 35px; }
  @media (max-width: 767px) {
	.speed-test__img-wrap {
	  display: none; } }
  .speed-test__img {
	position: absolute;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	overflow: hidden;
	border: 5px solid #fff;
	box-shadow: 0px 4px 4px #EEEEEE; }
	.speed-test__img--1 {
	  width: 155px;
	  height: 155px;
	  top: 21%;
	  left: 19%; }
	  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
		.speed-test__img--1 {
		  left: 10%; } }
	  @media (max-width: 1199px) {
		.speed-test__img--1 {
		  left: 2%; } }
	  @media (max-width: 991px) {
		.speed-test__img--1 {
		  width: 120px;
		  height: 120px; } }
	.speed-test__img--2 {
	  width: 66px;
	  height: 66px;
	  bottom: 13%;
	  left: 19%; }
	  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
		.speed-test__img--2 {
		  left: 13%; } }
	  @media (max-width: 1199px) {
		.speed-test__img--2 {
		  left: 10%; } }
	.speed-test__img--3 {
	  width: 68px;
	  height: 68px;
	  top: 25%;
	  right: 19%; }
	  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
		.speed-test__img--3 {
		  right: 12%; } }
	  @media (max-width: 1199px) {
		.speed-test__img--3 {
		  right: 10%; } }
	.speed-test__img--4 {
	  width: 55px;
	  height: 55px;
	  right: 15%;
	  top: 45%; }
	  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
		.speed-test__img--4 {
		  right: 5%; } }
	  @media (max-width: 1199px) {
		.speed-test__img--4 {
		  right: 12%; } }
	.speed-test__img--5 {
	  width: 120px;
	  height: 120px;
	  right: 18%;
	  bottom: 20%; }
	  @media only screen and (min-width: 1200px) and (max-width: 1500px) {
		.speed-test__img--5 {
		  right: 8%; } }
	  @media (max-width: 1199px) {
		.speed-test__img--5 {
		  right: 3%; } }
	  @media (max-width: 991px) {
		.speed-test__img--5 {
		  bottom: 8%; } }

  /*----------------------------------------*/
  /*  10. movie
  /*----------------------------------------*/
  .movie__image {
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	overflow: hidden;
	position: relative; }
	.movie__image img {
	  width: 100%; }
	.movie__image::before {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  content: "";
	  background-color: rgba(0, 0, 0, 0.56);
	  opacity: 0;
	  -webkit-transition: 0.3s;
	  -o-transition: 0.3s;
	  transition: 0.3s; }
  .movie__item:hover .movie__image::before {
	opacity: 1; }
  .movie__icon {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s; }
	.movie__icon a {
	  text-align: center;
	  width: 58px;
	  height: 58px;
	  background: #ffffff;
	  margin: 0 10px;
	  display: inline-block;
	  border-radius: 50%;
	  line-height: 58px;
	  color: var(--main-color-2);
	  font-size: 17px;
	  -webkit-transform: translateY(15px);
	  -ms-transform: translateY(15px);
	  transform: translateY(15px); }
	  .movie__icon a.play-icon {
		width: 70px;
		height: 70px;
		line-height: 70px;
		font-size: 18px;
		transition-delay: .1s; }
	  .movie__icon a:hover {
		color: #ffffff;
		background-color: var(--main-color-2); }
	  .movie__icon a:nth-child(3) {
		transition-delay: .2s; }
  .movie__item:hover .movie__icon {
	opacity: 1;
	visibility: visible; }
  .movie__item:hover .movie__icon a {
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px); }
  .movie__review {
	position: absolute;
	top: 22px;
	right: 30px; }
	.movie__review li {
	  font-size: 18px;
	  color: #ffffff; }
	  .movie__review li:not(:last-child) {
		margin-right: 14px; }
	  .movie__review li i {
		color: var(--main-color-2);
		margin-right: 3px;
		font-size: 15px; }

  /*----------------------------------------*/
  /*  11. testimonial
  /*----------------------------------------*/
  .testimonial__navs {
	border: 0; }
	@media (max-width: 767px) {
	  .testimonial__navs {
		justify-content: center;
		margin-bottom: 30px; } }
	.testimonial__navs .nav-link {
	  border: 0;
	  position: relative;
	  background: none; }
	  .testimonial__navs .nav-link .number {
		position: absolute;
		top: 10px;
		right: 7px;
		width: 36px;
		height: 36px;
		background-color: var(--main-color-2);
		border-radius: 50%;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		-ms-border-radius: 50%;
		-o-border-radius: 50%;
		box-shadow: 0px 1px 4px rgba(94, 147, 209, 0.1);
		display: flex;
		align-items: center;
		justify-content: center;
		color: #ffffff;
		font-weight: 500;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
		font-family: "Roboto", sans-serif;
}
	  .testimonial__navs .nav-link.active {
		border: 0;
		background: none; }
  .testimonial__navs .nav-link.active .testimonial__img img {
	border-color: var(--main-color-2) !important; }
  .testimonial__navs .nav-link.active span {
	background-color: #ffffff;
	color: var(--main-color-2); }
  .testimonial__img {
	position: absolute;
	width: 155px;
	height: 155px; }
	@media (max-width: 991px) {
	  .testimonial__img {
		width: 120px;
		height: 120px; } }
	@media (max-width: 767px) {
	  .testimonial__img {
		position: relative; } }
		.testimonial__img img {
			width: 100%;
			height: 100% !important;
			object-fit: cover;
			border-radius: 51% !important;
			-webkit-border-radius: 50% !important;
			-moz-border-radius: 50% !important;
			-ms-border-radius: 50% !important;
			-o-border-radius: 50% !important;
			border: 5px solid #ffffff !important;
			box-shadow: 0px 4px 4px #EEEEEE !important;
			-webkit-transition: 0.3s;
			-o-transition: 0.3s;
			transition: 0.3s;
		}
	.testimonial__img--1 {
	  top: 0;
	  left: 0; }
	.testimonial__img--2 {
	  top: 145px;
	  left: 200px; }
	  @media (max-width: 1199px) {
		.testimonial__img--2 {
		  left: 112px;
		  top: 130px; } }
	  @media (max-width: 991px) {
		.testimonial__img--2 {
		  left: 110px; } }
	  @media (max-width: 767px) {
		.testimonial__img--2 {
		  top: 0;
		  left: 0; } }
	.testimonial__img--3 {
	  top: 255px;
	  left: -63px; }
	  @media (max-width: 767px) {
		.testimonial__img--3 {
		  top: 0;
		  left: 0; } }
  .nav-link .testimonial__img--3 .number {
	top: auto;
	right: auto;
	bottom: 10px;
	left: 7px; }
  .testimonial__single {
	padding: 65px 75px;
	background-color: #FBFBFD;
	border: 1px solid var(--main-color-2);
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-ms-border-radius: 7px;
	-o-border-radius: 7px; }
	@media (max-width: 1199px) {
	  .testimonial__single {
		padding: 50px; } }
	@media (max-width: 991px) {
	  .testimonial__single {
		padding: 40px; } }
	.testimonial__single p {
	  font-size: 24px;
	  line-height: 46px;
	  color: #51687A;
	  font-family: "Roboto", sans-serif;
}
	  @media (max-width: 1199px) {
		.testimonial__single p {
		  font-size: 20px;
		  line-height: 36px; } }
	  @media (max-width: 991px) {
		.testimonial__single p {
		  font-size: 18px;
		  line-height: 32px; } }
	  .testimonial__single p i {
		color: var(--main-color-2);
		font-size: 21px;
		margin-right: 7px; }
		.testimonial__single p i:last-child {
		  margin-right: 0;
		  margin-left: 7px; }
  .testimonial__info {
	display: flex;
	align-items: center; }
	.testimonial__info .avatar {
	  width: 74px;
	  height: 74px;
	  border-radius: 50%;
	  -webkit-border-radius: 50%;
	  -moz-border-radius: 50%;
	  -ms-border-radius: 50%;
	  -o-border-radius: 50%;
	  overflow: hidden;
	  border: 5px solid #ffffff;
	  margin-right: 15px;
	  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.03); }
	  .testimonial__info .avatar img {
		width: 100%;
		height: 100%;
		object-fit: cover; }
	.testimonial__info .content {
	  width: calc(100% - 89px); }
	  .testimonial__info .content h4 {
		font-size: 18px;
		font-weight: 600;
		text-transform: uppercase; }
	  .testimonial__info .content span {
		display: inline-block;
		color: var(--main-color-2); }

  /*----------------------------------------*/
  /*  12. blog
  /*----------------------------------------*/
  .blog__item:hover .border_effect a {
	background-size: 100% 100%;
	color: inherit; }
  .blog__thumb {
	margin: 0;
	overflow: hidden;
	height: 200px;
}

	.blog__thumb img {
	  -webkit-transition: 0.3s;
	  -o-transition: 0.3s;
	  transition: 0.3s;
	margin-bottom: 0;
	height: 100% !important;
	width: 100%;
	object-fit: cover;
}
  .blog__item:hover .blog__thumb img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05); }
  .blog__content {
	background-color: #ffffff;
	padding: 20px 18px;
	border-right: 1px solid #F3F4F5; }
  .blog__title {
	font-size: 22px;
	line-height: 1.4;
	letter-spacing: 0;
	font-weight: 600;
	font-family: "Roboto", sans-serif;
}
	.blog__title a {
	  color: #121D2C; }
  .blog__date {
	font-size: 14px;
	color: var(--main-color-2);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 17px; }
  .blog__btn .thm-btn {
	padding: 0;
	background-color: transparent !important;
	padding-right: 50px; }
	.blog__btn .thm-btn span, .blog__btn .thm-btn i {
	  color: #121D2C; }
  .blog__item--2 .blog__content {
	padding: 30px;
	border: 2px solid #F7F7F7;
	border-top: 0; }
  .blog__meta li {
	font-size: 15px;
	color: #666666;
	font-family: "Roboto", sans-serif;
}
	.blog__meta li:not(:last-child) {
	  margin-right: 12px; }
	.blog__meta li i {
	  color: var(--main-color-2);
	  margin-right: 5px; }
  .blog__cat {
	padding: 4px 32px;
	position: absolute;
	bottom: 33px;
	left: 28px;
	font-size: 15px;
	color: #ffffff;
	text-transform: uppercase;
	background-color: #191B1E;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	font-weight: 700;
	letter-spacing: 1px; }
	.blog__cat:hover {
	  color: #ffffff; }
  .blog__item:hover .blog__cat {
	background-color: var(--main-color-2); }
	.blog__item--2 .blog__thumb {
		height: 250px;
	}

/*----------------------------------------*/
/*  13. satellite
/*----------------------------------------*/
.satellite__img {
	position: absolute;
	top: 0;
	right: 0;
	width: 45.4%;
	border: 10px solid var(--main-color-2);
	border-bottom: 19px solid var(--main-color-2);
	border-right: 0;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	z-index: -1; }
	@media (max-width: 991px) {
	  .satellite__img {
		display: none; } }
	.satellite__img .discout-price {
	  left: -58px;
	  top: 50%;
	  -webkit-transform: translateY(-50%);
	  -ms-transform: translateY(-50%);
	  transform: translateY(-50%); }
  @media (max-width: 767px) {
	.satellite__list {
	  margin-left: 0; } }
	  .satellite__list li {
		position: relative;
		font-size: 15px;
		padding-left: 14px;
		color: #5B646B;
		line-height: 27px;
		font-family: "Roboto", sans-serif;
	}
	.satellite__list li:not(:last-child) {
	  margin-bottom: 5px; }
	.satellite__list li::before {
	  position: absolute;
	  top: 50%;
	  left: 0;
	  width: 6px;
	  height: 7px;
	  content: "";
	  background-color: var(--main-color-2);
	  -webkit-transform: translateY(-50%);
	  -ms-transform: translateY(-50%);
	  transform: translateY(-50%); }

  .mt-none-110 {
	margin-top: -110px; }

.satellite__list-box img {
	width: 130px;
}
/*----------------------------------------*/
/*  14. counter
/*----------------------------------------*/
.counter__wrap {
	background-color: var(--main-color-2);
	box-shadow: 0px 0px 19px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	padding: 45px 20px 30px; }
  .counter__number {
	font-size: 36px;
	font-weight: 600;
	letter-spacing: 0;
	margin-bottom: 6px;
	font-family: "Roboto", sans-serif;
}
	.counter__icon {
		width: 70px;
		margin: auto;
		margin-bottom: 10px;
	}
	.counter__number .odometer {
	  margin-top: -5px; }
	.counter__number span {
	  color: #ffffff; }
	.counter__number .suffix {
	  margin-left: -8px; }
  .counter__desc {
	font-size: 20px;
	font-weight: 500;
	color: #ffffff;
	letter-spacing: 0;
	font-family: "Roboto", sans-serif;
}

/*----------------------------------------*/
/*  15. event
/*----------------------------------------*/
@media (max-width: 991px) {
	.event__item--1 {
	  padding-right: 10px; } }
  @media (max-width: 767px) {
	.event__item--1 {
	  padding-right: 0;
	  margin-top: 30px; } }
  @media (max-width: 991px) {
	.event__item--2 {
	  padding-left: 10px; } }
  @media (max-width: 767px) {
	.event__item--2 {
	  padding-left: 0; } }

  .event__wrap {
	position: relative; }
	.event__wrap::before {
	  position: absolute;
	  top: 0;
	  left: 50%;
	  -webkit-transform: translateX(-50%);
	  -ms-transform: translateX(-50%);
	  transform: translateX(-50%);
	  content: "";
	  background-color: #E9E6E2;
	  width: 3px;
	  height: 100%; }
	  @media (max-width: 767px) {
		.event__wrap::before {
		  display: none; } }
  .event__content {
	padding: 50px 30px 0; }
	@media (max-width: 991px) {
	  .event__content {
		padding: 35px 30px 0;
		padding-left: 0; } }
  .event__img {
	position: relative; }
	.event__img::before {
	  position: absolute;
	  top: 20px;
	  right: -59px;
	  content: "";
	  border: 4px solid var(--main-color-2);
	  width: 18px;
	  height: 18px;
	  border-radius: 50%;
	  -webkit-border-radius: 50%;
	  -moz-border-radius: 50%;
	  -ms-border-radius: 50%;
	  -o-border-radius: 50%;
	  background-color: #ffffff; }
	  @media (max-width: 991px) {
		.event__img::before {
		  right: -34px; } }
	  @media (max-width: 767px) {
		.event__img::before {
		  display: none; } }
  .event__item--2 .event__img::before {
	right: auto;
	left: -59px; }
	@media (max-width: 991px) {
	  .event__item--2 .event__img::before {
		left: -34px; } }
  .event__time {
	padding: 3px 30px;
	background-color: rgba(255, 23, 73, 0.04);
	color: var(--main-color-2);
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 18px;
	font-family: "Roboto", sans-serif;
}
	.event__time i {
	  margin-right: 6px; }
  .event__title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 24px;
	font-family: "Roboto", sans-serif;
}
	@media (max-width: 991px) {
	  .event__title {
		font-size: 25px; } }
	.event__title a {
	  color: #121D2C; }
	  .event__title a:hover {
		color: var(--main-color-2); }
  .event__location {
	margin-top: 40px;
	padding-top: 15px;
	border-top: 1px solid rgba(0, 0, 0, 0.17);
	display: block;
	font-size: 16px;
	font-family: "Roboto", sans-serif;
 }
	.event__location i {
	  color: var(--main-color-2);
	  margin-right: 6px; }
	.event__content p {
		font-family: "Roboto", sans-serif;
		color: #59626A;
		font-size: 16px;
	}
	.event__item--2 .event__content {
		padding-left: 0;
	}
/*----------------------------------------*/
/*  16. video
/*----------------------------------------*/
.video__wrap {
	padding: 65px 30px 90px;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px; }
  .video__content .popup-video {
	position: unset;
	display: flex;
	align-items: center;
	justify-content: center;
}
  .video__bottom p {
	font-size: 18px;
	text-transform: capitalize;
	color: #121D2C;
	font-family: "Roboto", sans-serif;
}
	@media (max-width: 1199px) {
	  .video__bottom p {
		font-size: 15px; } }
	.video__bottom p a {
	  color: var(--main-color-2); }
	  .video__bottom p a:hover {
		color: var(--main-color-2); }
	.video__bottom p i {
	  width: 25px;
	  height: 25px;
	  border-radius: 50%;
	  -webkit-border-radius: 50%;
	  -moz-border-radius: 50%;
	  -ms-border-radius: 50%;
	  -o-border-radius: 50%;
	  color: var(--main-color-2);
	  border: 1px solid var(--main-color-2);
	  text-align: center;
	  font-size: 14px;
	  line-height: 25px;
	  margin-right: 12px; }
  .video__bottom .bell-icon {
	display: flex;
	justify-content: center;
	flex: 1;
	padding: 0 25px; }
	.video__bottom .bell-icon .bell {
	  width: 80px;
	  height: 80px;
	  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.04);
	  border-radius: 50%;
	  -webkit-border-radius: 50%;
	  -moz-border-radius: 50%;
	  -ms-border-radius: 50%;
	  -o-border-radius: 50%;
	  overflow: hidden;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  background-color: #ffffff; }
  .video__bg {
	position: relative;
	z-index: 1; }
	.video__bg::before {
	  position: absolute;
	  bottom: 0;
	  left: 0;
	  width: 100%;
	  height: 513px;
	  background-color: #F9F9FC;
	  content: "";
	  z-index: -1; }

  .brand__item:not(:last-child) {
	margin-right: 34px; }
	.brand__item {
		height: 50px;
		display: flex;
		align-items: center;
	}
/*----------------------------------------*/
/*  17. faq
/*----------------------------------------*/
.faq__icon {
	width: 35px;
	height: 35px;
	box-shadow: 0px 0px 27px rgba(0, 0, 0, 0.08);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--main-color-2);
	margin-right: 20px; }
  .faq__content {
	width: calc(100% - 55px); }
  .faq__title {
	font-size: 20px;
	margin-bottom: 18px;
	font-family: "Roboto", sans-serif;
}
  .faq__img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative; }
	@media (max-width: 1199px) {
	  .faq__img {
		width: 160px;
		height: 160px; } }
	.faq__img::before {
	  position: absolute;
	  top: 12px;
	  left: 12px;
	  bottom: 12px;
	  right: 12px;
	  border: 2px dashed var(--main-color-2);
	  content: "";
	  border-radius: 50%;
	  -webkit-border-radius: 50%;
	  -moz-border-radius: 50%;
	  -ms-border-radius: 50%;
	  -o-border-radius: 50%;
	  animation: spin-2 10s infinite linear; }
	.faq__img img {
	  -webkit-animation: spin 12s infinite linear;
	  animation: spin 12s infinite linear; }
	  @media (max-width: 1199px) {
		.faq__img img {
		  max-width: 100px; } }
		  .faq__content p {
			font-family: "Roboto", sans-serif;
			color: #5B646B;
			line-height: 28px;
		}
/*----------------------------------------*/
/*  12. footer
/*----------------------------------------*/
.footer__bg {
	background-color: #131313;
}
.footer__top-wrap {
	border-bottom: 1px solid #263546; }
  @media (max-width: 991px) {
	.footer__top-text {
	  text-align: center;
	  margin-bottom: 30px; } }
  .footer__top-text h2 {
	color: #ffffff;
	margin-bottom: 12px;
	position: relative;
	display: inline-block;
	font-family: "Roboto", sans-serif;
}
	.footer__top-text h2 span {
	  color: var(--main-color-2); }
	  .footer__top-text p {
		color: #A9A9A9;
		font-size: 16px;
		font-family: "Roboto", sans-serif;
	}
  .footer__shape {
	position: absolute;
	top: 0;
	right: -150px; }
	@media (max-width: 1199px) {
	  .footer__shape img {
		display: none; } }
  .footer__subscribe {
	position: relative;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	overflow: hidden;
	margin-left: 40px; }
	@media (max-width: 1199px) {
	  .footer__subscribe {
		margin-right: 0; } }
	@media (max-width: 991px) {
	  .footer__subscribe {
		margin-left: 0; } }
	.footer__subscribe input {
	  width: 100%;
	  height: 63px;
	  background-color: rgba(255, 255, 255, 0.11);
	  color: #ffffff;
	  padding: 20px;
	  border: 0;
	  font-size: 16px;
	  font-family: "Roboto", sans-serif;
	}

	  .footer__subscribe input::placeholder {
		color: #A7A7A7;
	  }
	.footer__subscribe button {
	  position: absolute;
	  top: 0;
	  right: 0;
	  height: 63px;}
	  .footer__subscribe button:hover {
		background-color: var(--main-color-2); }
	  @media (max-width: 767px) {
		.footer__subscribe button {
		  position: relative;
		  margin-top: 10px; } }
  .footer__widget h3 {
	color: #ffffff;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 32px;
	font-family: "Roboto", sans-serif;
}
  .footer__widget p {
	color: #ffffff;
	font-size: 16px;
	line-height: 28px;
	font-family: "Roboto", sans-serif;
}
  .footer__widget-about {
	max-width: 320px; }
  .footer__link li {
	color: #fff;
	line-height: 28px;
}
	.footer__link li:not(:last-child) {
	  margin-bottom: 9px; }
	.footer__link li a {
	  color: #fff;
	  position: relative;
	  font-family: "Roboto", sans-serif;
	  font-size: 16px;
}
	  .footer__link li a::before {
		content: "";
		display: block;
		position: absolute;
		z-index: 1;
		top: auto;
		bottom: -5px;
		left: 0;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		width: 0;
		height: 1px;
		-webkit-transition: all .3s ease;
		-ms-transition: all .3s ease;
		transition: all .3s ease;
		background-color: #ffffff; }
	.footer__link li:hover a {
	  margin-left: 9px;
	  color: #ffffff; }
	  .footer__link li:hover a::before {
		width: 100%; }
  .footer__widget-link3 {
	margin-left: -20px; }
	@media (max-width: 991px) {
	  .footer__widget-link3 {
		margin-left: 0; } }
  .footer__widget-post li {
	display: flex;
	align-items: center; }
	.footer__widget-post li:not(:last-child) {
	  margin-bottom: 20px; }
	.footer__widget-post li .post-thumb {
	  width: 73px;
	  height: 70px;
	  overflow: hidden;
	  margin-right: 20px; }
	  .footer__widget-post li .post-thumb img {
		width: 100%;
		-webkit-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s; }
	.footer__widget-post li:hover .post-thumb img {
	  -webkit-transform: scale(1.05);
	  -ms-transform: scale(1.05);
	  transform: scale(1.05); }
	.footer__widget-post li:hover .border_effect a {
	  background-size: 100% 100%; }
	.footer__widget-post li .border_effect a {
	  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px); }
	.footer__widget-post li .content {
	  width: calc(100% - 93px); }
	  .footer__widget-post li .content .date {
		font-size: 12px;
		color: #ffffff;
		display: inline-block;
		margin-bottom: 4px;
		font-family: "Roboto", sans-serif;
}
	  .footer__widget-post li .content h6 {
		font-size: 15px;
		font-weight: 400;
		font-family: "Roboto", sans-serif;
}
		.footer__widget-post li .content h6 a {
		  color: #ffffff;
		  font-family: "Roboto", sans-serif;
}
  .footer__copyright-wrap {
	border-top: 1px solid #263546;
	background-color: #0E0E14; }
	.footer__copyright-text {
		color: #ffffff;
		font-size: 16px;
		font-weight: 400;
		flex: 1;
		font-family: "Roboto", sans-serif;
	}
	@media (max-width: 991px) {
	  .footer__copyright-text {
		text-align: right !important; } }
	@media (max-width: 767px) {
	  .footer__copyright-text {
		text-align: left !important; } }
	.footer__copyright-text a {
	  color: var(--main-color-2); }

  .useful-links {
	margin-left: 10px; }
	@media (max-width: 991px) {
	  .useful-links {
		margin-left: 0; } }

  .open-hour__icon {
	background: var(--main-color-2);
	width: 74px;
	height: 74px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	margin-right: 20px;
	font-size: 50px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center; }
	.open-hour__text {
		width: calc(100% - 95px);
	}
  .open-hour__text h4 {
	color: #ffffff;
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 7px;
	font-family: "Roboto", sans-serif;
}
  .open-hour__text span {
	display: block;
	font-size: 15px;
	color: #A3A3A3;
	line-height: 1.7;
	font-family: "Roboto", sans-serif;
}
/* backtoup */
.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 40px;
	height: 40px;
	width: 40px;
	cursor: pointer;
	display: block;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	box-shadow: inset 0 0 0 2px rgba(255, 23, 73, 0.2);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	transform: translateY(15px);
	-webkit-transform: translateY(15px);
	-moz-transform: translateY(15px);
	-ms-transform: translateY(15px);
	-o-transform: translateY(15px); }

  .progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0); }

  .progress-wrap::after {
	position: absolute;
	content: '\f176';
	font-family: "Font Awesome 5 Pro";
	text-align: center;
	line-height: 40px;
	font-size: 17px;
	color: var(--main-color-2);
	left: 0;
	top: 0;
	height: 40px;
	width: 40px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear; }

  .progress-wrap svg path {
	fill: none; }

  .progress-wrap svg.progress-circle path {
	stroke: var(--main-color-2);
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear; }


	.header__area .navbar,
	.main_menu ul li {
		position: static;
	}