body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

a:hover {
    text-decoration: none;
}

.header-top {
    padding: 13px 10px 13px 10px;
    background: #fff;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .3);
}

.header-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-top .navbar-brand {
    font-weight: 700;
    font-size: 20px;
    color: #a50034;
    text-transform: uppercase;
}

.waves-btn {
    position: relative;
}

.waves-btn .header-button {
    position: relative;
    display: block;
    padding: 8px 29px 8px;
    background-color: #a50034;
    color: #ffffff;
    text-align: center;
    min-width: 80px;
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 5px;
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
    animation: ripple 1s infinite ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    20% {
        transform: scale(25, 25);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.main-carousel .carousel-caption {
    top: 50%;
}

.main-carousel .carousel-caption h5 {
    font-size: 30px;
}

.main-form {
    padding: 50px 0;
}

.form-inner {
    padding: 30px 25px;
    border-radius: 7px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .3);
}

.form-inner h4 {
    text-align: center;
    color: #a50034;
    padding: 8px 0;
    font-size: 19px;
    font-weight: 700;
}

.submit-btn {
    text-align: center;
    display: block;
    background-color: #a50034;
    color: #ffffff;
    padding: 7px 10px;
    border-radius: 3px;
    margin: 5px 0;
    font-size: 18px;
    width: 100%;
    border: 0px;
    font-weight: 700;
}

.submit-btn:hover {
    color: #ffffff;
}

.form-inner .mb2 {
    margin-bottom: 18px;
}

.form-content h3 {
    text-align: center;
}

.main-form .row {
    align-items: center;
}

.our-service {
    background-color: #f7f7f9;
    padding: 50px 0;
}

.service-header {
    text-align: center;
}

.service-header h2 {
    font-size: 24px;
    padding: 5px 0;
}

.service-inner {
    border-radius: 7px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .3);
    background-color: #fff;
    min-height: 420px;
    margin-bottom: 15px;
}

.service-inner img {
    width: 50px;
}

.service-inner h4 {
    font-size: 18px;
    padding: 10px 0;
    margin-top: 15px;
}

.service-inner p {
    font-size: 16px;
    color: rgba(0, 0, 0, .6);
}

.footer {
    background-color: #333132;
    padding: 10px 0;
}

.footer p {
    margin-bottom: 0;
    color: #ffffff;
    text-align: center;
}

section.mobile-call-sec {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .3);
}

.mobile-call-sec ul {
    margin: 0;
    padding: 0;
    display: flex
}

.mobile-call-sec ul li {
    text-align: center;
    width: 50%;
    list-style-type: none;
    background-color: #ffffff;
    padding: 20px 0;
}

.mobile-call-sec ul li:last-child {
    background-color: #a50034
}

.mobile-call-sec ul li a {
    text-decoration: none;
    color: #333;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.mobile-call-sec ul li:last-child a {
    color: #fff;
}

.header-top {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10000;
    transition: all 0.4s ease;
}

section.main-carousel {
    padding-top: 65px;
}

.blinking {
    animation: blinkingText 1.2s infinite;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding-bottom: 10px;
}

@keyframes blinkingText {
    0% {
        color: red;
    }
    49% {
        color: red;
    }
    60% {
        color: transparent;
    }
    99% {
        color: transparent;
    }
    100% {
        color: red;
    }
}

.about-ex {
    background-color: #a50034;
    padding: 10px;
    text-align: center;
}

.about-ex h2 {
    font-size: 70px;
    color: #ffffff;
    margin-bottom: 0;
}

.about-ex h5 {
    font-size: 30px;
    color: #ffffff;
    letter-spacing: 5px;
}

.about-ex p {
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 3px;
}

.about-sec {
    padding: 15px 0;
    text-align: left;
}

.about-sec span {
    color: rgba(117, 117, 117, 1);
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    padding-bottom: 6px;
}

.about-sec h3 {
    font-size: 26px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
}

.about-sec h2 {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
}

.cus-service {
    padding: 15px 0;
}

.cus-service p {
    font-size: 16px;
    color: rgba(0, 0, 0, .6);
}

section.about {
    padding: 30px 0;
}
section.thank-sec {
    padding-top: 100px;
    min-height: 613px;
    text-align: center;
}

.mobile-call-sec ul li:last-child a span {
    display: inline-block;
    width: 18px;
    margin-right: 5px;
    -webkit-animation: phone-ring 2s infinite;
    -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes phone-ring {
    0% {}
    10% {
        -webkit-transform: rotate(5deg);
        -moz-transform: rotate(5deg);
        -o-transform: rotate(5deg);
    }
    20% {
        -webkit-transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
    }
    30% {
        -webkit-transform: rotate(5deg);
        -moz-transform: rotate(5deg);
        -o-transform: rotate(5deg);
    }
    40% {
        -webkit-transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
    }
    50% {
        -webkit-transform: rotate(5deg);
        -moz-transform: rotate(5deg);
        -o-transform: rotate(5deg);
    }
    60% {
        -webkit-transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
    }
    70% {
        -webkit-transform: rotate(5deg);
        -moz-transform: rotate(5deg);
        -o-transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
    }
    90% {
        -webkit-transform: rotate(5deg);
        -moz-transform: rotate(5deg);
        -o-transform: rotate(5deg);
    }
    100% {
        -webkit-transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
    }
}