/* @import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Dancing+Script:400,700'); */
@font-face{
  font-family: iranSanss;
  src: url('./IRANSans/fonts/woff/IRANSansWeb_Bold.woff');
}
body{
  font-family: iranSanss;
  src: url('./IRANSans/fonts/woff/IRANSansWeb_Bold.woff');
	/* font-family: 'Poppins', sans-serif; */
	font-weight: 300;
	font-size: 15px;
	line-height: 1.6;
	color: #fff;
	background-color: #1f2029;
	overflow: hidden;
	height: 100vh;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	perspective: 800px;
}
a {
	cursor: pointer;
}
a:hover {
	text-decoration: none;
}
::selection {
	color: #c4c3ca;
	background-color: #000;
}
::-moz-selection {
	color: #c4c3ca;
	background-color: #000;
}

/* #Cursor
================================================== */

.cursor,
.cursor2,
.cursor3{
	position: fixed;
	border-radius: 50%;	
	transform: translateX(-50%) translateY(-50%);
	pointer-events: none;
	left: -100px;
	top: 50%;
	mix-blend-mode: difference;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}
.cursor{
	background-color: #fff;
	height: 0;
	width: 0;
	z-index: 99999;
}
.cursor2,.cursor3{
	height: 36px;
	width: 36px;
	z-index:99998;
	-webkit-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out
}
.cursor2.hover,
.cursor3.hover{
	-webkit-transform:scale(2) translateX(-25%) translateY(-25%);
	transform:scale(2) translateX(-25%) translateY(-25%);
	border:none
}
.cursor2{
	border: 2px solid #fff;
}
.cursor2.hover{
	background: rgba(255,255,255,1);
	border-color: transparent;
}

@media screen and (max-width: 1200px){
	.cursor,.cursor2,.cursor3{
		display: none
	}
}

/* #Primary style
================================================== */

.hero-section {
    position: relative;
	width: 100%;
	display: block;
	overflow: hidden;
	height: 100vh;
	background-image: url('./image/01.jpg');
	background-size: cover;
	background-position: center;
	transform: scale(1) rotateX(0);
	box-shadow: 0 0 40px rgba(0,0,0,0.2);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	-webkit-transition-delay: 400ms;
	transition-delay: 400ms;
	transform-origin: center top;
}
.hero-section h1{
    color: #fff;
	font-size: 5vw;
	line-height: 1;
	font-weight: 900;
}
.hero-section .dancing{
    font-family: 'Dancing Script', cursive;
	letter-spacing: 1px;
	color: #866BAF;
	font-size: 26px;
	line-height: 1;
	font-weight: 700;
}
@media screen and (max-width: 580px){
	.hero-section .dancing{
		font-size: 18px;
	}
}
.hero-section p{
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
	color: #fff;
	letter-spacing: 1px;
}
.hero-section p span{
	margin-left: 15px;
	margin-right: 15px;
	position: relative;
	display: inline-block;
	cursor: pointer;
	padding-bottom: 35px;
}
.hero-section p span:before {
	position: absolute;
	content: '';
    top: 25px;
	/* bottom: 10px; */
	left: 50%;
	height: 30px;
	width: 30px;
	margin-left: -15px;
	z-index: -1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30px 30px;
	background-image: url('http://www.ivang-design.com/svg-load/portfolio/down.svg');
	opacity: 0.2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.hero-section p span:hover:before {
	opacity: 1;
	bottom: 5px;
}

body.about-on .hero-section {
	transform: scale(0.75);
	-webkit-transition-delay: 0ms;
	transition-delay: 0ms;
}
body.contact-on .hero-section {
	transform: scale(0.75);
	-webkit-transition-delay: 0ms;
	transition-delay: 0ms;
}
body.travel-on .hero-section {
	transform: rotateX(-10deg);
	-webkit-transition-delay: 0ms;
	transition-delay: 0ms;
}
body.wildlife-on .hero-section {
	transform: rotateX(-10deg);
	-webkit-transition-delay: 0ms;
	transition-delay: 0ms;
}
body.nature-on .hero-section {
	transform: rotateX(-10deg);
	-webkit-transition-delay: 0ms;
	transition-delay: 0ms;
}
.about-text {
    position: absolute;
	font-size: 17px;
	line-height: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 2px;
	top: 50%;
	left: 40px;
	cursor: pointer;
	z-index: 2;
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
	transform: translateY(-50%);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.about-text:before {
	position: absolute;
	content: '';
	top: 50%;
	left: -5px;
	height: 30px;
	width: 30px;
	margin-top: -15px;
	z-index: -1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30px 30px;
	background-image: url('http://www.ivang-design.com/svg-load/portfolio/left.svg');
	opacity: 0.2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.about-text:hover:before {
	opacity: 1;
	left: -30px;
}
.about-section {
    position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: block;
	overflow: hidden;
	height: 100vh;
	background-color: rgba(31,32,41,1);
	transform: translateX(-100%);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	z-index: 10;
}
body.about-on .about-section {
	transform: translateX(0);
	-webkit-transition-delay: 400ms;
	transition-delay: 400ms;
}
.about-close {
    position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	display: block;
	overflow: hidden;
	height: 30px;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 36px 36px;
	background-image: url('http://www.ivang-design.com/svg-load/portfolio/close.svg');
	cursor: pointer;
	z-index: 11;
}
.about-close:hover {
    transform: rotate(90deg);
}
.section-center {
    background-color: rgba(0,0,0,.5);
    border-radius: 50px;
    position: absolute;
	width: 50%;
    height: 300px;
	left: 330px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}
.about-section img {
    width: 100px;
	height: 100px;
	border-radius: 4px;
	display: block;
	margin: 0 auto;
	box-shadow: 0 0 20px rgba(0,0,0,0.15);
}
.about-section p span {
    font-family: 'Dancing Script', cursive;
	letter-spacing: 1px;
	color: #866BAF;
	font-size: 25px;
	font-weight: 400;
}

.contact-text {
    position: absolute;
	font-size: 17px;
	line-height: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 2px;
	top: 50%;
	right: 40px;
	cursor: pointer;
	z-index: 2;
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
	transform: translateY(-50%) rotate(180deg);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.contact-text:before {
	position: absolute;
	content: '';
	top: 50%;
	left: -5px;
	height: 30px;
	width: 30px;
	margin-top: -15px;
	z-index: -1;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30px 30px;
	background-image: url('http://www.ivang-design.com/svg-load/portfolio/left.svg');
	opacity: 0.2;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.contact-text:hover:before {
	opacity: 1;
	left: -30px;
}
.contact-section {
    position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: block;
	overflow: hidden;
	height: 100vh;
	background-color: rgba(31,32,41,1);
	transform: translateX(100%);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	z-index: 10;
}
body.contact-on .contact-section {
	transform: translateX(0);
	-webkit-transition-delay: 400ms;
	transition-delay: 400ms;
}
.contact-close {
    position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	display: block;
	overflow: hidden;
	height: 30px;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 36px 36px;
	background-image: url('http://www.ivang-design.com/svg-load/portfolio/close.svg');
	cursor: pointer;
	z-index: 11;
}
.contact-close:hover {
    transform: rotate(90deg);
}
.contact-section a{
    margin: 0 auto;
	font-size: 32px;
	font-weight: 900;
	letter-spacing: 1px;
	color: #fff;
  display: inline-block;
}
.contact-section .social a{
    margin-left: 8px;
	margin-right: 8px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #866BAF;
}
@media screen and (max-width: 580px){
	.contact-section a{
		font-size: 17px;
	}
	.contact-section .social a{
		margin-left: 3px;
		margin-right: 3px;
		font-size: 13px;
		letter-spacing: 0;
	}
}

.travel-section,
.wildlife-section,
.nature-section {
    position: fixed;
	top: -100%;
	left: 0;
	padding: 100px 0;
	width: 100%;
	height: 100vh;
	display: block;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: rgba(31,32,41,1);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	z-index: 10;
}
.travel-close,
.wildlife-close,
.nature-close {
    position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	display: block;
	overflow: hidden;
	height: 30px;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 36px 36px;
	background-image: url('http://www.ivang-design.com/svg-load/portfolio/close.svg');
	cursor: pointer;
	z-index: 11;
}
.travel-close:hover,
.wildlife-close:hover,
.nature-close:hover {
    transform: rotate(90deg);
}
body.travel-on .travel-section {
	top: 0;
	-webkit-transition-delay: 400ms;
	transition-delay: 400ms;
}
body.wildlife-on .wildlife-section {
	top: 0;
	-webkit-transition-delay: 400ms;
	transition-delay: 400ms;
}
body.nature-on .nature-section {
	top: 0;
	-webkit-transition-delay: 400ms;
	transition-delay: 400ms;
}
.travel-section img,
.wildlife-section img,
.nature-section img {
	margin-top: 30px;
    width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
	box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.travel-section h3,
.wildlife-section h3,
.nature-section h3 {
	font-size: 19px;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 1px;
	color: #f0eded;
	
	
}
.travel-section p,
.wildlife-section p,
.nature-section p {
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: 1px;
}
.travel-section p span,
.wildlife-section p span,
.nature-section p span {
	font-size: 20px;
	line-height: 1.3;
	font-weight: 700;
	color: #866BAF;
}
.wildlife{
    font-weight: 700;
}
/* #Link to page
================================================== */

.link-to-portfolio {
    color: #fff;
    padding-top: 10px;
    /* font-size: 19px; */
    font-weight: 600;
    text-decoration: none;
	  position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 200;
    cursor: pointer;
    width: 100px;
    height: 50px;
    text-align: center;
    border-radius: 3px;
    background-position: center center;
    background-size: 65%;
  background-repeat: no-repeat;
    /* background-image: url('https://assets.codepen.io/1462889/fcy.png'); */
    box-shadow: 0 0 0 2px rgba(255,255,255,.1);
    transition: opacity .2s, border-radius .2s, box-shadow .2s;
    transition-timing-function: ease-out;
}
.link-to-portfolio:hover {
    color: #000;
    opacity: 0.8;
    border-radius: 50%;
    box-shadow: 0 0 0 20px rgba(255,255,255,.1);
}
.C{
    width: 120px;
    border-radius: 50px;
    rotate: 90deg;
}
.B{

    width: 120px;
    border-radius: 50px;
    rotate: 90deg;
}
.text-center{
    margin-top: 25px;
}
/* /////////////////////////////////////////////// */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Pretty Stuff */
.contact-form-container {
  font-family: iranSanss;
  src: url('./IRANSans/fonts/woff/IRANSansWeb_Bold.woff');
  background: #1d2631;
  border-radius: 50px;
  
}

.contact-us {
  position: relative;
  width: 250px;
  background: #091623;
  overflow: hidden;
}
.contact-us:before {
  position: absolute;
  content: "";
  bottom: -50px;
  left: -100px;
  height: 250px;
  width: 400px;
  background-color: rgba(240, 245, 244, 0.164);
  transform: rotate(25deg);
}
.contact-us:after {
  position: absolute;
  content: "";
  bottom: -80px;
  right: -100px;
  height: 270px;
  width: 400px;
  background: #07131f;
  transform: rotate(-25deg);
}

.contact-header {
  color: white;
  position: absolute;
  transform: rotate(-90deg);
  top: 185px;
  left: -105px;
}
.contact-header h1 {
  font-size: 16px;
  color:rgb(160 215 255 / 43%);
}
.services-info{
	background-color: rgba(240, 245, 244, 0.164);
    border-radius: 50px;
    position: absolute;
    top: 600px;
    left: 495px;
    grid-area: phone;
    width: 700px;
    height: fit-content;
    box-shadow: 1px 2px 9px 1px black;
}
.services-info {
	background-color: rgba(240, 245, 244, 0.164);
	padding: 20px;
	max-width: 800px;
	margin: 20px auto;
	border-radius: 50px;
    position: absolute;
    top: 600px;
    left: 495px;
    grid-area: phone;
    width: 700px;
    height: fit-content;
    box-shadow: 1px 2px 9px 1px black;
  }
  
  .services-info h3 {
	font-size: 1.5rem;
	color: #262526;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
  }
  
  .services-info ul {
	list-style: none; /* حذف استایل پیش‌فرض لیست */
	padding: 0;
	margin: 0;
  }
  
  .services-info ul li {
	text-align: center;
	direction: rtl;
	background-size: 20px;
	padding-left: 35px; /* فاصله از سمت چپ برای آیکون */
	font-size: 1.1rem;
	margin-bottom: 12px;
	line-height: 1.7;
	transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .services-info ul li:hover {
	color: #007bff;
	transform: translateX(5px); /* جابجایی کوچک هنگام هاور */
  }
  
  @media (max-width: 768px) {
	.services-info {
	  padding: 15px;
	}
  
	.services-info h3 {
	  font-size: 1.3rem;
	}
  
	.services-info ul li {
	  font-size: 1rem;
	  padding-left: 30px;
	  background-size: 18px;
	}
  }
  
.social-bar {
  position: absolute;
  bottom: 20px;
  left: 75px;
  z-index: 1;
  width: 100px;
}
.social-bar ul {
  list-style-type: none;
}
.social-bar ul li {
  display: inline-block;
  color: white;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  margin-right: -4px;
  font-size: 1.2rem;
}

.header {
  text-align: center;
  padding-top: 20px;
  /* padding-right: 30px; */
}
.header h1 {
  font-weight: lighter;
  color:rgba(240, 245, 244, 0.767);
  font-size: 22px;
  font-family: iranSanss;
  src: url('./IRANSans/fonts/woff/IRANSansWeb_Bold.woff');
  margin-top: 13px;
  margin-right: 35px;
  
}
.header h2 {
  margin-top: 12px;
  font-weight: 300;
  font-size: large;
  
}
.svg-icon{
  padding-bottom: 15px;
    width: 30px;
}
.address, .email, .phone {
  text-align: center;
  padding: 20px 0;
  color: #8b4545;
}
.address h3, .email h3, .phone h3 {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 300;
}
/* .address i, .email i, .phone i {
  color: #b2aeb0;
  font-size: 1.7rem;
  margin-bottom: 20px;
} */

form {
  position: relative;
  width: 440px;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  background: white;
}
form input, form textarea {
  background: white;
  display: block;
  margin: 20px auto;
  width: 100%;
  border: 0;
}
form input {
  height: 40px;
  line-height: 40px;
  outline: 0;
  border-bottom: 1px solid rgba(68, 68, 68, 0.3);
  font-size: 1rem;
  color: rgba(68, 68, 68, 0.8);
}
form textarea {
  border-bottom: 1px solid rgba(68, 68, 68, 0.3);
  resize: none;
  outline: none;
  font-size: 1rem;
  font-family: lato;
  color: rgba(68, 68, 68, 0.8);
}
form button {
  position: absolute;
  display: block;
  height: 40px;
  width: 250px;
  left: 95px;
  border: 0;
  border-radius: 20px;
  bottom: -20px;
  background: #9ED8EB;
  color: white;
  font-size: 1.1rem;
  font-weight: 300;
  outline: none;
}

.contact-form {
  padding-bottom: 40px;
}
@font-face{
    font-family: iranSanss;
    src: url('./IRANSans/fonts/woff/IRANSansWeb_Bold.woff');
}
/* Layout Stuff */
body {
  background: url("./image/3png.jpeg");
  height: 100vh;
  width: 100vw;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  justify-items: center;
  align-items: center;
  font-family: iranSanss;
  src: url('./IRANSans/fonts/woff/IRANSansWeb_Bold.woff');
}

.contact-form-container {
  width: 1000px;
  height: 450px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 0.5fr 0.5fr 2fr;
  grid-template-areas: "contact-us header header header" "contact-us address phone email" "contact-us contact-form contact-form contact-form";
}

.contact-us {
  grid-area: contact-us;
}

.header {
  grid-area: header;
  
}

.address {
  background-color: rgba(240, 245, 244, 0.164);
  border-radius: 50px;
  width: 600px;
  position: relative;
  left: 60px;
  top: 50px;
  grid-area: address;
  box-shadow: 1px 2px 9px 1px black;
}
.h3{
  font-size: 25px;
}

.phone {
  background-color: rgba(240, 245, 244, 0.164);
  border-radius: 50px;
  position: absolute;
  top: 350px;
  left: 495px;
  grid-area: phone;
  width: 700px;
  box-shadow: 1px 2px 9px 1px black;
}

.email {
  padding-left: 70px;
  grid-area: email;
}

.contact-form {
  grid-area: contact-form;
}

.Z{
  position: absolute;
  left: 499px;
}
.H{
  position: absolute;
  left: 500px;
}
iframe{
	width:100% ;
	height:450px;
	margin-top: 100px;
}

@media (min-width: 1400px) and (max-width: 2500px){
	.section-center {
		background-color: rgba(0,0,0,.5);
		border-radius: 50px;
		position: absolute;
		width: 50%;
		height: 300px;
		left: 400px;
		top: 50%;
		transform: translateY(-50%);
		z-index: 1;
	}
	.B{
		width: 130px;
	}
	.C{
		width: 129px;
	}
	iframe{
		width:100% ;
		height:800px;
		margin-top: 70px;

	}
	.contact-form-container{
		width: 1200px;
		height: 500px;
		margin-top: 150px;
	}
	.address{
		left: 140px;

	}
	.phone{
		top: 500px;
		left: 660px;

	}

}
@media (min-width: 481px) and (max-width: 768px){
	.section-center {
		background-color: rgba(0,0,0,.5);
		border-radius: 50px;
		position: absolute;
		width: 60%;
		height: 200px;
		left: 150px;
		top: 50%;
		transform: translateY(-50%);
		z-index: 1;
	}
	.B{
		width: 100px;
	}
	.C{
		width: 99px;
	}
	iframe{
		width:100% ;
		height:400px;
		margin-top: 70px;
	}
	.contact-form-container{
		width: 700px;
		height: 350px;
		margin-top: 5px;
	}
	.contact-form-container .contact-us{
		width: 200px;
		height: 350px;
	}

	.header h1{
		margin-right: 20px;
		font-size: 18px;
	}

	.address{
		width: 400px;
		left: 50px;
	}
	.H {
		position: absolute;
		left: 350px;
	}
	.Z {
		left:350px;}
	.phone{
		width: 400px;
		top: 300px;
		left: 284px;
	}
	.phone h3{
		font-size: 14px;
		margin-right: -50px;
	}
	.address h3{
		margin-right: 25px;
		font-size: 14px;
	}
	.contact-header h1 {
		font-size: 16px;
		margin-top: -15px;
		margin-left: 15px;
		color: rgba(240, 245, 244, 0.164);
	}

}
@media (min-width: 425px) and (max-width: 481px){
	.section-center {
		background-color: rgba(0,0,0,.5);
		border-radius: 50px;
		position: absolute;
		width: 70%;
		height: 200px;
		left: 70px;
		top: 50%;
		transform: translateY(-50%);
		z-index: 1;
	}
	.B{
		width: 55px;
	}
	.C{
		width: 49px;
	}
	.contact-text{
		right: 10px;
	}
	.about-text{
		left: 10px;
	}
	.link-to-portfolio{
		margin-bottom: 35%;
		padding-top: 18px;
		font-size: 11px;
	}
	.services-info ul li {
		text-align: center;
		direction: rtl;
		margin-bottom: 10px;
		padding-left: unset;
		/* line-height: 1.7; */
		font-size: 10px !important;
		transition: color 0.3s ease, transform 0.3s ease;
	}
	.services-info h3 {
		font-size: 11px !important;
		color: white;
		font-weight: bold;
		text-align: center;
		/* margin-bottom: 20px; */
	}
	iframe{
		width:100% ;
		height:400px;
		margin-top: 70px;
	}
	.contact-form-container{
		width: 450px;
		height: 350px;
		margin-top: 5px;
	}
	.contact-form-container .contact-us{
		width: 150px;
		height: 350px;
	}

	.header h1{
		margin-right: 20px;
		font-size: 14px;
	}

	.address{
		width: 280px;
		height: 70px;
		left: 10px;
		top: 50px;
	}
	.H {
		position: absolute;
		left: 350px;
	}
	.Z {
		left:350px;}
	.phone{
		width: 280px;
		height: 70px;
		top: 300px;
		left: 174px;
	}
	.phone h3{
		font-size: 11px;
		margin-right: -10px;
	}
	.address h3{
		margin-right: 5px;
		/* line-height: 30px; */
		font-size: 10px;
	}
	.contact-header h1 {
		font-size: 14px;
		margin-top: -15px;
		margin-left: 15px;
		color: rgba(240, 245, 244, 0.164);
	}

}
@media (max-width: 425px){
	.section-center {
		background-color: rgba(0,0,0,.5);
		border-radius: 50px;
		position: absolute;
		width: 70%;
		height: 200px;
		left: 60px;
		top: 50%;
		transform: translateY(-50%);
		z-index: 1;
	}
	.B{
		width: 55px;
	}
	.C{
		width: 49px;
	}
	.contact-text{
		right: 10px;
	}
	.about-text{
		left: 10px;
	}
	.link-to-portfolio{
		margin-bottom: 35%;
		padding-top: 18px;
		font-size: 11px;
	}
	iframe{
		width:100% ;
		height:400px;
		margin-top: 70px;
	}
    .contact-form-container {
        width: 400px;
        height: 400px;
        margin-top: 5px;
    }
	.contact-form-container .contact-us{
		width: 110px;
		height: 400px;
	}
	.services-info {
		background-color: rgba(240, 245, 244, 0.164);
		padding: 8px;
		max-width: 800px;
		margin: unset;
		border-radius: 50px;
		position: absolute;
		top: 340px;
		left: 121px;
		grid-area: phone;
		width: unset;
		height: unset;
		box-shadow: 1px 2px 9px 1px black;
	}
	.header h1{
		margin-right: 20px;
		font-size: 14px;
	}

    .address {
        width: 280px;
        height: 70px;
        left: unset;
        top: unset;
    }
	.H {
		position: absolute;
		left: 350px;
	}
	.Z {
		left:350px;}
		.phone {
			width: 280px;
			height: 70px;
			top: 260px;
			left: 122px;
			padding: 12px 24px;
		}
	.phone h3{
		font-size: 11px;
		margin-right: -10px;
	}
	.address h3{
		margin-right: 5px;
		/* line-height: 30px; */
		font-size: 10px;
	}
	.contact-header h1 {
		font-size: 13px;
		margin-top: -10px;
		margin-left: 20px;
		color: rgba(240, 245, 244, 0.164);
	}

}

