@import "https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Urbanist", sans-serif;
}
.text-lowercase {
    text-transform: lowercase;
}
.gap-container {
    padding: 0 5%;
}
p {
    font-size: 16px;
}
h1 {
    font-size: 50px;
}
h2 {
    font-size: 40px;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 25px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 18px;
}
h1,
h2,
h3,
h4,
h5,
h6,
a {
    text-transform: capitalize;
}
@media screen and (max-width: 767px) {
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 35px;
    }
    h3 {
        font-size: 28px;
    }
    h4 {
        font-size: 23px;
    }
    h5 {
        font-size: 20px;
    }
    h6 {
        font-size: 18px;
    }
}
.remove-sidebar-link {
    display: none !important;
}
header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: #f5f5f5;
}
header .col {
    padding: 15px 0;
}
header .logo-col {
    width: 20%;
}
header .logo-col .main-logo {
    width: 100%;
    max-width: 150px;
    min-width: 100px;
}
header .menu-col {
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
header .menu-col .close-btn {
    display: none;
}
header .menu-col .main-nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
header .menu-col .main-nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    list-style-type: none;
    gap: 5px;
    font-size: 18px;
    font-weight: 500;
    flex-wrap: wrap;
}
header .menu-col .main-nav ul .animated-bar {
    position: relative;
}
header .menu-col .main-nav ul .animated-bar:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #067ee0;
    bottom: 0;
    transform: scale(0.3);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}
header .menu-col .main-nav ul .animated-bar:hover:before {
    transform: scale(1);
}
header .menu-col .main-nav ul li a {
    padding: 10px 5px;
    color: #000;
    display: block;
    text-decoration: none;
}
header .menu-col .main-nav ul li a i {
    margin-left: 5px;
    font-size: 15px;
    transition: 0.3s;
}
header .menu-col .main-nav ul li a:hover i {
    transform: rotate(-180deg);
}
header .menu-col .main-nav ul li:hover .dropdown-menu-1 {
    transform: translateY(0);
    opacity: 1;
    z-index: 4;
}
header .menu-col .main-nav ul li .dropdown-menu-1 {
    background-color: #000;
    width: 300%;
    transition: 0.5s;
    position: absolute;
    z-index: -1;
    transform: translateY(20%);
    opacity: 0;
}
header .menu-col .main-nav ul li .dropdown-menu-1 ul {
    background-color: #067ee0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}
header .menu-col .main-nav ul li .dropdown-menu-1 ul li {
    padding: 2px 15px;
    display: block;
    width: 100%;
    border-bottom: 2px solid #fff;
    transition: 0.3s;
    margin: 0;
}
header .menu-col .main-nav ul li .dropdown-menu-1 ul li:last-child {
    border: 0;
}
header .menu-col .main-nav ul li .dropdown-menu-1 ul li:hover {
    background-color: #000;
}
header .menu-col .main-nav ul li .dropdown-menu-1 ul li a {
    color: #fff;
    text-transform: capitalize;
}
header .hamburger-col i {
    padding: 10px;
    background-color: #067ee0;
    color: #fff;
    border-radius: 5px;
    display: none;
}
header .btn-col .btn-1 {
    border: none;
    outline: none;
    background-color: #067ee0;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
header .btn-col .btn-1:hover {
    background-color: #fff;
    border: 1px solid #067ee0;
    color: #067ee0;
}
header .btn-col .btn-1:focus {
    box-shadow: 0 0 20px rgba(40, 146, 233, 0.5098039216);
    scale: 1.02;
}
@media screen and (max-width: 1024px) {
    header .logo-col {
        width: 40%;
    }
    header .logo-col .main-logo {
        width: 100%;
        max-width: 150px;
        min-width: 100px;
    }
    header .menu-col {
        width: 40%;
        height: 100%;
        background-color: #fff;
        position: fixed;
        z-index: 99;
        top: 0;
        left: 0;
        transform: translate(-100%);
        transition: 0.3s;
    }
    header .menu-col .close-btn {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #067ee0;
        border-radius: 50%;
        height: 30px;
        width: 30px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    header .menu-col .close-btn i {
        font-size: 18px;
        color: #fff;
    }
    header .menu-col .main-nav {
        width: 100%;
    }
    header .menu-col .main-nav ul {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        font-size: 18px;
    }
    header .menu-col .main-nav ul li .dropdown-menu-1 ul li {
        font-size: 15px;
    }
    header .hamburger-col {
        width: 20%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    header .hamburger-col i {
        padding: 10px;
        background-color: #067ee0;
        color: #fff;
        border-radius: 5px;
        display: block;
    }
    header .btn-col {
        width: 40%;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
    header .btn-col .btn-1 {
        border: none;
        outline: none;
        background-color: #067ee0;
        padding: 10px 20px;
        border-radius: 10px;
        color: #fff;
        font-weight: 500;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s;
        border: 1px solid rgba(0, 0, 0, 0);
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }
    header .btn-col .btn-1:hover {
        background-color: #fff;
        border: 1px solid #067ee0;
        color: #067ee0;
    }
    header .btn-col .btn-1:focus {
        box-shadow: 0 0 20px rgba(40, 146, 233, 0.5098039216);
        scale: 1.02;
    }
}
@media screen and (max-width: 768px) {
    header .menu-col {
        width: 70%;
    }
}
@media screen and (max-width: 500px) {
    header .menu-col {
        width: 90%;
    }
}
footer {
    background-color: #fff;
    min-height: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
footer .row {
    width: 100%;
    padding-top: 70px;
    gap: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
footer .row .column {
    width: calc(25% - 20px);
    min-height: 100px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}
footer .row .column .footer-logo img {
    width: 200px;
}
footer .row .column .social-icons {
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
footer .row .column .social-icons a {
    font-size: 22px;
    background-color: #067ee0;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
}
footer .row .column .connect {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}
footer .row .column .connect a {
    color: #000;
    font-size: 15px;
    text-decoration: none;
}
footer .row .column .connect a i {
    font-size: 20px;
    margin-right: 10px;
    color: #067ee0;
}
footer .row .column .footer-links {
    margin-left: 10px;
}
footer .row .column .footer-links li {
    list-style-type: none;
    margin: 10px 0;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: margin-left 0.3s ease;
}
footer .row .column .footer-links li a {
    padding: 5px 0;
    display: block;
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
}
footer .row .column .footer-links li:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 0;
    background-color: #067ee0;
    transition:
        width 0.3s ease,
        height 0.3s ease,
        left 0.3s ease;
}
footer .row .column .footer-links li:hover {
    margin-left: 25px;
}
footer .row .column .footer-links li:hover:after {
    width: 22px;
    left: -25px;
    height: 3px;
}
footer .row .column .footer-links li:hover a {
    color: #067ee0;
}
footer .row-2 {
    padding: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #000;
}
footer .row-2 p {
    text-align: center;
}
.bread-crumb-container {
    width: 100%;
    background-color: #067ee0;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.bread-crumb-container i {
    font-size: 19px;
    color: #fff;
}
.bread-crumb-container a {
    font-size: 19px;
    color: #fff;
}
.about-container {
    min-height: 200px;
    background-color: #f5f5f5;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}
.about-container .col {
    min-height: 200px;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
}
.about-container .col:nth-child(1) {
    width: 20%;
    position: sticky;
    top: 20px;
}
.about-container .col:nth-child(1) h1 {
    color: #000;
    font-size: 25px;
}
.about-container .col:nth-child(1) .other-pages-links {
    min-height: 200px;
    width: 100%;
}
.about-container .col:nth-child(1) .other-pages-links a {
    color: #000;
    display: block;
    margin: 20px 10px;
    font-size: 18px;
    text-transform: capitalize;
}
.about-container .col:nth-child(2) {
    width: 80%;
    padding: 10px 30px;
}
.about-container .col:nth-child(2) h2 {
    margin-bottom: 20px;
    font-size: 25px;
}
.about-container .col:nth-child(2) h3 {
    font-size: 20px;
}
.about-container .col:nth-child(2) p,
.about-container .col:nth-child(2) ul {
    font-size: 16px;
    margin-bottom: 20px;
    color: #303030;
}
.about-container .col:nth-child(2) ul {
    margin-left: 10px;
    list-style-type: none;
}
.about-container .col:nth-child(2) ul li {
    margin: 8px 0 8px 20px;
    position: relative;
}
.about-container .col:nth-child(2) ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../images/icons/bullet-icon-1.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 20px;
    width: 20px;
    margin-left: -25px;
}
.about-container .col:nth-child(2) .process-image {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.about-container .col:nth-child(2) .process-image img {
    max-width: 600px;
    border-radius: 10px;
    margin: 10px 0;
    pointer-events: none;
    user-select: none;
}
@media screen and (max-width: 1024px) {
    .about-container {
        gap: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .about-container .col:nth-child(1) {
        width: 100%;
        position: static;
        top: 20px;
    }
    .about-container .col:nth-child(1) .other-pages-links {
        min-height: 0;
    }
    .about-container .col:nth-child(1) .other-pages-links a {
        display: inline-block;
        margin: 10px;
        color: #067ee0;
    }
    .about-container .col:nth-child(2) {
        width: 100%;
        padding: 20px;
    }
} /*# sourceMappingURL=about.min.css.map */
