﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


body {
    font-family: "Open Sans", sans-serif;
}

header nav {
    background: #008e81;
}

    header nav .navbar-nav a {
        color: #fff;
    }

    header nav .active a {
        background: #fff;
        color: #008e81;
        border-radius: 7px;
    }

#magicCarousel .carousel-item {
  /*  height: 510px;*/
}

.carousel-caption {
    bottom: inherit;
    top: 25%;
    background: #008e81d4;
    border-radius: 12px;
    padding: 20px 0;
}

    .carousel-caption h2 {
        font: 700 30px/50px "Open Sans";
        margin: 10px 0 20px;
    }

    .carousel-caption p {
        font: 500 15px/30px "Open Sans";
    }

        .carousel-caption p span {
            background: #fff;
            border-radius: 5px;
            color: #008e81;
            padding: 5px;
        }

.about {
    padding: 80px 0;
}

h1 {
    position: relative;
    color: #008e81;
    margin-bottom: 40px;
    font: 700 30px/40px "Open Sans";
}

    h1::before {
        background-color: #008e81;
        bottom: -9px;
        content: "";
        height: 3px;
        left: 0;
        position: absolute;
        right: 0;
        width: 80px;
        margin: auto;
    }

.mess {
    padding: 60px 0;
    background: url('../img/bg.png') no-repeat;
    background-size: cover;
}

    .mess h4 {
        font: 700 17px/30px "Open Sans";
    }

    .mess ul li {
        margin-bottom: 10px;
    }

    .mess .img-box {
         
    }

        .mess .img-box img {
            width: 100%;
            border-radius: 0px 44px 0px 44px;
        }

footer {
    background: #00675d;
    font-size: 13px;
}

    footer p {
        margin: 0;
        text-align: center;
        color: #fff;
    }

.contact {
    padding: 80px 0;
}

.cont-box {
    display: flex;
    margin-bottom: 30px;
}

    .cont-box .box {
        background: #008e81;
        border-radius: 100px;
        width: 80px;
        height: 80px;
        color: #fff;
        font-size: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cont-box .text {
        margin-left: 20px;
    }

        .cont-box .text h3 {
            font: 700 21px/30px "Open Sans";
        }

        .cont-box .text p {
            font: 500 17px/30px "Open Sans";
            margin-bottom: 12px;
        }
.link-d {
    /*background: #008e81;*/
    color: #fff;
    font-size: 12px;
    padding: 5px;
    border-radius: 5px;
    animation: changeBackgroundColor 7s infinite;
}
    .link-d:hover {
        color: #fff;
        text-decoration: none;
        background: #000;
    }
@keyframes changeBackgroundColor {
    0% {
        background-color: #008e81;
    }

    50% {
        background-color: #f7bc6c;
    }

    100% {
        background-color: #008e81;
    }
}