﻿#announcement {
    position: relative;
    overflow: hidden;
}

#announcementLabel {
    text-align: center;
    color: #fff;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

#announcementContent {
    background: #fff;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

#announcementContent:before {
    content: '';
    width: 100px;
    height: 100px;
    position: absolute;
    top: -50px;
    left: 50px;
    z-index: 1;
    transform: rotate(45deg);
}

#announcementContent:after {
    content: '';
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    right: -50px;
    z-index: 1;
    transform: rotate(45deg);
}

#announcementContent p {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

#content {
    background: url('../images/template1/bg1.jpg');
}

#contactUsContent {
    max-width: 800px;
}

.t-content #content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.t-content #content li {
    padding: 10px 16px;
    font-size: 16px;
    font-weight: bold;
}

.t-content #content li:not(:last-child) {
    margin-bottom: 10px;
}

.t-content #content .t-ico {
    max-width: 20px;
}

.t-content #content .t-contact-img {
    max-height: 120px;
}

#infoTabPill {
    border-style: solid;
    border-width: 1px;
}

#infoTabPill .nav-link {
    padding: 1rem;
    border-radius: 0;
    text-align: center;
    font-weight: bold;
}

#infoTabPill .nav-link:not(:last-child) {
    border-bottom-style: solid;
    border-bottom-width: 1px;
}