/* Start Variables */
:root {
    --main-color: #19c8fa;
    --transparent-color: rgb(15 116 143 / 70%);
    --section-padding: 100px;
  }
  /* End Variables */
  /* Start Global Rules */
  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: "Open Sans", sans-serif;
  
  }
  ul {
    list-style: none;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  /* Small */
  @media (min-width: 768px) {
    .container {
      width: 750px;
    }
  }
  /* Medium */
  @media (min-width: 992px) {
    .container {
      width: 970px;
    }
  }
  /* Large */
  @media (min-width: 1200px) {
    .container {
      width: 1170px;
    }
  }
  /* End Global Rules */
  /* Start Components */
  .main-heading{
    text-align: center;
  }
  .main-heading h2{
    position: relative;
    font-size: 40px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 70px;
  }
  .main-heading h2::before{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    width: 120px;
    height: 2px;
    background-color: #333;
  }
  .main-heading h2::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #333;
    bottom: -38px;
    background-color: white;
  }
  .main-heading p{
    width: 555px;
    margin: 0 auto 100px;
    max-width: 100%;
    line-height: 2;
    color: #777;
  }
  /* End Components */
/* Start Header */
header{
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 97px;
}
header .container::after{
    content: "";
    position: absolute;
    height: 1px;
    background-color: #a2a2a2;
    width: calc(100% - 30px);
    bottom: 0;
    left: 15px;
}
header .logo img{
    height: 40px;
}
header nav{
  flex: 1;
  display: flex;
  align-items: center;
 justify-content: flex-end;
}
header nav .toggle-menu{
  font-size: 20px;
  color: white;
}
@media(min-width:768px){
  header nav .toggle-menu{
    display: none;
  }
}
header nav ul{
  display: flex;
}
@media (max-width:767px){
  header nav ul{
    display: none;
  }
  header nav .toggle-menu:hover + ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    background-color: rgb(0 0 0 / 50%);
  }
  header nav .toggle-menu:hover + ul a{
    padding: 15px;
  }
}
header nav ul li a{
  display: block;
  color: azure;
  text-decoration: none;
  font-size: 14px;
  transition: 0.4s;
  padding: 40px 10px;
  position: relative;
  z-index: 2;
}
header nav ul li a.active,
header nav ul li a:hover{
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}
header nav .form{
  width: 40px;
  height: 30px;
  position: relative;
  margin-left: 120px;
  border-left: 1px solid white;
}
header nav .form i{
  color: white;
  position: absolute;
  right: 0;
  font-size: 20px;
  top: 50%;
  transform: translatey(-50%);
}
header nav .form i:hover{
  color: var(--main-color);
}
/* Wnd Header */
/* Srart Landing */
.landing{
  min-height: 100vh;
background-image: url("../imges/joebraun_angelslanding02.jpg");
background-size: cover;
position: relative;
}
.landing .overlay{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgb(0 0 0/60%);
}
.landing .text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  padding: 50px;
  background-color: var(--transparent-color);
  color: white;
  display: flex;
  justify-content: flex-end;
}
.landing .text .content{
  max-width: 500px;
}
@media (max-width:767px){
  .landing .text{
    width: 100%;
  }
  .landing .text .content{
    max-width: 100%;
  }
}
.landing .text .content h2 {
font-size: 32px;
font-weight: normal;
line-height: 1.8;
margin-bottom: 20px;

}
.landing .text .content p {
font-size: 14px;
line-height: 2;
}
.landing .change-background{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ddd;
}
@media (max-width:767px){
  .landing .change-background {
    display: none;
  }
}
.landing .fa-angle-left {
  left: 30px;
}
.landing .fa-angle-right {
  right: 30px;
}

.landing .bullets{
  position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    padding: 10px;
    display: flex;
    flex-direction: row;
}
.landing .bullets li {
  width: 20px;
  height: 20px;
  border: 1px solid white;
  margin-left: 10px;
  border-radius: 50%;
}
.landing .bullets  .active {
background-color: var(--main-color);
border-color: var(--main-color) ;
}
/* End Landing */

/* Start Services */
.services{
padding-top: var(--section-padding);
padding-bottom: var(--section-padding);
}
@media(min-width:768px){
.services .services-container{
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(450px,1fr));
  grid-column-gap: 40px;
  grid-row-gap: 60px;
}
}
.services .srv-box{
display: flex;
margin-bottom: 20px;
}
.services .srv-box i{
  margin-right: 60px;
  
}
@media (max-width:767px){
.services .srv-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom:40px ;
} 
.services .srv-box i{
 margin: 0 0 30px;
}
  
}
.services .srv-box h2 {
  color: var(--main-color);
  font-size: 20px;
}
.services .srv-box p{
margin-top: 30px;
line-height: 2;
color: #777;
font-size: 14px;
}
/* End Services */
/* Start Design */
.design{
  padding-top: var(--section-padding);
padding-bottom: var(--section-padding);
height: 600px;
position: relative;
background-image: url(../imges/Ex-E_8LXIAIYWNZ.jpg);
background-size: cover;
display: flex;
align-items: center;
overflow: hidden;
}
.design::before{
 content: "";
 position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgb(0 0 0/60%);
}
.design .imges,
.design .text{
  position: relative ;
  z-index: 2;
  flex: 1;
}
.design .imges{
  text-align: center;
}
.design .imges img{
  position: relative;
  bottom: -150px;
}
.design .text{
 
  background-color: var(--transparent-color);
  padding: 50px;
  color: white;
}
.design .text h2
{
font-weight: normal;
text-transform: uppercase;
padding-bottom: 40px;
}
.design .text ul li{
padding: 15px 0;
}
.design .text ul li::before
{
  font-family: "Font Awesome 5 Free";
  content: "\f108";
  font-weight: 900;
  margin-right: 20px;
  position: relative;
  top: 1px;
}
/* End Design */
/* Start Portfolio */
.portfolio
{
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  }
  .portfolio .shuffle
  {
display: flex;
justify-content: center;
  }
  
  .portfolio .shuffle li
  {

padding: 20px;
pointer-events: painted;
  }
 
  .portfolio .active{
   color: white;
    background-color: var(--main-color);
    pointer-events:painted ;
    
  }
  .portfolio .one:hover 
  {
    color: white;
    background-color: var(--main-color);
    pointer-events: painted;
  }
 
 .portfolio .img-portfolio 
{
display: flex;
flex-wrap: wrap;
margin-top: 60px;
}
.portfolio .img-portfolio .box 
{
  overflow: hidden;
  position: relative;
}
@media (min-width:768px)
{
  .portfolio .img-portfolio .box {
    flex-basis: 50%;
  }
}
@media (min-width:1199px)
{
  .portfolio .img-portfolio .box  {
    flex-basis: 25%;
  }
 
}
.portfolio .img-portfolio .box:hover .caption
{
  bottom: 0;
}
.portfolio .img-portfolio .box:hover img
{
transform: rotate(3deg) scale(1.1);
}
.portfolio .img-portfolio .box img{
  width: 100%;
  transition: 0.3s;
}
.portfolio .img-portfolio .box .caption
{
  position: absolute;
  width: 100%;
  left: 0;
  padding: 20px;
  transition: 0.3s;
  bottom: -100%;
  background-color: white;
}
.portfolio .img-portfolio .box .caption h4
{
  font-weight: normal;
  bottom: 10px;
}
.portfolio .img-portfolio .box .caption p
{
  color: var(--main-color);
}
.portfolio .more 
{
  background-color: var(--main-color);
  text-decoration: none;
  text-transform: uppercase;
  padding: 15px 20px;
  color: aliceblue;
  display: block;
  width: fit-content;
  margin: 30px auto;
}
/* End Portfolio */

/* Start video  */
.video
{
  position: relative;
  background-image: cover;
}
.video::before
{
  content: "";

position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background-color: rgb(0 0 0 / 40%);
}
.video video {
  width: 100%;
}
.video .text
 {
width: 100%;
position: absolute;
top: 50%;
transform: translateY(-50%);
color: white;
text-align: center;
background-color: var(--transparent-color);
padding: 50px;
}
.video .text h2
 {
margin: 0 0 30px;
text-transform: uppercase;
font-weight: normal;
}
.video .text p 
{
margin-bottom: 30px;
}
.video .text  button
 {
background-color: black;
color: white;
padding: 10px 20px ;
border: none;
text-transform: uppercase;
}

/* End video  */
/*  Start About  */
.about
{
  padding-top: var(--section-padding);
  overflow: hidden;
  text-align: center;
}
.about img
{
  position: relative;
  bottom: -120px;
  margin-top: -120px;
  max-width: 100%;
}
@media (max-width:767px)
{
  .about img
{
  bottom: -90px;
  margin-top: -90px;
}
}
/*  End About  */
/* Start Stats */
.statse
{
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  text-align: center;
  background-image:url(../imges/jjkjhgkg.jpg);
  background-size: cover;
  position: relative;
}
.statse::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
}

.statse .container{
position: relative;
display: flex;
flex-wrap:wrap ;
}
.statse .container .box
{
color: white;
padding: 50px;
background-color: var(--transparent-color);
}
@media (max-width:767px)
{
  .statse .container .box
  {
    flex-basis: 100%;
  }
}
@media (min-width:768px)
{
  .statse .container .box
  {
    flex-basis: 50%;
  }
}
@media (min-width:992px)
{
  .statse .container .box
  {
    flex-basis: 25%;
  }
}
.statse .container .box i{
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background-color:black ;
border-radius: 50%;
margin: 0 auto 30px;
}
.statse .container .box .number{
font-size: 50px;
margin: 0 0 20px;
font-weight: bold;
}
.statse .container .box p{
font-size: 14px;
}


/* End Stats */
/* Start Skills */
.skills{
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.skills .container{
display: flex;
justify-content: space-between;
flex-wrap: wrap;

}
@media (min-width:767px)
{
  .skills .container > div {
    flex-basis: 45%;
  
  }

}
.skills .container > div h3{
  margin: 0 0 30px;
  font-weight: normal;
  text-align: center;
  text-transform: uppercase;
}
.skills .container > div p{
line-height: 1.8;
text-align: center;
margin-bottom: 60px;
color: #777;
}
.skills .content{
  display: flex;
  margin-bottom: 30px;
}
.skills .content img {
  width: 100px;
  border-radius: 50%;
  margin-right: 50px;
  height: 100px;
}

@media (max-width:767px){
  .skills .content{
flex-direction: column;
text-align: center;
  }
  .skills .content img{
margin: 0 auto 20px;
  }
}
.skills .content .text{
  line-height: 1.8;
  border-bottom: 1px solid #ccc;
}  
.skills .content .text p{
  color: #777;
  text-align: right;
  font-size: 14px;
  margin-bottom: 10px;
}
.skills .testimonials .bullets {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.skills .testimonials .bullets li{
  width: 14px;
  border: 1px solid #aaa;
  border-radius: 50%;
  height: 14px;
  margin-right: 10px;
}
.skills .testimonials .bullets li.active{
background-color: var(--main-color);
border-color: var(--main-color);
}

 .skills .prog-holder{
  margin-bottom: 40px;
 }
 .skills .prog-holder h4{
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 15px;
 }
 .skills .prog-holder .prog{
  background-color: #dededc;
  height: 30px;
 }
 .skills .prog-holder .prog span{
  height: 100%;
  background-color: var(--main-color);
  display: block;
  position: relative;
 }
 .skills .prog-holder .prog span::before{
 
  content: attr(data-progress); color: white;
  background-color: black;
  right: -16px;
  position: absolute;
  top: -40px;
  border-radius: 4px;
  text-align: center;
  width: 40PX;
 }
 .skills .prog-holder .prog span::after{
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 8PX;
  border-color: black transparent transparent transparent;
  top: -24px;
  right: -4px;
 
 }

/* End Skills */
/* Start Qoute */
.qoute{
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  text-align: center;
  background-image:url(../imges/1999-1.jpg);
  background-size: cover;
  color: white;
position: relative;
 
}
.qoute::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 70%);

}

.qoute .container {
  position: relative;
}
 .qoute q {
   font-size: 30px;
   margin-bottom: 20px;
   display: block;
 }
/* End Qoute */
/* Start Pricing */
.pricing {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.pricing .plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}
.pricing .plans .plan {
  text-align: center;
  margin-right: 50px;
}
.pricing .plans .plan .head {
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
  padding: 40px 20px;
}
.pricing .plans .plan  .head h3{
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pricing .plans .plan .head span {
  font-size: 50px;
  font-weight: bold;
}
.pricing .plans .plan .head span::before {
  content: "$";
  position: relative;
  font-size: 20px;
  top: -37px;
  right: 10px;
}
.pricing .plans .plan .head span::after {
  content: "/Mo";
  position: relative;
  font-size: 22px;
  right: -10px;
}
.pricing .plans .plan ul {
  border-bottom: 1px solid var(--main-color);
}
.pricing .plans .plan ul li{
  position: relative;
  padding: 20px;
}
.pricing .plans .plan ul li:not(:last-child)::after{
  content: "";
  width: 120px;
  height: 1px;
  background-color: var(--main-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.pricing .plans .plan .foot a{
  padding: 35px 20px;
  display: block;
  text-decoration: none;
  border: 1px solid var(--main-color);
  width: fit-content;
  margin: 30px auto;
}
.pricing .contact-text{
  font-size: 20px;
  text-align: center;
  margin: 50px auto 20px;
}
.pricing .contact-link{
  padding: 15px 29px;
  width: fit-content;
  display: block;
  text-decoration: none;
  margin: 20px auto;
  background-color: var(--main-color);
  color: white;
}
/* End Pricing */
/* Start Subscribe */
.subscribe{
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-image: url(../imges/subscribe.jpg);
  background-size: cover;
  color: white;
  position: relative;
}
.subscribe::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
}
.subscribe .container{
  position: relative;
  display: flex;
  align-items: center;
 
}
@media (max-width:991px){
  .subscribe .container{
    flex-direction: column;
  } 
}
.subscribe form{
  display: flex;
  position: relative;
  width: 500px; 
  max-width: 100%;
}
.subscribe form i{
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 25px;
}
.subscribe form input[type="email"]{
  padding: 20px 20px 20px 60px;
  border: 1px solid white;
  border-right: none;
  caret-color: var(--main-color);
  background: none;
  width: calc(100% - 130px);
  color: white;
}
.subscribe form input[type="submit"]{
  background-color: var(--main-color);
  padding: 10px 20px;
  border: 1px solid white;
  border-left: none;
  text-transform: uppercase;
  width: 130px;
  color: white;
}
.subscribe form input[type="submit"]:focus,
.subscribe form input[type="email"]:focus{
  outline: none;
}
.subscribe form ::placeholder{
  color: white;
}
.subscribe p {
line-height: 2;
margin-left: 50px;
}
@media (max-width:991px){
  .subscribe p{
    margin: 30px 0 0 ;
  }
}
/* End Subscribe */
/* Start Content */
.content{
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
.content .contact {
  display: flex;
    justify-content: space-between;
}
.content .contact form{
  flex-basis: 70%;
}
.content .contact form .main-input{
  display: block;
  padding: 20px;
  border: 1px solid #ccc;
  margin-bottom: 30px;
  width: 100%;
}
.content .contact form textarea.main-input{
  height: 200px;
}
.content .contact form .main-input:focus{
  outline: none;
}
.content .contact form input[type="submit"]{
  
  background-color: var(--main-color);
  padding: 20px;
  display: flex;
  margin-left: auto;
  border: none;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
}
.content .contact .info{
  flex-basis: 25%;
}
@media (max-width:767px){
  .content .contact .info{
order: -1;
text-align: center;
  }
  .content .contact{
    flex-direction: column;
  }
 
  .content .contact .info address{
    margin-bottom: 40px;
  }

}
.content .contact .info h4 {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 30px;
}
.content .contact .info .number{
  display: block;
  margin-bottom: 10px;
  color: #777;
}
.content .contact .info h4:nth-of-type(2){
  margin-top: 90px;
}
@media (max-width:767px)
{
  .content .contact .info h4:nth-of-type(2){
    margin-top: 30px;
  }
}
.content .contact .info address{
  line-height: 2;
  color: #777;
}
/* End  Content */
/* Start Footer */
.footer{
 padding-top: calc(var(--section-padding) / 2);
  padding-bottom: calc(var(--section-padding) / 2); 
  background-image: url(../imges/subscribe\ \(1\).jpg);
  background-size: cover;
  position: relative;
  text-align: center;
  color: white;
}
.footer::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 70%);
}
.footer .container{
  position: relative;
}
.footer img{
  margin-bottom: 20px;
}
.footer p:not(.copyright){
  text-transform: uppercase;
  padding: 20px;
  border-bottom: 1px solid white;
  width: fit-content;
  margin: 20px auto;
  font-size: 22px;
}
.footer .social-icons i{
padding: 10px 15px;
color: var(--main-color);
}
.footer .copyright{
margin-top: 65px;
}
.footer .copyright span{
font-weight: bold;
color: var(--main-color);
}
/* End Footer */