@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

    font-size: 16px;

    --main-bg-green: #107333;
    --main-bg-yellow: #F2E530;
    --main-bg-red: #D92938;
    --main-bg-blue: #2D3073;
    --main-bg-grey: #F2F2F2;
}

.gw-ts{
    display: flex;
    justify-content: space-between;

    align-items: center;

    padding: 10px;
    background-color: #F5F5F5;
}
.gw-ts .gw-loc i{
    padding: 10px;
    font-size: 1.2rem;
    
}
.gw-ts .gw-soc a{
    color: black;
    text-decoration: none;
}
.gw-ts .gw-soc a i{
    padding: 10px;
    font-size: 1.2rem;
}
@media screen and (max-width: 600px) {
    .gw-ts{
        flex-direction: column;
    }

}

header{
    position: sticky;
    top: 0;
    z-index: 9999;
}
.top-navigation {
    padding: 20px;
    width: 100%;
    height: 80px;
    background-color: #F5F5F5;
    box-shadow: 0px 3px 5px 0px rgb(143, 143, 143);

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-sizing: border-box;

    position: relative;
    z-index: 999;
    overflow: hidden;
}

.top-navigation .top-logo {
    width: 100px;
    height: auto;
}

.top-navigation .top-logo a img {
    width: 150px;
    height: auto;

    padding: 10px;

    position: fixed;
    top: 46px;

    z-index: 998;
}

.top-navigation .tn-bar nav ul {
    display: flex;

    list-style-type: none;
}

.top-navigation .tn-bar nav ul li a {
    padding: 10px 20px;

    color: black;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;

    transition: all 0.4s ease;
}

.top-navigation .tn-bar nav ul li a:hover {
    background-color: var(--main-bg-red);
    color: var(--main-bg-grey);
}

.top-navigation .burger {
    display: none;
}


@media screen and (max-width: 900px) {
    .top-navigation .top-logo a img {
        width: 100px;
    }
    .top-navigation .top-logo a img {
        position: fixed;
        top: 88px;

    }

    .top-navigation .tn-bar nav {
        position: fixed;
        top: 160px;
        left: 0px;

        width: 100%;
    }

    .top-navigation .tn-bar nav ul {
        justify-content: center;
        flex-direction: column;
        align-items: center;

        background-color: #F5F5F5;
    }

    .top-navigation .tn-bar nav ul li {
        padding: 5px 0px;
    }

    .top-navigation .tn-bar nav ul li:hover {
        background-color: var(--main-bg-red);
        color: var(--main-bg-grey);
    }

    .top-navigation .burger {
        display: block;
    }

    .top-navigation .burger i {
        font-size: 2rem;
    }

    .top-navigation .tn-bar nav {
        display: none;
    }

    .top-navigation .tn-bar .nav-gw {
        display: block;
    }
}

/* nav bar css end  */

/* footer css start  */
#footer {
    width: 100%;
    height: auto;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
    align-items: baseline;

    /* background: rgb(70,70,70);
background: linear-gradient(0deg, rgba(70,70,70,1) 0%, rgba(98,98,98,1) 100%); */

    background-color: #353535 !important;
}

.footer-sub {
    width: 23%;
    padding: 5px;
    /* border: 1px solid black; */
    border-radius: 10px;

    transition: all 0.4s ease;
}

.content-footer i {
    margin: 10px;
    margin-left: 0px;
    font-size: 1rem
}

.footer-socials i {
    border: 1px solid white;
    border-radius: 5px;
    padding: 5px;
    font-size: 1.4rem;

    transition: all 0.4s ease;
}

.footer-socials i:hover {
    color: #00b4d8 !important;
    background-color: white;
}

.footer-heading h1 {
    padding: 10px 0px;

    font-family: "poppins", sans-serif;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
}

.content-footer {
    font-family: "poppins", sans-serif;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;

}

.footer-2-link i {
    font-size: 0.6rem;
}

.footer-2-link a {
    color: #ffffff;
    text-decoration: none;

    transition: all 0.4s ease-in-out;
}

.footer-2-link a:hover {
    color: #00b4d8 !important;
    letter-spacing: 2px;
}

.footer-section-2 {
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
}

@media (max-width: 900.33333px) {
    .footer-sub {
        width: 90%;
        margin: 0px auto;
    }

    #footer {
        flex-direction: column;
    }
}

#bottom-footer-section {
    background-color: #353535 !important;
    border-top: 0.5px solid white;
    padding: 10px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#bottom-footer-section p {
    color: white;
    display: inline-block;
    margin-left: 20px;

    font-size: 1rem;
}

#bottom-footer-section p a {
    color: white;
    /* text-decoration: none; */
}

#bottom-footer-section p a i {
    font-size: 1rem;
    padding: 0px 5px;
    color: #ffffff;
}

#bottom-footer-section p a i:hover {
    color: var(--blue-color);
}

#bottom-footer-section p a:hover {
    color: var(--blue-color);
}

/* footer css end  */


/* top banner css start  */
.top-bar-section{
    width: 100%;
    height: 400px;
    position: relative;
}
.top-bar-section img{
    width: 100%;
    height: 400px;
}
.top-bar-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent black color (RGB with alpha) */
    z-index: 1; /* Ensure the overlay is above the image */
}
.top-bar-section .top-bar-heading{

    font-size: 3rem;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #c21c20;
    color: #ffffff;
    z-index: 2;

    transform: translate(-50%,-50%);
}

/* top banner css end */

/* cta section css start  */
.Ctext-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 25px;
}

.Cresponsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
}

.Cresponsive-container-block.CbigContainer {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
    background-image: url("https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/bb29.png");
    background-position-x: initial;
    background-position-y: initial;
    background-size: cover;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
    background-repeat-x: no-repeat;
    background-repeat-y: no-repeat;
}

.Cresponsive-container-block.CContainer {
    max-width: 800px;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    margin-top: 150px;
    margin-right: auto;
    margin-bottom: 150px;
    margin-left: auto;
    background-color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.Ctext-blk.Cheading {
    font-size: 36px;
    line-height: 45px;
    font-weight: 800;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
}

.Ctext-blk.CsubHeading {
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 60px;
    margin-left: 0px;
}

.CsocialIcon {
    width: 33px;
    height: 33px;
}

.Csocial-icons-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.Csocial-icon {
    margin: 0 50px 0 50px;
}

.Csocial-icon:hover {
    cursor: pointer;
}

@media (max-width: 768px) {
    .Ctext-blk.Cheading {
        font-size: 55px;
        line-height: 65px;
    }

    .Ctext-blk.CsubHeading {
        font-size: 18px;
        line-height: 24px;
    }

    .CsocialIcon {
        width: 20px;
        height: 20px;
    }

    .Ctext-blk.CsubHeading {
        line-height: 27px;
    }

    .Ctext-blk.Cheading {
        font-size: 32px;
        line-height: 40px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 20px;
        margin-left: 0px;
    }

    .Csocial-icon {
        margin: 0 25px 0 25px;
    }
}

@media (max-width: 500px) {
    .Cresponsive-container-block.CbigContainer {
        padding-top: 10px;
        padding-right: 20px;
        padding-bottom: 10px;
        padding-left: 20px;
    }

    .Ctext-blk.Cheading {
        font-size: 45px;
        line-height: 55px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 20px;
        margin-left: 0px;
    }

    .Ctext-blk.CsubHeading {
        font-size: 14px;
        line-height: 22px;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 30px;
        margin-left: 0px;
    }

    .Csocial-icons-container {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .Ctext-blk.CsubHeading {
        font-size: 16px;
        line-height: 23px;
    }

    .Ctext-blk.Cheading {
        font-size: 26px;
        line-height: 30px;
    }

    .Csocial-icon {
        margin: 0 20px 0 20px;
    }
}
/* cta section css end */