/**
* template:  Bytefix

TABLE OF CONTENTS

        + Global
        + Header
        + Header Img
        + About Us
        + Services
        + Partners
        + Pricing
        + Help
        + FAQ
        + Contact

*/

@import 'reset.css';
@import 'all.min.css';
@import 'magnific-popup.css';
@import 'owl.carousel.min.css';
@import 'owl.theme.default.min.css';
@import url('https://fonts.googleapis.com/css2?family=Quattrocento+Sans:wght@400;700&family=Source+Sans+3:wght@700;900&display=swap');

/**************************************
*
*         GLOBAL   
*
***************************************/
html, body {
    touch-action: manipulation;
}

:root {
    --color-bg-dark: #111;
    --color-white: #ffffff;
    --color-green: #16acef;
    --color-dark-green: #16acef;
    --color-gray: #f1f1f1;
    --color-title: #333333;
    --color-content: #828282;
}

@-webkit-keyframes load {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes load {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#preload {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-dark);
    z-index: 100000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#preload img {
    width: 36px;
    height: auto;
    -webkit-animation-name: load;
    animation-name: load;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

::-moz-selection {
    color: var(--color-white);
    background-color: var(--color-dark-green);
}

::selection {
    color: var(--color-white);
    background-color: var(--color-dark-green);
}

body {
    font-family: 'Quattrocento Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-content);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-title);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: capitalize;
}

h1 {
    font-size: 70px;
    color: var(--color-white);
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 25px;
}

a {
    text-decoration: none;
    display: inline-block;
    outline: none;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

img {
    outline: none;
    height: auto;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.ptb {
    padding-top: 100px;
    padding-bottom: 100px;
}

.align-center {
    text-align: center;
}

.suptitle {
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: var(--color-dark-green);
}

.social-link li a {
    color: var(--color-white);
}

.social-link li a:hover {
    color: var(--color-dark-green);
}

.btn {
    padding: 14px 25px;
    color: var(--color-white);
    background-color: var(--color-green);
    border-radius: 3px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.btn:hover {
    background-color: var(--color-dark-green);
}

.res-send {
    display: none;
    font-size: 14px;
    margin-top: 20px;
}

.res-send .error {
    color: #ff0000;
}

.res-send .send {
    color: var(--color-dark-green);
}

#openmenu,
#closemenu {
    color: var(--color-white);
    font-size: 30px;
    display: none;
}

#openmenu:hover,
#closemenu:hover {
    color: var(--color-dark-green);
}

#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    padding: 15px 20px;
    background-color: var(--color-green);
    color: var(--color-white);
    border-radius: 3px;
}

#scroll-top:hover {
    background-color: var(--color-dark-green);
}


/**************************************
*
*         HEADER   
*
***************************************/

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.wrapper-header-top {
    background-color: rgba(0, 0, 0, 0.7);
}

.header-top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.header-top p {
    color: var(--color-white);
}

.header-top p i {
    margin-right: 10px;
    color: var(--color-green);
}

.header-top .social-link li {
    margin-left: 20px;
}

.header-bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.fixed {
    background-color: var(--color-bg-dark);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

#logo img {
    height: 60px;
}
@media(max-width:768px)
#logo img {
    height: 45px;
}
}

.menu li {
    margin-left: 40px;
}

.menu li a {
    color: var(--color-white);
    font-size: 18px;
}

.menu li a:hover {
    color: var(--color-dark-green);
}

#consultation {
    margin-left: 30px;
}


/**************************************
*
*         HEADER IMG 
*
***************************************/

.wrapper-header-img {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    height: 800px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/**************************************
*
*         ABOUT US
*
***************************************/

.work {
    margin-top: -120px;
}

.single-work {
    width: calc(25% - 20px);
    padding: 40px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: var(--color-white);
    margin: 10px;
    -webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.single-work img {
    max-width: 100%;
    margin-bottom: 20px;
    width: 54px;
    height: 54px;
}

.single-work h3 {
    margin-bottom: 20px;
}

.wrapper-aboutus {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.aboutus-img {
    width: 40%;
    -webkit-box-shadow: -25px -25px 0px -10px var(--color-green);
    box-shadow: -25px -25px 0px -10px var(--color-green);
    position: relative;
}

.aboutus-img>a {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: var(--color-green);
}

.aboutus-img>a:hover {
    color: var(--color-dark-green);
}

.aboutus-img img {
    width: 100%;
    display: block;
}

.aboutus-content {
    width: 60%;
    padding-left: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.aboutus-content p {
    margin-bottom: 10px;
}

.single-edge {
    width: 33.333333%;
    padding: 20px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.single-edge p {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-green);
}

.single-edge h3 {
    font-size: 18px;
    margin-bottom: 0px;
}


/**************************************
*
*         SERVICES
*
***************************************/

#services {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

#services h2 {
    color: var(--color-white);
}

.wrapper-services article {
    width: calc(33.333333% - 20px);
    padding: 40px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 10px;
}

.wrapper-services article h3 {
    margin-bottom: 20px;
    color: var(--color-white);
}

.wrapper-services article p {
    color: var(--color-white);
}

.wrapper-services article img {
    max-width: 100%;
    margin-bottom: 20px;
    width: 54px;
    height: 54px;
}


/**************************************
*
*         PARTNERS
*
***************************************/

#partners {
    background-color: var(--color-gray);
    padding-top: 50px;
    padding-bottom: 50px;
}


/**************************************
*
*         PRICING
*
***************************************/

.single-pricing {
    width: calc(33.333333% - 20px);
    margin: 50px 10px;
    -webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    padding: 50px 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.label-popular {
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 5px 10px;
    position: absolute;
    top: 0;
    left: 0;
}

.single-pricing h3,
.single-pricing p {
    text-align: center;
    color: var(--color-bg-dark);
}

.price-table-price {
    margin: 30px 0px;
}

.currency {
    vertical-align: top;
    padding-right: 10px;
}

.price {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 900;
    font-size: 60px;
    padding-right: 10px;
    color: var(--color-bg-dark);
}

.single-pricing ul li {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid var(--color-gray);
    padding-bottom: 5px;
}

.single-pricing ul li i {
    color: var(--color-green);
}


/**************************************
*
*         HELP
*
***************************************/

#help {
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    background-attachment: fixed;
}

.wrapper-help h2,
.wrapper-help p {
    color: var(--color-white);
}

.wrapper-help .btn {
    margin-top: 50px;
}


/**************************************
*
*        FAQ
*
***************************************/

#faq h2 {
    text-transform: uppercase;
}

.wrapper-accordion h3 i {
    margin-right: 10px;
    font-size: 16px;
}

.wrapper-faq .content-accordion {
    padding: 40px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-left: 5px solid var(--color-dark-green);
    box-sizing: border-box;
}

.wrapper-faq h3 {
    font-size: 20px;
    padding: 15px;
    border-left: 5px solid var(--color-bg-dark);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    margin-bottom: 0px;
    border-bottom: 1px solid var(--color-gray);
    border-top: 1px solid var(--color-gray);
    border-right: 1px solid var(--color-gray);
    margin: 5px 0px;
}

.content-accordion {
    display: none;
}


/**************************************
*
*         CONTACT
*
***************************************/

#contact {
    padding-top: 100px;
    background-color: var(--color-gray);
}

.wrapper-contact {
    width: 30%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 50px;
}

.wrapper-form {
    width: 70%;
}

#contact h2 {
    margin-bottom: 50px;
}

.wrapper-contact-form {
    padding-bottom: 50px;
}

.single-address {
    margin-bottom: 50px;
}

.single-address p {
    margin-bottom: 10px;
}

.single-address a {
    color: var(--color-content);
}

.single-address a:hover {
    color: var(--color-dark-green);
}

.wrapper-input {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wrapper-input input {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px;
    border: none;
    outline: none;
    width: calc(50% - 10px);
    margin-bottom: 20px;
    border-radius: 3px;
    background-color: var(--color-white);
    color: var(--color-title);
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
}

textarea {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    outline: none;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    border-radius: 3px;
    width: 100%;
    background-color: var(--color-white);
    padding: 15px;
    height: 200px;
}

.wrapper-input input::-webkit-input-placeholder,
.wrapper-input textarea::-webkit-input-placeholder {
    color: var(--color-title);
}

.wrapper-input input::-moz-placeholder,
.wrapper-input textarea::-moz-placeholder {
    color: var(--color-title);
}

.wrapper-input input:-ms-input-placeholder,
.wrapper-input textarea:-ms-input-placeholder {
    color: var(--color-title);
}

.wrapper-input input::-ms-input-placeholder,
.wrapper-input textarea::-ms-input-placeholder {
    color: var(--color-title);
}

.wrapper-input input::placeholder,
.wrapper-input textarea::placeholder {
    color: var(--color-title);
}

.wrapper-form button {
    outline: none;
    border: none;
    padding: 8px 25px;
    color: var(--color-white);
    background-color: var(--color-green);
    border-radius: 3px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.wrapper-form button:hover {
    background-color: var(--color-dark-green);
}

.wrapper-map {
    width: 100%;
    height: 400px;
}

.wrapper-map iframe {
    width: 100%;
    height: 400px;
}

.copyright {
    padding: 30px 15px;
    background-color: var(--color-bg-dark);
    color: var(--color-white);
}

.copyright p {
    font-size: 14px;
}

.single-address .social-link li a {
    color: var(--color-content);
}

.single-address .social-link li a:hover {
    color: var(--color-dark-green);
}

.single-address .social-link li {
    margin-right: 20px;
}


/* custom manaf*/

.mt-3 {
    margin-top: 1rem;
}

.sub-btn {
    position: relative;
    z-index: 9;
}

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
}

.whatsapp a {
    display: flex;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 40px;
    justify-content: center;
    align-items: center;
    background: #24d366;
    overflow: hidden;
}

.whatsapp button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    font-size: 40px;
    cursor: pointer;
    background-color: #25D366;
    border: 0;
    outline: none;
}