/* hamburger box  */
.hamburger-box {
    display: none;
}

.hamburger-box span {
    width: 28px;
    height: 3px;
    background-color: #1f4380;
    margin: 3px 0;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.hamburger-box.white-burger span {
    background-color: #ffffff;
}

/* mobile nav  */
.mobile-nav-container {
    position: fixed;
    top: -200%;
    left: 0;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    background-color: #ffffff;
    z-index: 999999;
}

.mobile-nav-container .mobile-nav-box .title {
    padding: 20px 10px;
    background-color: #f9f9f9;
}

.mobile-nav-container .mobile-nav-box .title .logo img {
    height: 30px;
}

.mobile-nav-container .mobile-nav-box .title .icon i {
    font-size: 22px;
}

.mobile-nav-container .mobile-nav-box .link-box a {
    display: block;
    padding: 16px 10px;
    text-align: center;
    color: #000000;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.mobile-nav-container .mobile-nav-box .link-box a.active {
    color: #1f4380;
}

.mobile-nav-container .mobile-nav-box .link-box a:hover {
    background-color: #fafafa96;
}

.mobile-nav-container .mobile-nav-box .link.logout-link {
    color: #e53e2d;
}

/* nav container  */
.nav-container {
    background-color: #ffffff;
}

.nav-container.fbg-light {
    background-color: #eff4fa;
}

.nav-container .nav-box .link-box {
    column-gap: 20px;
}

.nav-container .nav-box .link-box .link {
    color: #61656a;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.nav-container .nav-box .link-box .link.logout-link {
    color: #e53e2d;
}

.nav-container .nav-box .link-box .link:hover {
    color: #1f4380;
}

.nav-container .nav-box .link-box .link.logout-link:hover {
    color: #e22d19;
}

.nav-container .nav-box .link-box .link.active {
    color: #1f4380;
    font-weight: 700;
}

.nav-container .nav-box .profile-box p {
    font-weight: 500;
}

.nav-container .nav-box .profile-box p a {
    text-decoration: none;
    color: #1f4380;
    font-weight: 600;
}

.nav-container .nav-box .btn-box {
    column-gap: 10px;
}

.nav-container .nav-box .btn-box a {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: 1px solid;
    padding: 12px 0;
    width: 100px;
    text-decoration: none;
    border-color: #000000;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.nav-container .nav-box .btn-box a.signin-btn {
    color: #040a15;
}

.nav-container .nav-box .btn-box a.signup-btn {
    color: #ffffff;
    background-color: #1f4380;
}

/* head banner  */
.head-banner-container {
    background-color: #ffffff;
}

.head-banner-container.fbg-light {
    background-color: #eff4fa;
}

.head-banner-container .head-banner-box {
    position: relative;
    height: 370px;
}

.head-banner-container .head-banner-box .bg-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.head-banner-container .head-banner-box .bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
}

.head-banner-container .head-banner-box .breadcrum {
    z-index: 1;
    padding-left: 100px;
    padding-right: 100px;
}

.head-banner-container .head-banner-box .breadcrum h2 {
    position: relative;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    margin-left: 70px;
    letter-spacing: 1px;
}

.head-banner-container .head-banner-box .breadcrum h2:before {
    content: "";
    position: absolute;
    top: calc(50% - 1.5px);
    left: -60px;
    width: 50px;
    height: 1px;
    background-color: #f28135;
}

.head-banner-container .head-banner-box .breadcrum h1 {
    color: #ffffff;
    font-size: 46px;
}

.head-banner-container .head-banner-box .breadcrum a {
    color: #ffffff;
    text-decoration: none;
}

.head-banner-container .head-banner-box .breadcrum p {
    color: #ffffff;
}

/* blog container  */
.blog-container {
    background-color: #f3f5f7;
}

.blog-container.fbg-white {
    background-color: #ffffff;
}

.blog-container .blog-box .heading h1 {
    font-size: 30px;
    text-align: center;
}

.blog-container .blog-box .heading p {
    color: #61656a;
    text-align: center;
}

.blog-container .blog-box .box-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 100px;
    row-gap: 30px;
}

.blog-container .blog-box .box-wrapper .box {
    background-color: #ffffff;
    box-shadow: 0px 2px 4px rgba(220, 219, 222, 0.31);
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.blog-container .blog-box .box-wrapper .box .img-box {
    width: 100%;
    height: 200px;
    border-radius: 12px 12px 0 0;
    -webkit-border-radius: 12px 12px 0 0;
    -moz-border-radius: 12px 12px 0 0;
    -ms-border-radius: 12px 12px 0 0;
    -o-border-radius: 12px 12px 0 0;
}

.blog-container .blog-box .box-wrapper .box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
}

.blog-container .blog-box .box-wrapper .box .info-box {
    padding: 22px;
}

.blog-container .blog-box .box-wrapper .box .info-box .date p {
    color: #999ca9;
    font-size: 14px;
}

.blog-container .blog-box .box-wrapper .box .info-box .title h1 {
    font-size: 20px;
    font-weight: 700;
}

.blog-container .blog-box .box-wrapper .box .info-box .description p {
    color: #61656a;
    font-size: 14px;
    line-height: 22px;
}

.blog-container .blog-box .box-wrapper .box .info-box .link a {
    color: #1f4380;
    font-weight: 700;
    text-decoration: none;
}

/* meetingcontainer */
.meeting-container {
    position: relative;
}

.meeting-container .bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.meeting-container .bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meeting-container .meeting-box {
    height: 400px;
}

.meeting-container .meeting-box .info-box {
    position: relative;
    row-gap: 10px;
}

.meeting-container .meeting-box .info-box h1 {
    text-align: center;
    color: #ffffff;
}

.meeting-container .meeting-box .info-box p {
    text-align: center;
    color: #ebebeb;
    font-weight: 400;
    margin-bottom: 8px;
}

.meeting-container .meeting-box .info-box a {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: 1px solid;
    padding: 12px 20px;
    background-color: #f68620;
    color: #000000;
    border-color: #f68620;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

/* footer container  */
.footer-container {
    background-color: #080910;
}

.footer-container .footer-box .contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 10px;
}

.footer-container .footer-box .contact-box .box {
    border-left: 4px solid #f68620;
}

.footer-container .footer-box .contact-box .box h1 {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 10px;
}

.footer-container .footer-box .contact-box .box p {
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.footer-container .footer-box .primary-box {
    border-top: 1px solid #28292f;
    border-bottom: 1px solid #28292f;
}

.footer-container .footer-box .primary-box .logo-box p {
    color: #ffffff;
    line-height: 20px;
}

.footer-container .footer-box .primary-box .logo-box img {
    mix-blend-mode: plus-lighter;
    filter: brightness(120%);
    -webkit-filter: brightness(120%);
}

.footer-container .footer-box .primary-box .social-icons {
    gap: 14px;
}

.footer-container .footer-box .primary-box .social-icons a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.footer-container .footer-box .primary-box .social-icons a:hover {
    color: #f68620;
}

.footer-container .footer-box .primary-box .link-box {
    column-gap: 100px;
}

.footer-container .footer-box .primary-box .link-box .list .title h1 {
    color: #ffffff;
    font-size: 16px;
}

.footer-container .footer-box .primary-box .link-box .list .info {
    row-gap: 12px;
}

.footer-container .footer-box .primary-box .link-box .list .info p {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    opacity: 0.6;
}

.footer-container .footer-box .primary-box .link-box .list .info a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
}

.footer-container
    .footer-box
    .primary-box
    .link-box
    .list
    .info
    a.text-underlined {
    text-decoration: underline;
}

.footer-container .footer-box .copyright-box .link-box {
    column-gap: 14px;
}

.footer-container .footer-box .copyright-box .link-box img {
    height: 20px;
}

.footer-container .footer-box .copyright-box .link-box .sanjaya-box a {
    color: #6763fd;
    font-family: "Grenze Gotisch", cursive;
    text-decoration: none;
    font-size: 20px;
}

.footer-container .footer-box .copyright-box .link-box .sanjaya-box i {
    font-size: 14px;
    color: #6763fd;
    margin-left: 6px;
    margin-bottom: -4px;
}

.footer-container .footer-box .copy-text p {
    color: #ffffff;
    font-size: 14px;
}

/* responsive */
@media (max-width: 1400px) {
    .blog-container .blog-box .box-wrapper {
        column-gap: 50px;
    }
}

@media (max-width: 1280px) {
    .head-banner-container .head-banner-box .breadcrum {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1200px) {
    .blog-container .blog-box .box-wrapper {
        column-gap: 30px;
    }
}

@media (max-width: 1023px) {
    .hamburger-box {
        display: flex;
    }
    .nav-container .nav-box .link-box {
        display: none;
    }
    .nav-container .nav-box .profile-box {
        display: none;
    }
    .nav-container .nav-box .btn-box {
        display: none;
    }
    .footer-container .footer-box .primary-box {
        flex-direction: column;
        align-items: center;
    }
    .footer-container .footer-box .primary-box .logo-box {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-bottom: 40px;
    }
    .footer-container .footer-box .primary-box .logo-box p {
        text-align: center;
    }
}

@media (max-width: 1100px) {
    .blog-container .blog-box .box-wrapper {
        column-gap: 20px;
    }
}

@media (max-width: 1000px) {
    .footer-container .footer-box .contact-box .box p br {
        display: none;
    }
}

@media (max-width: 900px) {
    .blog-container .blog-box .box-wrapper {
        column-gap: 50px;
        row-gap: 30px;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .blog-container .blog-box .box-wrapper {
        grid-template-columns: 1fr;
    }
    .meeting-container .meeting-box .info-box p br {
        display: none;
    }
    .footer-container .footer-box .contact-box {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
    .footer-container .footer-box .primary-box .link-box {
        column-gap: 70px;
    }
    .footer-container .footer-box .copyright-box {
        flex-direction: column;
        row-gap: 16px;
    }
    .footer-container .footer-box .copyright-box .link-box {
        column-gap: 8px;
    }
}

@media (max-width: 600px) {
    .footer-container .footer-box .primary-box .link-box {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        column-gap: 0;
        row-gap: 30px;
    }
    .footer-container .footer-box .primary-box .link-box .list .title h1 {
        text-align: center;
    }
    .footer-container .footer-box .primary-box .link-box .list .info {
        align-items: center;
    }
}
