body,
html {
    padding: 0;
    margin: 0;
}

a {
    color: #000;
    font-weight: 700;
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: 600;
}

h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #000;
}

p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
}

li {
    list-style-type: none;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.header {
    padding: 15px 0;
}

.header img {
    width: 40%;
}

.header li {
    list-style-type: none;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.header i {
    margin-right: 15px;
    margin-bottom: 15px;
}

.header a {
    text-decoration: none;
}

.header a:hover {
    text-decoration: underline;
    color: #000;
}

.main-menu {
    background-color: #000;
    border-bottom: 2px solid #fff;
}

.nav-link {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    margin: 0 15px;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::before {
    content: '';
    /* Necessary for the pseudo-element to be generated */
    position: absolute;
    top: 0;
    /* Adjust this value to control the space between the overline and the text */
    left: 0;
    right: 0;
    height: 2px;
    /* Thickness of the overline */
    background-color: #fff;
    /* Match the color of the text or set a custom color */
    transform: translateY(-3px);
    /* Adjust the spacing between the text and the overline */
}

.navbar-nav {
    margin: auto;
}

.carousel img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* The flip box container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-box {
    background-color: transparent;
    width: 100%;
    height: 250px;
    border: none;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-box:hover .flip-box-inner {
    transform: rotateX(180deg);
}

/* Position the front and back side */
.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
}

/* Style the front side */
.flip-box-front {
    background-color: #000;
    color: white;
    padding: 50px;
}

/* Style the back side */
.flip-box-back {
    background-color: #0b76b3;
    color: white;
    transform: rotateX(180deg);
    padding: 0;
}

.flip-box-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-box i {
    font-size: 40px;
    margin-bottom: 10px;
    color: white;
}

.flip-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    font-weight: 700;
    padding-bottom: 30px;
    color: white;
    line-height: 1.4em;
}

.flip-box p {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.contacts ul {
    padding-left: 0;
}

.contacts li {
    margin-bottom: 10px;
    font-weight: 600;
}

.contacts i {
    margin-right: 15px;
}

.contacts a {
    color: #000;
    text-decoration: none;
}

.contacts a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #000;
    padding-top: 30px;
}

.footer img {
    width: 40%;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer i {
    color: #fff;
    margin-right: 15px;
}

.footer ul {
    padding-left: 0;
    margin-top: 20px;
}

.footer li {
    margin-bottom: 10px;
    color: #fff;
}

.footer h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    color: #fff;
}

.footer p {
    color: #fff;
}

.my-modal .img-thumbnail {
    height: 150px;
}

.my-modal img:hover {
    cursor: pointer;
}

.img-thumbnail {
    border: none;
}

.my-modal1 .img-thumbnail {
    height: 150px;
}

.my-modal1 img:hover {
    cursor: pointer;
}


@media (max-width:479px) {

    .header img {
        margin: auto;
    }

    .navbar-toggler {
        border-color: #fff;
        margin: auto;
    }

    .navbar-nav {
        margin-top: 15px;
        text-align: center;
        fill: #fff;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    .carousel img {
        height: auto;
    }

    .flip-box {
        margin-bottom: 15px;
    }

    h1 {
        font-size: 18px;
    }

    .container-fluid {
        --bs-gutter-x: 0;
    }

    img {
        width: 100%;
    }

    .card {
        margin-bottom: 15px;
    }






}