/*--------------------------------------------------------------------------------------
    TABLE OF CONTENT
----------------------------------------------------------------------------------------
========================================================================================
    1. TEXT TYPOGRAPHY CSS
    2. MARGIN CSS
    3. PADDING CSS
    4. BACKGROUND CSS
    5. COLOR CSS
    6. BORDER CSS
    7. SHADOW CSS
    8. BEFORE AFTER CSS
    9. COMMON CSS
    10. SPACE CSS
----------------------------------------------------------------------------------------*/

/*--------------------------
    1. TEXT TYPOGRAPHY CSS
-----------------------------*/

/*Define main font on google font*/
@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700|Rubik:300,300i,400,400i,500,500i,700,700i,900&display=swap');


.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
}

a {
    color: #3e425c;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
}

a:hover {
    color: #08d665;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
}

img {
    max-width: 100%;
    height: auto;
}

html{
    scroll-behavior: smooth;
}
body,
html {
    height: 100%;
}


h1,h2,h3,h4{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
.tuc{
    text-transform: uppercase;
}
.tct{
    text-transform: capitalize;
}


.font_light{
    font-weight: 300;
}
.font_bold{
    font-weight: 700
}
.font_regular{
    font-weight: 400;
}
.font_thin{
    font-weight: 100;
}
.b{
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

h1{
    font-size: 90px;
    line-height: 110px;
    color: #ffffff;
    letter-spacing: -4px;
}

h2{
    font-size: 56px;
    letter-spacing: -2px;
    line-height: 74px;
    color: #070c24;
}

h3{
    font-size: 23px;
    color: #222222;
}


h6{
    font-size: 16px;
    color: #98adc2;
}

h5{
   font-size: 18px;
    line-height: 28px;
    color: #ff5621;
    font-weight: 400;
}

h4{
    font-size: 18px;
    color: #fff;
}

body {
    font-size: 16px;
    line-height: 27px;
    color: #000;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    overflow-x: hidden;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Remove Chrome Input Field's Unwanted Yellow Background Color */

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}

/*----------------------
    ALIGN
-----------------------*/

.center,
.left,
.right {
    position: relative;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
}

/*-----------------------
    FONTS
------------------------*/
.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

.font12 {
    font-size: 12px;
}

.font14 {
    font-size: 14px;
}

.font16 {
    font-size: 16px;
}

.font18 {
    font-size: 18px;
}

.font20 {
    font-size: 20px;
}

.font22 {
    font-size: 22px;
}

.font24 {
    font-size: 24px;
}

.font26 {
    font-size: 26px;
}

.font28 {
    font-size: 28px;
}

.font32 {
    font-size: 32px;
}

.font30 {
    font-size: 30px;
}

.font36 {
    font-size: 36px;
}

.font38 {
    font-size: 38px;
}

.font48 {
    font-size: 48px;
}

.font42 {
    font-size: 42px;
}

.font48 {
    font-size: 48px;
}

.font50 {
    font-size: 50px;
}

.font52 {
    font-size: 52px;
}

.font60 {
    font-size: 60px;
}

.font80 {
    font-size: 80px;
}

.font120 {
    font-size: 120px;
}

.font140 {
    font-size: 140px;
}

/*------------------------------
    RESPONSIVE
-------------------------------*/
@media only screen and (min-width: 1200px) {
    .lg-center {
        text-align: center;
    }

    .lg-left {
        text-align: left;
    }

    .lg-right {
        text-align: right;
    }

    .lg-font12 {
        font-size: 12px;
    }

    .lg-font14 {
        font-size: 14px;
    }

    .lg-font16 {
        font-size: 16px;
    }

    .lg-font18 {
        font-size: 18px;
    }

    .lg-font20 {
        font-size: 20px;
    }

    .lg-font22 {
        font-size: 22px;
    }

    .lg-font24 {
        font-size: 24px;
    }

    .lg-font26 {
        font-size: 26px;
    }

    .lg-font28 {
        font-size: 28px;
    }

    .lg-font32 {
        font-size: 32px;
    }

    .lg-font30 {
        font-size: 30px;
    }

    .lg-font36 {
        font-size: 36px;
    }

    .lg-font38 {
        font-size: 38px;
    }

    .lg-font48 {
        font-size: 48px;
    }

    .lg-font42 {
        font-size: 42px;
    }

    .lg-font48 {
        font-size: 48px;
    }

    .lg-font50 {
        font-size: 50px;
    }

    .lg-font52 {
        font-size: 52px;
    }

    .lg-font60 {
        font-size: 60px;
    }

    .lg-font80 {
        font-size: 80px;
    }

    .lg-font120 {
        font-size: 120px;
    }

    .lg-font140 {
        font-size: 140px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .md-center {
        text-align: center;
    }

    .md-left {
        text-align: left;
    }

    .md-right {
        text-align: right;
    }

    .md-font12 {
        font-size: 12px;
    }

    .md-font14 {
        font-size: 14px;
    }

    .md-font16 {
        font-size: 16px;
    }

    .md-font18 {
        font-size: 18px;
    }

    .md-font20 {
        font-size: 20px;
    }

    .md-font22 {
        font-size: 22px;
    }

    .md-font24 {
        font-size: 24px;
    }

    .md-font26 {
        font-size: 26px;
    }

    .md-font28 {
        font-size: 28px;
    }

    .md-font32 {
        font-size: 32px;
    }

    .md-font30 {
        font-size: 30px;
    }

    .md-font36 {
        font-size: 36px;
    }

    .md-font38 {
        font-size: 38px;
    }

    .md-font48 {
        font-size: 48px;
    }

    .md-font42 {
        font-size: 42px;
    }

    .md-font48 {
        font-size: 48px;
    }

    .md-font50 {
        font-size: 50px;
    }

    .md-font52 {
        font-size: 52px;
    }

    .md-font60 {
        font-size: 60px;
    }

    .md-font80 {
        font-size: 80px;
    }

    .md-font120 {
        font-size: 120px;
    }

    .md-font140 {
        font-size: 140px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .sm-center {
        text-align: center;
    }

    .sm-left {
        text-align: left;
    }

    .sm-right {
        text-align: right;
    }

    .sm-font12 {
        font-size: 12px;
    }

    .sm-font14 {
        font-size: 14px;
    }

    .sm-font16 {
        font-size: 16px;
    }

    .sm-font18 {
        font-size: 18px;
    }

    .sm-font20 {
        font-size: 20px;
    }

    .sm-font22 {
        font-size: 22px;
    }

    .sm-font24 {
        font-size: 24px;
    }

    .sm-font26 {
        font-size: 26px;
    }

    .sm-font28 {
        font-size: 28px;
    }

    .sm-font32 {
        font-size: 32px;
    }

    .sm-font30 {
        font-size: 30px;
    }

    .sm-font36 {
        font-size: 36px;
    }

    .sm-font38 {
        font-size: 38px;
    }

    .sm-font48 {
        font-size: 48px;
    }

    .sm-font42 {
        font-size: 42px;
    }

    .sm-font48 {
        font-size: 48px;
    }

    .sm-font50 {
        font-size: 50px;
    }

    .sm-font52 {
        font-size: 52px;
    }

    .sm-font60 {
        font-size: 60px;
    }

    .sm-font80 {
        font-size: 80px;
    }

    .sm-font120 {
        font-size: 120px;
    }

    .sm-font140 {
        font-size: 140px;
    }
}

@media only screen and (max-width: 767px) {
    .xs-center {
        text-align: center;
    }

    .xs-left {
        text-align: left;
    }

    .xs-right {
        text-align: right;
    }

    .xs-font12 {
        font-size: 12px;
    }

    .xs-font14 {
        font-size: 14px;
    }

    .xs-font16 {
        font-size: 16px;
    }

    .xs-font18 {
        font-size: 18px;
    }

    .xs-font20 {
        font-size: 20px;
    }

    .xs-font22 {
        font-size: 22px;
    }

    .xs-font24 {
        font-size: 24px;
    }

    .xs-font26 {
        font-size: 26px;
    }

    .xs-font28 {
        font-size: 28px;
    }

    .xs-font32 {
        font-size: 32px;
    }

    .xs-font30 {
        font-size: 30px;
    }

    .xs-font36 {
        font-size: 36px;
    }

    .xs-font38 {
        font-size: 38px;
    }

    .xs-font48 {
        font-size: 48px;
    }

    .xs-font42 {
        font-size: 42px;
    }

    .xs-font48 {
        font-size: 48px;
    }

    .xs-font50 {
        font-size: 50px;
    }

    .xs-font52 {
        font-size: 52px;
    }

    .xs-font60 {
        font-size: 60px;
    }

    .xs-font80 {
        font-size: 80px;
    }

    .xs-font120 {
        font-size: 120px;
    }

    .xs-font140 {
        font-size: 140px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .xsl-center {
        text-align: center;
    }

    .xsl-left {
        text-align: left;
    }

    .xsl-right {
        text-align: right;
    }

    .xsl-font12 {
        font-size: 12px;
    }

    .xsl-font14 {
        font-size: 14px;
    }

    .xsl-font16 {
        font-size: 16px;
    }

    .xsl-font18 {
        font-size: 18px;
    }

    .xsl-font20 {
        font-size: 20px;
    }

    .xsl-font22 {
        font-size: 22px;
    }

    .xsl-font24 {
        font-size: 24px;
    }

    .xsl-font26 {
        font-size: 26px;
    }

    .xsl-font28 {
        font-size: 28px;
    }

    .xsl-font32 {
        font-size: 32px;
    }

    .xsl-font30 {
        font-size: 30px;
    }

    .xsl-font36 {
        font-size: 36px;
    }

    .xsl-font38 {
        font-size: 38px;
    }

    .xsl-font48 {
        font-size: 48px;
    }

    .xsl-font42 {
        font-size: 42px;
    }

    .xsl-font48 {
        font-size: 48px;
    }

    .xsl-font50 {
        font-size: 50px;
    }

    .xsl-font52 {
        font-size: 52px;
    }

    .xsl-font60 {
        font-size: 60px;
    }

    .xsl-font80 {
        font-size: 80px;
    }

    .xsl-font120 {
        font-size: 120px;
    }

    .xsl-font140 {
        font-size: 140px;
    }
}

/*--------------------
    WIDTH
---------------------*/
.width50 {
    width: 50px;
}

.width60 {
    width: 60px;
}

.width70 {
    width: 70px;
}

.width80 {
    width: 80px;
}

.width90 {
    width: 90px;
}

.width100 {
    width: 100px;
}

.width110 {
    width: 110px;
}

.width120 {
    width: 120px;
}

.width50p {
    width: 50%;
}

.width70p {
    width: 70%;
}

.width80p {
    width: 80%;
}

.width90p {
    width: 90%;
}

.width100p,
.width100p img {
    width: 100%;
}

/*-----------------------
    DISPLAY
------------------------*/
.display-table {
    display: table;
}

.display-table-cell {
    display: table-cell;
}

.vertical-align-middle {
    vertical-align: middle;
}


.last-p-mb0 p:last-of-type {
    margin-bottom: 0;
}

.first-h4-mb0 h4:first-of-type {
    margin-bottom: 0;
}

.font300 {
    font-weight: 300;
}

.font400 {
    font-weight: 400;
}

.font500 {
    font-weight: 500;
}

.font600 {
    font-weight: 600;
}

.font700 {
    font-weight: 700;
}

.font800 {
    font-weight: 800;
}

/*--------------------
    CONTENT POSITION
---------------------*/
.fix {
    overflow: hidden;
}

.relative {
    position: relative;
    overflow: hidden;
}

.absulute {
    position: absolute;
}

.v-center {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    z-index: 9;
}

.h-center {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.h-center-reverse {
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}

.content-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.flex-v-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.display-block {
    display: block;
}

.social-bookmark li {
    display: inline;
}

.social-bookmark li a {
    display: inline-block;
    margin: 0 2px;
    text-align: center;
}

.inline li {
    display: inline;
}

.inline-block li {
    display: inline-block;
}

.inline-block {
    display: inline-block;
}

@media (min-width: 768px) and (max-width: 991px) {
    .sm-width100p {
        width: 100%;
    }

    .flex-v-center {
        display: inherit;
    }
}

@media only screen and (max-width: 767px) {
    .xs-width100p {
        width: 100%;
    }

    .flex-v-center {
        -webkit-box-align: inherit;
        -ms-flex-align: inherit;
        align-items: inherit;
        display: inherit;
    }
}

/*--------------------------
    MARGIN CSS
----------------------------*/
.mt100 {
    margin-top: 100px;
}

.mt90 {
    margin-top: 90px;
}

.mt80 {
    margin-top: 80px;
}

.mt70 {
    margin-top: 70px;
}

.mt60 {
    margin-top: 60px;
}

.mt50 {
    margin-top: 50px;
}

.mt40 {
    margin-top: 40px;
}

.mt30 {
    margin-top: 30px;
}

.mt20 {
    margin-top: 20px;
}

.mt10 {
    margin-top: 10px;
}

.no-margin {
    margin: 0;
}

.mb100 {
    margin-bottom: 100px;
}
.mb150 {
    margin-bottom: 150px;
}

.mb90 {
    margin-bottom: 90px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb70 {
    margin-bottom: 70px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb0 {
    margin-bottom: 0;
}

@media only screen and (min-width: 1200px) {

    /*----------------------------------
        MEDIUM LAYOUT: 1280px
    -----------------------------------*/
    .lg-mb0 {
        margin-bottom: 0;
    }

    .lg-mb10 {
        margin-bottom: 10px;
    }

    .lg-mb20 {
        margin-bottom: 20px;
    }

    .lg-mb30 {
        margin-bottom: 30px;
    }

    .lg-mb40 {
        margin-bottom: 40px;
    }

    .lg-mb50 {
        margin-bottom: 50px;
    }

    .lg-mb60 {
        margin-bottom: 60px;
    }

    .lg-mb70 {
        margin-bottom: 70px;
    }

    .lg-mb80 {
        margin-bottom: 80px;
    }

    .lg-mb100 {
        margin-bottom: 100px;
    }

    .lg-mt0 {
        margin-top: 0;
    }

    .lg-mt10 {
        margin-top: 10px;
    }

    .lg-mt20 {
        margin-top: 20px;
    }

    .lg-mt30 {
        margin-top: 30px;
    }

    .lg-mt40 {
        margin-top: 40px;
    }

    .lg-mt50 {
        margin-top: 50px;
    }

    .lg-mt60 {
        margin-top: 60px;
    }

    .lg-mt70 {
        margin-top: 70px;
    }

    .lg-mt80 {
        margin-top: 80px;
    }

    .lg-mt100 {
        margin-top: 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /*----------------------------------
        MEDIUM LAYOUT: 1280px
    -----------------------------------*/
    .md-mb0 {
        margin-bottom: 0;
    }

    .md-mb10 {
        margin-bottom: 10px;
    }

    .md-mb20 {
        margin-bottom: 20px;
    }

    .md-mb30 {
        margin-bottom: 30px;
    }

    .md-mb40 {
        margin-bottom: 40px;
    }

    .md-mb50 {
        margin-bottom: 50px;
    }

    .md-mb60 {
        margin-bottom: 60px;
    }

    .md-mb70 {
        margin-bottom: 70px;
    }

    .md-mb80 {
        margin-bottom: 80px;
    }

    .md-mb100 {
        margin-bottom: 100px;
    }

    .md-mt0 {
        margin-top: 0;
    }

    .md-mt10 {
        margin-top: 10px;
    }

    .md-mt20 {
        margin-top: 20px;
    }

    .md-mt30 {
        margin-top: 30px;
    }

    .md-mt40 {
        margin-top: 40px;
    }

    .md-mt50 {
        margin-top: 50px;
    }

    .md-mt60 {
        margin-top: 60px;
    }

    .md-mt70 {
        margin-top: 70px;
    }

    .md-mt80 {
        margin-top: 80px;
    }

    .md-mt100 {
        margin-top: 100px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    /*----------------------------------
        TABLET LAYOUT: 768px
    -----------------------------------*/
    .sm-mb0 {
        margin-bottom: 0;
    }

    .sm-mb10 {
        margin-bottom: 10px;
    }

    .sm-mb20 {
        margin-bottom: 20px;
    }

    .sm-mb30 {
        margin-bottom: 30px;
    }

    .sm-mb40 {
        margin-bottom: 40px;
    }

    .sm-mb50 {
        margin-bottom: 50px;
    }

    .sm-mb60 {
        margin-bottom: 60px;
    }

    .sm-mb70 {
        margin-bottom: 70px;
    }

    .sm-mb80 {
        margin-bottom: 80px;
    }

    .sm-mb100 {
        margin-bottom: 100px;
    }

    .sm-mt0 {
        margin-top: 0;
    }

    .sm-mt10 {
        margin-top: 10px;
    }

    .sm-mt20 {
        margin-top: 20px;
    }

    .sm-mt30 {
        margin-top: 30px;
    }

    .sm-mt40 {
        margin-top: 40px;
    }

    .sm-mt50 {
        margin-top: 50px;
    }

    .sm-mt60 {
        margin-top: 60px;
    }

    .sm-mt70 {
        margin-top: 70px;
    }

    .sm-mt80 {
        margin-top: 80px;
    }

    .sm-mt100 {
        margin-top: 100px;
    }
}

@media only screen and (max-width: 767px) {

    /*----------------------------------
        MOBILE LAYOUT: 320px
    -----------------------------------*/
    .xs-mb0 {
        margin-bottom: 0;
    }

    .xs-mb10 {
        margin-bottom: 10px;
    }

    .xs-mb20 {
        margin-bottom: 20px;
    }

    .xs-mb30 {
        margin-bottom: 30px;
    }

    .xs-mb40 {
        margin-bottom: 40px;
    }

    .xs-mb50 {
        margin-bottom: 50px;
    }

    .xs-mb60 {
        margin-bottom: 60px;
    }

    .xs-mb70 {
        margin-bottom: 70px;
    }

    .xs-mb80 {
        margin-bottom: 80px;
    }

    .xs-mb100 {
        margin-bottom: 100px;
    }

    .xs-mt0 {
        margin-top: 0;
    }

    .xs-mt10 {
        margin-top: 10px;
    }

    .xs-mt20 {
        margin-top: 20px;
    }

    .xs-mt30 {
        margin-top: 30px;
    }

    .xs-mt40 {
        margin-top: 40px;
    }

    .xs-mt50 {
        margin-top: 50px;
    }

    .xs-mt60 {
        margin-top: 60px;
    }

    .xs-mt70 {
        margin-top: 70px;
    }

    .xs-mt80 {
        margin-top: 80px;
    }

    .xs-mt100 {
        margin-top: 100px;
    }
}

/* ----------------------------
    PADDING CSS
------------------------------ */
.section-padding {
    padding: 120px 0;
    overflow: hidden;
    
}

.padding-top {
    padding-top: 120px;
}

.padding-bottom {
    padding-bottom: 120px;
}

.padding-100-70 {
    padding-top: 100px;
    padding-bottom: 70px;
}

.padding-100-50 {
    padding-top: 100px;
    padding-bottom: 50px;
}

.padding-100-40 {
    padding-top: 100px;
    padding-bottom: 40px;
}

.padding-100-30 {
    padding-top: 100px;
    padding-bottom: 30px;
}

.padding-50-50 {
    padding: 50px 0;
}

.padding-150-150 {
    padding: 150px 0;
}
.padding-200-200 {
    padding: 200px 0;
}



.padding-10-10{
    padding: 10px 0;

}
.padding-20-20{
    padding: 20px 0;
}


/*-----------------*/
.padding-top-10 {
    padding-top: 10px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-top-70 {
    padding-top: 70px;
}

.padding-top-80 {
    padding-top: 80px;
}

.padding-top-90 {
    padding-top: 90px;
}

.padding-top-100 {
    padding-top: 100px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.padding-bottom-70 {
    padding-bottom: 70px;
}

.padding-bottom-80 {
    padding-bottom: 80px;
}

.padding-bottom-90 {
    padding-bottom: 90px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

/*--------------------
    PADDING
---------------------*/
.padding100 {
    padding: 100px;
}

.padding90 {
    padding: 90px;
}

.padding80 {
    padding: 80px;
}

.padding70 {
    padding: 70px;
}

.padding60 {
    padding: 60px;
}

.padding50 {
    padding: 50px;
}

.padding40 {
    padding: 40px;
}

.padding30 {
    padding: 30px;
}

.padding20 {
    padding: 20px;
}

.padding10 {
    padding: 10px;
}

.no-padding {
    padding: 0;
}

/*--------------------------------------
        RESPONSIVE
----------------------------------------*/
@media only screen and (min-width: 1200px) {
    .lg-padding-top-10 {
        padding-top: 10px;
    }

    .lg-padding-top-20 {
        padding-top: 20px;
    }

    .lg-padding-top-30 {
        padding-top: 30px;
    }

    .lg-padding-top-40 {
        padding-top: 40px;
    }

    .lg-padding-top-50 {
        padding-top: 50px;
    }

    .lg-padding-top-60 {
        padding-top: 60px;
    }

    .lg-padding-top-70 {
        padding-top: 70px;
    }

    .lg-padding-top-80 {
        padding-top: 80px;
    }

    .lg-padding-top-90 {
        padding-top: 90px;
    }

    .lg-padding-top-100 {
        padding-top: 100px;
    }

    .lg-padding-bottom-10 {
        padding-bottom: 10px;
    }

    .lg-padding-bottom-20 {
        padding-bottom: 20px;
    }

    .lg-padding-bottom-30 {
        padding-bottom: 30px;
    }

    .lg-padding-bottom-40 {
        padding-bottom: 40px;
    }

    .lg-padding-bottom-50 {
        padding-bottom: 50px;
    }

    .lg-padding-bottom-60 {
        padding-bottom: 60px;
    }

    .lg-padding-bottom-70 {
        padding-bottom: 70px;
    }

    .lg-padding-bottom-80 {
        padding-bottom: 80px;
    }

    .lg-padding-bottom-90 {
        padding-bottom: 90px;
    }

    .lg-padding-bottom-100 {
        padding-bottom: 100px;
    }

    /*------------------*/
    .lg-padding100 {
        padding: 100px;
    }

    .lg-padding90 {
        padding: 90px;
    }

    .lg-padding80 {
        padding: 80px;
    }

    .lg-padding70 {
        padding: 70px;
    }

    .lg-padding60 {
        padding: 60px;
    }

    .lg-padding50 {
        padding: 50px;
    }

    .lg-padding40 {
        padding: 40px;
    }

    .lg-padding30 {
        padding: 30px;
    }

    .lg-padding20 {
        padding: 20px;
    }

    .lg-padding10 {
        padding: 10px;
    }

    .lg-padding0 {
        padding: 0px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .md-padding-top-10 {
        padding-top: 10px;
    }

    .md-padding-top-20 {
        padding-top: 20px;
    }

    .md-padding-top-30 {
        padding-top: 30px;
    }

    .md-padding-top-40 {
        padding-top: 40px;
    }

    .md-padding-top-50 {
        padding-top: 50px;
    }

    .md-padding-top-60 {
        padding-top: 60px;
    }

    .md-padding-top-70 {
        padding-top: 70px;
    }

    .md-padding-top-80 {
        padding-top: 80px;
    }

    .md-padding-top-90 {
        padding-top: 90px;
    }

    .md-padding-top-100 {
        padding-top: 100px;
    }

    .md-padding-bottom-10 {
        padding-bottom: 10px;
    }

    .md-padding-bottom-20 {
        padding-bottom: 20px;
    }

    .md-padding-bottom-30 {
        padding-bottom: 30px;
    }

    .md-padding-bottom-40 {
        padding-bottom: 40px;
    }

    .md-padding-bottom-50 {
        padding-bottom: 50px;
    }

    .md-padding-bottom-60 {
        padding-bottom: 60px;
    }

    .md-padding-bottom-70 {
        padding-bottom: 70px;
    }

    .md-padding-bottom-80 {
        padding-bottom: 80px;
    }

    .md-padding-bottom-90 {
        padding-bottom: 90px;
    }

    .md-padding-bottom-100 {
        padding-bottom: 100px;
    }

    /*------------------*/
    .md-padding100 {
        padding: 100px;
    }

    .md-padding90 {
        padding: 90px;
    }

    .md-padding80 {
        padding: 80px;
    }

    .md-padding70 {
        padding: 70px;
    }

    .md-padding60 {
        padding: 60px;
    }

    .md-padding50 {
        padding: 50px;
    }

    .md-padding40 {
        padding: 40px;
    }

    .md-padding30 {
        padding: 30px;
    }

    .md-padding20 {
        padding: 20px;
    }

    .md-padding10 {
        padding: 10px;
    }

    .md-padding0 {
        padding: 0px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .sm-padding-top-10 {
        padding-top: 10px;
    }

    .sm-padding-top-20 {
        padding-top: 20px;
    }

    .sm-padding-top-30 {
        padding-top: 30px;
    }

    .sm-padding-top-40 {
        padding-top: 40px;
    }

    .sm-padding-top-50 {
        padding-top: 50px;
    }

    .sm-padding-top-60 {
        padding-top: 60px;
    }

    .sm-padding-top-70 {
        padding-top: 70px;
    }

    .sm-padding-top-80 {
        padding-top: 80px;
    }

    .sm-padding-top-90 {
        padding-top: 90px;
    }

    .sm-padding-top-100 {
        padding-top: 100px;
    }

    .sm-padding-bottom-10 {
        padding-bottom: 10px;
    }

    .sm-padding-bottom-20 {
        padding-bottom: 20px;
    }

    .sm-padding-bottom-30 {
        padding-bottom: 30px;
    }

    .sm-padding-bottom-40 {
        padding-bottom: 40px;
    }

    .sm-padding-bottom-50 {
        padding-bottom: 50px;
    }

    .sm-padding-bottom-60 {
        padding-bottom: 60px;
    }

    .sm-padding-bottom-70 {
        padding-bottom: 70px;
    }

    .sm-padding-bottom-80 {
        padding-bottom: 80px;
    }

    .sm-padding-bottom-90 {
        padding-bottom: 90px;
    }

    .sm-padding-bottom-100 {
        padding-bottom: 100px;
    }

    /*------------------*/
    .sm-padding100 {
        padding: 100px;
    }

    .sm-padding90 {
        padding: 90px;
    }

    .sm-padding80 {
        padding: 80px;
    }

    .sm-padding70 {
        padding: 70px;
    }

    .sm-padding60 {
        padding: 60px;
    }

    .sm-padding50 {
        padding: 50px;
    }

    .sm-padding40 {
        padding: 40px;
    }

    .sm-padding30 {
        padding: 30px;
    }

    .sm-padding20 {
        padding: 20px;
    }

    .sm-padding10 {
        padding: 10px;
    }

    .sm-padding0 {
        padding: 0px;
    }

    /*-----------------*/
    .section-padding {
        padding: 80px 0;
    }

    .padding-top {
        padding-top: 80px;
    }

    .padding-bottom {
        padding-bottom: 80px;
    }

    .padding-100-50 {
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .padding-100-70 {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .padding-100-30 {
        padding-top: 80px;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .xs-padding-top-10 {
        padding-top: 10px;
    }

    .xs-padding-top-20 {
        padding-top: 20px;
    }

    .xs-padding-top-30 {
        padding-top: 30px;
    }

    .xs-padding-top-40 {
        padding-top: 40px;
    }

    .xs-padding-top-50 {
        padding-top: 50px;
    }

    .xs-padding-top-60 {
        padding-top: 60px;
    }

    .xs-padding-top-70 {
        padding-top: 70px;
    }

    .xs-padding-top-80 {
        padding-top: 80px;
    }

    .xs-padding-top-90 {
        padding-top: 90px;
    }

    .xs-padding-top-100 {
        padding-top: 100px;
    }

    .xs-padding-bottom-10 {
        padding-bottom: 10px;
    }

    .xs-padding-bottom-20 {
        padding-bottom: 20px;
    }

    .xs-padding-bottom-30 {
        padding-bottom: 30px;
    }

    .xs-padding-bottom-40 {
        padding-bottom: 40px;
    }

    .xs-padding-bottom-50 {
        padding-bottom: 50px;
    }

    .xs-padding-bottom-60 {
        padding-bottom: 60px;
    }

    .xs-padding-bottom-70 {
        padding-bottom: 70px;
    }

    .xs-padding-bottom-80 {
        padding-bottom: 80px;
    }

    .xs-padding-bottom-90 {
        padding-bottom: 90px;
    }

    .xs-padding-bottom-100 {
        padding-bottom: 100px;
    }

    /*------------------*/
    .xs-padding100 {
        padding: 100px;
    }

    .xs-padding90 {
        padding: 90px;
    }

    .xs-padding80 {
        padding: 80px;
    }

    .xs-padding70 {
        padding: 70px;
    }

    .xs-padding60 {
        padding: 60px;
    }

    .xs-padding50 {
        padding: 50px;
    }

    .xs-padding40 {
        padding: 40px;
    }

    .xs-padding30 {
        padding: 30px;
    }

    .xs-padding20 {
        padding: 20px;
    }

    .xs-padding10 {
        padding: 10px;
    }

    .xs-padding0 {
        padding: 0px;
    }

    /*----------------*/
    .section-padding {
        padding: 100px 0;
    }

    .padding-top {
        padding-top: 50px;
    }

    .padding-bottom {
        padding-bottom: 50px;
    }

    .padding-100-50 {
        padding-top: 50px;
        padding-bottom: 0;
    }

    .padding-100-70 {
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .padding-100-30 {
        padding-top: 50px;
        padding-bottom: 0px;
    }
}

/* ----------------------------
    BACKGROUND CSS
------------------------------- */

.theme-bg {
    background: #f85d1c;
}

.green-bg {
    background: #f6fafb;
}

.white-green-bg {
    background: #eaf6fa;
}

.gray-bg {
    background: #f5f4f4;
}
.color_orange{
    color: #ff5621;
}
.color_help{
    color: #ff658d;
}
.color_water{
    color: #2095f3;
}
.color_users i{
    color: #ff5621;
}
.color_global i{
    color: #2095f3;
}
.color_cup i{
    color: #ff658d;
}
.color_plan i{
    color: #9465ff;
}

.case_text_bg1{
    background: #ffa665 !important;
}
.case_text_bg2{
    background: #9465ff !important;
}

.case_text_bg3{
    background: #ff658d !important;
}


.white_bg{
    position: relative;z-index: 2;
}

.white_bg:before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    background: #fff;
    opacity: .95;
}

.w3bg{
    position: relative;z-index: 2;
}

.w3bg:before{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    background: #00b268;
    opacity: .9;
}

.yellow-bg{
    background-color: #FFB400;
}
.white-bg{
    background-color: white;
}
.light-gray-bg {
    background-color: #f7f7f7;
}

.deep-gray-bg {
    background-color: #f2f0ff;
}

.sky-gray-bg {
    background: #f7f9fc;
}

.soft-gray-bg {
    background: #f8f8ff;
}

.dark-bg {
    background: rgba(0, 0, 0, .85);
    color: #ffffff;
}

.alt-dark-bg {
    background: #0a0c19;
    color: #ffffff;
}

.deep-dark-bg {
    background: rgba(0, 0, 0, .9);
    color: #ffffff;
}

.alt-deep-dark-bg {
    background: #050713;
    color: #ffffff;
}

.sky_color{
    color: #2095f3;
}


.no-bg {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}


.white-bg{
    background: #fff;
}


.bgaf{
    background-attachment: fixed;
}



/*-----------------------
    COLOR CSS
------------------------*/
.black,
.black a,
.black h1,
.black h2,
.black h3,
.black h4,
.black h5,
.black h6,
.black small,
.red,
.red a,
.red h1,
.red h2,
.red h3,
.red h4,
.red h5,
.red h6,
.red small,
.white,
.white a,
.white h1,
.white h2,
.white h3,
.white h4,
.white h5,
.white h6,
.white small {
    color: #ffffff;
}



/* ----------------------------
    BORDER CSS
------------------------------ */

.border {
    border: 1px solid #dfdfde;
}

.border-left {
    border-left: 1px solid #dddddd;
}

.border-right {
    border-right: 1px solid #dddddd;
}

.border-bottom {
    border-bottom: 1px solid #dddddd;
}

.border-top {
    border-top: 1px solid #dddddd;
}

.border-righ-bottom {
    border-right: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

.border_black_1px{
    border: 1px solid #222; 
}
.border_black_2px{
    border: 2px solid #222; 
}.border_black_3px{
    border: 3px solid #222; 
}

@media only screen and (max-width: 767px) {
    .border-xs {
        border: 1px solid #dddddd;
    }
}

.border-radious5 {
    border-radius: 5px;
}

.border-radious10 {
    border-radius: 10px;
}

.border-radious20 {
    border-radius: 20px;
}

.border-radious50 {
    border-radius: 50px;
}

.border-_5px_white{
    border: .5px solid #fff;
}

/*-----------------------
    SHADOW CSS
------------------------*/
.shadow {
    -webkit-box-shadow: 0 0 3px #dddddd;
    box-shadow: 0 0 3px #dddddd;
}

.shadow10 {
    -webkit-box-shadow: 0 0 10px #dddddd;
    box-shadow: 0 0 3px #dddddd;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.shadow10:hover,
.shadow:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.no-shadow {
    -webkit-box-shadow: 0 0 0 0 transparent;
    box-shadow: 0 0 0 0 transparent;
}

/* ----------------------------
    FORM & INPUT CSS
------------------------------ */

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    outline: 0;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    outline: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    outline: 0;
    width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
    outline: 0;
}

select {
    border: 1px solid #ccc;
}

textarea {
    width: 100%;
}

embed,
iframe,
object {
    width: 100%;
}



/*==============
COMMON CSS
=================*/

.bg{
    background-position: center !important;
    -webkit-background-size: cover !important;
    background-size: cover !important;
}


/*==============
SPACE CSS
=================*/

.space-100 {
    height: 100px;
}

.space-50 {
    height: 50px;
}

.space-80 {
    height: 80px;
}

.space-40 {
    height: 40px;
}

.space-60 {
    height: 60px;
}
.space-70 {
    height: 70px;
}

.space-30 {
    height: 30px;
}

.space-20 {
    height: 20px;
}

.space-10 {
    height: 10px;
}
/*
Theme Name:  grilroy personal Template;
Version:1.0;


*/

/*
CSS LIST========>


======================>>
BANNER AREA CSS
======================>>
HEADER AREA CSS
======================>>
WELCOME AREA CSS
=======================>>
ABOUT AREA CSS AREA CSS
=======================>>
SKILL AREA CSS
=======================>>
SERICE AREA CSS
=======================>>
PROJECT AREA CSS
=======================>>
PRICING AREA CSS
=======================>>
TESTIMONIALS AREA CSS
=======================>>
BLOG  AREA CSS
=======================>>
CTA  AREA CSS
=======================>>
SOCIAL AREA CSS
=======================>>
LOGO AREA CSS
=======================>>
FOOTER AREA CSS

=========>>COMMON CSS

*/

/*
==========================
	BANNER AREA CSSS
==========================
*/

.header-banner-area {
    background: #000;
    position  : relative;
    z-index   : 2;
}

.header-banner-area .owl-nav {
    position  : absolute;
    top       : 50%;
    right     : 0;
    margin-top: -15px;
    background: #2E3D44;
}

.header-banner-area .owl-nav > div {
    height     : 20px;
    width      : 30px;
    text-align : center;
    line-height: 20px;
    display    : inline-block;
    color      : #fff;
    margin     : 0 2px;
}
.header-banner-area .owl-nav > div:hover{
	color: #00a54f;
}
.header-banner-area .owl-nav > div i{
	font-size: 12px;
}
.header-banner-area .owl-nav > div:first-child {
    border-right : 1px solid #657A84;
    padding-right: 4px;
}

.header-area {
    border-bottom: 1px solid #15181a;
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 99;
    transition: all .3s;
    background-color: dark-grey;
}

.header-area.header-main {
    top: 45px;
    transition: all .3s;
}

.header-area.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    background: #000; /* Achtergrond verandert naar zwart wanneer sticky */
    transition: all .5s;

}

.banner-comments {
    position    : relative;
    z-index     : 2;
    padding     : 10px;
    padding-left: 50px;
}
.banner-icon {
    position  : absolute;
    left      : 0;
    background: #00a54f;
    padding   : 10px 12px;
    top       : 0;
    color     : #fff;
}
.banner-social-wrap div {
    display: inline-block;
}

.banner-social li {
    display: inline-block;
}

.banner-social li a {
    color    : #fff;
    font-size: 13px;
    height   : 100%;
    display  : block;
    padding  : 10px;
}
.banner-social li a:hover{
	color: #00a54f;
}


.banner-social li {
    border-left: 1px solid #435157;
}


a.contact-btn {
    color      : #fff;
    font-size  : 13px;
    font-weight: 400;
    background : #00a54f;
    padding    : 10px 25px 10px 40px;
    transition : all .3s;
    position   : relative;
    z-index    : 2;
}

a.contact-btn i {
    transition : all .3s;
    position   : absolute;
    left       : 7px;
    top        : 50%;
    height     : 30px;
    width      : 30px;
    text-align : center;
    line-height: 30px;
    margin-top : -15px;
}

a.contact-btn:hover i {
    left      : 10px;
    transition: all .3s infinite alternate;
}
a.contact-btn:hover{
	color: #fff;
}


.banner-single-carousel p {
    color         : #fff;
    font-size     : 13px;
    text-transform: uppercase ;
    font-weight   : 400;
    margin        : 0;
}

/*
==========================
	HEADER AREA CSS
==========================
*/
.header-area {
    border-bottom: 1px solid #15181a;
	background: black;
}
.search-area div {
    display: inline-block;
}

.search-box {
    position: relative;
    z-index: 2;
}



.search-btn {
    position   : absolute;
    left       : -30px;
    top        : 50%;
    height     : 30px;
    width      : 30px;
    text-align : center;
    line-height: 30px;
    margin-top : -15px;
}

.search-btn i {
    color: #00a54f;
}

.search-box input {
    background: transparent;
    border    : none;
    color     : #c8c6c6;
    position: relative;
    z-index: 2;
}


.search-box input::placeholder {
    color: #c8c6c6;
    font-size: 18px;
    font-weight: 300;
}
.search-box input:focus::placeholder {
    color: #222;
}

.slide-widgest-wrap {
    position  : fixed;
    background: transparent;
    z-index   : 9999;
    height    : 100%;
    width     : 100%;
    top       : 0;
    right     : -100%;
    transition: all .5s;
}

.slide-widgest-wrap.active{
    right: 0;
    transition: all .5s;
}
.grid-menu:hover{
    cursor: pointer
}

.slide-widgest-wrap:after{
    position  : absolute;
    content   : "";
    height    : 100%;
    width     : 100%;
    background: #000;
    left      : 0;
    opacity   : .7;
    top       : 0;
    z-index   : -1;
}
.side-widgest {
    position  : absolute;
    width     : 30%;
    right     : -100%;
    top       : 0;
    height    : 100%;
    padding   : 80px 40px 40px 40px;
    background: black;
    transition: all 1s;
}
.side-widgest:hover{
    cursor: pointer;
}
.side-widgest.active{
    right: 0;
    transition: all 1s;
}

.side-content p {
    font-weight: 400;
    color      : #fff;
}

.side-content {
    margin: 40px 0;
}

.side-social li {
    display: inline-block;
}

.side-social li a {
    color        : #fff;
    font-size    : 18px;
    width        : 40px;
    text-align   : center;
    border       : 1px solid;
    display      : block;
    height       : 40px;
    line-height  : 40px;
    margin-right : 6px;
    border-radius: 4px;
    transition   : all .3s;
}

.side-close {
    position     : absolute;
    right        : 5%;
    top          : 5%;
    font-size    : 20px;
    color        : #fff;
    border       : 1px solid #fff;
    height       : 50px;
    width        : 50px;
    text-align   : center;
    line-height  : 50px;
    border-radius: 4px;
    transition   : all .3s;
}

.side-social li a:hover, 
.side-close:hover{
    background  :#00a54f;
    border-color: #00a54f;
    transition  : all .3s;
}

/*
==========================
	WELCOME AREA CSS
==========================
*/
.welcome-area-wrap {
    position: relative;
    z-index: 2;
}


.welcome__wrap1{
    background: url(../img/bg/wlc-bg1.jpg);
    background-size: cover;
    background-position: center
}

.welcome__wrap2{
    background: url(https://beestex.be/v2/assets/img/bg/20.png);
    background-size: cover;
    background-position: center
}


.single-welcome-area {
    position   : relative;
    z-index    : 2;
    height     : 800px;
    display    : flex;
    align-items: center;
}

.wlc-title h1 {
    text-transform: uppercase;
    font-size     : 60px;
    line-height   : 80px;
    margin-bottom : 25px;
}

.wlc-title h1 span {
    color: #00a54f;
}
.wlc-title p {
    font-weight : 400;
    font-size   : 18px;
    padding-left: 20px;
    border-left : 3px solid #00a54f;
    line-height : 28px;
    margin:40px 0;
}
.wlc-author-1 {
    position: absolute;
    right   : 5%;
    width   : 40%;
    bottom  : 0;
    height  : 90%;
    z-index : -1;
}

.author-1 img {
    height: 100%;
    width : auto;
}


.welcome-carousel .owl-dots {
    position     : absolute;
    counter-reset: wlc-counter;
    bottom       : 50%;
    right        : 5%;
    margin-bottom: -30px;
}

.welcome-carousel .owl-dots > div {
    height       : 30px;
    width        : 30px;
    background   : transparent;
    border-radius: 50%;
    position     : relative;
    z-index      : 2;
    margin       : 7px 0;
    border       : 1px solid #00a54f;
    transition   : all .3s;
    overflow     : hidden;
}

.welcome-carousel .owl-dots > div:after {
    position         : absolute;
    content          : "0" counter(wlc-counter);
    counter-increment: wlc-counter;
    height           : 100%;
    width            : 100%;
    text-align       : center;
    top              : 50%;
    margin-top       : -13px;
    color            : #00a54f;
    font-size        : 12px;
    transition       : all .3s;

}
.welcome-carousel .owl-dots > div:hover, 
.welcome-carousel .owl-dots > div.active{
    background  : #00a54f;
    border-color: #00a54f;
   
}
.welcome-carousel .owl-dots > div:hover:after, 
.welcome-carousel .owl-dots > div.active:after{
    color: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    
}

h1.wlc-filltext {
    color                  : red;
    position               : absolute;
    top                    : 15%;
    font-size              : 200px;
    text-transform         : uppercase;
    left                   : 0;
    letter-spacing         : 2px;
    z-index                : -1;
    -webkit-text-stroke    : 1px #141618;
    -webkit-text-fill-color: transparent;
}

.wlc-author-1 img {
    position: absolute;
    bottom: 0;
}



/*
==========================
	ABOUT ATRA CSS
==========================
*/

.about-img-section {
    padding: 240px 0;
}
.about-area1{
    background-image: url(assets/img/bg/about-bg.png);
    background-position: center;
    background-size: cover;
}
.about-img-section1{
    background-image: url(../img/about/about1.png);
    background-size: cover;
    background-position: center
}
a.about-video {
    height       : 80px;
    width        : 80px;
    text-align   : center;
    line-height  : 80px;
    background   : #fff;
    border-radius: 50%;
    color        : #00a54f;
    font-size    : 40px;
}
.about-shape {
    position: relative;
    z-index : 3;
}

.about-shape:after {
    position         : absolute;
    content          : "";
    height           : 100%;
    width            : 130%;
    background       : url(../img/about/about-bg-shape.png);
    z-index          : -1;
    left             : -15%;
    background-repeat: no-repeat;
    top              : 0%;
}
.about-area-primery .about-shape:after{
    background       : url(../img/about/about-bg-shape2.png) no-repeat;
}
.about-shape:before {
    position         : absolute;
    content          : "";
    height           : 300px;
    width            : 300px;
    background       : url(../img/about/about-shape.svg) no-repeat;
    background-repeat: no-repeat;
    bottom           : -20%;
    left             : -15%;
    z-index          : -1;
}
.about-area-primery .about-shape:before {
    background       : url(../img/about/about-shape2.svg) no-repeat;
}
.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #00a54f;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #00a54f;
  border-radius: 50%;
  -webkit-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: darken(#00a54f, 10%);
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}


.about-area-primery:after {
    position: absolute;
    content: "";
    height: 400px;
    width: 400px;
    right: 0;
    top: 0;
    background: url(../img/bg/about-bg.svg);
    opacity: .1;
}

.about-area-primery {
    position: relative;
    z-index: 2;
    background: #f1f1f1;
}

/*
==========================
    SKILL AREA CSS
==========================
*/


.skill-box small {
    font-size     : 14px;
    text-transform: uppercase;
    color         : #fff;
    font-weight   : 500;
}

.skill-box h5 {
    font-size     : 20px;
    text-transform: uppercase;
    font-weight   : 600;
    color         : #00a54f;
    margin        : 12px 0;
}

.skill-box p {
    font-size     : 15px;
    text-transform: capitalize;
    color         : #fff;
    font-weight   : 400;
    line-height   : 1.6;
}

.skill-box {
    padding   : 15px;
    background: #0B0D0E;
    box-shadow: 0px 65px 64.5px rgba(0,0,0,0.39);
    transform : translateY(0);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}



.primery-skill {
    position: relative;
    z-index: 2;
}

.primery-skill:after {
    position: absolute;
    content: "";
    height: 500px;
    width: 500px;
    background: url(https://beestex.be/v2/assets/img/bg/skill-bg1.png);
    bottom: -30%;
    z-index: -1;
    background-position: right;
    background-size: contain;
    left: -11%;
    -webkit-animation: spin infinite ease 9s;
    animation: spin infinite ease 9;
    opacity: .2
}





.primery-skill .skill-box small {
    font-size     : 14px;
    text-transform: uppercase;
    color         : #2d2e2f;
    font-weight   : 500;
    z-index:2;
}

.primery-skill .skill-box h5 {
    font-size     : 20px;
    text-transform: uppercase;
    font-weight   : 600;
    color         : #0b0d0e;
    margin        : 12px 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    
}

.skill-area.primery-skill .row:last-child div.skill-box:before{
    position: absolute;
    content: "";
    height: 60px;
    width: 60px;
    background: #e9f7ef;
    left: 10px;
    top:20px;
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;

}

.skill-area.primery-skill {
   overflow: hidden;
}


.skill-area.primery-skill .row:last-child div.skill-box:hover:before{
    height: 100%;
    width: 100%;
    left: 0;
    top:0;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    border-radius: 0;
}
.primery-skill .skill-box:hover h5{
    color: #00a54f;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.primery-skill .skill-box p {
    font-size     : 15px;
    text-transform: capitalize;
    color         : #0b0d0e;
    font-weight   : 400;
    line-height   : 1.6;
    margin-bottom: 0;
    z-index:2;
}

.primery-skill .skill-box {
    padding   : 30px;
    background: #fff;
    box-shadow: 0px 65px 64.5px rgba(0,0,0,0.1);
    -webkit-transform : translateY(0);
    -ms-transform : translateY(0);
    transform : translateY(0);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.primery-skill .skill-box:hover{
    -webkit-transform : translateY(0);
    -ms-transform : translateY(0);
    transform : translateY(0);
}


.skill-box:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    background: #131617;
}
.skill-box.skill-box2:hover{
    background: #fff;
}

.technical-skills {
    background: transparent;
    position: relative;
}

.technical-skills .skills-wrapper {
    margin-top: 40px;
}

.border_separatior{
    border-top: 1px solid #f4f4f4;

}
.technical-skills .skill .chart {
    position      : relative;
    display       : inline-block;
    min-height    : 155px;
    color         : #fff;
    font-size     : 16px;
    font-weight   : 400;
    text-transform: uppercase;
}
.technical-skills .skill .chart > span {
    display          : -webkit-box;
    display          : -ms-flexbox;
    display          : flex;
    -webkit-box-align: center;
    -ms-flex-align   : center;
    align-items      : center;
    -webkit-box-pack : center;
    -ms-flex-pack    : center;
    justify-content  : center;
    position         : absolute;
    width            : 100%;
    height           : 100%;
    top              :  0;
    left             : 0;
    right            : 0;
    bottom           : 0;
    font-size        : 24px;

}
.technical-skills .skill .chart > span span{
    font-size   : 48px;
    margin-right: 5px;
}
.technical-skills .skill h5 {
    margin-top    : 15px;
    text-transform: uppercase;
    color         : #fff;
}


.skill-area.primery-skill.section-padding {
    counter-reset: skill;
}

.skill-area.primery-skill.section-padding .row:last-child div.skill-box {
    position: relative;
    z-index: 2;
}

.skill-area.primery-skill.section-padding .row:last-child div.skill-box:after {
    content: "0" counter(skill);
    counter-increment: skill;
    position: absolute;
    right: 14px;
    bottom: 0;
    font-size: 70px;
    line-height: 80px;
    opacity: .2;
    font-family: 'Oswald', sans-serif;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;

}

.skill-area.primery-skill.section-padding .row:last-child div.skill-box:hover:after {
    color: #0b0d0e;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;

}


/*
==========================
    SERVICE AREA CSS
==========================
*/


.single-service {
    text-align: center;
    padding   : 50px 40px;
    transition:all .3s;
    position  : relative;
    z-index   : 2;
    overflow: hidden;
    background: #131617;
}


.circles-wrap {
    position: absolute;
    bottom  : -32%;
    left    : -5%;
    z-index : -1;
}

span.circle {
    border-radius: 50%;
    position     : absolute;
    -webkit-transform    : scale(0);
    -ms-transform    : scale(0);
    transform    : scale(0);
    -webkit-transition   : all .3s;
    -o-transition   : all .3s;
    transition   : all .3s;
}
.circles {
    height         : 400px;
    width          : 400px;
    background     : transparent;
    display        : flex;
    position       : relative;
    align-items    : center;
    justify-content: center;
    z-index        : 1;
}

span.circle.circle-1 {
    height    : 100px;
    width     : 100px;
    background: #5fdb97;
    z-index   : 5;
    display   : inline-block;
    z-index   : 5;
}


span.circle.circle-2 {
    height    : 200px;
    width     : 200px;
    background: #4dd78b;
    z-index   : 4;
}

span.circle.circle-3 {
    height    : 300px;
    width     : 300px;
    background: #39d27e;
    z-index   : 3;
}

span.circle.circle-4 {
    height    : 400px;
    width     : 400px;
    background: #00a54f;
    z-index   : 2;
}



.single-service:hover span.circle, 
.single-service.active span.circle{
    transform : scale(1);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


.service-area .circles-wrap {
    position: absolute;
    bottom  : -32%;
    left    : auto;
    z-index : -1;
    right   : -50%;
}


.service-text h4 {
    font-size: 24px;
    text-transform: uppercase;
    color: #00a54f;
    margin-bottom: 30px;
}

.service-text {
    margin: 30px 0 30px 0px;
}

.service-area .service-text {
    margin: 30px 0 0px 0px;
}


.service-text p {
    color         : #999999;
    text-transform: capitalize;
    font-size     : 18px;
    font-weight   : 400;
    margin-bottom: 0;
}


.service-icon {
    width: 90px;
    margin: 0 auto;
}

.single-service.active, 
.single-service:hover {
    background: #09c75f;
    -webkit-transition:all .3s;
    -o-transition:all .3s;
    transition:all .3s;
}

.single-service.active .service-text h4,
.single-service.active .service-text h3,  
.single-service:hover .service-text h3,
.single-service.active .service-text h5,
.single-service:hover .service-text h5, 
.single-service:hover .service-text h4,  
.single-service.active .service-text p, 
.single-service:hover .service-text p  {
    color     : #fff;
   -webkit-transition:all .3s;
   -o-transition:all .3s;
   transition:all .3s;
}

.single-service.active .cbtn.pricing-btn, 
.single-service:hover .cbtn.pricing-btn{
    background: #005026;
    -webkit-transition:all .3s;
    -o-transition:all .3s;
    transition:all .3s;
}
.single-service.active .cbtn.pricing-btn i, 
.single-service:hover .cbtn.pricing-btn i{
    color     : #005026;
    -webkit-transition:all .3s;
    -o-transition:all .3s;
    transition:all .3s;
}

.single-service.active .separator, 
.single-service:hover .separator{
    border-color: #fff;
}

.service-area.service-primery {
    background: #fff;
}


.service-primery .single-service{
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

.service-primery .single-service.active, 
.service-primery .single-service:hover {
    background: #09c75f;
    -webkit-transition:all .3s;
    -o-transition:all .3s;
    transition:all .3s;
}



.service-primery .service-text {
    margin: 40px 0 0 0px;
}

.service-primery {
    position: relative;
    z-index: 2;
}

.service-primery:after {
    position: absolute;
    content: "";
    height: 400px;
    width: 400px;
    right: 0;
    top: 0;
    background: url(../img/bg/service-bg.svg);
}

.pricing2 {
    background: #FAFAFA;
}

.pricing2 .service-text h3, 
.pricing2 .service-text h4{
    color: #32383A ;
}

/*
==========================
    PROJECT AREA CSS
==========================
*/

/* Basis reset voor da-thumbs */
.da-thumbs {
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0; /* Zorg ervoor dat er geen margin is */
    overflow: hidden; /* Verbergt overflow */
}

.da-thumbs li {
    margin: 5px; /* Verminder de margin om meer ruimte te besparen */
    background: #fff;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 420px;
    box-sizing: border-box; /* Zorgt ervoor dat padding en border bij de breedte worden geteld */
}

.da-thumbs li a,
.da-thumbs li a img {
    display: block;
    position: relative;
    height: 100% !important;
    width: 100% !important;
    box-sizing: border-box; /* Zorg ervoor dat padding/border bij de breedte worden geteld */
}

.da-thumbs li a {
    overflow: hidden;
}

.da-thumbs li a div {
    position: absolute;
    background: #005026;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.da-thumbs li a div.custom-hover-object {
    position: absolute;
    background: #005026;
    width: 100%;
    height: 100%;
}

/* Zorg ervoor dat de navigatie niet buiten de container valt */
.da-thumbs .owl-nav {
    position: absolute;
    top: -33%;
    right: 0;
    z-index: 10; /* Zorg dat de navigatie zichtbaar blijft */
}

/* Zorg voor een goede positionering van de knoppen */
.da-thumbs .owl-nav > div {
    height: 45px;
    width: 45px;
    background: transparent;
    border: 1px solid #005026;
    text-align: center;
    line-height: 45px;
    border-radius: 4px;
    color: #005026;
    font-size: 16px;
    display: inline-block;
    margin: 0 5px;
    transition: all .3s;
}

==========================
    PRICING AREA CSS
==========================
*/


.pricing-area1{
    background-image: url(../img/bg/about-bg.png);
    background-position: center;
    background-size: cover
}
.service-text h3 {
    font-size: 36px;
    text-transform: uppercase;
    color: #00a54f;
}

.service-text h5 {
    color         : #999999;
    text-transform: capitalize;
    font-size     : 18px;
}

.separator {
    border-top: 1px solid #999999;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

/*
==========================
    COUNTER AREA CSS
==========================
*/
.fact i {
    font-size: 48px;
    margin-bottom: 10px;
    color: #00a54f;
}


.fact h2 {
    color: #00a54f;
}


.fact span {
    color: #32383A;
    font-size: 18px;
}

.fun-facts{
    background: #E6FFF2;

}
/*
==========================
    TESTIMONIALS AREA CSS
==========================
*/

.testimonials .owl-nav {
    position: absolute;
    top: -59%;
    right: -10%;
}

.testimonials .owl-nav > div {
    height       : 45px;
    width        : 45px;
    background   : transparent;
    border       : 1px solid #005026;
    text-align   : center;
    line-height  : 45px;
    border-radius: 4px;
    color        : #005026;
    font-size    : 16px;
    display      : inline-block;
    margin       : 0 5px;
   -webkit-transition:all .3s;
   -o-transition:all .3s;
   transition:all .3s;
}

.testimonials .owl-nav > div:hover, 
.testimonials .owl-nav > div:focus{
    background  : #005026;
    border-color: #005026;
    color       : #fff;
    -webkit-transition:all .3s;
    -o-transition:all .3s;
    transition:all .3s;
}
.testimonial-img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -50px;
}

.testimonial-img img {
    max-width: 100%;
    max-height: 100%;
    margin-right: 20px;
}

.testimonial {
    position: relative;
    z-index: 2;
    padding-left: 130px;
}

.testimonial-text h4 {
    font-size: 25px;
    text-transform: uppercase;
    line-height: 34px;
    margin: 25px 0;
}

.testimonial-text p {
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 400;
    margin: 0;
}

.testimonials-area-primery .testimonial-text h4, 
.testimonials-area-primery .testimonial-text p {
    color: #0b0d0e;
}

.testimonials-area1{
    background: url(../img/bg/testimonials-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/*
==========================
    BLOG AREA CSS
==========================
*/
.blog-area .owl-nav {
    position: absolute;
    top: -27%;
    right: 0;
}

.blog-area .owl-nav > div {
    height            : 45px;
    width             : 45px;
    background        : transparent;
    border            : 1px solid #005026;
    text-align        : center;
    line-height       : 45px;
    border-radius     : 4px;
    color             : #005026;
    font-size         : 16px;
    display           : inline-block;
    margin            : 0 5px;
    -webkit-transition:all .3s;
    -o-transition     :all .3s;
    transition        :all .3s;
}

.blog-area .owl-nav > div:hover, 
.blog-area .owl-nav > div:focus{
    background  : #005026;
    border-color: #005026;
    color       : #fff;
    -webkit-transition:all .3s;
    -o-transition:all .3s;
    transition:all .3s;
}


.single-blog-img {
    display: flex;
    align-items: flex-end;
}

span.blog-banner {
    color: #fff;
    background: #131617;
    padding: 10px 25px;
    text-transform: uppercase;
}

.blog-description{
    background: #ffffff;
    padding: 30px;
    border:1px solid #f1f1f1;
    position: relative;
    z-index: 2;
}


.single-blog-img img {
    height: 250px;
    width: 100% !important;
}
a.readmore-btn:hover i{
    padding-right: 10px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;

}
a.readmore-btn i {
    padding-right: 5px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.blog-description h6 {
    color: #131617;
    text-transform: capitalize;
    font-weight: 400;
    margin-bottom: 0;
}

.blog-description a {
    font-size: 20px;
    text-transform: uppercase;
    color: #131616;
    font-weight: 600;
    margin: 20px 0;
}

.blog-description p {
    color: #131617;
    text-transform: capitalize;
    font-weight: 400;
    margin:0;
}
.single-blog{
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.single-blog:hover .blog-description a{
    background: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.single-blog:hover span.blog-banner {
    background: #005026;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

a.readmore-btn {
    color: #00a54f;
    text-transform: uppercase;
    font-size: 12px;
    margin:0;
}

.single-blog:hover .blog-description a {
    color: #00a54f;
}
/*
==========================
    CTA AREA CSS
==========================
*/


.cta-area1{
    background-image: url(../img/bg/map.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}



.heading.cta-heading h2 {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.cta-form input {
    background: #32383a;
    width: 55% !important;
    padding: 14px 15px;
    border: 1px solid #00a54f;
    border-radius: 5px;
    float: left;
    color: #fff;
}

.cta-form a.subscribe-btn {
     width: 43%;
    float: right;
}
a.subscribe-btn {
    padding: 15px 60px 15px 30px;
    background: #00a54f;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-align: left;
    border: 1px solid transparent;
    font-size: 15px;
}
a.subscribe-btn:hover, 
a.subscribe-btn:hover i{
    border-color: #00a54f;
    background: transparent;
    color: #00a54f;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

a.subscribe-btn i {
    background: #fff;
    color: #00a54f;
    height: 35px;
    width: 35px;
    text-align: center !important;
    position: absolute;
    right: 13px;
    line-height: 35px;
    border-radius: 3px;
    top: 50%;
    margin-top: -17.5px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.cta-form {
    width: 80%;
    margin: 0 auto;
}

.cta-primery {
    position: relative;
    z-index: 2;
    background: #fafafa;
}

img.cta-shape {
    position: absolute;
    z-index: -1;
}

.cta-shap1 {
    top: 20%;
    left: 9%;
}

.cta-shap2 {
    right: 12%;
    top: 10%;
}

.cta-shap4 {
    right: 7%;
    top: 48%;
}

.cta-shap3 {
    top: 40%;
    left: 31%;
}

.cta-shap5 {
    top: 80%;
    left: 6%;
}
/*
==========================
    SOCIAL AREA CSS
==========================
*/

.social-area .row > div {
    margin: 0;
    padding: 0;
}

.sinlge-social-hover a {
    display: block;
    padding: 50px 30px;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    transform: scale(1.5);
    opacity: 0;
    visibility: hidden;
}

.sinlge-social-hover {
    position: relative;
    z-index: 2;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    overflow: hidden;
}

.sinlge-social-hover:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 0;
    background: #00a54f;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

span.single-social-icon i {
    font-size: 32px;
    margin-bottom: 20px;
}

.sinlge-social-hover:hover a {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    color: #fff;
}

.sinlge-social-hover:hover:after {
    width: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


/*
==========================
    LOGO AREA CSS
==========================
*/
.single-logo-table {
    height: 100px;
    width: 100%;
    text-align: center;
    display: table;
}
.single-logo-table img:hover {
    filter: brightness(1);
    cursor: move;
    opacity: 1;
}

.single-logo-table-cell {
    height: 100%;
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.single-logo-table img {
    filter: brightness(40);
    opacity: .3;
    max-height: 100%;
    max-width: 100%;
}

/*
==========================
    FOOTER AREA CSS
==========================
*/
.footer-area1{
    background-image: url(../img/bg/footer-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.footer-menu li a {
    color: #fff;
    text-transform: uppercase;
    padding: 0 9px;
}

.footer-menu li a:hover {
    color: #00a54f;
}

.footer-menu li {
    display: inline-block;
}

.copyright span {
    color: #00a54f;
}

.copyright {
    text-transform: uppercase;
    color: #fff;
    font-size: 12px;
}

/*
==========================
    COMMON CSS
==========================
*/



.site-black{
	background: none;
}

.heading h2 {
    font-size     : 44px;
    line-height   : 55px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.heading h2 span {
   color: #00a54f;
}

.heading {
    position: relative;
    z-index : 2;
}

.heading strong.filltext {
    font-size              : 80px;
    font-family            : 'Oswald', sans-serif;
    text-transform         : uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke    : 1px #171c1e;
    position               : absolute;
    left                   : 0;
    top                    : 0;
    z-index                : -1;
}

.heading p {
    font-weight: 400;
    margin:40px 0;
}


.primery-heading small {
    font-weight: 500;
    color      : #00a54f !important;
    font-size  : 16px;
    text-transform: uppercase;
}



.primery-heading h2 {
    font-size     : 48px;
    line-height   : 62px;
    text-transform: uppercase;
    color: #0b0d0e;
    font-weight: 600;
    margin-bottom: 0;
}

.primery-heading h2 span {
    color: #00a54f;
}

.primery-heading {
    position: relative;
    z-index : 2;
}

.primery-heading strong.filltext {
    font-size              : 80px;
    font-family            : 'Oswald', sans-serif;
    text-transform         : uppercase;
    -webkit-text-fill-color: #f1f1f1;
    position               : absolute;
    left                   : 0;
    top                    : 0;
    z-index                : -1;
}

.primery-heading p {
    font-weight: 400;
    font-size: 17px;
    color: #0b0d0e;
}


.heading small {
    font-weight: 500;
    color      : #00a54f !important;
    font-size  : 16px;
    text-transform: uppercase;
}


.primery-info-content{
    padding-left: 30px;
    border-left : 3px solid #00a54f;
    color       : #fff;
}

.primery-info-content p{
    font-size     : 18px;

    font-weight   : 400;
    color: #00a54f;
    margin-bottom: 0;
}





.info-content{
    padding-left: 30px;
    border-left : 3px solid #00a54f;
    color       : #fff;
}

.info-content p{
    font-size     : 18px;
    text-transform: capitalize;
    font-weight   : 400;
    margin-bottom: 0;
}



a.up-btn {
    position: fixed;
    bottom: 0;
    right: 10%;
    background: #00a54f;
    color: #fff;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    border-radius: 5px;
    border: 1px solid #fff;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
}

a.up-btn:hover {
    color: #00a54f;
    background: #fff;
    border-color: #00a54f;
    z-index: 999999999;
}

.header-area.sticky a.up-btn{
    visibility: visible;
    opacity: 1;
    bottom: 5%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


/*PRELOADER CSS*/

.lds-dual-ring {
    display: inline-block;
    width  : 80px;
    height : 80px;
}
.lds-dual-ring:after {
    content      : " ";
    display      : block;
    width        : 64px;
    height       : 64px;
    margin       : 8px;
    border-radius: 50%;
    border       : 6px solid #fff;
    border-color : #fff transparent #fff transparent;
    -webkit-animation    : lds-dual-ring 1.2s linear infinite;
    animation    : lds-dual-ring 1.2s linear infinite;
}
.preloader {
    background     : #000;
    height         : 100%;
    width          : 100%;
    position       : fixed;
    left           : 0;
    top            : 0;
    z-index        : 999999;
    text-align     : center;
    display        : flex;
    align-items    : center;
    justify-content: center;
}

@keyframes lds-dual-ring {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}





.circles {
  margin-bottom: -10px;
}

.circle {
  width: 150px;
  margin: 6px 6px 0px;
  display: inline-block;
  position: relative;
  text-align: center;
  line-height: 1.2;
}

.circle canvas {
  vertical-align: top;
}

.circle strong {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 42px;
    font-size: 48px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
}
.circle strong i {
    font-style: normal;
    font-size: 24px;
    font-weight: normal;
    color: #fff;
    padding-left: 2px;
}
.circle span {
    display: block;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 58px;
    color: #ffffff;
    font-family: "Oswald";
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}



.install {
  display: inline-block;
}

.install a {
  display: block;
  width: auto;
  vertical-align: middle;
  padding: 6px 12px;
  line-height: 20px;
  background-color: transparent;
  color: #fff;
  border-radius: 3px;
  text-decoration: none;
  margin: 5px auto;
  transition: all .3s;
}

.install code {
  padding: 6px 12px;
  display: block;
  font: 13px/20px Courier New, Liberation Mono, monospase;
  background-color: transparent;
  border-radius: 4px;
  margin: 5px 0;
  white-space: nowrap;
}



.credits {
  color: #aaa;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

.credits img {
  margin-left: 4px;
  border-radius: 4px;
  vertical-align: middle;
}

@media (max-height: 600px), (max-width: 480px) {
  .credits {
    position: inherit;
  }
}


p.single-soicial-text {
    margin: 0 !important;
}


/*
====================
    overright
=====================
*/
.owl-carousel .owl-item img{
    display: inline-block;
    width: auto;
}

body {
    cursor: none; /* Verberg de standaard muisaanwijzer */
    overflow-x: hidden; /* Voorkom horizontale scroll */
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: #4CAF50; /* Huisstijl groen */
    cursor: pointer;
}

.close-button {
    background-color: #4CAF50; /* Huisstijl kleur */
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 20px 0; /* Ruimte boven en onder de knop */
    cursor: pointer;
    border-radius: 5px;
}

.popup {
    display: none; /* Verborgen standaard */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%; /* Voor mobiel responsive */
    max-width: 600px; /* Limiteer de maximale breedte */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Schaduw effect */
}

/* Aangepaste cursor effect */
.cursor-effect {
    position: fixed;
    width: 38px;
    height: 49px;
    background-image: url('https://beestex.be/v2/assets/img/muismuis.png');
    background-size: contain;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, opacity 0.2s;
    z-index: 9999;
    display: none;
    cursor: none; /* Verberg systeemcursor */
}

/* Cursor hover effect */
.cursor-effect.hover {
    opacity: 0.7;
    transform: scale(1.2);
    transition: transform 0.1s, opacity 0.2s;
}


input, textarea {
    cursor: text; /* Herstel cursor voor tekstvelden */
}

a {
    cursor: none; /* Verberg systeemcursor ook bij links */
}


#pestTypeContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Zorgt ervoor dat de knoppen gecentreerd zijn */
}

.country-code-select {
    position: relative;
    width: 30%;
}

.pest-option {
    background-color: #f0f0f0; /* Achtergrondkleur voor de opties */
    border: 2px solid transparent; /* Randkleur voor de opties */
    border-radius: 15px; /* Afgeronde hoeken */
    padding: 10px 15px; /* Binnenmarge */
    margin: 5px; /* Buiten marge */
    cursor: pointer; /* Cursor verandert in pointer bij hover */
    transition: background-color 0.3s, border-color 0.3s; /* Animatie effect */
}

.pest-option:hover {
    background-color: #d0d0d0; /* Lichte grijze achtergrond bij hover */
}

.pest-option.selected {
    background-color: #089e4d; /* Groene achtergrondkleur als geselecteerd */
    border-color: #089e4d; /* Groene randkleur als geselecteerd */
    color: white; /* Witte tekst voor geselecteerde opties */
}

/* Style voor de lijst met ongedierte */
.pest-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pest-list li {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.pest-list li img {
    width: 100%;
    height: auto;
    max-width: 200px;
    border-radius: 10px;
}

.pest-list li div {
    margin-top: 10px;
}

.project-area {
    padding: 40px 0;
}


.pest-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 20px; /* Voeg wat ruimte tussen de items toe */
}

.pest-image {
    width: 50px; /* Pas de breedte aan zoals gewenst */
    height: auto;
    margin-right: 15px; /* Ruimte tussen afbeelding en tekst */
}

.pest-text {
    flex-grow: 1; /* Zorgt ervoor dat de tekst de beschikbare ruimte gebruikt */
}

.green-line {
    height: 4px; /* Dikte van de groene lijn */
    background-color: #4CAF50; /* Pas deze kleur aan naar jullie groene kleur */
    margin-top: 5px; /* Ruimte tussen de tekst en de lijn */
}

.description {
    margin-top: 10px; /* Ruimte boven de beschrijving */
    font-size: 14px; /* Pas de tekstgrootte aan zoals gewenst */
}
#whatsappMessage:hover {
    border-color: #00a54f; /* Groene rand bij hover */
}

/* Verberg systeemcursor voor pest-item */
.pest-item {
    cursor: none; /* Verberg systeemcursor */
}

.blog-area .owl-nav > div {
    cursor: none; /* Verberg systeemcursor */
}:

.country-code-select select {
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    height: 44px; /* Zorgt ervoor dat de hoogte gelijk is aan andere velden */
    margin-top: 0; /* Zorgt ervoor dat er geen extra marge is */
}
a.cbtn {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    padding: 13px 25px;
    background: red;
    border-radius: 4px;
}

a.cbtn.cbnt1 {
    background: #00a54f;
    padding-right: 70px;
    position: relative;
    z-index: 2;
    border: 1px solid transparent;
    color:#fff;
}

a.cbtn.cbnt1 i {
    position: absolute;
    top: 50%;
    right: 15px;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    background: #fff;
    color: #00a54f;
    border-radius: 4px;
    margin-top: -15px;
}



a.cbtn.cbnt1:hover{
    border-color: #22cd6f;
    background: transparent;
    color: #22cd6f;
    transition: all .3s;
}


a.cbtn.pricing-btn {
    background: #00a54f;
    padding-right: 70px;
    position: relative;
    z-index: 2;
    color: #fff;
}

a.cbtn.pricing-btn i {
    position: absolute;
    top: 50%;
    right: 15px;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    background: #fff;
    color: #121517;
    border-radius: 4px;
    margin-top: -15px;
}

/*
Template name : gilroy portfolio web template;
Version:1.0


INNER PAGES CSS----->

*/


.welcome-area.inner {
    padding: 150px 0 200px 0;
}

.inner-wlc h2 {
    font-size: 48px;
    color: #fff;
    text-transform: uppercase;
}

.inner-wlc h3 {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
}

.inner-wlc a {
    color: #fff;
}


.inner-filltext h1 {
    text-transform: uppercase;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #161b1d;
}


.single-blog-section-description h2, 
.single-blog-section-description h2 a{
    font-size: 30px;
    text-transform: uppercase;
    line-height: 40px;
    color: #000;
    margin: 0;
    letter-spacing: 0
}

.single-blog-section-description h2:hover, 
.single-blog-section-description h2 a:hover{

    color: #08d665;
}

.single-blog-section-description {
    padding: 30px 0 50px 0;
}
.single-blog-section-description p{
	margin-bottom: 30px;
	font-weight: 400;
	font-size: 16px;
	color: #666666;
}
.single-blog-section-author li {
    display: inline-block;
    padding: 25px 0;
    padding-right: 15px;
}

.single-blog-section-author li a {
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
    color: #666666
}

a.blog-author {
    padding-left: 50px;
    position: relative;
    z-index: 2;
}

a.blog-author img {
    position: absolute;
    height: 40px;
    width: 40px;
    left: 0;
    top: 50%;
    margin-top: -20px;
    border-radius: 50%;
    border: 1px solid #08d665;
}

.single-blog-section-author li a i {
    color: #08d665;
    padding-right: 5px;
}

.single-blog-section-img {
    display: flex;
    align-items: flex-end;
    position: relative;z-index: 2;
}

span.single-blog-section-img-tag {
    color: #fff;
    text-transform: uppercase;
    background: #000;
    padding: 10px 25px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.blog-author-image h6 {
    font-size: 13px;
    text-transform: uppercase;
    color: #000;
    opacity: .7;
    margin: 15px 0;
}
.single-blog-section:hover span.single-blog-section-img-tag{
	background: #08d665;
}

.blog-page-social li {
    display: inline;
    margin-left: 10px;
}
.blog-page-social li:first-child{
    margin-left: 0
}
.blog-page-social li a {
    font-size: 18px;
}

.blog-banner {
    padding: 50px 60px;
    background: #000;
    color: #fff;
}

.blog-banner h3 {
    text-transform: uppercase;
    font-size: 30px;
    color: #fff;
    line-height: 40px;
}
.cpagination .page-link:focus{
	outline: none;
	box-shadow: none
}

.cpagination .page-link {
    position: relative;
    display: block;
    padding: 16px;
    line-height: 1.25;
    background-color: #fff;
    border: 1px solid #08d665;
    color: #08d665;
    margin-right: 10px;
    border-radius: 5px;
}

.cpagination .page-link:hover{
	background: #08d665;
	color: #fff;
	
}

.blog-box {
    margin-bottom: 50px;
   
}

.blog-box h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 40px;
}

.blog-box span {
    color: #08d665;
}

.blog-author-image img {
    width: 60%;
}

.blog-author-image p {
    font-size: 13px;
    text-transform: uppercase;
    color: #000;
    opacity: .7;
    margin: 20px 0;
}

.blog-author-description p {

    padding: 30px 0;
 
}
.blog-box p{
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    opacity: .7;
    margin: 0;
}
.single-blog-post p {
    color: #000000;
    text-transform: uppercase;
}

.single-blog-post {
    position: relative;
    z-index: 2;
    padding-left: 110px;
    text-align: left;
    margin-bottom: 45px
}
.single-blog-post:last-child{
    margin-bottom: 0
}
.single-blog-post a{
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
}
.single-blog-post img {
    position: absolute;
    left: 0;
    top: 50%;
    height: 70px;
    width: 70px;
    margin-top: -35px;
}

.single-blog-social li a {
    display: inline-block;
    width: 100px;
    line-height: 100px;
    text-align: center;
    background: red;
    height: 100px;
    margin: 6px;
}

.single-blog-social li {
    display: inline-block;
}

.blog-categores li a {
    color: #000;
    padding: 10px 0;
}
.blog-categores li a:hover{
    color: #08d665;
}
.blog-tag li a {
    padding: 7px 13px;
    border: 1px solid #e7e7e7;
    margin: 5px;
    color: #000;
    font-size: 13px;
    text-transform: uppercase;
}

.blog-tag li {
    display: unset;
}

.blog-tag li a:hover {
    background: #08d665;
    color: #fff;
}

.blog-subscribe-form input {
    margin: 30px 0 20px 0;
    width: 80% !important;
    border: 1px solid #b4f3d0;
    padding: 13px;
}


.contact-form input, 
.contact-form textarea {
    border: 1px solid #bcbcbc;
    padding: 13px;
    margin-bottom: 17px;
    background: #f9f9f9;
    border-radius: 5px;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #08d665;
}

.portfolio-bg-1{
    background: url(../img/project/portfolio1.jpg)
}
.portfolio-bg-2{
    background: url(../img/project/portfolio2.jpg)
}
.portfolio-bg-3{
    background: url(../img/project/portfolio3.jpg)
}
.portfolio-bg-4{
    background: url(../img/project/portfolio4.jpg)
}
.portfolio-bg-5{
    background: url(../img/project/portfolio5.jpg)
}
.portfolio-bg-6{
    background: url(../img/project/portfolio6.jpg)
}
.portfolio-bg-7{
    background: url(../img/project/01.jpg)
}
.portfolio-bg-8{
    background: url(../img/project/02.jpg)
}
.portfolio-bg-9{
    background: url(../img/project/03.jpg)
}

.portfolio-filter {
    margin: 0 0 50px;
    padding: 0;
    list-style: none;
    font-size: 20px;
}
.portfolio-filter li {
    display: inline-block;
    padding: 10px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #0b0d0e;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}
.portfolio-filter li.active{
    color: #08d665;
}
.portfolio-description {
    margin-bottom: 30px;
    padding: 30px 0;
}
.portfolio-description h6{
    font-size: 16px;
    color: #08b665;
    text-transform: uppercase;
}

.portfolio-description h3{
    color: #0b0d0e;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.single-portfolio-item {
    height: 310px;
    width: 100%;
    background-size: cover;
    position: relative;
    background-position: center;
    z-index: 2;
    margin: 15px 0;
    overflow: hidden;
}

.single-portfolio-item {
    -webkit-box-shadow: 3px 4px 13px #f2f2f2; 
    box-shadow: 3px 4px 13px #f2f2f2;

}
.single-portfolio-item:hover .portfolio-hover{
    opacity: 1;
    visibility: visible;
}
.portfolio-hover h3, 
.portfolio-hover a{
    color: #fff;
    font-size: 20px;
}

.portfolio-hover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.portfolio-hover:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 50%;
    width: 50%;
    background: #000;
    content: "";
    z-index: -1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    opacity: 0;
    visibility: hidden;
}
.single-portfolio-item:hover .portfolio-hover:after{
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    height: 100%;
    width: 100%;
    opacity: .5;
    visibility: visible;
}
.portfolio-hover h4, .portfolio-hover a{
    font-size: 40px;
    color: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    
}
.single-portfolio-item:hover .portfolio-hover a{
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.portfolio-hover-table {
    display: table;
    height: 100%;
    width: 100%;
}
.portfolio-hover-table-cell {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}
.lage {
height: 350px;
}
.single-portfolio-item2{
    height: 520px
}

.small{
    height: 250px;
}

.single-portfolio-description h3, 
.comment_form h3 {
    font-size: 24px;
    text-transform: uppercase;
    color: #0b0d0e;
}

.single-portfolio-description p {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
    color: #0b0d0e;
}

.ctable th {
    font-weight: 500;
}

.ctable td {
    font-weight: 400;
}
.post_prev_next a, 
.post_prev_next h5{
    text-transform: uppercase;
    color: #000;
}
.single_comment {
    position: relative;
    z-index: 2;
    padding: 0 0 0px 120px;
    margin-bottom: 40px;
}
.comment_img {
    width: 80px;
    height: 80px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -40px;
    border-radius: 50%;
    overflow: hidden;
}

.comment_img img {
    max-width: 100%;
    max-height: 100%;
}

.related_tags h3 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}

.single_comment h4{
    color: #08d665;
    margin: 0;
    text-transform: uppercase;
}
.single_comment a{
    text-transform: uppercase;
}

.comment_text p{
    margin: 0;
    color: #000;
    font-weight: 400;
}

.comment_form input, 
.comment_form textarea {
    padding: 13px;
    border-radius: 5px;
    border: 1px solid #000;
}

.comment_form input:first-child {
    margin-bottom: 20px;
}

.comment_form input:focus, 
.comment_form textarea:focus {
    border-color: #22cd6f;
   -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.single-blog-section-description h4 {
    color: #000;
    font-size: 24px;
    text-transform: uppercase;
    background: #ddd;
    padding: 50px 30px;
    line-height: 1.6;
    margin-bottom: 30px;
}
div#home {
    padding-top: 90px;
}

.inner-bg-shpes {
    position: relative;
    z-index: 2;
}

img.inner-shape1 {
    position: absolute;
    top: 0;
    left: -10%;
    z-index: -1;
}

img.inner-shape2 {
    position: absolute;
    right: -25%;
    bottom: 5%;
    z-index: -1;
}

img.inner-shape3 {
    position: absolute;
    right: -35%;
    bottom: 70%;
    z-index: -1;
}

.blog-box {
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
}

.single-quote {
    padding: 60px 50px;
    background: #08d665;
}

.single-quote h6 {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 30px;
}

.single-quote h2, 
.single-quote h2 a{
    font-size: 30px;
    line-height: 40px;
    text-transform: uppercase;
    margin: 20px 0 0 0;
    color: #fff;
}

.single-quote{
    counter-reset: dot-number;
    position: relative;
}

.single-quote:after {
    position: absolute;
    content: "Q" counter(dot-number);
    counter-increment: dot-number;
    top: 20%;
    right: 10%;
    font-size: 80px;
    color: #07C55D;
}

.contact-page-area .service-text{
    margin-bottom: 0;
}

.border-effect{
    position: relative;
    z-index: 2;
    height: 1px;
    width: 100%;
    background: #f5f5f5;
    margin-bottom: 30px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all 35s;
}

.border-effect:after{
    position: absolute;
    content: "";
    height: 100%;
    width:10%;
    background: #08d665;
    z-index: 2;
    left: 0;
    top: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.blog-box:hover .border-effect:after{
    width: 100%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}




.memphis-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.memphics {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

img.memphis {
    position: absolute;
    z-index: -1;
}

img.memphis1 {
    top: 50%;
    right: 5%;
    -webkit-animation: spin alternate infinite ease 9s;
    animation: spin alternate infinite ease 9s;
}

img.memphis2 {
    top: -5%;
    left: -15%;
    filter: brightness(0);
    -webkit-animation: spin infinite ease 9s;
    animation: spin infinite ease 9s;
}
img.memphis.memphis3 {
    right: 10%;
    top: 24%;
}

img.memphis.memphis5 {
    left: 50%;
    top: 68%;
}

img.memphis.memphis4 {
    right: 49.7%;
    bottom: 73%;
    -webkit-animation: updown infinite alternate ease 20s; 
    animation: updown infinite alternate ease 20s;
}

img.memphis.memphis6 {
    bottom: 15%;
    left: 5%;
}

img.memphis.memphis7 {
    right: 14.8%;
    top: 20%;
    -webkit-animation: updown infinite alternate ease 25s;
    animation: updown infinite alternate ease 25s
}

@keyframes spin {
    0%{
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        tr-webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes updown {
    0%{
        top: 20%;
    }
    100%{
         top: 60%;
    }
}






.contact__card h4 {
    font-size: 24px;
    text-transform: uppercase;
    color: #32383A;
    margin: 20px 0;
}


.contact__card__icon i {
    color: #32383A;
    font-size: 36px;
}

.contact__card ul li {
    color: #999999;

    font-size: 18px;
    font-weight: 400;
    margin-bottom: 3px;
}

.contact__card ul li:last-child{
    margin-bottom: 0;
}
.contact__card {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    transform: translateY(0);
    transition: all .3s;
    padding: 40px 30px;
}

.contact__card:hover {
    transform: translateY(-5px);
    transition: all .3s;
    box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.1);
}

/*
Theme Name:  
Theme url:
Author:
Author url:
Version:1.0.0
Tag:
Description:

================+/+/+/+/+/+/+/+/+/=================
                    heigh
================+/+/+/+/+/+/+/+/+/=================
*/
@media only screen and (min-width: 1400px) {
    .single-welcome-area{
        height: 750px;
    }
    .wlc-title h1{
        font-size: 80px;
        line-height: 90px

    }
    
}
/*
================+/+/+/+/+/+/+/+/+/=================
                    heigh
================+/+/+/+/+/+/+/+/+/=================
*/
@media only screen and (max-width: 1400px) {
    
    
}

/*
================+/+/+/+/+/+/+/+/+/=================
                    medium
================+/+/+/+/+/+/+/+/+/=================
*/

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    
}
/*
================+/+/+/+/+/+/+/+/+/=================
                     tab
================+/+/+/+/+/+/+/+/+/=================
*/
@media only screen and (max-width: 991px){
    .skill-area.primery-skill .row:last-child > div {
        margin-bottom: 30px;
    }
    .skill-area.primery-skill .row:last-child > div:last-child{
        margin-bottom: 0
    }
    .service-area .row > div, 
    .pricing-area .row > div{
        margin-bottom: 40px;
    }
    .about-area .heading{
        margin-top: 40px
     }
    .service-area .row > div:last-child, 
    .pricing-area .row > div:last-child{
        margin-bottom: 0;
    }
    .header-banner-area{
        display: none;
        height: 0
    }
    .header-area.header-main{
        top: 0
    }
    .welcome-area.inner {
        padding: 100px 0 50px 0;
    }
    .single-blog-section-description h2 {
        font-size: 18px;
        line-height: 30px;
    }
    .single-blog-section-author ul{
        margin:20px 0;
    }
    .single-blog-section-author li{
        padding: 5px 0;
    }
    .related_tags .row > div:last-child {
        margin-top: 15px;
    }
    .post_prev_next .row > div {
        text-align: left !important;
        margin: 10px 0;
    }
    .single_comment {
        position: relative;
        z-index: 2;
        padding: 0;
    }
    .comment_img {
        width: 80px;
        height: 80px;
        text-align: center;
        position: relative;
        top: 100%;
        left: 0;
        margin-top: 0;
        border-radius: 50%;
        overflow: hidden;
        margin-bottom: 30px;
    }
    .single_comment h4 {
        font-size: 16px;
    }
    .comment_form{
        margin-bottom: 50px;
    }
    .portfolio-filter li {
        display: block;
        text-align: center;
    }
    .contact-page-area .row > div, 
    .map {
        margin-bottom: 40px;
    }
    .contact-page-area .row > div:last-child{
        margin-bottom: 0;
    }
    .cpagination{
        margin-bottom: 50px;
    }
    .info-content{
        margin-top: 30px;
    }
    .about-area .primery-heading{
        margin-top: 40px;    
    }
    .wlc-author-1{
        display: none;
    }
    .skill-box{
        margin-bottom: 30px;
     }

}

/*tablet layout:768px*/
@media only screen and(min-width:768px) and (max-width:991px){
	
    


	
}    
/*
================+/+/+/+/+/+/+/+/+/=================
                    Mobile
================+/+/+/+/+/+/+/+/+/=================
*/
@media only screen and (max-width: 767px) {
    .wlc-title h1{
        font-size     : 32px;
        line-height   : 36px;
        letter-spacing: 1px;
    }
   .banner-social-wrap {
        text-align : center;
        margin-top : 7px;
        border-top : 1px solid #657A84;
        padding-top: 7px;
    }
    div#facts .row > div {
        margin: 20px;
    }
    .author-1 {
        display: none;
    }
    .single-welcome-area {
        text-align: center;
        height: 450px;
        padding: 120px 0;
    }
    .blog-page-social {
        text-align: justify;
    }

    .single-welcome-area.home_1 {
        
        margin-top: 120px;
    }
    .header-area{
        padding: 10px 0;
    }
    .single-blog-img{
        height: 220px !important;
    }
    .heading h2, 
    .primery-heading h2 {
        font-size: 32px;
        line-height: 45px;
    }
    
    .owl-nav {
        position: absolute !important;
        top: auto !important;
        right: 0 !important;
        bottom: -20% !important;
        width: 100% !important;
        text-align: center !important;
    }
    .da-thumbs li{
        float: unset;
    }
    .testimonial-text h4 {
        font-size: 16px;
        line-height: 25px;
    }
    .testimonial-text h4 {
        font-size: 16px;
        line-height: 25px;
    }
    .testimonial-img {
        height: 100px;
        width: 100px;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        left: 0;
        top: 50%;
        margin-top: 0;
        margin: 0 auto;
        margin-bottom: 32px;
    }

    .testimonial {
        position: relative;
        z-index: 2;
        padding-left: 0;
        text-align: center;
    }
    .project-area.section-padding, 
    .pricing-area.section-padding{
        padding-bottom: 0
    }
    .cta-form input {
        width: 100% !important;
        margin-bottom: 30px;
    }
    a.subscribe-btn {
        width: 78%;
        float: none;
    }
    .heading.cta-heading h2 {
        font-size: 34px;
        line-height: 45px;
    }
    

    .blog-area .owl-nav{
        bottom: -5% !important
    }
    .blog-readmore-social div > div:last-child {
        text-align: left;
        margin-top: 15px;
    }
    .blog-banner h3 {
        font-size: 20px;
        color: #fff;
        line-height: 34px;
    }
    .blog-banner{
        padding: 20px
    }
    .cta-form a.subscribe-btn {
        width: 75%;
        float: left;
    }
    .single-quote {
        padding: 20px;
    }

    .skill-area .skill{
        margin-bottom: 30px;
    }
     .skill-area .skill:last-child{
        margin-bottom: 0;
     }
     .welcome-carousel .owl-dots{
        bottom: 40%;
     }

     
}

/*
================+/+/+/+/+/+/+/+/+/=================
                    wid device
================+/+/+/+/+/+/+/+/+/=================
*/

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.container{
		width: 480px;
	}
    

}
/*=========================================================================
                                The end
==========================================================================*/


/* Media query voor mobiele apparaten */
@media (max-width: 768px) {
    .primery-heading strong.filltext {
        font-size: 40px; /* Kleinere grootte voor mobiel */
    }
}