html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

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




:root {
    --lobster: 'Lobster', cursive;
    --opensans: 'Open Sans', sans-serif;
    --poppins: 'Poppins', sans-serif;
    --robot: 'Roboto', sans-serif;
    --nunito: 'Nunito', sans-serif;



    --logocolor: #006680;
    --bgcolor: #f0f9ff;
}

.active {
    color: #006680;
}




* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 13px;
    background-color: #fff;
    border: 4px solid rgb(196, 196, 196);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #00a9d3, var(--logocolor) 100%, rgba(7, 16, 50, 1) 0%);
    border: 2px solid white;
    border-radius: 30px;
}



/*--------------------------- Navbar ------------------------------*/
.navs {
    display: block;
    transition: top 0.8s;
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
    height: 74px;
    background: #fff;
    box-shadow: 0 0 33px #00000087;
    border: 2px dashed #00a9d3;
}

.navs .navbar {
    background-color: #fff;
    height: 70px !important;
}

.navs .container .logo img {
    height: 40px;
}

.navs .container .collapse ul {
    font-family: var(--poppins);
    font-weight: 400;
}

.navs .container .collapse ul li {
    padding: 0 15px;
}

.navs .container .collapse ul li a {
    color: #000;
    transition: 0.6s;
    font-size: 15px;
}

.navs .container .collapse ul li .active {
    color: #006680;
    font-weight: bold;
}

.navs .container .collapse ul li a:hover {
    color: #006680;
    font-weight: bold;
}

/*------------xxxx----------- Navbar -------------xxxx-------------*/














/*--------------------------- Hero ------------------------------*/
.cloud {
    padding: 50px 0 0 0;
    position: relative;
    height: 600px;
    margin-bottom: 60px;
    width: 100%;
    background-color: #006680;
    z-index: -3;
}

#canvasContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 340px;
    z-index: -1;
}

.cloud .hero-text h2 {
    margin: 80px 0 0 0;
    color: white;
    text-align: center;
    font-family: var(--nunito);
    font-weight: bold;
    font-size: 50px;
}

.cloud .hero-text p {
    text-align: center;
    margin: 20px 0;
    color: #fff;
    font-family: var(--robot);
    word-spacing: 3px;
    letter-spacing: 1px;
    font-weight: 200;
    font-size: 20px;
}

.cloud .hero-text .button {
    display: flex;
    justify-content: center;
    /* background-color: red; */
    /* padding: 50px 0; */
}

.cloud .hero-text a {
    padding: 10px 60px;
    margin: 20px 0;
    font-size: 40px;
    color: #fff;
    animation: down 2s infinite;
}

@keyframes down {
    0% {
        margin: 20px 0;
    }

    50% {
        margin: 40px 0;
    }

    100% {
        margin: 20px 0;
    }
}

/*------------xxxx----------- Hero -------------xxxx-------------*/









/*--------------------------- About ------------------------------*/
.about {
    background-image: url('../images/background3.png');
    background-size: cover;
    overflow: hidden;
}

.about .h2 {
    margin: 100px 0 70px 0;
    text-align: center;
    font-size: 40px !important;
    font-family: var(--nunito);
    font-weight: bolder;
    color: var(--logocolor);
}

.about .mini-about {
    height: 480px;
}

.about .mini-about .part1 img {
    width: 500px;
    margin: 70px 0;
    animation: height 3s infinite;
}

@keyframes height {
    0% {
        margin: 90px 0;
    }

    50% {
        margin: 0 0;
    }

    100% {
        margin: 90px 0;
    }
}

.about .mini-about .part2 #p1 {
    margin: 25px 0;
    font-size: 20px;
    font-family: var(--robot);
    font-weight: bold;
    color: #00a9d3;
}

.about .mini-about .part2 #h2 {
    font-size: 35px;
    font-family: var(--nunito);
    font-weight: bolder;
    color: var(--logocolor);
    margin-bottom: 40px;
}

.about .mini-about .part2 #lorem {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #747E88;
    font-family: var(--poppins);
    text-align: justify !important;
}

.about .mini-about .part2 .points {
    font-size: 16px;
    font-family: var(--poppins);
    font-weight: 400;
    margin: 15px 0;
    line-height: 24px;
    color: #747E88;
}

.about .mini-about .part2 .points i {
    color: #008000;
    margin: 0 10px 0 0;
}


/*------------xxxx----------- About -------------xxxx-------------*/







/*--------------------------- Carousel ------------------------------*/
.slider {
    margin: 50px 0;
}

.slider .carousel {
    overflow: hidden;
    border-radius: 25px;
    border: 2px dashed var(--logocolor);
}
/*------------xxxx----------- Carousel -------------xxxx-------------*/






/*--------------------------- Features ------------------------------*/
.features {
    margin-bottom: 100px;
    overflow: hidden;
}

.features .h2 {
    margin: 80px 0 50px 0;
    text-align: center;
    font-size: 40px !important;
    font-family: var(--nunito);
    font-weight: bolder;
    color: var(--logocolor);
}

.features .box .card {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.8s;
    background-color: #f0f9ff;
    border: 2px dashed #00a9d3;
}

.features .box .card:hover {
    box-shadow: 0px 10px 15px 0px #bbbbbb;
    border: 2px dashed #fff;
    background-color: var(--logocolor);
}

.features .box .card:hover p {
    color: #fff;
}

.features .box .card:hover i {
    color: #fff;
    transform: rotate(360deg);

}

.features .box .card a {
    text-decoration: none;
    color: var(--logocolor);
}


.features .box .card a i {
    margin: 60px 0;
    font-size: 80px;
    transition: all 0.8s;
}

.features .box .card p {
    margin: 0 0 80px;
    font-weight: bolder;
    font-family: var(--poppins);
    font-size: 24px;
    color: var(--logocolor);
    transition: all 0.8s;
}


/*------------xxxx----------- Features -------------xxxx-------------*/

















/*--------------------------- Count ------------------------------*/
.count {
    height: 600px;
    width: 100%;
    background: linear-gradient(45deg, rgba(7, 16, 50, 1) 0%, var(--logocolor) 100%);
    background-attachment: fixed;
    display: grid;
    place-items: center;
    border-top: 3px dashed #fff;
    border-bottom: 3px dashed #fff;
    overflow-x: hidden;
}

.count .part1 .card {
    margin: 25px 0;
    background: transparent;
    border: 2px dashed #fff;
    border-radius: 10px;
}

.count .part1 .card i {
    margin: 40px 0;
    font-size: 40px;
    color: #fff;
    text-align: center;
}

.count .part1 .card .counter {
    color: #fff;
    text-align: center;
    font-family: var(--robot);
    font-weight: bolder;
    font-weight: 600;
    font-size: 44px;
}

.count .part1 .card p {
    margin: 40px 0;
    color: #fff;
    text-align: center;
    font-size: 25px;
    font-family: var(--poppins);
}

/*------------xxxx----------- Count -------------xxxx-------------*/






/*--------------------------- Price ------------------------------*/
.price {
    overflow: hidden;
}

.price .h2 {
    margin: 100px 0 70px 0;
    text-align: center;
    font-size: 40px !important;
    font-family: var(--nunito);
    font-weight: bolder;
    color: var(--logocolor);
}

.price .box .card {
    margin: 20px 0;
    padding: 20px;
    border: 2px dashed var(--logocolor);
    border-radius: 10px;
    background: var(--bgcolor);
    transition: all 0.8s;
}

.price .box .card:hover {
    box-shadow: 0px 10px 15px 0px #bbbbbb;
}

.price .box .checked {
    box-shadow: 0px 10px 15px 0px #bbbbbb;
}

.price .box .card h2 {
    text-align: center;
    text-transform: uppercase;
    margin: 50px 0;
    font-family: var(--opensans);
    font-weight: bold;
    font-size: 45px;
    color: var(--logocolor);
}

.price .box .card .dropdown {
    display: flex;
    justify-content: center;
    font-family: var(--robot);
    font-size: 14px;
    font-weight: 300;
}

.price .box .card .dropdown .btn {
    margin: 30px 0;
    background-color: var(--logocolor);
    border: none;
}

.price .box .card .dropdown .dropdown-menu {
    background-color: var(--logocolor);
}

.price .box .card .dropdown .dropdown-menu li a {
    color: #fff;
}

.price .box .card .m-list li {
    padding: 5px 0;
    font-size: 14px;
    font-family: var(--poppins);
}

.price .box .card .m-list li i {
    color: var(--logocolor);
}

/*------------xxxx----------- Price -------------xxxx-------------*/




















/*--------------------------- Nutro ------------------------------*/
.nutro {
    overflow: hidden;
    margin: 100px 0;
    height: 600px;
    background-color: #81bfd1;
}

.nutro .container .part1 {
    height: 600px;
    display: flex;
    align-items: center;
}

.nutro .text {
    color: var(--logocolor);
}

.nutro .text h2 {
    margin: 25px 0;
    font-size: 45px;
    font-family: var(--nunito);
    font-weight: bolder;
}

.nutro .text p {
    font-family: var(--robot);
    line-height: 20px;
    text-align: justify;
}

/*------------xxxx----------- Nutro -------------xxxx-------------*/

















/*--------------------------- Contact ------------------------------*/
.contact {
    overflow: hidden;
}

.contact .h2 {
    margin: 100px 0 20px 0;
    text-align: center;
    font-size: 40px !important;
    font-family: var(--nunito);
    font-weight: bolder;
    color: var(--logocolor);
}

.contact p {
    font-size: 18px;
    text-align: center;
    font-family: var(--robot);
    line-height: 25px;
    /* font-weight: 500; */
    margin: 0 0 20px 0;
}

.contact .button {
    display: flex;
    justify-content: center;
}

.contact .button a {
    display: grid;
    place-items: center;
    margin: 0 25px 20px 25px;
    width: 200px;
    height: 40px;
    color: white;
    font-family: var(--opensans);
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 15px 0 15px 0;
    background: linear-gradient(to bottom, #00a9d3, var(--logocolor) 100%, rgba(7, 16, 50, 1) 0%);
    transition: all 0.6s ease-in-out;
}

.contact .button a:hover {
    background: linear-gradient(to bottom, var(--logocolor) 0%, #00a9d3);
    border-radius: 0 15px 0 15px;

}

.contact .contact-form .row {
    margin: 100px 0;
}

.contact form {
    margin: 50px 0;
    /* background-color: red; */
}

.contact form input[type=text] {
    font-family: var(--poppins);
    padding: 10px 15px;
    margin: 30px 0;
}

.contact form input[type=email] {
    font-family: var(--poppins);
    padding: 10px 15px;
    margin: 30px 0;
}

.contact form textarea {
    font-family: var(--poppins);
    padding: 10px 15px 80px 15px;
    margin: 30px 0;
}

.contact form button {
    /* margin: 0 25px 20px 25px; */
    width: 200px;
    height: 40px;
    border: none;
    color: white;
    font-family: var(--opensans);
    font-weight: bold;
    text-decoration: none;
    border-radius: 15px 0 15px 0;
    background: linear-gradient(to bottom, #00a9d3, var(--logocolor) 100%, rgba(7, 16, 50, 1) 0%);
    transition: all 0.6s ease-in-out;
}

.contact form button:hover {
    background: linear-gradient(to bottom, var(--logocolor) 0%, #00a9d3);
    border-radius: 0 15px 0 15px;
    color: white;
}

/*------------xxxx----------- Contact -------------xxxx-------------*/















/*--------------------------- Footer ------------------------------*/
footer {
    font-family: var(--opensans);
    background: linear-gradient(45deg, rgba(7, 16, 50, 1) 0%, var(--logocolor) 100%);
}

footer a {
    text-decoration: none;
    color: rgb(189, 189, 189);
}

footer p {
    color: rgb(189, 189, 189);
}

footer h6 {
    color: white;
    font-weight: bold;
}

footer button i {
    color: white;
}

/*------------xxxx----------- Footer -------------xxxx-------------*/








/*--------------------------- Back To Top ------------------------------*/
#myBtn {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
    font-size: 20px;
    border: 2px solid white;
    outline: none;
    background: linear-gradient(to bottom, #00a9d3, var(--logocolor) 100%, rgba(7, 16, 50, 1) 0%);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

#myBtn:hover {
    background-color: #555;
}

/*------------xxxx----------- Back To Top -------------xxxx-------------*/






/*--------------------------- Media Querys ------------------------------*/
@media (max-width: 991px) {
    .about .mini-about {
        height: 900px;
    }

    .count {
        height: 1000px;
    }

    .about .mini-about .part1 .img {
        display: flex;
        justify-content: center;
    }

    .about .mini-about .part1 img {
        animation: none;
    }

    .slider {
        margin: 50px 0 50px 0;
    }

    .nutro {
        height: 900px;
    }

    .nutro .container .part1 {
        height: 300px;
        justify-content: center;
    }

    .nutro .text h2,
    .nutro .text p {
        text-align: center;
    }

    .contact .contact-img {
        display: flex;
        justify-content: center;
    }

    .contact form .form-button {
        display: flex;
        justify-content: center;
    }


}



@media (max-width: 530px) {
    .about {
        background-image: none;
    }

    .navs .navbar .logo img {
        height: 33px;
    }
}


@media (max-width: 395px) {
    .about .mini-about {
        height: 930px;
    }

    .navs .navbar .logo img {
        height: 33px;
    }
}


@media (max-width: 327px) {
    .navs .navbar .logo {
        display: flex;
        justify-content: center;
    }

    .navs .navbar .logo img {
        height: 33px;
    }
}

/*------------xxxx----------- Media Querys -------------xxxx-------------*/