        /* Start variables */
:root{
--main-color:#19c8fa;
--secondary-color:#777;
--tansperant-color:rgba(43, 48, 49, 0.8);
--section-padding: 100px;
}
/* End variables */


/*Start Global Rules */
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
::selection{
    background-color: var(--main-color);
    color: white;
}
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 */

/* Sart components */
.main-heading{
    text-align: center;
}
.main-heading h2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    font-size: 40px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding: 10px 0;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
}
@media (max-width: 767px) {
    .main-heading h2 {
        font-size: 30px;
    }
}
.main-heading h2:hover {
    color: #777;
    letter-spacing: 0px;
}
.main-heading h2::before {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 20%;
    height: 1.5px;
    background-color: #000;
    border-radius: 10px;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
}
.main-heading h2:hover::before {
    width: 30%;
    background-color: #777;
}
.main-heading p {
    width: 550px;
    margin: 0 auto 100px;
    max-width: 100%;
    line-height: 2;
    color: var(--secondary-color);
}
/* 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-width: 97px; */
}
header .container::after{
    content: "";
    position:absolute;
    height: 1px;
    background-color: #a2a2a2;
    bottom: 0;
    width: calc(100% - 30px);
    left: 15px;
}
header .logo img{
    height: 40px;
}
header nav{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header nav .toggle-menu{
    color:white;
    font-size: 22px;
}
@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%;
        left:0;
        width:100%;
        background-color: rgb(0 0 0 / 50%);
    }
    header nav ul li a{
        padding: 15px !important;
    }
}
header nav ul li a{
    padding: 40px 10px;
    display: block;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    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);
}
/* End Header */

/* Strat landing */
.landing{
    min-height: 100vh;
    background-color: #1f2021;
    background-image: url(../images/bgs/landing.jpeg);
    background-size: cover;
    position: relative;
}
@media (max-width:767px) {
    .landing{
        background-image: url(../images/bgs/landing-mobile.jpeg);
    }
}
.landing .overlay{
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    /* background-color: rgb(0 0 0 / 50%); */
    background-color: rgb(0 0 0 / 65%);
}
.landing .text{
    position: absolute;
    top: 50%;
    left:0;
    transform: translateY(-50%);
    width:50%;
    padding:50px;
    background-color: var(--tansperant-color);
    color:white;
    display: flex;
    justify-content: flex-end;
}
.landing .text .content{
    max-width: 500px;
}
@media (max-width:992px){
    .landing .text{
        width: 100%;
        padding: 10px 20px;
    }
    .landing .text .content{
        max-width: 100%;
    }
}
.landing .text h2{
    font-size: 32px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 20px;
}
.landing .text p{
    font-size: 14px;
    line-height: 2;
}
.landing .change-background{
    position: absolute;
    top:50%;
    transform: rotateY(-50%);
    color: #ddd;
}
@media (max-width:767px){
    .landing .change-background{
        display: none;
    }
}
/* 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;
}
@media (max-width:767px) {
    .services .srv-box{
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }
}
.services .srv-box i{
    margin-right: 50px;
}
@media (max-width:767px) {
    .services .srv-box i{
        margin: 0 0 30px;
    }
}
.services .srv-box h3{
    margin-bottom: 30px;
    color: var(--main-color);
}
.services .srv-box p{
    line-height: 2;
    color: var(--secondary-color);
    text-align: justify;
}

/* End services */

/* Start Design */
.design{
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    height: 600px;
    position: relative;
    background-image: url(../images/bgs/Design.jpeg);
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.design::before{
    content: "";
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-color: rgb(0 0 0 / 60%);
}
.design .image,
.design .text{
    position: relative;
    z-index: 2;
    flex: 1;
}
.design .image{
    text-align: center;
}
@media (max-width:767px){
    .design .image{
        display: none;
    }
}
.design .image img{
    position: relative;
    bottom: -150px;
}
.design .text{
    color: white;
    padding:50px;
    background-color: var(--tansperant-color);
}
.design .text h2{
    font-weight: normal;
    text-transform: uppercase;
    margin-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: 10px;
}
.portfolio .shuffle li.active{
    background-color: var(--main-color);
    color: white;
}

.portfolio .images-contsiner{
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}
.portfolio .images-contsiner .box{
    position: relative;
    overflow: hidden;
}
.portfolio .images-contsiner .box:hover .caption{
    bottom: 0;
}
.portfolio .images-contsiner .box:hover img{
    transform: rotate(3deg) scale(1.1);
    filter: grayscale(100%);

}
@media (min-width:768px){
        .portfolio .images-contsiner .box{
        flex-basis :50%;
    }
}
@media (min-width:1199px){
        .portfolio .images-contsiner .box{
        flex-basis :25%;
    }
}
.portfolio .images-contsiner .box img{
    max-width: 100%;
    transition: .3s;
}
.portfolio .images-contsiner .box .caption{
    position: absolute;
    left: 0;
    padding: 20px;
    background-color: white;
    width: 100%;
    transition: 0.3s;
    bottom: -100%;
}
.portfolio .images-contsiner .box .caption h4{
    font-weight: normal;
    /* color: var(--secondary-color); */
    /* font-weight: bold; */
    margin-bottom: 10px;
}
.portfolio .images-contsiner .box .caption p{
    color: var(--main-color);
}
.portfolio .more{
    background-color: var(--main-color);
    color: white;
    padding: 15px 20px;
    display: block;
    width: fit-content;
    margin: 30px auto;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
}
/* End portfolio */

/* Start video */
.video {
    position: relative;
}
.video::before{
    content: "";
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-color: rgb(0 0 0 / 40%);
}
.video video{
    width: 100%;
}
.video .text{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50px);
    padding: 50px;
    background-color: var(--tansperant-color);
    color: white;
    text-align: center;
}
@media (max-width:767px){
    .video .text{
        display: none;
    }
}
.video .text h2{
    margin: 0 0 20px;
    text-transform: uppercase;
    font-weight: normal;
}
.video p{
    margin-bottom: 20px;
}
.video button{
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    text-transform: uppercase;
    border-radius: 4px;
}
/* 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: -25px;
    /* margin-top: -120px; */
}
}
/* End About */

/* Start stats */
.stats{
    padding-top: var(--section-padding);   
    padding-bottom: var(--section-padding);   
    text-align: center;
    background-image: url(../images/bgs/stats.png);
    background-size: cover;
    position: relative;
}

@media (max-width:767px){
    .stats{
        background-image: url(../images/bgs/stats-mobile.png);
    }
}

.stats .container{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.stats .container .box{
    color: white;
    padding: 50px;
    margin: 5px;
    width: 270px;
    background-color: #1acffc68;
    backdrop-filter: blur(10px);
    box-shadow: unset;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
    border-radius: 10px;
}
.stats .container .box:hover{
    box-shadow: 0 0 10px var(--main-color);
    background-color: #1acffc42;
    backdrop-filter: blur(20px);
}
.stats .container .box i{
    width:60px;
    height: 60px;
    font-size: 30px;
    display: flex;
    background-color: unset;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    padding: 5px;
    border: 2px solid transparent;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
}

.stats .container .box:hover i{
    background-color: var(--main-color);
    border: 1.5px solid #fff;
    transform: scale(1.2);
}
.stats .container .box .number{
    font-size: 50px;
    font-weight: bold;
    margin: 0 0 20px;
}
.stats .container .box p{
    font-size: 18px;
    /* background-color: red; */
    padding: 10px 0;
    border-top: 1.8px solid #fff;
    letter-spacing: 3px;
}
@media (max-width:767px) {
    .stats .container .box p {
        font-size: 16px;
    }
}
/* End stats */

/* Start skills */
.our-skills{
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}
.our-skills .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}

@media (max-width:992px){
    .our-skills .container {
        justify-content: center;
    }
}
@media (min-width:992px){
    .our-skills .container > div{
        flex-basis: 45%;
    }
}
.our-skills .container > div{
    
}
.our-skills .container > div > h3 {
    margin: 0 0 30px;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
}
.our-skills .container > div > p {
    color: var(--secondary-color);
    line-height: 2;
    text-align: center;
    margin-bottom: 60px;
}

.our-skills .testimonials .content{
    display: flex;
    margin-bottom: 30px;
    align-items: center;

}
.our-skills .testimonials .content img{
    width: 100px;
    border-radius: 50%;
    margin-right: 50px;
}

@media (max-width:767px){
    .our-skills .testimonials .content{
        flex-direction: column;
        text-align: justify;
    }
    .our-skills .testimonials .content img{
        margin: 0 auto 20px;
    }
}
.our-skills .testimonials .text{
    border-bottom: 1px solid #ccc;
    line-height: 1.8;
}
.our-skills .testimonials .text p {
    color: var(--secondary-color);
    text-align: right;
    font-size: 14px;
    margin-bottom: 10px;
}
@media (max-width:767px){
    .our-skills .testimonials .text p {
        padding-top: 10px;

    }
}
.our-skills .skills .prog-holder{
    margin-bottom: 40px;
}
.our-skills .skills .prog-holder h4{
    margin-bottom: 15px;
    font-weight: normal;
    text-transform: uppercase;
}
.our-skills .skills .prog-holder .prog {
    background-color: #dedadc;
    height: 30px;
}
.our-skills .skills .prog-holder .prog span{
    display: block;
    background-color: var(--main-color);
    height: 100%;
    position: relative;
    
}
.our-skills .skills .prog-holder .prog span::before {
    content: attr(data-progress);
    position: absolute;
    background-color: black;
    color:white;
    top:-40px;
    right:-20px;
    padding: 4px 0;
    width: 40px;
    text-align: center;
    border-radius: 4px;
}
.our-skills .skills .prog-holder .prog span::after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 8px;
    border-color: black transparent transparent;
    right: -8px;
    top: -15px;
}
/* End skills */

/* Start qoute */
.qoute{
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    background-image: url("../images/items/owl.jpg");
    background-size: cover;
    position: relative;
    text-align: center;
    color: white;
}
@media (max-width:767px) {
.qoute{
    background-image: url("../images/items/owl-mobile.jpg");
}
}

.qoute::before{
    content: "";
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-color: rgb(0 0 0 / 50%);
}
.qoute .container{
    position: relative;
}
.qoute q{
    font-size: 30px;
    margin-bottom: 20px;
    display: block;
    line-height: 1.2;
}
@media (max-width:767px){
    .qoute q{
        text-align: justify;
    }
}
/* 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{
    background-color: #fcfcfc;
    text-align: center;
}
.pricing .plans .plan .head{
    padding: 40px 20px;
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
}
.pricing .plans .plan .head h3{
    font-weight: normal;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.pricing .plans .plan .head span{
    font-size: 60px;
    font-weight: bold;
    /* color: var(--secondary-color); */
}
.pricing .plans .plan .head span::after{
    content: "$";
    font-size: 20px;
    position: relative;
    font-weight: normal;
    right: -15px;
}
.pricing .plans .plan ul{
    border-bottom: 1px solid var(--main-color);
}
.pricing .plans .plan ul li{
    padding: 20px;
    position: relative;
}
.pricing .plans .plan ul li:not(:last-child)::after{
    content: "";
    width: 140px;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.pricing .plans .plan .foot a{
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    border: 1px solid var(--main-color);
    width: fit-content;
    margin: 30px auto;
    color: black;
    border-radius: 5px;
    transition: 0.3s;
}
.pricing .plans .plan .foot a:hover {
    background-color: var(--main-color);
    color: #fff;
}
/* End pricing */

/* Start subscribe */
.subscribe{
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    background-image: url("../images/bgs/subscribe.jpg");
    background-size: cover;
    position: relative;
    color: white;
}
.subscribe::before{
    content: "";
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-color: rgb(0 0 0 / 60%);
}
.container{

}
.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 input[type="email"]{
    border: 1px solid white;
    border-right: none;
    background: none;
    padding: 20px 20px 20px 60px;
    caret-color: var(--main-color);
    width: calc(100% - 130px);
    color: white;
}
.subscribe form input[type="submit"]{
    width:130px;
    background-color: var(--main-color);
    color: white;
    padding: 10px 20px;
    border: 1px solid white;
    border-left: none;
    text-transform: uppercase;
}
.subscribe form input[type="email"]:focus,
.subscribe form input[type="submit"]:focus{
    outline: none;
}
.subscribe form ::placeholder{
    color: white;
}
.subscribe form i{
    position: absolute;
    top: 50%;
    transform:translateY(-50%);
    left: 25px;
}
.subscribe p{
    line-height: 2;
    margin-left: 50px;
}

@media (max-width:991px) {
    .subscribe p{
        flex-direction: column;
        margin: 30px 0 0;
    }
    }
/* End subscribe */

/* Start contact */
.contact {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
  }
  .contact .content {
    display: flex;
    justify-content: space-between;
  }
  @media (max-width: 767px) {
    .contact .content {
      flex-direction: column;
    }
  }
  .contact .content form {
    flex-basis: 70%;
  }
  .contact .content form .main-input {
    padding: 20px;
    display: block;
    border: 1px solid #ccc;
    margin-bottom: 30px;
    width: 100%;
  }
  .contact .content form .main-input:focus {
    outline: none;
  }
  .contact .content form textarea.main-input {
    height: 200px;
  }
  .contact .content form input[type="submit"] {
    background-color: var(--main-color);
    color: white;
    padding: 20px;
    border: none;
    display: flex;
    margin-left: auto;
    text-transform: uppercase;
    cursor: pointer;
  }
  .contact .content .info {
    flex-basis: 25%;
  }
  @media (max-width: 767px) {
    .contact .content .info {
      order: -1;
      text-align: center;
    }
  }
  .contact .content .info h4 {
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 18px;
  }
  .contact .content .info .phone {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }
  .contact .content .info h4:nth-of-type(2) {
    margin-top: 90px;
  }
  @media (max-width: 767px) {
    .contact .content .info h4:nth-of-type(2) {
      margin-top: 30px;
    }
  }
  .contact .content .info address {
    color:var(--secondary-color);
    line-height: 2;
  }
  @media (max-width: 767px) {
    .contact .content .info address {
      margin-bottom: 40px;
    }
  }
/* End contact */

/* Start footer */
.footer{
    padding-top: calc(var(--section-padding) / 2);
    padding-bottom: calc(var(--section-padding) / 2);
    background-image: url("../images/bgs/subscribe.jpg");
    background-size: cover;
    position: relative;
    color: white;
    text-align: center;
}
.footer::before{
    content: "";
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background-color: rgb(0 0 0 / 70%);
}
.footer .container{
    position: relative;
}
.footer image{
    margin-bottom: 20px;
}
.footer p:not(.copyright){
    text-transform: uppercase;
    padding: 20px;
    border-bottom: 1px solid white;
    font-size: 22px;
    width: fit-content;
    margin: 20px auto;
}
.footer .container .social-icons i{
    padding: 10px 15px;
}
.footer .container .copyright{
    margin-top: 60px;
}
.footer .container .copyright a{
    color: var(--main-color);
    font-weight: bold;
    
}
/* End footer */
