/*------------------------------------------------------------------
 * Multipurpose: Free Template by FreeHTML5.co
 * Author: https://freehtml5.co
 * Facebook: https://facebook.com/fh5co
 * Twitter: https://twitter.com/fh5co
 -------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of styles content]

1 - Header
2 - Hero
3 - CTA
4 - Services
5 - Featured
6 - Recent Posts
7 - Trust
8 - Pricing Tables
9 - Testimonials
10 - Clients
11 - CTA 2
12 - Footer Widgets
13 - Foot Note
--------------------------------------------------------------------*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

::before , ::after {
	box-sizing: inherit;
}

button_m {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}
.menu {
  width: 70%;
  height: 100vh;
  margin-left: auto;
  /* メニューを縦に */
  display: flex;
  flex-direction: column;
  color: #efefef;
  background-color: rgba(14, 188, 204, 0.7);
  transition: .3s;
}
.menu-list {
  width: 100%;
  height: 10%;
  /* メニューテキスト位置をリスト内中心に */
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-list a{
	color: white;
}
.menu {
  /* メニューの位置マイナス指定で画面外に */
  position: fixed;
  right: -100%;
  width: 100%;
  height: 100vh;
  /* メニューを縦に */
  display: flex;
  flex-direction: column;
  color: #efefef;
  background-color: rgba(14, 188, 204, 0.7);
  transition: .3s;
	top: 0px;
}


.btn2 {
  /* ボタンの配置位置  */
  position: fixed;
  top: 22px;
  right: 16px;
  /* ボタンの大きさ  */
  width: 48px;
  height: 48px;
  /* 最前面に */
  z-index: 10;
border: 0px none;
  background-color: rgba(254, 254, 254, 0);
}
.btn-line {
	display: block;
	position: relative;  /* バーガー線の位置基準として設定 */
	width: 100%;  /* 線の長さと高さ */
	height: 4px;
	background-color: #0ebccc;  /* バーガー線の色 */
	transition: .2s;
}
/****** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0ebccc;
  transition: .5s;
}
.btn-line::before {
  /* 上の線の位置 */
  transform: translateY(-16px)translateX(-24px);
}
.btn-line::after {
  /* 下の線の位置 */
  transform: translateY(16px)translateX(-24px);
}
.menu.open {
  right: 0;
}
/***** メニューオープン時 *****/
.btn-line.open {
	background-color: transparent;  	/* 真ん中の線を透明に */
	transform:  translateX(-21px);
}
.btn-line.open::before , 
.btn-line.open::after {
	content: "";
	background-color: #333;  /* 上下の線の色を変える */
	transition: .2s;
}
.btn-line.open::before {
	transform: rotate(45deg);  /* 上の線を傾ける */
}
.btn-line.open::after {
	transform: rotate(-45deg);  /* 下の線を傾ける */
}

@media screen and (min-width: 600px) {
	.btn2 {
		display: none;
	}

}







.button_wrapper{
   text-align:center;
}

.button{
  margin-bottom: 40px;
  position: relative;
  border: 1px solid #424242;
  width: 260px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #424242;
  font-size: 14px;
}
.button:before,
.button:after{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  background: #424242;
    transition: all .2s;
}
.button:before{
  width: 70px;
  transform: translate(35px, 0px);
}
.button:after{
  width: 20px;
  transform-origin: right center;
  transform: translate(35px, 0px) rotate(30deg);
}
.button:hover::before {
  right: -1em;
}
.button:hover::after {
  right: -1em;
}


.button2{
  margin-bottom: 40px;
  position: relative;
  border: 1px solid #424242;
  width: 300px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #424242;
  font-size: 14px;
}
.button2:before,
.button2:after{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  background: #424242;
    transition: all .2s;
}
.button2:before{
  width: 70px;
  transform: translate(35px, 0px);
}
.button2:after{
  width: 20px;
  transform-origin: right center;
  transform: translate(35px, 0px) rotate(30deg);
}
.button2:hover::before {
  right: -1em;
}
.button2:hover::after {
  right: -1em;
}

.button3{
  margin-bottom: 40px;
  position: relative;
  border: 1px solid #0ebccc;
  width: 260px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #0ebccc;
  font-size: 14px;
}
.button3:before,
.button3:after{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  background: #0ebccc;
    transition: all .2s;
}
.button3:before{
  width: 70px;
  transform: translate(35px, 0px);
}
.button3:after{
  width: 20px;
  transform-origin: right center;
  transform: translate(35px, 0px) rotate(30deg);
}
.button3:hover::before {
  right: -1em;
}
.button3:hover::after {
  right: -1em;
}

.button4{
  margin-bottom: 40px;
  position: relative;
  border: 1px solid #424242;
  width: 200px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #424242;
  font-size: 14px;
}
.button4:before,
.button4:after{
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  height: 1px;
  background: #424242;
    transition: all .2s;
}
.button4:before{
  width: 70px;
  transform: translate(35px, 0px);
}
.button4:after{
  width: 20px;
  transform-origin: right center;
  transform: translate(35px, 0px) rotate(30deg);
}
.button4:hover::before {
  right: -1em;
}
.button4:hover::after {
  right: -1em;
}
@media screen and (max-width: 896px) {
	.button{
  margin-bottom: 40px;
  position: relative;
  border: 1px solid #424242;
  width: 200px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #424242;
  font-size: 14px;
}
	.button2{
  margin-bottom: 40px;
  position: relative;
  border: 1px solid #424242;
  width: 260px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #424242;
  font-size: 14px;
}
}
/*-----------------------------------
    1 - Header
------------------------------------*/
/*header {
  background-color: rgba(100, 100, 100, 0.5);
  color: #424242;
  z-index: 1000;
	display: flex;
	height: 100px;
}

header a {
  color: #424242;
}

header::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.02);
  position: absolute;
  left: 0;
  bottom: -20px;
}

header p {
  color: #0ebccc;
font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
	  letter-spacing: 0.1vw;
	line-height: 100px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%)
}

.nav-link {
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
}
*/

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100px;
  transition: .5s;
	line-height: 50px;
}
header h1 {
  transition: .5s;
	  color: #0ebccc;
font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
	  letter-spacing: 0.1vw;
	font-size: 24px;
	display: none;
	
}
.is-animation {
  height: 100px;
	  background-color: rgba(255, 255, 255, 0.75);
}
.is-animation h1 {
  color: #0ebccc;
	display: inline-block;
}

.contact {
  font-size: 12px;
}

.tel {
  margin-right: 30px;
}

.contact i {
  color: #ee1515;
  margin-right: 10px;
}

.login {
  padding: 10px 20px;
  font-size: 14px;
  margin-right: 25px;
  text-transform: uppercase;
}


.login i {
  color: #ee1515;
  margin-right: 8px;
}

.navbar-brand h1 {
  margin: 0;
}

.social {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.social li:not(:last-child) {
  margin-right: 20px;
}

.social a {
  font-size: 14px;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid #ee1515;
  border-radius: 4px;
  line-height: 40px;
  text-align: center;
  background-color: transparent;
  transition: all 0.25s ease-in-out;
}

.social a:hover {
  color: #fff;
  background-color: #ee1515;
}

.navbar-brand img {
  width: 135px;
}

.navbar-collapse .search-form input[type="text"] {
  border: 1px solid #ced4da;
  color: #333;
  padding: 1.5625rem 0.625rem;
}

.navbar-collapse .search-form .btn {
  margin-top: 0;
  border-radius: 0;
  margin-left: -1px;
}

.navbar-collapse .nav-link {
  font-size: 1.125rem;
  transition: all 0.2s ease-in-out;
}

.navbar-collapse .nav-link:hover {
  color: #0ebccc;
}

.cart,
.login-icon,
.search-icon {
  color: #424242;
  font-size: 3rem;
}

.cart:hover,
.login-icon:hover,
.search-icon:hover {
  color: #0ebccc;
}

.cart {
  margin-left: 20px;
}

form input.btn-primary:hover,
form button.btn-primary:hover {
  background-color: #fff;
  color: #0ebccc;
}

@media screen and (max-width: 896px) {
	.tel {
  margin-right: 0px;
}
	header h1 {
  transition: .5s;
	  color: #0ebccc;
font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
	  letter-spacing: 0.1vw;
	font-size: 16px;
	display: none;
	
}
	.is-animation {
  height: 96px;
	  background-color: rgba(255, 255, 255, 0.75);
}
}
@media screen and (max-width: 767px) {
	.fb-container {
		width: 100%;
		max-width: 500px;
	}
}

/*-----------------------------------
    1 - Hero
------------------------------------*/
.hero {
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 0;
	background: linear-gradient(180deg,#0ebccc 0%,#0ebccc 230px,white 230px,white 230%);
}

.hero .mainimg {
  position: relative;
  width: 60%;
  min-width: 750px;
  height: 720px;
  margin-bottom: 80px;
  margin-left: auto;
  object-fit: cover;
  border-bottom-left-radius: 100px;
  background: url(../images/topimg.png) center center / cover no-repeat;
	z-index: 8;
}

.hero .title {
	position: absolute;
	font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
	font-size: 90px;
	color: white;
	z-index: 9;
	margin-left: auto;
	margin-right: auto;
	max-width: 1320px;
	left: 80px;
	top: 120px;
	letter-spacing: 0.75vw;
	line-height: 80%;
}
.gray {color: #5d5d5d;
line-height: 100%;}

.hero .titlejp {
	position: absolute;
	font-size: 36px;
	color: #424242;
	z-index: 9;
	margin-left: auto;
	margin-right: auto;
	max-width: 1320px;
	left: 84px;
	top: 490px;
	letter-spacing: 1.2vw;
	font-weight: bold;
	line-height: 180%;
}

.hero .container {
  position: relative;
  z-index: 5;
}

.hero .slide-content {
  min-height: 600px;
  color: #fff;
}

.hero .slide-content span {
  color: #ee1515;
}

.hero .slide-content h1 {
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.56);
  text-transform: uppercase;
  -webkit-transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
          transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
  font-weight: bold;
}

.hero .slide-content p {
  color: #170936;
  -webkit-transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
          transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
  padding: 35px 0 35px 30px;
  background-color: rgba(255, 255, 255, 0.51);
  border-top-right-radius: 100px;
  border-bottom-left-radius: 10px;
  margin-bottom: 0;
}

.hero .slide-content .btn {
  margin-top: 50px;
}

.hero .slide-content .btn:last-child {
  margin-left: 30px;
}

.hero .arr-left,
.hero .arr-right {
  font-size: 3rem;
  display: block;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 85%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
}

.hero .arr-left:hover,
.hero .arr-right:hover {
  cursor: pointer;
}

.hero .arr-right {
  right: 15px;
}

.hero .diag-bg {
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 100% 100%, 100% 0);
  background-color: rgba(240, 0, 255, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero .texture {
  width: 100%;
  height: 100%;
  background: url("../images/hero-texture.png") no-repeat center;
  background-size: cover;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.02);
  position: absolute;
  left: 0;
  bottom: 29%;
}

.hero::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.02);
  position: absolute;
  left: 0;
  bottom: 58%;
}

/*-----------------------------------
    1 - Hero 2
------------------------------------*/
.hero2 {
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.hero2 .mainimg {
  position: relative;
  width: 100%;
  min-width: 750px;
  height: 420px;
  margin-left: auto;
  object-fit: cover;
  background: url(../images/servicebg.png) center center / cover no-repeat;
	z-index: 8;
}

.hero2 .title {
	position: absolute;
	font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
	font-size: 90px;
	color: white;
	z-index: 9;
	margin-left: auto;
	margin-right: auto;
	max-width: 1320px;
	left: 80px;
	top: 120px;
	letter-spacing: 0.75vw;
	line-height: 80%;
}
.gray {color: #5d5d5d;
line-height: 100%;}

.hero2 .titlejp {
	position: absolute;
	font-size: 36px;
	color: #424242;
	z-index: 9;
	margin-left: auto;
	margin-right: auto;
	max-width: 1320px;
	left: 84px;
	top: 490px;
	letter-spacing: 1.2vw;
	font-weight: bold;
	line-height: 180%;
}

.hero2 .container {
  position: relative;
  z-index: 5;
}

.hero2 .slide-content {
  min-height: 600px;
  color: #fff;
}

.hero2 .slide-content span {
  color: #ee1515;
}

.hero2 .slide-content h1 {
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.56);
  text-transform: uppercase;
  -webkit-transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
          transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
  font-weight: bold;
}

.hero2 .slide-content p {
  color: #170936;
  -webkit-transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
          transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
  padding: 35px 0 35px 30px;
  background-color: rgba(255, 255, 255, 0.51);
  border-top-right-radius: 100px;
  border-bottom-left-radius: 10px;
  margin-bottom: 0;
}

.hero2 .slide-content .btn {
  margin-top: 50px;
}

.hero2 .slide-content .btn:last-child {
  margin-left: 30px;
}

.hero2 .arr-left,
.hero2 .arr-right {
  font-size: 3rem;
  display: block;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 85%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
}

.hero2 .arr-left:hover,
.hero2 .arr-right:hover {
  cursor: pointer;
}

.hero2 .arr-right {
  right: 15px;
}

.hero2 .diag-bg {
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 100% 100%, 100% 0);
  background-color: rgba(240, 0, 255, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero2 .texture {
  width: 100%;
  height: 100%;
  background: url("../images/hero-texture.png") no-repeat center;
  background-size: cover;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero2::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.02);
  position: absolute;
  left: 0;
  bottom: 29%;
}

.hero2::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.02);
  position: absolute;
  left: 0;
  bottom: 58%;
}


/*-----------------------------------
    1 - Hero 3
------------------------------------*/
.hero3 {
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.hero3 .mainimg {
  position: relative;
  width: 100%;
  min-width: 750px;
  height: 420px;
  margin-left: auto;
  object-fit: cover;
  background: url(../images/profilebg.jpg) center center / cover no-repeat;
	z-index: 8;
}

.hero3 .title {
	position: absolute;
	font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
	font-size: 90px;
	color: white;
	z-index: 9;
	margin-left: auto;
	margin-right: auto;
	max-width: 1320px;
	left: 80px;
	top: 120px;
	letter-spacing: 0.75vw;
	line-height: 80%;
}
.gray {color: #5d5d5d;
line-height: 100%;}

.hero3 .titlejp {
	position: absolute;
	font-size: 36px;
	color: #424242;
	z-index: 9;
	margin-left: auto;
	margin-right: auto;
	max-width: 1320px;
	left: 84px;
	top: 490px;
	letter-spacing: 1.2vw;
	font-weight: bold;
	line-height: 180%;
}

.hero3 .container {
  position: relative;
  z-index: 5;
}

.hero3 .slide-content {
  min-height: 600px;
  color: #fff;
}

.hero3 .slide-content span {
  color: #ee1515;
}

.hero3 .slide-content h1 {
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.56);
  text-transform: uppercase;
  -webkit-transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
          transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
  font-weight: bold;
}

.hero3 .slide-content p {
  color: #170936;
  -webkit-transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
          transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
  padding: 35px 0 35px 30px;
  background-color: rgba(255, 255, 255, 0.51);
  border-top-right-radius: 100px;
  border-bottom-left-radius: 10px;
  margin-bottom: 0;
}

.hero3 .slide-content .btn {
  margin-top: 50px;
}

.hero3 .slide-content .btn:last-child {
  margin-left: 30px;
}

.hero3 .arr-left,
.hero3 .arr-right {
  font-size: 3rem;
  display: block;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 85%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
}

.hero3 .arr-left:hover,
.hero3 .arr-right:hover {
  cursor: pointer;
}

.hero3 .arr-right {
  right: 15px;
}

.hero3 .diag-bg {
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 100% 100%, 100% 0);
  background-color: rgba(240, 0, 255, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero3 .texture {
  width: 100%;
  height: 100%;
  background: url("../images/hero-texture.png") no-repeat center;
  background-size: cover;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero3::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.02);
  position: absolute;
  left: 0;
  bottom: 29%;
}

.hero3::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.02);
  position: absolute;
  left: 0;
  bottom: 58%;
}

/*-----------------------------------
    1 - Hero 4
------------------------------------*/
.hero4 {
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.hero4 .mainimg {
  position: relative;
  width: 100%;
  min-width: 750px;
  height: 420px;
  margin-left: auto;
  object-fit: cover;
  background: url(../images/contactbg.jpg) center center / cover no-repeat;
	z-index: 8;
}

.hero4 .title {
	position: absolute;
	font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
	font-size: 90px;
	color: white;
	z-index: 9;
	margin-left: auto;
	margin-right: auto;
	max-width: 1320px;
	left: 80px;
	top: 120px;
	letter-spacing: 0.75vw;
	line-height: 80%;
}
.gray {color: #5d5d5d;
line-height: 100%;}

.hero4 .titlejp {
	position: absolute;
	font-size: 36px;
	color: #424242;
	z-index: 9;
	margin-left: auto;
	margin-right: auto;
	max-width: 1320px;
	left: 84px;
	top: 490px;
	letter-spacing: 1.2vw;
	font-weight: bold;
	line-height: 180%;
}

.hero4 .container {
  position: relative;
  z-index: 5;
}

.hero4 .slide-content {
  min-height: 600px;
  color: #fff;
}

.hero4 .slide-content span {
  color: #ee1515;
}

.hero4 .slide-content h1 {
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.56);
  text-transform: uppercase;
  -webkit-transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
          transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
  font-weight: bold;
}

.hero4 .slide-content p {
  color: #170936;
  -webkit-transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
          transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
  padding: 35px 0 35px 30px;
  background-color: rgba(255, 255, 255, 0.51);
  border-top-right-radius: 100px;
  border-bottom-left-radius: 10px;
  margin-bottom: 0;
}

.hero4 .slide-content .btn {
  margin-top: 50px;
}

.hero4 .slide-content .btn:last-child {
  margin-left: 30px;
}

.hero4 .arr-left,
.hero4 .arr-right {
  font-size: 3rem;
  display: block;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 85%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
}

.hero4 .arr-left:hover,
.hero4 .arr-right:hover {
  cursor: pointer;
}

.hero3 .arr-right {
  right: 15px;
}

.hero4 .diag-bg {
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 100% 100%, 100% 0);
  background-color: rgba(240, 0, 255, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero4 .texture {
  width: 100%;
  height: 100%;
  background: url("../images/hero-texture.png") no-repeat center;
  background-size: cover;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero4::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.02);
  position: absolute;
  left: 0;
  bottom: 29%;
}

.hero4::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.02);
  position: absolute;
  left: 0;
  bottom: 58%;
}


@media screen and (max-width: 896px) {
	.hero {
  background-size: cover;
  position: relative;
  z-index: 0;
		overflow: hidden;
}
	.hero .mainimg {
  position: relative;
  width: 100%;
  height: 360px;
  margin-bottom: 240px;
  margin-left: auto;
  object-fit: cover;
border-bottom-left-radius: 0px;
  background: url(../images/topimg.png) 0 center / cover no-repeat;
	z-index: 8;
}

.hero .title {
	position: absolute;
	font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
	font-size: 60px;
	color: #5d5d5d;
	z-index: 9;
	margin-left: auto;
	margin-right: auto;
	left: 40px;
	top: 285px;
	letter-spacing: 0.75vw;
	line-height: 80%;
}
	.gray {color: #5d5d5d;
line-height: 100%;}

	.hero .titlejp {
	position: absolute;
	font-size: 24px;
	color: #424242;
	z-index: 9;
	margin-left: auto;
	margin-right: auto;
	max-width: 1320px;
	left: 43px;
	top: 520px;
	letter-spacing: 1.2vw;
	font-weight: bold;
	line-height: 180%;
}
	
	.hero2 .mainimg {
  position: relative;
  width: 100%;
  min-width: 750px;
  height: 280px;
  margin-left: auto;
  object-fit: cover;
  background: url(../images/servicebg.png) center center / cover no-repeat;
	z-index: 8;
}
	.hero3 .mainimg {
  position: relative;
  width: 100%;
  min-width: 750px;
  height: 280px;
  margin-left: auto;
  object-fit: cover;
  background: url(../images/profilebg.jpg) center center / cover no-repeat;
	z-index: 8;
}
	.hero4 .mainimg {
  position: relative;
  width: 100%;
  min-width: 750px;
  height: 280px;
  margin-left: auto;
  object-fit: cover;
  background: url(../images/contactbg.jpg) center center / cover no-repeat;
	z-index: 8;
}
}

@media screen and (max-width: 420px) {
	.hero {
  background-size: cover;
  position: relative;
  z-index: 0;
		overflow: hidden;
}
	.hero .mainimg {
  position: relative;
  width: 100%;
  height: 360px;
  margin-bottom: 240px;
  margin-left: auto;
  object-fit: cover;
border-bottom-left-radius: 0px;
  background: url(../images/topimg.png) -250px center / cover no-repeat;
	z-index: 8;
}
}
/*-----------------------------------
    1 - CTA
------------------------------------*/
.cta-content {
  padding: 30px 0 90px;
  color: #fff;
  background-color: #ee1515;
  position: relative;
  z-index: 1;
}

.cta-content::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(24, 9, 53, 0.77);
  position: absolute;
  top: -25px;
  left: -1px;
  z-index: -1;
  transition: all 0.2s ease-in-out;
}

.cta-content .subscribe-btn {
  align-self: flex-end;
  margin-right: 30px;
}

/*-----------------------------------
    1 - Services
------------------------------------*/


.title {
}

.title h6 {
  letter-spacing: 4px;
  margin-bottom: 30px;
		font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
color: #0ebccc;
	font-size: 22px;
}

.title h1 {
  font-size: 34px;
	color: #424242;
	letter-spacing: 0.2vw;
	  margin-bottom: 30px;
}


.title .title-blue {
  color: #26264b;
}

.title .title-primary {
  color: #ee1515;
}

.services .bg{
	position: relative;
	width: 100%;
	height: 280px;
	  object-fit: cover;
  background: url(../images/servicebg.png) center center / cover no-repeat;
	margin-bottom: 60px;
}

.services .images{
	position: relative;
	width: 100%;
	height: 570px;
	  object-fit: cover;
	margin-bottom: 60px;
}

.services .free{
	position: absolute;
	top: -150px;
	right:0;
}


.services .icon{
	position: absolute;
  top: 90%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  margin: auto;
}

.services .iconsbg{
	background: #f9f9f9;
width: 100%;
padding: 40px;
border-radius: 10px;
text-align: center;
	margin-top: 60px;
	margin-bottom: 80px;
}

.services .icons{
	width: 100%;
	height: 140px;
}

.services {
  padding: 80px 0 50px;
}

.contact {
  padding: 0 0 50px;
}

.services .title {
  margin-bottom: 20px;
		position: relative;
}

.services .media {
  margin: 20px 0;
}

.services p{
  line-height: 1.8em;
	margin-bottom: 20px;
	text-align: center;
}

@media screen and (max-width: 896px) {
	.services .bg{
	position: relative;
	width: 100%;
	height: 280px;
	  object-fit: cover;
  background: url(../images/servicebg.png) center center / cover no-repeat;
	margin-bottom: 60px;
}
	.services .free{
	position: absolute;
	top: -123px;
	left: 0;
		right: 0;
		margin: auto;
		max-width: 50%;
}
		.services .free img {
	max-width: 70%;
}
	.services .icons{
	width: 100%;
	height: 130px;
}
	
	.services .images{
	position: relative;
	width: 100%;
	height: 200px;
	  object-fit: cover;
	margin-bottom: 60px;
}
	.services .icon{
	position: absolute;
  top: 78%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  margin: auto;
}
	.services {
  padding: 80px 0 10px;
}
	.services .iconsbg{
	margin-bottom: 18px;
}
}
@media screen and (max-width: 896px) {
.services p{
  line-height: 1.8em;
	text-align: left;
	margin-bottom: 20px;
}
	.services h2 {
	font-size: 1.2rem;
	margin-top: 1em;
	margin-bottom: 1rem;
}
}

.services h5 {
  color: #0ebccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
font-size: 1rem;
}

.services .media p{
	height: 140px;
	text-align: left;
}

.services h2 {
	font-size: 1.4rem;
	margin-top: 1em;
	margin-bottom: 1rem;
}

.his {
	padding-left: 1.1rem;
	color: #999999;
	display: block;
}

.history {
	padding-left: 1.1rem;
	color: #999999;
	display: block;
	margin-bottom: 0.8vw;
}


/*-----------------------------------
    1 - privacy
------------------------------------*/


.privacy .bg{
	position: relative;
	width: 100%;
	height: 280px;
	  object-fit: cover;
  background: url(../images/servicebg.png) center center / cover no-repeat;
	margin-bottom: 60px;
}

.privacy .images{
	position: relative;
	width: 100%;
	height: 570px;
	  object-fit: cover;
	margin-bottom: 60px;
}

.privacy .free{
	position: absolute;
	top: -150px;
	left: 940px;
}


.privacy .icon{
	position: absolute;
  top: 90%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  margin: auto;
}

.privacy .iconsbg{
	background: #f9f9f9;
width: 100%;
padding: 40px;
border-radius: 10px;
text-align: center;
	margin-top: 60px;
}

.privacy .icons{
	width: 100%;
	height: 140px;
}

.privacy {
  padding: 80px 0 50px;
}


.privacy .title {
  margin-bottom: 20px;
		position: relative;
}

.privacy .media {
  margin: 20px 0;
}

.privacy p{
  line-height: 1.8em;
	margin-bottom: 20px;
	text-align: left;
}

.privacy h4{
	text-align: left;
	font-size: 1rem;
}

.privacy ul{
	text-align: left;
}
@media screen and (max-width: 896px) {
.privacy p{
  line-height: 1.8em;
	text-align: left;
	margin-bottom: 20px;
}
	.privacy h2 {
	font-size: 1.2rem;
	margin-top: 1em;
	margin-bottom: 1rem;
}
}

.privacy h5 {
  color: #0ebccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
font-size: 1rem;
}



.privacy h2 {
	font-size: 1.4rem;
	margin-top: 1em;
	margin-bottom: 1rem;
}
}
/*-----------------------------------
    1 - Prolile
------------------------------------*/
.profile2 .mainimg {
  position: absolute;
  width: 50%;
  min-width: 440px;
  height: 440px;
  margin-bottom: 80px;
  object-fit: cover;
  background: url(../images/profile_1.jpg) center center / cover no-repeat;
	z-index: 8;
}

.profile2 {
  padding: 80px 0 50px;
}

.profile3 .mainimg {
  position: absolute;
  width: 50%;
  min-width: 440px;
  height: 580px;
  margin-bottom: 80px;
  object-fit: cover;
  background: url(../images/profile.jpg) center center / cover no-repeat;
	z-index: 8;
}

.profile3 {
  padding: 0 0 50px;
}

.profile4 .mainimg {
  position: absolute;
  width: 50%;
  min-width: 440px;
  height: 580px;
  margin-bottom: 80px;
  object-fit: cover;
  background: url(../images/profile_1.jpg) center center / cover no-repeat;
	z-index: 8;
}

.profile4 {
  padding: 80px 0 50px;
}

@media screen and (max-width: 896px) {
	.profile2 .mainimg {
  position: absolute;
  width: 50%;
  min-width: 100%;
  height: 280px;
  margin-bottom: 80px;
  object-fit: cover;
  background: url(../images/profile_1.jpg) center center / cover no-repeat;
	z-index: 8;
}

.profile2 {
  padding: 80px 0 50px;
	  padding: 80px 0;
}
.profile3 .mainimg {
  position: absolute;
  width: 100%;
  min-width: 440px;
  height: 260px;
  margin-bottom: 80px;
  object-fit: cover;
  background: url(../images/profile.jpg) center 0px / cover no-repeat;
	z-index: 8;
}	
	.profile4 .mainimg {
  position: absolute;
  width: 50%;
  min-width: 100%;
  height: 280px;
  margin-bottom: 80px;
  object-fit: cover;
  background: url(../images/profile_1.jpg) center center / cover no-repeat;
	z-index: 8;
}

.profile4 {
  padding: 80px 0 50px;
	  padding: 80px 0;
}
}

.profile {
  background-color: #fafafa;
  width: 60%;
  margin: 0 0 0 auto;
}

.profile .container{
	width: 60%;
padding: 40px 10px;
}

.profile p {
	margin-bottom: 40px;
}


.title h6 {
  letter-spacing: 4px;
  margin-bottom: 30px;
		font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
color: #0ebccc;
	font-size: 22px;
}

.title h1 {
  font-size: 34px;
	color: #424242;
	letter-spacing: 0.2vw;
	  margin-bottom: 30px;
	margin-top: 16px;
}

@media screen and (max-width: 896px) {
.title h1 {
  font-size: 26px;
	color: #424242;
	letter-spacing: 0.2vw;
	  margin-bottom: 14px;
	margin-top: 16px;
	line-height: 150%;
}
	.profile {
  background-color: #fafafa;
  width: 100%;
  margin: 0 0 0 auto;
}
	.profile .container{
	width: 100%;
padding: 246px 15px 0px 15px;
}
}

.title .en{
  margin-bottom: 30px;
		font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
color: #0ebccc;
	font-size: 18px;
	margin-left: 20px;
}

.position{
 font-size: 14px;
	color: #424242;
}

/*-----------------------------------
    1 - Featured
------------------------------------*/
.featured {
  padding: 80px 0;
  background-color: #fafafa;
}

.featured p {
  margin: 35px 0 53px;
}

.featured .media i {
  font-size: 24px;
  color: #ee1515;
}

.featured .media h5 {
  text-transform: uppercase;
  color: #26264b;
}

.featured .btn {
  margin-top: 80px;
}

.featured-img {
  position: relative;
  height: 530px;
  margin-top: 60px;
}

.featured-big {
  position: absolute;
  bottom: 0;
  right: 0;
}

.featured-small {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px 25px 0 0;
  background-color: #fff;
}

/*-----------------------------------
    1 - Recent Posts
------------------------------------*/
.recent-posts {
  padding: 65px 0 100px;
}

.recent-posts .btn {
  margin-top: 60px;
}

.recent-posts .row .col-lg-6:nth-of-type(odd) .post-thumb {
  margin-top: 30px;
}

.recent-posts .row .col-lg-6:nth-of-type(even) .post-thumb {
  margin-bottom: 30px;
}

.single-rpost {
  margin: 35px 0 0;
}

.post-thumb {
  flex: 0 0 273px;
}

.post-content {
  color: #ccc;
}

.post-content time {
  font-size: 14px;
  color: #ccc;
}

.post-content h3 {
  margin: 10px 0 2px;
}

.post-content h3 a {
  color: #26264b;
  font-weight: 600;
}

.post-content h3 a:hover {
  font-weight: 700;
  text-decoration: none;
}

.post-content a {
  color: #ccc;
}

.post-content a:hover {
  color: #26264b;
}

.post-content .post-btn {
  color: #6e6e6e;
  text-align: center;
  font-size: 10px;
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  background-color: whitesmoke;
}

.post-content .post-btn:hover {
  color: #fff;
  background-color: #ee1515;
}

/*-----------------------------------
    1 - Trust
------------------------------------*/
.trust {
  padding: 75px 0;
  background-color: #26264b;
  color: #ddd;
  position: relative;
}

.trust .title {
  margin-bottom: 46px;
}

.trust h1 {
  color: #fff;
}

.trust h5 {
  font-size: 24px;
  color: #fefefe;
  margin: 28px 0 12px;
}

.trust ul {
  color: #fff;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}

.trust li {
  margin-bottom: 15px;
}

.trust .gallery img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.trust .gal-img {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.trust .gal-img i {
  font-size: 72px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
}

.trust .gal-img::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.trust .gal-img:hover {
  cursor: pointer;
}

.trust .gal-img:hover i {
  opacity: 1;
}

.trust .gal-img:hover::after {
  opacity: 1;
}

.trust .gal-img3 {
  top: -50%;
  left: 50%;
}

/*-----------------------------------
    1 - Pricing Table
------------------------------------*/
.pricing-table {
  padding: 100px 0;
}

.single-pricing {
  padding: 65px 0 40px;
  margin-top: 23px;
  color: #fff;
  background: #26264b;
  border: 0px solid #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}

.single-pricing span {
  font-size: 12px;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 15px;
  background-color: transparent;
  position: absolute;
  top: 28px;
  right: 6px;
  transition: all 0.2s ease-in-out;
}

.single-pricing h2 {
  margin-bottom: -5px;
}

.single-pricing .desc {
  color: #9d9d9d;
  padding-bottom: 30px;
  margin-bottom: 32px;
  border-bottom: 2px solid #2f2f2f;
  transition: all 0.2s ease-in-out;
}

.single-pricing .price {
  font-size: 2rem;
  margin-bottom: 8px;
}

.single-pricing p {
  color: #ddd;
}

.single-pricing p:last-of-type {
  margin-bottom: 25px;
}

.single-pricing svg {
  width: 170px;
  position: absolute;
  top: -45px;
  right: -60px;
  z-index: -1;
  transition: all 0.5s ease-in-out;
}

.single-pricing:hover {
  border: 4px solid #fff;
  box-shadow: 0px 10px 18px 0px rgba(0, 0, 0, 0.16);
  margin: 19px 0 -4px;
}

.single-pricing:hover span {
  background-color: #26264b;
}

.single-pricing:hover .desc {
  color: #fff;
  border-bottom: 2px solid rgba(245, 245, 245, 0.322);
}

.single-pricing:hover svg {
  width: 500%;
  top: -200%;
  right: -50%;
}

.single-pricing:hover .btn {
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);
}

/*-----------------------------------
    1 - Testimonials
------------------------------------*/

.testimonial-and-clients2 {
  margin-top: 8vw;
	margin-bottom: 4vw;
}

.testimonial-and-clients {
  background: #f9f9f9;
}

.testimonials .arr-left,
.testimonials .arr-right {
  font-size: 3rem;
  display: block;
  color: #0ebccc;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
}

.testimonials .arr-left:hover,
.testimonials .arr-right:hover {
  cursor: pointer;
}

.testimonials .arr-right {
  right: 15px;
}

.testimonials {
  padding: 95px 0 85px;
  color: #424242;
}

.testimonials .test-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
	margin-bottom: 2vw;
}

.testimonials .test-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 90px;
}

.testimonials h5 {
  color: #424242;
  margin: 15px 0;
}

.testimonials span {
  color: #424242;
  display: inline-block;
  margin: 0 0 17px;
}

.testimonials p {
  font-size: 17px;
  line-height: 27px;
	position: relative;
	text-align: left;
	color: #424242;
}

.testimonials p::before{
	content: url(../images/voice_b.png);
	position: absolute;
	z-index: -1;
    top: -40px;
    left: -40px;
}

.testimonials p::after{
	content: url(../images/voice_a.png);
	position: absolute;
	z-index: -1;
    right: -40px;
}

.test-pagination {
  text-align: center;
  margin-top: 8px;
}

.test-pagination span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #717171;
  margin-bottom: 0;
  transition: all 0.2s ease-in-out;
}

.test-pagination span:hover {
  cursor: pointer;
}

.test-pagination span:not(:last-child) {
  margin-right: 20px;
}

.test-pagination span.swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background-color: #0ebccc;
}

.contact {
	margin-top: 40px;
}

.contact p {
  font-size: 30px;
  line-height: 27px;
  position: relative;
  color: #424242;
font-family: din-2014, sans-serif;
font-weight: 400;
font-style: normal;
			letter-spacing: 0.1vw;
	border-right: thin solid #424242;
	padding: 10px;
}

.tel{
	font-size: 42px;
			font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
	color: #424242;
}

@media screen and (max-width: 896px) {
	.testimonial-and-clients2 {
  margin-top: 12vw;
	margin-bottom: 4vw;
}
	.testimonials {
  padding: 50px 0 85px;
  color: #424242;
}
	.testimonials p::before{
	display: none;
}

.testimonials p::after{
	display: none;
}
	.contact p {
  font-size: 30px;
  line-height: 27px;
  position: relative;
  color: #424242;
font-family: din-2014, sans-serif;
font-weight: 400;
font-style: normal;
			letter-spacing: 0.1vw;
	border-right: none;
	padding: 10px;
}

.tel{
	font-size: 35px;
			font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
	color: #424242;
}
}
/*-----------------------------------
    1 - Clients
------------------------------------*/
.clients {
  padding: 70px 0;
}

.clients .swiper-wrapper {
  text-align: center;
}

/*-----------------------------------
    1 - CTA 2
------------------------------------*/
.cta2 {
  margin: 50px 0 -30px;
}

/*-----------------------------------
    1 - Footer
------------------------------------*/
footer {
background: #f9f9f9;
}

/*-----------------------------------
    1 - Footer Widgets
------------------------------------*/
.footer-widgets {
  padding: 75px 0;
}

.footer-widgets .col-md-6 .single-widget:not(:first-child) .widget-tiltle {
  margin: 40px 0 30px;
}

.single-widget {
  color: #aaa;
}

.single-widget .widget-tiltle {
  font-size: 28px;
  text-transform: uppercase;
  color: #424242;
	font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
	letter-spacing: 0.1vw;
}

.single-widget i {
  color: #ee1515;
}

.single-widget h6 {
  color: #0ebccc;
		font-family: din-2014, sans-serif;
font-weight: 400;
font-style: normal;
	letter-spacing: 0.1vw;
	font-size: 22px;
}

.single-widget .tel1 {
  color: #0ebccc;
		font-family: din-2014, sans-serif;
font-weight: 400;
font-style: normal;
	letter-spacing: 0.1vw;
	font-size: 22px;
}

.single-widget .tel2 {
	  color: #0ebccc;
		font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
	letter-spacing: 0.1vw;
	font-size: 22px;
	margin-right: 30px;
}

.single-widget .media {
  margin-bottom: 20px;
}



.contact-widget i {
  font-size: 22px;
}

.contact-widget p {
  font-size: 18px;
color: #424242;
	margin-bottom: 40px;
}

.twitter-widget i,
.twitter-widget h6 {
  color: #777;
}

.twitter-widget p {
color: #424242;
}

span {
  color: #fff;
}

.recent-post-widget .rcnt-img {
  width: 68px;
  height: 68px;
  border-radius: 4px;
  overflow: hidden;
}

.recent-post-widget .rcnt-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recent-post-widget a {
  color: #fff;
}

.recent-post-widget p {
  font-size: 18px;
color: #424242;
}

.recent-post-widget i {
  margin-right: 10px;
}

.recent-post-widget i:last-of-type {
  margin-left: 15px;
}

.tags-widget {
  margin: -10px -10px 0 0;
}

.tags-widget a {
  color: #aaa;
  display: inline-block;
  padding: 10px 12px;
  border-radius: 2px;
  background-color: #363636;
  font-size: 14px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  margin: 10px 10px 0 0;
}

.tags-widget a:hover {
  text-decoration: none;
  color: #26264b;
  background-color: #ee1515;
}

.subscribe-widget form {
  margin-bottom: 10px;
}

.subscribe-widget input {
  font-size: 14px;
  padding: 0px 10px;
  background-color: #444;
  border: none;
  line-height: 0;
  position: relative;
  z-index: 1;
}

.subscribe-widget input:focus {
  outline: none;
  box-shadow: none;
}

.subscribe-widget button {
  background: #ee1515;
  border: none;
  padding: 9px 14px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-left: -10px;
  position: relative;
  z-index: 5;
}

.subscribe-widget button i {
  color: #fff;
}

.subscribe-widget .social-nav {
  margin-top: 32px;
}

.subscribe-widget .social-nav a {
  display: inline-block;
  text-align: center;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: #fff;
  color: #ddd;
  background-color: #444;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-right: 10px;
}

.subscribe-widget .social-nav a i {
  color: #ddd;
}

.subscribe-widget .social-nav a:hover {
  background-color: #ee1515;
}
@media screen and (max-width: 896px) {
	.footer-widgets {
  padding: 40px 15px 0;
}
	.single-widget .widget-tiltle {
  font-size: 28px;
  text-transform: uppercase;
  color: #424242;
	font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
	letter-spacing: 0.1vw;
		text-align: center;
}

	.contact-widget p {
  font-size: 18px;
color: #424242;
	margin-bottom: 40px;
	text-align: center;
}

.single-widget h6 {
  color: #0ebccc;
		font-family: din-2014, sans-serif;
font-weight: 400;
font-style: normal;
	letter-spacing: 0.1vw;
	font-size: 22px;
			text-align: center;
}
.single-widget .media {
  margin-bottom: 20px;
	text-align: center;
}
	.single-widget .media p {
  font-size: 12px;
}
	
	.single-widget .tel2 {
	  color: #0ebccc;
		font-family: din-2014, sans-serif;
font-weight: 700;
font-style: normal;
	letter-spacing: 0.1vw;
	font-size: 22px;
		margin-bottom: 20px;
			margin-right: 0px;
}
}
/*-----------------------------------
    1 - Foot Note
------------------------------------*/
.foot-note {
padding-bottom: 35px;
  background-color: #f9f9f9;
  color: #424242;
}

.foot-note p {
  text-align: center;
			font-family: din-2014, sans-serif;
font-weight: 400;
font-style: normal;
}

.foot-note a {
  color: #26264b;
}

.foot-note a:last-child {
  margin-left: 30px;
}

.foot-note a.fh5-link {
  margin-left: 0;
}
