/*ppplumbing Bennie Booysen Web Dreams 2022-23*/

* {
    user-select: none;
    box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 10px;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}

body {
    line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}

/* change colours to suit your needs */

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* change border colour to suit your needs */

hr {
    display: block;
    height: 3px;
    border: 0;
    border-top: 2px solid #101d2c;
    margin: 1rem 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

/*all resets complete */

* {
    user-select: none;
    box-sizing: border-box;
}

body {
    background: #fff !important;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

/*top section call to contact-------------------------------------------------*/

/* landing contact */

.top {
    background: #fff;
    height: 100% auto;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    text-decoration: none;
    list-style: none;
    height: 8rem;
    line-height: 6rem;
}

.top i {
    color: #ff0000;
    margin-right: .5rem;
    font-size: 1rem;
    padding: .5rem;
    border-radius: 50%;
    border: 2px solid #01028c;
}

.top a  {
    color: #222;
    font-family: 'Patua One', sans-serif;
    font-size: 1.2rem;
    display: block;
    margin: 0 auto;
    padding: 2px;
    font-weight: 500;
    text-decoration: none!important;

}

.top a.top-2 {
    float: right;
}

@media only screen and (min-width:768px) {



    .top i {

        margin-right: 1.5rem;
        font-size: 1.5rem;
        padding: 10px;
        border-radius: 50%;
    }

    .top p {

        font-size: 2rem;
        display: block;
        margin: 0 auto;
        padding: 1rem;
        font-weight: 500;
    }

    .top a.top-2 {
        float: right;
    }
}

/* navbar */



.header {
    z-index: 999;
    position: fixed;
    top: 8rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    background: #fff;
    height: 8rem;

}

.header.sticky {
    top: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7343312324929971) 27%, rgba(1, 2, 140, 0.8827906162464986) 58%, rgba(1, 2, 140, 1) 100%);
    ;
    padding: .5rem 2rem;
    transition: all 0.5s ease-in;
    box-shadow: 2px 3px 5px #222;
    width: 100%;
    height: 8rem;
}

.header.sticky:hover {
    letter-spacing: .5px;
    color: #fff;
    font-weight: 500;
}



.header .brand {
    height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 4rem;
}

.header .brand img {
    width: 8rem;
}

.header .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .menu a {
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    color: #222;
    margin: 0 3rem;
    padding: .5rem 1.5rem;
    border-radius: 10px;
    font-family: 'Patua One', sans-serif;
    letter-spacing: 1px;
}

.menu a:hover {
    background: #01028c;
    color: #fff;
    font-weight: 200;
}

.header .btn {
    color: #fff;
    cursor: pointer;
    display: none;
}

.header i {
    font-size: 2.5rem;
}

.header.sticky .menu a {
    color: #fff;
    font-weight: 400;
    transform: all 0.2s ease;
}

.header.sticky .menu a:hover {
    background: #ff0000;
}

@media (max-width:1060px) {

    .header .btn {
        display: flex;
        margin-right: 4rem;
        color: #ff0000;
    }

    .header.sticky .header .btn {
        display: flex;
        margin-right: 4rem;
        color: #fff;
    }

    .header .menu {
        position: fixed;
        background: #01028c;
        flex-direction: column;
        width: 25rem;
        height: 100vh;
        top: 8rem;
        right: -100%;
        padding: 8rem 2rem;
        transition: all 0.5s ease;
    }

    .header .menu.active {
        right: 0;
    }


    .header .menu .close-btn {
        position: absolute;
        top: 0;
        left: 0;
        margin: 1.5rem;
        color: #ff0000;
        font-size: 5rem;
    }

    .header .menu a {
        display: block;
        font-size: 2rem;
        margin: 1rem;
        padding: 0 1.5rem;
        color: #fff;
    }

}

@media (max-width:500px) {

    .header .btn {
        display: flex;
        margin-right: 1rem;

    }

    .header .menu a {

        font-size: 1.5rem;
        margin: 1rem;
        padding: 0 1rem;
        color: #fff;
        font-weight: 400;
    }

    .header .menu {

        flex-direction: column;
        width: 50%;
        height: 100vh;
        top: 0rem;
        right: -100%;
        padding: 5rem 1rem;
        transition: all 0.5s ease;
    }


    .header .menu .close-btn {
        position: absolute;
        top: 0;
        left: 0;
        margin: 1.5rem;
        color: #fff;
        font-size: 3rem;
    }

    .header .brand {
        height: 8rem;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 2rem;
    }


}



/*Landing Page bg vid style large*/

.hero-small {
    display: flex;
    background: rgba(0, 0, 0, 0.0);
    margin-bottom: 0rem;
    position: relative;
    overflow: hidden;
    height: calc(100vh - 16rem);

}

.vid-bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    max-width: 100%;
    min-height: 100%;
    background-position: top;
}

.hero a {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 2rem;
    padding: .5rem 1rem;
    color: #fff !important;
    background: #ff0000;
    border: 5px solid transparent;
    border-radius:3px;
    font-size: 1.6rem;
    font-weight: 600;
    z-index: 99;
    list-style: none;
    text-decoration: none !important;
    text-transform: uppercase;
}







@media only screen and (min-width:768px) {

    /* logo styling */
    .navbar-brand {
        width: 100%;
        position: absolute;
        max-width: 30rem;
        top: 2.5rem;
        left: 50%;
        transform: translateX(-50%);
        transition: all 0.5s;
    }



    .hero-small {
        display: none;
        background: rgba(0, 0, 0, 0.0);
        margin-bottom: 0rem;
        position: relative;
        overflow: hidden;
        height: calc(100vh - 10rem);

    }


    .hero {
        display: flex;
        background: rgba(0, 0, 0, 0.0);
        margin-bottom: 0rem;
        position: relative;
        overflow: hidden;
        height: calc(100vh - 20rem);

    }

    .vid-bg {
        position: absolute;
        z-index: -1;
        top: 0;
        left: 50%;
        transform: translate(-50%);
        max-width: 100%;
        min-height: 100%;
        background-position: top;
    }


}



@media only screen and (min-width:1024px) {
    .hero a {
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        bottom: 2rem;
        padding: .5rem 1rem;
       color: #fff !important;
        background: #ff0000;             
        font-size: 1.8rem;
        font-weight: 600;
        z-index: 99;
        list-style: none;
        text-decoration: none !important;

        /*    display: none;*/
    }

    .hero {
        display: flex;
        background: rgba(0, 0, 0, 0.0);
        margin-bottom: 0rem;
        position: relative;
        overflow: hidden;
        height: calc(100vh - 10rem);

    }

}


@media only screen and (min-width:1850px) {


    .hero {
        display: flex;
        background: rgba(0, 0, 0, 0.0);
        margin-bottom: 0rem;
        position: relative;
        overflow: hidden;
        height: calc(100vh - 25rem);

    }

}












/*ticker tape----------------------------------------------------------------------------------------------*/

.text {
    width: 100%;
    padding: 0;
    margin: 6rem 0 0 0;
    background: #fff !important;
    height: 100%;
}

marquee {
    background: transparent;
    margin: 0 auto;
    display: block;
    color: rgba(57, 57, 57, 0.85);
    width: 80%;
    height: 10rem;
    top: 0px;
}

.ticker-left li {
    font-size: 2rem;
    font-family: 'Patua One', sans-serif;
    line-height: 10rem;
    display: inline-block;
    min-width: 50%;
    font-weight: 600;
    padding: 1rem 0 0 0;
    color: #ff0000;
    font-weight: 400;
    word-spacing: 4px
}

span.ticker
{
    color:#01028c;
    font-size: 2rem;
}

/*-------------------------------ticker tape end-----------------------------------------*/

.sec-img {
    width: 95%;
    height: 100%;
    background: transparent;
    margin: 3rem auto;
    text-align: center;
    margin-bottom: -16rem;
}
.sec-img2 {
    width: 95%;
    height: 100%;
    background: transparent;
    margin: 0rem auto 3rem;
    text-align: center;
   
}

/*------------------------about section start-------------------------------------------*/
.about {
    width: 100%;
    margin:6rem 0 0 0;
    padding: 0;
    text-align: center;
}

.wrap-who
{
    width:100%;
    background:#fff;
    height:inherit;
    padding:3rem;
    text-align: center;
    margin:4rem auto 0rem;
}

 h2.ab {
    text-align: center;
    letter-spacing: 1px;    
    padding: 6rem 0rem 0 0;
    color: #ff0000;
    font-family: 'Patua One', sans-serif;
    font-size: 5rem;
}

h3.ab {
    text-align: center;
    color: #444;
    font-size:3rem;
    font-family: 'Quicksans', sans-serif;   
    padding: 1rem;    
    font-weight: 600;
}
h3.abs {
    text-align: center;
    color: #444;
    font-size:3rem;
    font-family: 'Quicksans', sans-serif;   
    padding: 1rem;    
    font-weight: 600;
}

.about h1.what {
    width:90%;
    margin:0 auto;
    padding: 1rem 1rem 2rem 1rem;
    color: #444;
    font-weight: 600;
    font-family: 'Patua One', sans-serif;
    text-align: center;
    font-size:2rem;
    letter-spacing:1px;
    
}

span.ab {
    font-size:3rem;
    color: #01028c;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    letter-spacing: -1px;    
}

.when-who {
  Width:60%;
    text-align: center;
    margin:0 auto;
}

.about p.when {
    padding: .5rem;
    color: #101d2c;
    font-weight: 400;
    font-family: 'Patua One', sans-serif;
    text-align: left;
    font-size: 1.5rem;
    margin-left: 7rem;
    letter-spacing: .5px;
}

.when-who i {
    font-size:2rem;
    color:green;
    margin-right: 1rem;

}



 p.ab {
    padding: .5rem;
    color: #444;
    font-weight: 400;
    font-family: 'Patua One', sans-serif;
    text-align: left;
    margin-left:3rem;
    font-size: 1.5rem;
}

.wrapper-fb
{
    margin:0 auto;
    text-align: center;
    padding:2rem;
    width:80%;
}

/*social area start*/

.socials {
    width: 100%;
    padding: 0;
    margin: 0;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background:#222 ;   
    margin-top: 2rem;
}

h2.social {
    text-align: center;

    margin-top: 1rem;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Work Sans', sans-serif;
    font-size: 3rem;

}

.connect {
    text-align: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

.connect i {
    display: inline-block;
    padding: .5rem 4.5rem;
    font-weight: bolder;
    font-size: 2.5rem;
    text-align: center;
    color:#fff;
}


.fa-facebook-square {
    color: #3b5998;
    font-weight: bolder;
}

.fa-instagram {
    color: #c13584;
}

.fa-youtube {
    color: #ff0000;
}

/*----------- about area media queries -----------*/

@media only screen and (min-width:768px) {
    
    .about {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}



 h2.ab {
    text-align: center;
    letter-spacing: 1px;    
    padding: 6rem 0 0 0;      
    font-size: 8rem;
}

h3.ab {
    text-align: center;   
    font-size:5rem;    
    padding: 1rem 0 2rem 0;    
    font-weight: 600;
}
    h3.abs {
    text-align: center;   
    font-size:4rem;    
    padding: 1rem 0 2rem 0;    
    font-weight: 600;
}
    
.about h1.what {
    width:90%;
    margin:0 auto;
    padding: 3rem 1rem 5rem 1rem;
    color: #444;
    font-weight: 600;
    font-family: 'Patua One', sans-serif;
    text-align: center;
    font-size:4rem;
    letter-spacing:1px;
}

span.ab {
    font-size:5rem;
    color: #01028c;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    letter-spacing: -1px;    
}

    .when-who {
    width:90%;
    text-align: center;
    margin:0 auto;
}


.when-who i {
    font-size:3rem;
    color:green;
    margin-right: 1rem;

}



 p.ab {
    padding: .5rem;
    color: #444;
    font-weight: 600;
    font-family: 'Patua One', sans-serif;
    text-align: left;
    margin-left:5rem;
    font-size: 1.7rem;
}


    
   

   

    .socials h2.social {
        text-align: center;
        margin-top: 3rem;
        padding: 3rem 0;
        color: rgba(255, 255, 255, 0.85);
        font-family: 'Work Sans', sans-serif;
        font-size: 3.2rem;

    }

    .connect {
        text-align: center;
        width: 100%;
        padding: 3rem 0;
        margin: 0;
    }

    .connect i {
        display: inline-block;
        padding: .5rem 4.5rem;
        font-weight: bolder;
        font-size: 4rem;
        text-align: center;
    }

    .about iframe {
        margin: auto;
        padding: .5rem 1.5rem;
    }
}

@media only screen and (min-width:1024px) {


 h2.ab {
    text-align: center;
    letter-spacing: 1px;    
    padding: 6rem 0 0 0;      
    font-size: 8rem;
}

h3.ab {
    text-align: center;   
    font-size:5rem;   
    padding: 1rem;    
    font-weight: 600;
}
    h3.abs {
    text-align: center;   
    font-size:3rem;   
    padding: 1rem;    
    font-weight: 600;
}
    
.about h1.what {
    width:70%;
    margin:0 auto;
    padding: 2rem 1rem 5rem 1rem;
    color: #444;
    font-weight: 600;
    font-family: 'Patua One', sans-serif;
    text-align: center;
    font-size:4rem;
    letter-spacing:1px;
}

span.ab {
    font-size:5rem;
    color: #01028c;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    letter-spacing: -1px;    
}

    
    
    .when-who {
    width:95%;
    text-align: center;
    margin:0 auto;
}


.when-who i {
    font-size:3rem;
    color:green;
    margin-right: 1rem;

}



 p.ab {
    padding: .5rem;
    color: #444;
    font-weight: 600;
    font-family: 'Patua One', sans-serif;
    text-align: left;
    margin-left:5rem;
    font-size: 2rem;
}

   

    .socials h2.social {
        text-align: center;
        margin-top: 2rem;
        padding: 2rem 0;
        color: rgba(255, 255, 255, 0.85);
        font-family: 'Work Sans', sans-serif;
        font-size: 3.2rem;

    }

    .connect {
        text-align: center;
        width: 100%;
        padding: 2rem 0;
        margin: 0;
    }

    .connect i {
        display: inline-block;
        padding: .5rem 4.5rem;
        font-weight: bolder;
        font-size: 4rem;
        text-align: center;
    }

    .about iframe {
        margin: auto;
        padding: .5rem 1.5rem;
    }
}



.socials hr {
    border-top: 3px solid #fff;
    width: 55%;
    margin: 0 auto;
    padding: 2rem;
}


@media only screen and (min-width:1280px)
{
      .when-who {
    width:75%;
    text-align: center;
    margin:0 auto;
}
}

.reviews
{
    width:100%;
    margin:0 auto;
    background:#222;
    text-align: center;
    
}
h2.review
{
    padding:3rem 0 2rem 0;
    color:#fff;
    font-family: 'Work Sans', sans-serif;
   font-size: 3.2rem;
}

/*----------------------------about section end-----------------------------------------------*/

/*Hydro Jetting Section Start*/
.hydro
{
    width:80%;
    text-align: center;
    margin:0rem auto 3rem;
    background:url(images/bg-hydro.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
}
.wrap-hyd
{
    background:rgba(255,255,255,0.25);
    width:100%;
}

.hydrovid
{
    max-width:80%;
    margin: 4rem auto;
    border-radius:10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

h2.blocked
{
    text-align: center;
    padding:0 0 2rem 0;
    color:#ff0000;
    font-size: 3rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
}
h2.hyd
{
    text-align: center;
    padding:0 0 2rem 0;
    color:#01028c;
    font-size: 3rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
}

p.hydro
{
    text-align: left;
    margin-left:1rem;
    color:#444;
    font-family:  'Patua One', sans-serif;
    font-size: 2rem;
    letter-spacing: .5px;
}
p.hydro2
{
    text-align: left;
    margin-left:1rem;
    color:#444;
    font-family:  'Patua One', sans-serif;
    font-size: 2rem;
    letter-spacing: .5px;
    margin-bottom:3rem;
}

.hydro a.cta
{   
   
    padding: .5rem 1rem;
    color: #fff !important;
    background: #ff0000;
    border: 5px solid transparent;
    border-radius:3px;
    font-size: 1.6rem;
    font-weight: 600;
    z-index: 99;
    list-style: none;
    text-decoration: none !important;
    text-transform: uppercase;
}

/*--------------------------------------*/

@media only screen and (min-width:768px)
{
    h2.blocked
{       
    font-size: 6rem;   
    font-weight: 800;
}
h2.hyd
{   
    font-size: 6rem;   
    font-weight: 800;
}

p.hydro
{
    text-align:center;
    margin:0 auto;     
    font-size: 3rem;
    letter-spacing: .5px;
}
p.hydro2
{
   
    text-align:center;
    margin:0 auto;     
    font-size: 3rem;
    letter-spacing: .5px;
    padding:0 0 3rem 0;
}

.hydro a.cta
{   
   
    padding: .5rem 1rem;
    color: #fff !important;
    background: #ff0000;
    border: 5px solid transparent;
    border-radius:3px;
    font-size:2rem;
    font-weight: 600;
    z-index: 99;
    list-style: none;
    text-decoration: none !important;
    text-transform: uppercase;
}

}

/*----------------services section start------------------------------------------------------*/

.services {
    width: 95%;
    padding: 0;
    margin: 0rem auto;
    background: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

h2.service {
    text-align: left;
    letter-spacing: 1px;
    margin-top: 12rem;
    padding: 10rem 0 0 4rem;
    color: #ff0000;
    font-family: 'Patua One', sans-serif;
    font-size: 5rem;
}

.services h2.serv {
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    color: #222;
    font-weight: 800;
    font-size: 2.5rem;
    margin-top: 2rem;
}

p.service {
    padding: .5rem;
    color: #444;
    font-weight: 400;
    font-family: 'Patua One', sans-serif;
    text-align: left;
    font-size: 1.5rem;
    margin-left: 0rem;
    letter-spacing: .5px;
}

.services img {
    width: 100%;
    padding: 2rem 1rem;
}


.services hr {
    border-top: 3px solid #ff0000;
    width: 90%;
    margin: 0 auto;
    padding: 2rem;
}



/*------services media queries ----------*/

@media only screen and (min-width:768px) {

    .services {
        width: 95%;
        padding: 0;
        margin: 0 auto;
        background: #fff;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    h2.service {
        text-align: left;
        letter-spacing: 1px;
        margin-top: 12rem;
        padding: 12rem 0 3rem 5rem;
        color: #ff0000;
        font-family: 'Patua One', sans-serif;
        font-size: 6rem;
    }

    .services h2.serv {
        text-align: left;
        font-family: 'Quicksand', sans-serif;
        color: #01028c;
        font-weight: 800;
        font-size: 2.5rem;
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .services p.service {
        padding: .5rem;
        color: #444;
        font-weight: 500;
        font-family: 'Patua One', sans-serif;
        text-align: left;
        font-size: 1.7rem;
        margin-left: 0rem;
        letter-spacing: .5px;
    }

    .services img {
        width: 100%;
        padding: 2rem 1rem;
    }


}

@media only screen and (min-width:1024px) {
    .services {
        width: 90%;
        padding: 0;
        margin: 0 auto;
        background: #fff;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        text-align: center;
    }

    h2.service {
        text-align: center;
        letter-spacing: 1px;
        margin-top: 10rem;
        padding: 14rem 0 0 0;
        color: #ff0000;
        font-family: 'Patua One', sans-serif;
        font-size: 6rem;
    }

    h2.serv {
        text-align: left;
        font-family: 'Quicksand', sans-serif;
        color: #01028c;
        font-weight: 800;
        font-size: 2.5rem;
        padding: 2rem;
    }

    p.service {
        padding: 1rem;
        color: #444;
        font-weight: 600;
        font-family: 'Patua One', sans-serif;
        text-align: left;
        font-size: 1.8rem;
        margin-left: 1rem;
        letter-spacing: .5px;
    }

    .services img {
        width: 90%;
        padding: 2rem 1rem;
    }

}

/*-------------services area end -------------------------------*/



/*---------get social area--------------------------------------*/

.soc {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    text-align: center;
}

.soc h2.soc {
    text-align: center;
    padding: 6rem 1rem 1rem 1rem;
    color: #1e314f;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.soc h2.like {
    padding: 2rem;
    text-align: center;
    font-family: 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: #3b5998;
}

.soc i {
    text-align: center;
    font-size: 3rem;
    background: #3b5998;
    color: #fff;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 50%;
}

/* facebook area */

.wrapper-fb {
    width: 100%;
    padding: 1rem;
    margin: 0 auto;
    text-align: center;
    display: table;
}

.wrapper-fb iframe {
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
    text-align: center;
}




@media only screen and (min-width:768px) {
    .soc h2.soc {
        font-size: 4rem;
        letter-spacing: 2px;
        padding: 6rem 2rem 2rem 2rem;
    }

    .soc h2.like {
        font-size: 4rem;
        letter-spacing: 2px;
        padding: 6rem 2rem 2rem 2rem;
    }

    h2.youtube {
        font-size: 4rem;
        letter-spacing: 2px;
        padding: 6rem 2rem 2rem 2rem;
    }

    .soc i {
        font-size: 4rem;
    }
}

.soc hr {
    border-top: 3px solid #1e314f;
    width: 85%;
    margin: 0 auto;
    padding: 1rem;
}


/*--------------------- social media area end-------------------*/

/*-------------------contact area-------------------------------*/

.contacts {
    width:95%;
    text-align: center;
    margin:0rem auto 3rem;
    background:url(images/bg-hydro.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
}

h2.cont {
    text-align: center;
    letter-spacing: 1px;
    padding: 2rem 1rem 1rem 1rem;
    color:#ff0000;
    font-family: 'Patua One', sans-serif;
    font-size: 3rem;
    font-weight: 600;
}


.contacts p.cont {

    text-align: left;
    color:#222;
    font-weight: 500;
    font-family: 'Patua One', sans-serif;
    font-size: 1.5rem;
    padding: 4rem 1rem 1rem 4rem;

}


.contacts i {
    margin-right:.5rem;
    padding:.5rem;
    font-size:1.8rem;
    border-radius: 4px;
    color:#ff0000;
    background: #fff;
    border: 2px solid transparent;
}

.contacts i.fa-facebook-square {
    color: #3b5998;
}

.contacts i.fa-instagram {
    color: #c13584;
}

.connects {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 3rem;
}

.connects i {
    border: none;
    background: #fff;
    border-radius: 4px;
    font-size: 2.2rem;
}

.contacts hr {
    border-top: 3px solid #ff0000;
    width: 85%;
    margin: 0 auto;
    padding: 1rem;
}

.con-det img {
    width: 25rem;
}

/*-------------form-----------------------------*/

.form {
    background:#222;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin: 2rem auto;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.85);
}

#form-box {
    padding: 3rem;
    padding-bottom: 2rem;
}

.inp,
#msg-box {
    display: block;
    width: 95%;
    padding: 1.2rem;
    border: none;
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 1.5rem;
}

.inp:focus,
#msg-box:focus {
    outline: none;
    box-shadow: 0 0 5px 2px rgba(1, 2, 140, 0.85);
}

::-webkit-input-placeholder {
    color: #222;
}

#msg-box {
    resize: none;
    height: 160px;
}

.subs-btn {
    width: 95%;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: bold;
    margin-left: -15px;
    border: none;
    background:#ff0000 !important;
    color: rgba(255, 255, 255, .85);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    transition: all 0.6s ease;
    letter-spacing: 1.5px;
}

.subs-btn:hover {
    background:#fff!important;
    color:#ff0000;
    letter-spacing:1px;
    width: 94%;
    
}

 .contacts i.fa-facebook-square {
        color: #3b5998;
    }

    .contacts i.fa-instagram {
        color: #c13584;
    }









@media only screen and (min-width:768px) {

    .contacts {      
      width:95%
    }

    .contacts h2.cont {
        font-size: 3.5rem;
    }


    .contacts p.cont {

        font-weight: 500;
        font-size: 1.6rem;
        padding: 3rem 1rem 1rem 1rem;
        letter-spacing: 1px;
    }


    .contacts i {
        margin-right: 1rem;
        padding: .5rem;
        font-size: 1.5rem;
        border-radius: 4px;
     
    }

   


    .connects i {      
        font-size:2.8rem;
    }

    
    .con-det img {
        width: 25rem;
        margin-top: 2rem;
    }
}



@media only screen and (min-width:1024px) {
    .contacts h2.cont {
        font-size: 4rem;
    }


    .contacts p.cont {

        font-weight: 500;
        font-size: 2rem;
        padding: 2.5rem 1rem 1rem 4rem;
        letter-spacing: 1px;
    }


    .contacts i {
        margin-right: 1rem;
        padding: 1rem;
        font-size: 3rem;
        border-radius: 4px;
      
    }

   
    .connects {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        margin-top: 3rem;
    }

    .connects i {
        border: none;
        background: #fff;
        border-radius: 4px;
        font-size: 3rem;
    }

   
    .con-det img {
        width: 25rem;
        margin-top: 3rem;
    }
}


/*-------------------- social area end-------------------*/

.og
{
    display:none
}
/*--------------------footer-----------------------------*/

.footer {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #fff;
}

.footer hr {
    border-top: 3px solid #01028c;
    width: 90%;
    margin: 0 auto;
    padding: 2rem;
}

h4.foot {
    text-align: center;
    letter-spacing: 1px;
    padding: 6rem 1rem 1rem 1rem;
    color: #ff0000;
    font-family: 'Patua One', sans-serif;
    font-size: 3rem;
}

.footer p.hrs {
    text-align: left;
    color: #222;
    font-weight: 500;
    font-family: 'Patua One', sans-serif;
    font-size: 1.8rem;
    padding: .5rem 1rem 1rem .5rem;
    margin-left: 5rem;
}

span.hour {
    color: #01028c;
    margin-left: .5rem;
    font-size: 1.5rem;

}

p.copyright {
    text-align: center;
    font-family: 'Patua One', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #222;
    padding: 2rem;
}

.footer img {
    width:25%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.map{
    text-align: center;
    margin:2rem auto;
}

h3.map
{
     font-family: 'Patua One', sans-serif;
    color:#ff0000;
    font-size: 3.5rem;
}

p.map
{
    font-family: 'Patua One', sans-serif;
    color:#222;
    font-size:1.8rem;
}


@media only screen and (min-width:768px)
{
    
}

.designed {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
    background: #fff;
}

.designed img {
    width: 200px;
    padding: 1rem;
}

.designed p {
    font-family: 'Quicksand', sans-serif;
    padding: 1rem;
    color: #101d2c;
}


}


@media only screen and (min-width:768px) {
    .footer p.hrs {
        text-align: left;
        margin-left: 3rem;
        font-size: 1.9rem;
        padding: 1rem 1rem 1rem .5rem;
    }

    span.hour {
        color: #01028c;
        margin-left: 1rem;
        font-size: 1.7rem;

    }

    .footer img {
        width: 50%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        padding:2rem 0 0 0;
    }

    p.copyright {
        text-align: center;
        font-family: 'Patua One', sans-serif;
        font-size: 1.7rem;
        letter-spacing: 1px;
        color: #222;
        padding: 2rem;
    }

}

@media only screen and (min-width:1024px) {
    .footer p.hrs {
        text-align: left;
        margin-left: 5rem;
        font-size: 1.9rem;
        padding: 1rem 1rem 1rem .5rem;
    }

    span.hour {
        color: #01028c;
        margin-left: 1rem;
        font-size: 1.7rem;

    }

    .footer img {
        width:30%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        padding: 4rem 0 0 0;
    }

    p.copyright {
        text-align: center;
        font-family: 'Patua One', sans-serif;
        font-size: 1.7rem;
        letter-spacing: 1px;
        color: #222;
        padding: 2rem;
    }

}
