 /* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
    font-size:100%; 
}



/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

@media (max-width: 800px) {
    p {
        font-size: 18px;
    }
    h2 {
        font-size: 20px;
    }
}

.screen-reader-response {
  display: none;
}

html {
  overflow-x: hidden;
  width: 100vw;
}

html,
h1,
h2,
h3,
h4,
h5,
h6 {
    color:#141615;
}
body {
    background-color: #f9f9f9;
}

.container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

/* Upper Navigation */

div.nav_up{
    width: 100%;
    height: 110px;
    background: #141615;
    color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

div.logo_phone {
    font-size: 25px;
    padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  div.logo_phone {
    font-size: 20px;
  }
}
@media screen and (max-width: 510px) {
  div.logo_phone {
    font-size: 19px;
  }
}

div.logo_phone:hover  {
    color:#efa800;
    transition: all 0.3s ease-in-out;
}

.logo {
    height: 80px;
    width: 120px;
}

/* Bottom Navigation */

#nav_bottom {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.329);
  }

div.nav_bottom {
    width: 100%;
    height: 110px;
    background: #e9e0e069;
    padding: 20px 0;  
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

nav ul li a {
    text-decoration: none;
    color: #141615;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 2rem;
    margin: 0rem 1rem;
}

/* Responsive for menu */

@media screen and (max-width: 1262px) {
  nav ul li a {
  padding: 0.5rem 1rem;
  margin-left: 1.5rem;
  }
  nav ul li {
    border: none;
  }
}
@media screen and (max-width: 1120px) {
  nav ul li a {
  margin-left: 1rem;
  }
}
@media screen and (max-width: 1070px) {
  nav ul li a {
  margin-left: 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  nav ul li {
  margin-right: 0px;
  margin-left: 0px;

  }
  nav ul li a {
    margin-right: 0px;
    margin-left: 0px;
  }
}

nav ul li a:hover {
    background-color: #efa800;
    color:#f9f9f9;
    border-radius: 3px;
}

/* Mobile Navbar*/

.navbar_mobile {
  display: none;
}

@media screen and (max-width: 875px) {

  .navbar_mobile {
    position: absolute;
    right: 0;
    display: none;
    top: 100px;
    z-index: 10;
  }
  .navbar_mobile ul {
    flex-direction: column;
    background: #141615;
    text-align: center;
    padding: 10px;
  }
  nav ul li {
    margin: 0;
    padding: 15px 0;
  }
  nav ul li a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
  }

  .navbar_mobile.open {
    display: block;
  }

  /* Burger */

  div.nav_bottom {
    display: none;
  }

  div.logo_phone {
    display: none;
  }

  .menu-btn_wrapper {
    background: #141615;
    display: flex;
  }

  .menu-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all .5s ease-in-out;
  }

  .menu-btn__burger {
    width: 80px;
    height: 6px;
    background: #efa800;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(255,101,47 .2);
    transition: all .5s ease-in-out;
  }
  .menu-btn__burger::before,
  .menu-btn__burger::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 6px;
    background-color: #efa800;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(255,101,47 .2);
    transition: all .5s ease-in-out;
  }

  .menu-btn__burger::before {
    transform: translateY(-16px);
  }
  .menu-btn__burger::after {
    transform: translateY(16px);  
  }

  /* Burger Animation */

  .menu-btn.open .menu-btn__burger {
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
  }

  .menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg) translate(35px, -35px);   
  }

  .menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg) translate(35px, 35px);   
  }
}



/* Main Part */

.main-photo img {
    width: 100%;
    min-height: calc(100vh - 220px);
    object-fit: cover;
    opacity: 0.9;
    border: 1px solid black;
}
@media screen and (max-width: 1024px) {
    .main-photo img {
        width: 100%;
    }
}

.photo-text {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  top: 350px;
}

.photo-text h1 {
  font-size: 150px;
  color:#f9f9f9;
}

.photo-text h2 {
  font-size: 50px;
  color:#f9f9f9;
  margin-right: 0px;
}
@media and (max-wdith: 500px) {
    .photo-text h2 {
        margin-right: 0px;
    }
}
.button {
  background-color: #efa800;
  border: none;
  color: black;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  margin-left: 220px;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 250px;
}

/* Responsive for text on the picture */

@media screen and (max-width: 1120px) {
  .photo-text h1 {
    font-size: 120px;
    color:#f9f9f9;
  }
  .photo-text h2 {
    font-size: 38px;
  }
  .button {
    padding: 10px 25px;
    font-size: 20px;
    border-radius: 3px;
  }
}

@media screen and (max-width: 950px) {
  .photo-text {
    top: 300px;
  }
  .photo-text h1 {
    font-size: 100px;
    color:#f9f9f9;
  }
  .photo-text h2 {
    font-size: 32px;
  }
  .button {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 3px;
  }

}

@media screen and (max-width: 875px) {
  .photo-text {
    top: 200px;
  }
  .photo-text h1 {
    font-size: 80px;
    color:#f9f9f9;
  }
  .photo-text h2 {
    font-size: 26px;
  }
  .button {
    padding: 7px 15px;
    font-size: 16px;
    border-radius: 3px;
    margin: 0;
  }
  
}

a.button:hover {
  color:#f9f9f9;
  border: 1px solid white;
}

.main-title {
  font-size: 23px;
  padding-top: 30px;
  text-align: center;
}

.main-title-portfolio {
  font-size: 23px;
  padding-top: 30px;
  text-align: center;
}
.main-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

/* For Projects Page Only */

.main-1 {
  background-color: #e9e0e069;
}
.main-projects-container {
  display: flex;
  flex: wrap;
  justify-content: space-around;
  width: 100%;
}

.main-projects {
    width: 302px;
    border: 1px solid #ccc;
    margin: 40px;
}

.main-projects h2 {
  font-size: 17px;
  text-align: center;
}

.main-projects h3 {
  font-size: 15px;
  text-align: center;
}

.main-projects:hover {
    border: 1px solid #777;
}

.main-projects img {
    width: 300px;
    height: 250px;
}

div.desc {
    padding: 15px;
    text-align: center;
}

.our-projects-main {
    display: flex;
    flex: wrap;
    width: 100%;
    height: 340px;
    margin-left: 90px;
}

.our-projects-main img {
    width: 230px;
    height: 300px;
    border: 1px solid #ccc;
    margin: 1px;
}

.our-projects-main img:hover {
    border: 1px solid #777;
}

/* Footer */

footer{
	position: relative;
	bottom: 0;
  
}

@media (max-height:800px){
	footer { position: static; }
	header { padding-top:40px; }
}


.footer-distributed{
	background-color: #141615;
	box-sizing: border-box;
	width: 100%;
	text-align: left;
  font-size: 20px;
	padding: 50px 50px 60px 50px;
	margin-top: 50px;
}

.footer-distributed h1{
	color: #e0ac1c;
  font-size: 25px;
}

footer a, p{
  transition: all 0.3s ease;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
	display: inline-block;
	vertical-align: top;
  width: 33%;
}

.media-icons a{
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  height: 45px;
  width: 45px;
  display: inline-block;
  text-align: center;
  line-height: 43px;
  border-radius: 5px;
  border: 2px solid #222222;
  margin-top: 10px;
  margin-left: 0px;
  transition: all 0.3s ease;
}
.media-icons a:hover{
  border-color: #efa800;
  color: #efa800;
}
/* Footer left */
.footer-distributed .footer-left {
  padding-left: 5%;
}

.footer_contacts {
  color: #fff;
}
.footer_contacts i {
  padding-right: 10px;
}
.footer_contacts:hover{
  color: #efa800;
}

/* Footer links */

.footer-distributed .footer-links{
	color:  #fff;
}

.footer-distributed .footer-links a{
	display: block;
	line-height: 1.8;
	text-decoration: none;
	color: #fff;
}

/* Footer Center */

.footer-distributed .footer-center{
	width: 35%;
  padding-left: 10%;
}

.footer-distributed .footer-center p{
	display: inline-block;
	color: #ffffff;
	vertical-align: middle;
	margin:0;
}

.footer-center a:hover{
  color: #efa800;
}
/* Footer Right */

.footer-distributed .footer-right{
	width: 30%;
  padding-left: 10%;
}

.footer_end {
  color: #e0ac1c;
  text-align: center;
  margin-top: 20px;
}

#phone_number a{color:#fff; text-decoration:none;}

/* Responsive Footer */



@media (max-width: 880px) {

	.footer-distributed .footer-left,
	.footer-distributed .footer-center,
	.footer-distributed .footer-right{
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
    padding-left: 0;
	}

  .footer-distributed {
    margin-top: 30px;
  }
}
/* About Us */

.flex-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
  
.flex-container div {
    width: 43%;
    height: 400px;
    padding: 50px;
    margin: 30px;
    font-size: 22px;
}

.flex-container div:last-child {
  margin-bottom: 100px;
}

.flex-container img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    float: right;
}

@media (max-width:1000px) {
  .flex-container div {
    width: 43%;
    padding: 30px;
    margin: 20px;
    font-size: 18px;
  }

  .flex-container div:last-child {
    margin-bottom: 50px;
  }

  .flex-container p {
    overflow: hidden;
  }
  .flex-container img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    float: right;
  }
  .flex-container div:last-child {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }
}

@media (max-width: 875px) {
  .flex-container div {
    width: 100%;
    padding: 10px 30px;
    margin: 20px;
    font-size: 25px;
    height: auto;
  }

  .flex-container p {
    overflow: hidden;
  }
  .flex-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .flex-container div:last-child {
    margin-bottom: 30px !important;
    padding-bottom: 30px !important;
  }
}
/* Contacts */

.container-contacts {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 10px;
}

.container-contacts:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./gf/img/aframe1.jpg") no-repeat center;
  background-size: cover;
  z-index: -1;
}

.contact-box {
  max-width: 850px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, 0.19);
}

.left h1 {
  color: black;
  font-size: 60px;
  padding-left: 20px;
  padding-top: 30px;
}
.left h2 {
  color: #efa800;
  font-size: 30px;
  padding-left: 20px;
}
.right {
  padding: 25px 40px;
}

.right h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 27px;
}

.right h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 4px;
  width: 50px;
  border-radius: 2px;
  background-color: #efa800;

}

/* Form */

.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 textarea
{
  width: 100%;
  padding: 0.5rem 1rem;
  outline: none;
  border: 2px solid black;
  background-color: #fff;
  font-size: 1.1rem;
  margin-bottom: 22px;
  transition: .3s;
}

.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  background-color: #efa800;
  cursor: pointer;
  outline: none;
  border: none;
  transition: .3s;
  border: 2px solid #fff;  
}

.wpcf7 input[type="text"]:hover,
.wpcf7 input[type="tel"]:hover,
.wpcf7 textarea:hover {  
  border: 2px solid #efa800;
}

.wpcf7 input[type="text"]:focus ,
.wpcf7 input[type="tel"]:focus ,
.wpcf7 textarea:focus  {  
  border: 2px solid #efa800;
}

.wpcf7-response-output {
    margin-top:5px;
    background-color: #ffa50085;
    border-radius: 4px;
    font-size: 17px;
}

.wpcf7-not-valid {
    border: 2px solid red !important;
}
.wpcf7-not-valid-tip {
    color: red;
}

.wpcf7 input[type="tel"].wpcf7-not-valid-tip {
    border: 2px solid red;
}

.right textarea {
  min-height: 150px;
}


.wpcf7 input[type="submit"]:hover {
  color: #fff;
  border: 2px solid rgba(0, 0, 0, 0.075);  
}

@media screen and (max-width: 880px) {
  .contact-box {
    grid-template-columns: 1fr;
  }
  .left {
    height: 200px;
  }
}


/* Our Projects */

.our-projects {
    width: 100%;
    height: 350px;
}

div.our-projects {
  padding: 20px;
}

.our-projects img {
    width: 200px;
    height: 250px;
    border: 1px solid #ccc;
    margin: 10px;
}

.our-projects img:hover {
    border: 1px solid #777;
}

/* Interesting */

.reviews {
  display: inline-block;
}

.reviews div {
  height: 300px;
  width: 1000px;
  margin: 100px 50px 100px 50px;
}
.reviews img {
  height: 300px;
  width: 400px;
  float: right;
  margin-left: 20px;
}

/* Swiper for Our Works Page (Portfolio) */

.slider_container {
  padding: 0 15px;
  min-width: 1230px;
  margin: 0 auto;
}

@media (max-width: 1250px) {
  .slider_container {
    padding: 0 10px;
    min-width: 800px;
  }
}

@media (max-width: 700px) {
  .slider_container {
    padding: 0 10px;
    min-width: 400px;
  }
}
@media (max-width: 500px) {
  .slider_container {
    padding: 0 10px;
    min-width: 300px;
  }
}

@media (max-width: 1000px) {
  .slider_container {
    padding: 0 10px;
    min-width: 500px;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #f9f9f9;
  margin: 100px 0;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 250px;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 799px) {
  .swiper-slide img {
    width: 200px;
    height: 200px;
    margin-left: 0px;
  }
      .swiper-slide {
  margin: 50px 0;
  }
  .swiper-pagination {
  padding-bottom: 0 !important;  
  }
}
@media (max-width: 500px) {
  .swiper-slide img {
    width: 150px;
    height: 150px;
    padding: 0 30px;
  }
}

/* Swiper for a main page */


.swiper-pagination {
  padding-bottom: 30px;  
}

.swiper-pagination-bullet-active {
  background-color: #efa800 !important;
}

section.main-swiper {
  background-color: #f9f9f9;
}

/* Product Page */

div.product_page {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.product_page div {
  width: 100%;
  font-size: 19px;
  margin: 50px;
}

.product_page h1 {
  font-size: 25px;
}

@media (max-width: 1190px) {
  .product_page_btn {
    margin-left: 60px !important;
  }
}

@media screen and (max-width: 1100px) {
  .main_img_swiper {
    width: 350px !important;
    height: 350px !important;
  }
  .product_page ul li {
    margin-left: 420px !important;
    font-size: 17px;
  }
  .product_page_btn {
    margin-left: 460px !important;
  }
  div.swiper-slide-product_page {
    width: 300px !important;
    margin: 400px 0px 0px 75px !important;
  }
  .swiper-slide-product_page a {
    width: 55px !important;
    height: 55px !important;
    margin: 2px;
  }
  .swiper-slide-product_page img {
    width: 55px !important;
    height: 55px !important;
  }
  div.product_page_description {
    margin-top: 0;
  }
}

@media screen and (max-width: 1100px) {
  .product_page_btn {
    margin-left: 400px !important;
  }
}

/* Mobile Version */

.product_page_mobile {
  display: none;
}
@media screen and (max-width: 800px) {
.product_page div{
  display: none;
}

div.product_page_mobile {
  display: flex;
  flex-wrap: wrap;
  font-size: 19px;  
}

.swiper-slide.mobile {
  text-align: center;
  font-size: 18px;
  background: #f9f9f9;
  margin: 20px 0; /* do not change or images display wrong */
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide.mobile img {
  display: block;
  width: 350px;
  height: 350px;
  object-fit: cover;
  }
  .product_page_mobile h1 {
    font-size: 35px;
    margin-top: 10px;
  }
  .product_page_mobile ul li {
    list-style-type: circle;
    margin-left: 20px;
  }
  .product_page_mobile_info {
    margin: 50px;
  }
  .product_page_mobile_description {
    margin: 50px;
    margin-top: 0;
  }
  .product_page_mobile_btn {
    margin: 0 50px 50px 25px;
  }
  .product_page_mobile_btn a{
    background-color: #efa800;
    border: none;
    color: black;
    padding: 15px 90px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: .3s;
    outline: none;
    border: 2px solid #fff; 
  }
  
  .product_page_mobile_btn a:hover {
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.075);  
  }
}



.product_page ul li {
  list-style-type: circle;
  margin-left: 570px;
}

.product_page_btn {
  position: absolute;
  background-color: #efa800;
  border: none;
  color: black;
  padding: 15px 70px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: .3s;
  outline: none;
  border: 2px solid #fff; 
  margin-top: 5px;
  margin-left: 120px;
}

.product_page_btn:hover {
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.075);  
}

.product_page img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  float: left;
  margin-right: 50px;
  border: 1px solid grey;
}


/* Product Page Swiper */

.swiper-slide-product_page {
  text-align: center;
  font-size: 18px;
  background: #f9f9f9;
  margin: 0;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

div.swiper-slide-product_page {
  position: absolute;
  width: 500px;
  margin: 555px 0px 0px 50px;
}

.swiper-slide-product_page a {
  width: 80px;
  height: 80px;
  margin: 2px;
}

.swiper-slide-product_page img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
 
