:root {
    --main-color: #293771;
    --secondary-color: #696969;
    --white: #fff;
    --bg-gray: #f5f5f5;
}

body {
    font-family: Saira;
}

header {
    background-color: #23262F;
    padding: 15px 0px;
}

section {
    padding: 100px 0px;
    text-align: center;
}

.menu a {
    text-decoration: none;
    color: var(--white);
    padding: 5px 25px;
}

.side-menu a {
    text-decoration: none;
    color: var(--white);
    padding: 5px 5px;
}

.main-heading {
    color: var(--main-color);
    font-size: 40px;
    font-weight: 600;
}

.sub-heading {
    color: var(--main-color);
    font-size: 30px;
    font-weight: 400;
}

.sub-heading-2 {
    color: var(--secondary-color);
    font-size: 25px;
    font-weight: 400;
}

.sub-heading-3 {
    color: var(--secondary-color);
    font-size: 30px;
    font-weight: 600;
}

.vlt {
    color: #1C1C1C;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
}

.vlt span {
    font-weight: 500;
}

.paragraph-heading {
    color: var(--main-color);
    font-size: 25px;
    font-weight: 700;
}

.paragraph {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 400;
}

.white-paragraph {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
}

.white-heading {
    color: var(--white);
    font-size: 30px;
    font-weight: 800;
}

.bg1 {
    background-image: url('../images/right-c.jpg');
    background-size: cover;
    border-radius:15px;
}

.bg2 {
   background-image: url('../images/left-c.jpg');
    background-size: cover;
    border-radius:15px;
}

.shadow {
    /*background: rgba(0, 0, 0, 0.6);*/
    padding: 20px 0px;
    min-height: 145px;
    border-radius: 15px;
}
img{
    width:100%;
    height:auto;
}
#about img{
    width:100%;
    height:auto;
}
.social img{
    width:auto;
    height:auto;
}
.side-menu img{
    width:auto;
    height:auto;
}
.sign{
    width:auto;
    height:auto;
}


iframe{
    height: 62vh;
}
.download-btn {
    background-color: var(--main-color);
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
}

.bg-gray {
    background-color: var(--bg-gray);
}

.testing .paragraph {
    font-size: 20px;
}

.vlt-btn {
    background-color: var(--main-color);
    color: var(--white) !important;
    font-size: 25px;
    font-weight: 400;
    text-decoration: none;
    padding: 5px 45px;
    border-radius: 10px;
}

footer {
    padding: 50px 0px;
    text-align: center;
    background-color: #303A42;
}

footer p {
    color: var(--white, #FFF);
    font-size: 14px;
    font-weight: 400;
}

hr {
    background-color: #fff;
}

.rounded-pill {
    border-radius: 40px !important;
}

.circle {
    width: 50px;
    height: 50px;
    display: inline-block;
    padding: 3px;
    background-color: #293771;
    color: var(--white);
    border-radius: 35px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}
.cardGroup .cards {
    border: 2px solid #DADADA;
    padding: 18px 24px;
     min-height: 215px;
}

.marquee-wrapper {
    text-align: center;
}

.marquee-wrapper .container {
    overflow: hidden;
}

.marquee-inner span {
    float: left;
    width: 50%;
}

.marquee-wrapper .marquee-block {
    --total-marquee-items: 5;
    min-height: 215px;
    width: calc(262px * (var(--total-marquee-items)));
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

.marquee-inner {
    display: block;
    width: 200%;
    position: absolute;
}

.marquee-inner p {
    font-size: 14px;
    margin-top: 15px;
}

.marquee-inner.to-left {
    animation: marqueeLeft 10s linear infinite;
}

.marquee-item {
    width: 230px;
    min-height: 215px;
    display: inline-block;
    margin: 0 16px;
    float: left;
    transition: all .5s ease-out;
   
}

@keyframes marqueeLeft {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

@keyframes marqueeRight {
    0% {
        left: -100%;
    }

    100% {
        left: 0;
    }
}

.videoCoverImage iframe {
    border: none;
    height: 62vh;
    width: 100%;
}

@media screen and (max-width:767px) {
    .menu {
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: center;
    }

    .menu a {
        padding: 5px 5px;
    }

    .side-menu {
        text-align: center;
    }

    section {
        padding: 50px 0px;
    }

    .main-heading {
        font-size: 32px;
    }

    .sub-heading {
        font-size: 22px;
    }

    .sub-heading-2 {
        font-size: 18px;
    }

    .paragraph {
        font-size: 16px;
    }
    .vlt-btn{
        font-size: 20px;
    }
}


@media screen and (min-width:768px) and (max-width:991px) {
    .menu {
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: center;
    }

    .menu a {
        padding: 5px 5px;
    }

    .side-menu {
        text-align: center;
    }

    section {
        padding: 50px 0px;
    }

    .main-heading {
        font-size: 32px;
    }

    .sub-heading {
        font-size: 22px;
    }

    .sub-heading-2 {
        font-size: 18px;
    }

    .paragraph {
        font-size: 16px;
    }
    .vlt-btn{
        font-size: 20px;
    }
}