
/* Footer Section CSS Starts */
footer {
    background-color: var(--cw-blue-dark);
    color: #ffffff9c;
}

footer .container {
    padding-bottom: 0;
    padding-top: 60px;
}

.f-top {
    display: flex;
    margin-bottom: 46px;
}

footer .company-info {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    height: max-content;
    margin-right: 10%;
}

footer .logo {
    width: 130px;
    height: 130px;
    opacity: 0.6;
    grid-row: 1;
    grid-column: 1;
    margin-right: 28px;
}

footer .tagline {
    font-weight: 500;
    font-size: 20px;
    max-width: 240px;
    line-height: 1.6;
    grid-row: 1;
    grid-column: 2;
    color: #ffffff9c;
}

footer .sm {
    display: flex;
    gap: 10px;
    grid-row: 2;
    grid-column: 2;
}

footer .sm svg {
    width: 32px;
}

footer .sm svg path,
.sm svg circle {
    fill: #ffffff82;
}

footer .sm a:hover svg path,
footer .sm a:hover svg circle {
    fill: #ffffffd6;
}

.f-menu-grp {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}

.f-menu-h {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

footer a {
    text-decoration: none;
    color: inherit;
}

.f-menu a {
    margin: 8px 0;
    display: block;
}

.f-menu a:hover,
.f-bottom a:hover {
	text-decoration: underline;
}

.f-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1.4px solid #ffffff2b;
    line-height: 2;
    column-gap: 40px;
    text-align: center;
    column-gap: 20px;
}

.tc-pp :not(:last-child) {
    padding-right: 16px;
    border-right: 1px solid #ffffff9c;
    margin-right: 12px;
}
/* Footer Section CSS Ends */

/* (Responsive) Footer Section CSS Starts */
@media only screen and (max-width:1080px) {
    footer .company-info {
        margin-right: 6%;
    }
}
@media only screen and (max-width:980px) {
    footer .container {
        padding-top: 48px;
    }
    .f-top {
        flex-direction: column;
        margin-bottom: 38px;
    }
    footer .company-info {
        margin: 0 auto;
    }
    footer .logo-holder {
        grid-row: 1 / 2 span;
    }
    .f-menu-grp {
        margin-top: 40px;
        justify-content: center;
        column-gap: 10%;
    }
}
@media only screen and (max-width:620px) {
    .f-bottom {
        flex-direction: column;
    }
}
@media only screen and (max-width:580px) {
    footer .container {
    	padding-left: 20px;
        padding-right: 20px;
    }
    .f-menu-grp {
        flex-wrap: wrap;
        justify-content: left;
        row-gap: 20px;
    }
}
@media only screen and (max-width:440px) {
    footer .container {
        padding-top: 46px;
    }
    footer .company-info {
        grid-template-columns: max-content;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }
    footer .logo-holder {
        grid-row: 1;
        grid-column: 1;
    }
    footer .tagline {
        grid-row: 2;
        grid-column: 1;
    }
    footer .sm {
        grid-row: 3;
        grid-column: 1;
        justify-content: center;
    }
}
@media only screen and (max-width:360px) {
    footer .tc-pp {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .tc-pp :not(:last-child) {
        padding-right: 0;
        border-right: unset;
        margin-right: 0;
    }
}
/* (Responsive) Footer Section CSS End */