              /*----------------- GLOBAL ---------------*/

@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,600,700|Oswald:300,400,600|Roboto:300,400,700,700i&display=swap');

@font-face {
    font-family: "oswald stencil";
    src: url(../fonts/Oswald-Stencil.ttf);
}

@font-face {
    font-family: "engravers MT";
    src: url(../fonts/ENGR.TTF);
    }

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0.3s;
    /* border: 1px solid red; */
}

html {
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-family: 'Quicksand',sans-serif;
}

ul{
    list-style-type: none;
}

.orange{
    color: #F15C29;
}

a.button{
    padding: 15px 20px;
    background-color: #F15C29;
    border: 1px solid #F15C29;

}

a.button:hover{
    background-color:rgba(0,0,0,0);
    color: #F15C29;
    border: 1px solid #F15C29;
}

button{
    color: white;
    padding: 15px 20px;
    background-color: #F15C29;
    border: 1px solid #F15C29;
    cursor: pointer;
}

button:hover{
    background-color:rgba(0,0,0,0);
    color: #F15C29;
    border: 1px solid #F15C29;
}

h2,h3,h4,h5,h6{
    color: black;
    font-family: 'Quicksand',sans-serif;
    font-weight: bold;
}

h2{
    text-align: center;
    display: initial;
    font-size: 35px;
    border-bottom: 3px solid #F15C29;
    padding: 0 15px 5px 15px;
}

p{
    line-height: 1.5;
    font-family: 'Roboto','Segoe UI',sans-serif;
}

.wrapper{
    height: 100%;
    width: 80%;
    max-width: 1250px;
    margin: auto;
}

section{
    padding: 50px 0;
}

            /*---------------- index.html -------------------*/

header{
    height: 100vh;
    position: relative;
}

.bgnoscroll{
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: -10;
    background: linear-gradient(rgba(0,0,0,0.9),rgba(0,0,0,0.9)),
                url(../images/athlete-barbell-blurred-background-700446.jpg) center;
    background-size: cover;
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: 20px 0;
    background-color: rgba(0,0,0,0.8);
}

nav .wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav img{
    height: 60px;
}

nav ul{
    display: flex;
    align-items: center;
}

nav ul li{
    margin-right: 30px;
}

nav ul li:last-child{
    margin-right: 0;
}

nav ul a:hover{
    color: #F15C29;
}

nav .info{
    display: none;
}
nav .info img{
    margin-right: 10px;
}
nav .ulinfo img{
    height: 45px;
}

.call, .mail, .callResp, .mailResp{
    cursor: pointer;
    position: relative;
}

.callpopup,.mailpopup {
    visibility: hidden;
    width: 10em;
    
    border-radius: 6px;
    padding: 10px ;
    background-color: #555;
    
    text-align: center;
    color: #fff;
    font-family: 'quicksand',sans-serif;
    
    
    position: absolute;
    top: 105%;
    left: 60%;
    margin-left: -80px;
  }

  .callpopup::after,.mailpopup::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #555 transparent;
  }
  
.callpopupResp, .mailpopupResp {
    visibility: hidden;
    width: 10em;
    
    border-radius: 6px;
    padding: 10px ;
    background-color: #555;
    
    text-align: center;
    color: #fff;
    font-family: 'quicksand',sans-serif;
    
    
    position: absolute;
    top: 100%;
    margin-left: -110px;
}

.callpopupResp::after,.mailpopupResp::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -3px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #555 transparent;
  }


nav .call:hover .callpopup,
nav .mail:hover .mailpopup,
.callResp:hover .callpopupResp,
.mailResp:hover .mailpopupResp{
    visibility: visible;
} 


.menu-icon, .menu-btn{
    display: none;
}

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    top: 120px;
}

.hero h1{
    text-align: right;
    color: white;
    font-size: 40px;
    font-family: 'oswald stencil','Courier New', Courier;
    letter-spacing: 2px;
}

.hero .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero .content {
    max-width: 600px;
}

.hero img{
    height: 350px;
}

.hero .content p{
    color: #e5e5e5;
    text-align: right;
    margin: 35px 0;
}

.hero .content .target{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.target input{
    font-family: 'quicksand';
    border: 0;
    font-size: 14px;
    flex-grow: 1;
    margin-right: 20px;
    padding: 17px 0 17px 10px;;
}

.socials{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 200px;
    align-items: center;
    position: fixed;
    bottom: 80px;
    right: 50px;
    z-index: 8;
}

.sticker{
    height: 30px;
}

.sticker:hover{
    filter: drop-shadow(0px 1px 8px rgba(255, 255, 255, 0.5));
}


.features {
    color: white;
    background-color: black;
}
.features .wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.features h3 , .features h2{
    color: white;
}

.features .wrapper h2{
    text-align: center;
    margin-bottom: 50px;
}

.features p{
    color: #dadada;
}

.features .card{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.features .listinner{
    display: flex;
    align-items: center;
}

.features .mid{
   padding: 30px 0;
}

.features .listinner .heading{
    display: flex;
    align-items: center;
    min-width: 210px;
}

.features .listinner .heading{
    padding-right: 20px;
}

.features .listinner .filler {
    padding-left: 20px;
    border-left: 2px solid #555;
}

.features .card img{
    height:50px;
    width: 50px;
    margin-right: 15px;
}

.features .card .mockup{
    height:250px;
    width: 360px;
}

.features .two{
    margin-top: 100px;
}

.testimonials .wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials{
    /* overflow-x:hidden;  */
    background-color: white;
}

.testimonials .testim-slider {
    position: relative;
    width: 100%;
    height: 300px;
}

.testimonials .testim-slider .all-thoughts {
    width: 100%;
    height: 100%;
}

.testimonials .testim-slider .arrows {
    position: absolute;
    width: 114%;
    top: 50%;
    left: -7%;
    transform: translateY(-50%);

    display: flex;
    justify-content: space-between;
}

.testimonials .testim-slider .arrows .arr {
    height: 40px;
    width: 40px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    transition: 0.3s;
}

.testimonials .testim-slider .arrows .arr:hover {
    background-color: #F15C29;
}

.testimonials .thoughts{
    /* margin-top: 50px; */

    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;

    display: flex;
    justify-content: space-between;

    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.testimonials .thoughts.current {
    opacity: 1;
    visibility: visible;
}

.testimonials .thought{
    flex-basis: 48%;
    padding: 20px;
    border: 1px solid black;
    display: flex;
    align-items: center;
}

.thoughts .thought .face{
   height: 100px;
   margin-right: 20px; 
}

.thoughts .text{
    font-weight: 300;
}
.thoughts .text .name{
    margin-top: 5px;
    font-size: 12px;
    font-weight: bold;
}

.packages{
    background: linear-gradient(45deg,rgba(255, 255, 255,0.2) 90%,#F15C29 90%);
}

.packages .wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.packages .this{
    display: flex;
    /* align-items: center; */
    justify-content: space-evenly;
    width: 100%;
}

.packages h2 {
    color: white;
    margin-bottom: 40px;
}

.packages p{
    color: white;
}

.packages .package{
    flex-basis: 30%;
    color: white;
    background-color:  rgba(0,0,0,0.8);
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.package h3 {
    color: #F15C29;
}

.package .offername {
    margin-bottom: 20px;
    font-size: 24px;
    background-color: white;
    width:100% ;
}

.package .price{
    font-size: 45px;
    color: white;
}

.package sup{
    font-size: 10px;
    color: #aaa;
}

.package .starting{
    font-size: 12px;
    color: #aaa;
}

.package p{
    color: white;
}

.package img{
    height: 40px;
    margin: 20px 0;
}

.packages a{
    margin-top: 35px;
}

.contact{
    background-color:#F15C29;
}
.shakespeare{
    position: relative;
    background-color: white;
}
.shakespeare:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    background-image: url(../images/quotebg.png);
    opacity: 0.2;
}

.shakespeare .wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shakespeare p{
    font-family: 'quicksand','Segoe UI', Tahoma,sans-serif;
    text-align: center;
    position:relative;
    font-weight: bold;
    margin-bottom: 30px;
}

.shakespeare p .name{
    font-weight: normal;

}
.shakespeare p::before{
    content: ' “ ';
    font-size: 90px;
    font-style: initial;
    font-family: 'Engravers MT';
    color: #000;
    position:absolute;
    top: -40px;
    left: -100px;
    opacity: 0.5;
    z-index: 2;
}

.shakespeare p::after{
    content: ' " ';
    font-size: 90px;
    font-style: initial;
    font-family: 'Engravers MT';
    color: #000;
    position:absolute;
    top: -40px;
    right: -100px;
    opacity: 0.5;
    z-index: 2;
}

.shakespeare a{
    font-size: 12px;
    z-index: 1;
}

.contact h2, .contact p{
    color: white;
}

.contact .wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact .wrapper h2{
    padding: 0;
    border: 0;
}

.contact .freeheading{
    text-align: center;
    flex-basis: 40%;
}

.contact .freeheading p{
    margin-top: 20px;
}

.contact .contactform{
    flex-basis: 50%;
}

.contactform form{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contactform form input,.contactform form textarea{
    width: 80%;
}

.contactform input , .contactform textarea{
    font-family: 'quicksand', sans-serif;
    font-weight: bold;
    padding: 15px 0 15px 10px; ;
    margin-bottom: 15px;
    
}

.contactform button{
    font-weight: bold;
    padding: 15px 50px;
    background-color: #F15C29;
    color: #fff;
    border: 2px solid #fff;
    cursor: pointer;
}

.contactform button:hover{
    border: 2px solid #000;
    background-color: #000;
    color: white;
}

footer{
    background-color: black;
    padding: 20px 0;
}

footer .wrapper{
    display: flex;
    justify-content: center;
}

footer p{
    color: white;
}

/*--------------------- For Responsive ---------------------*/
@media(max-width:1000px) {
    .hero img{
        height: 220px;
    }
    .hero h1{
        font-size: 35px;
    }
    .hero a{
        font-size: 12px;
        padding: 10px;
    }
    .hero input{
        padding: 11px;
        font-size: 12px;
    }
    .hero p{
        font-size:14px; 
    }
    .features .card .mockup{
        height:180px;
        width: 230px;
    }
}

@media(max-width:900px) {
    nav{
        padding: 20px 0;
    }
    nav .wrapper{
        align-items: center;
        font-size: 14px;
    }
    nav img{
        height: 50px;
    }

    nav .menu{
        position: fixed;
        right: -70%;
        top: 0;
        height: 100vh;
        width: 70%;
        padding: 0 10%;
        z-index: 9;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;

        
        background-color: #fff;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.3);
        text-align: right;
        transition: all 0.4s;
    }

    nav ul li {
        margin: 20px 0;
    }

    nav ul li a{
        padding: 20px 0;
        color: #000;
    }

    nav .menu-btn:checked ~ .menu {
        right: 0;
      }

    .menu-icon{
        display: initial;
        z-index: 10;
        cursor: pointer;
        user-select: none;
    }
    .menu-icon img{
        height: 25px;
    }
    nav .info{
        display: initial;
        display: flex;
        align-items: center;
    }
    nav .info img{
    height:45px; 
    }
    nav .ulinfo{
        display: none;
    }
    .packages .this{
        flex-direction: column;
        justify-content: space-evenly;
    }
    
    .testimonials .thought .face {
        height: 70px;
    }
    
    .contact .wrapper{
        flex-direction: column;
    }
    .contact .contactform{
        margin-top: 20px;
        width: 80%;
    }
}

@media(max-width:800px){
    
    a.button{
        font-size: 12px;
        padding: 10px;
    }
    button{
        font-size: 12px;
        padding: 10px;
    }
    h2{
        font-size: 30px;
    }
    p{
        font-size: 14px;
    }
    header{
        height: auto;
        height: 100%;
        padding-bottom: 120px;
    }
    .hero{
        height: auto;
        top: 100px;
    }
    .hero .content p{
        text-align: center;
    }
    .hero h1{
        text-align: center;
        font-size: 30px;
    }
    .hero .wrapper{
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .hero img{
        height: 180px;
        margin: 0 0 40px 0;
    }
    .socials{
        right: 30px;
    }
    .features .card{
        flex-direction: column;
        align-items: center;
    }
    .features .two{
        margin-top: 50px;
    }
    .features .one .mockup{
        order: -1;
    }
    .features .card .mockup{
        height:150px;
        width: 200px;
        margin-bottom: 40px;
    }
    .features .listinner .heading{
        min-width: 170px;
    }
    .features h3{
        font-size: 14px;
    }

    .shakespeare p::before{
        top: -50px;
        left: -80px;
    }
    
    .shakespeare p::after{
        top: -50px;
        right: -80px;
    }
    .testimonials .thoughts{
        margin-top: 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .thoughts .one{
        width: 80%;
        margin-right: 0;
    }
    .thoughts .two{
        width: 80%;
        margin-top: 20px;
    }
    .packages .package{
        flex-direction: column;
        align-items: center;
        padding: 30px ;
        width: 90%;
    }
    .packages .one .web{
        margin-right: 0;
        margin-bottom: 20px;
    }
    .packages .two .plan{
        margin-right: 0;
    }
    .packages .two .web{
        order: -1;
        margin-bottom: 20px;
    }
    .contactform form input,.contactform form textarea{
        width: 100%;
    }
    
    .contactform input , .contactform textarea{
        padding: 10px 0 10px 10px; ;
        margin-bottom: 15px;
    }
    .contactform button{
        padding:10px 20px;
    }
    footer .wrapper{
        flex-direction: column;
        align-items: center;
    }
}

@media(max-width: 600px) {
    .testimonials .testim-slider {
        height: 400px;
    }
}

@media(max-width:480px){
    .wrapper{
        width: 80%;
    }
    
    .socials {
        right: 5px;
    }
    nav{
        padding: 15px 0;
    }
    nav .wrapper{
        font-size: 12x;
    }
    nav .menu {
        padding: 0 5%;
    }
    nav img{
        height: 40px;
    }
    a.button{
        font-size: 12px;
        padding: 10px 10px;
    }
    h2{
        font-size: 25px;
    }
    p{
        font-size: 14px;
    }
    header{
        height: auto;
        height: 100%;
        padding-bottom: 80px;
    }
    .hero{
        height: auto;
        top: 80px;
    }
    .hero h1{
        font-size: 25px;
    }
    .hero img{
        height: 150px;
    }
    .hero .target{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero .target input{
        text-align: center;
        margin-bottom: 15px;
        padding: 10px;
        width: 85%;
    }
    .hero .target a{
        margin-bottom: 20px;
    }
    .features h3{
        font-size: 14px;
        font-weight: 400;
    }
     .features p{
        font-size: 12px;
    }
    .features .listinner .heading{
        min-width: 150px;
    }
    .features .card img{
        height:30px;
        width: 30px;
    }
    
    .features .card .mockup{
        height:130px;
        width: 180px;
    }
    .features .cards{
        margin: 80px 0 0 0;   
    }
    .testimonials .testim-slider {
        height: 450px;
    }
    .thoughts .thought .face{
        height: 100px;
        /* width: 120px; */
    }
    .thoughts .one{
        width: 100%;
        margin-right: 0;
    }
    .thoughts .two{
        width: 100%;
        margin-top: 20px;
    }

    .packages{
        background: linear-gradient(45deg,rgba(255, 255, 255,0.2) 92%,#F15C29 92%);
    }
    .package img{
        height: 50px;
    }
    .packages .package{
        width: 100%;
    }
    .shakespeare p{
        margin-bottom: 20px;
    }

    .shakespeare p::before{
        top: -25px;
        font-size: 50px;
        left: -40px;
    }
    .shakespeare p::after{
        top: -25px;
        font-size: 50px;
        right: -40px;
    }
    .contactform button{
        padding: 10px 40px;
    }
    .info img{
        height: 20px;;
    }
    .info p{
        font-size: 12px;
    }
    .info .mail{
        margin-left: 20px;
    }
}

@media(max-width:360px) {
    .thoughts .thought {
        flex-direction: column;
    }
    .thoughts .thought .face{
        height: 60px;
        margin-right: 0;
        margin-bottom: 10px;
    }
}