@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: "Montserrat", sans-serif;
}

:root,
[data-bs-theme=light] {
    --bs-primary: #275192;
    --bs-secondary: #94BC3A;
}

html {
    scroll-behavior: smooth !important;
    scroll-padding-top: 40px;
    overflow-x: hidden;
}

body {
    background: white;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    margin-right: 4px;
    width: 6px;
    height: 6px;
}

body::-webkit-scrollbar-track {
    background: #27519211;
}

body::-webkit-scrollbar-thumb {
    padding: 4px;
    width: 4px;
    height: 4px;
    background: var(--bs-primary);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #275192bf;
}

.reveal,
.reveal-top,
.reveal-bottom,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all .6s ease;
}

.reveal         { transform: translateY(30px); }
.reveal-top     { transform: translateY(-30px); }
.reveal-bottom  { transform: translateY(30px); }
.reveal-left    { transform: translateX(-30px); }
.reveal-right   { transform: translateX(30px); }

.reveal-top.animate,
.reveal-bottom.animate,
.reveal-left.animate,
.reveal-right.animate,
.reveal.animate {
    opacity: 1; transform: translateY(0);
}

.ls-0 {
    letter-spacing: 0px !important;
}

.ls-1 {
    letter-spacing: 10px !important;
}

.ls-2 {
    letter-spacing: 20px !important;
}

.ls-3 {
    letter-spacing: 30px !important;
}

.ls-4 {
    letter-spacing: 40px !important;
}

.ls-5 {
    letter-spacing: 50px !important;
}

.text-white {
    color: white !important
}

.text-black {
    color: black !important
}

.contact-me {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: white;
    bottom: 3rem;
    right: 3rem;
    z-index: 100;
    box-shadow: 0 0 10px #00000080;
    transition: .3s ease;
    animation: wa-geter 2s ease infinite;
    overflow: hidden;
}

.contact-me .overlay {
    width: 100%;
    height: 0%;
    position: absolute;
    border-radius: 50%;
    bottom: 0;
    background: var(--bs-secondary);
    transition: .3s ease;
    z-index: 10;
    transform-origin: center;
    animation: rotate 5s linear infinite;
    opacity: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.contact-me i.lab {
    position: relative;
    z-index: 11;
}

.contact-me:hover {
    box-shadow: 0 0 10px #94BC3A;
}

.contact-me:hover .overlay {
    width: 100%;
    height: 100%;
    opacity: 1;
}

@keyframes wa-geter {
    0%, 51%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 10px #00000080;
    }
    60%, 70%, 80% {
        transform: scale(1.1) rotate(-10deg);
        box-shadow: 0 0 13px #00000080;
    }
    65%, 75%, 85% {
        transform: scale(1.1) rotate(10deg);
        box-shadow: 0 0 13px #00000080;
    }
}

.btn {
    font-size: 16px !important;
    padding: 11px 20px !important;

    border-radius: 7px !important;
}

.btn-ic-primary {
    background-color: #275192 !important;
    color: var(--bs-white) !important;
}

.btn-ic-primary:hover {
    background-color: #275192bf !important;
    color: var(--bs-white) !important;
}

nav.navbar {
    position: relative;
    height: 70px;
    background: white !important;
    z-index: 99;
}

nav.navbar > .container-fluid {
    background: white;
}

nav.navbar .nav-menu {
    font-size: 16px;
    color: #24231D;
    font-weight: 500;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

nav.navbar .nav-item a {
    color: #24231D;
    font-weight: 500;
    font-size: 16px;
    transition: .3s ease;
}

nav.navbar .nav-item a span {
    border-bottom: 4px solid #27519200;
    transition: .3s ease;
}

nav.navbar .nav-item::after {
    content: '';
    display: block;
    position: relative;
    width: 80%;
    height: 3px;
    background: transparent;
    margin: auto;
    margin-top: -10px;
    border-radius: 3px;
    transition: .3s ease;
}

nav.navbar .nav-link:not(.dropdown-item).active,
nav.navbar .nav-link:not(.dropdown-item):hover {
    color: var(--bs-primary);
}

nav.navbar .nav-item:not(.dropdown-item).active::after,
nav.navbar .nav-item:not(.dropdown-item):hover::after {
    background: var(--bs-primary);
}

.dropdown-menu::before {
    content: '\25B2';
    font-size: 19px;
    position: absolute;
    width: 20px;
    height: 20px;
    text-shadow: 0px -2px 4px #00000080;
    z-index: 99;
    color: white;
    top: 31px;
}

/* .dropdown-menu::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 10px solid white;
    border-bottom: 10px solid white;
    border-right: 10px solid white;
    background: none;
    position: absolute;
    top: 41px;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px #000000bf;
    z-index: 99;
} */

@media (min-width: 992px) {
    .dropdown-menu::before {
        top: -20px;
    }
}

.dropdown-menu {
    margin-top: 15px !important;
    padding: 1rem 2rem;
    box-shadow: 0 4px 10px #000000bf;
    position: relative;
    z-index: 100;
}

.dropdown-item {
    color: #24231D;
}

.dropdown-item.active,
.dropdown-item:hover {
    padding-left: 2rem;
}

.dropdown-item:hover {
    color: var(--bs-primary) !important;
}

.carousel-container {
    position: relative;
}

.carousel-indicators {
    position: relative;
    z-index: 1;
    background: #ffffff40;
    width: fit-content;
    margin: auto;
    padding: 1rem;
    border-radius: 1rem;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: var(--bs-secondary);
    transition: .3s ease;
    cursor: pointer;
}

.carousel-indicator.active {
    background: var(--bs-primary)
}

.scroll-down {
    position: relative;
    margin: auto;
    height: 50px;
    width: 50px;
    margin-top: -10rem;
    margin-bottom: 50px;
    border-radius: 50px;
    color: white;
    background: var(--bs-primary);
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    transition: .3s ease;
    z-index: 1;

    animation: scrolldown 1s cubic-bezier(.84, .02, .57, .99) infinite;
}

.scroll-down i.la {
    position: relative;
    z-index: 12;
}

.scroll-down .overlay {
    width: 100%;
    height: 0%;
    position: absolute;
    border-radius: 50%;
    bottom: 0;
    background: var(--bs-secondary);
    transition: .3s ease;
    z-index: 10;
    transform-origin: center;
    animation: rotate 5s linear infinite;
    opacity: 0;
}

.scroll-down:hover .overlay {
    width: 100%;
    height: 100%;
    opacity: 1;
}

@keyframes scrolldown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.scroll-down:hover {
    transform: scale(1.05);
}

section .section-title {
    font-weight: 600;
    color: var(--bs-secondary);
    font-size: 18px;

    letter-spacing: 10px;
}

section .section-subtitle {
    font-weight: 600;
    color: var(--bs-primary);
    font-size: 44px;

    letter-spacing: 3px;
}

.indo-consultant-list li::marker {
    color: var(--bs-primary);
    font-size: 16px;
}

.card-custom {
    background: white;
    padding: 2rem;
    box-shadow: 0px 4px 10px #27519233;
    border-radius: 10px;
}

.ornament {
    width: 100%;
    height: 0;
}

.logo-pallete {
    display: block;
    position: relative;
    width: 93px;
    height: 283px;
    background: url('/assets/images/logo_pallete.png') center no-repeat;
    opacity: 1;
    z-index: -1;
}
.dots-donut {
    display: block;
    position: relative;
    width: 650px;
    height: 650px;
    min-height: 650px;
    background: url('/assets/images/dots-donut.png') center no-repeat;
    opacity: .3;
    z-index: -1;
}

.dots-halfdonut {
    display: block;
    position: relative;
    width: 300px;
    height: 650px;
    min-height: 650px;
    background: url('/assets/images/dots-halfdonut.png') center no-repeat;
    opacity: .3;
    z-index: -1;
}

.dots-halfdonut2 {
    display: block;
    position: relative;
    width: 300px;
    height: 650px;
    min-height: 650px;
    background: url('/assets/images/dots-halfdonut.png') center no-repeat;
    transform: rotate(180deg);
    opacity: .3;
    z-index: -1;
}

.dots-square {
    display: block;
    position: relative;
    width: 200px;
    height: 200px;
    min-height: 200px;
    background: url('/assets/images/dots-square.png') center no-repeat;
    opacity: .3;
    z-index: -1;
}

.logo {
    position: absolute;
    width: 230px;
    height: 230px;
    background: url('/assets/images/logo-ornament_1.png') center no-repeat;
    opacity: .1;
}

.logo2 {
    position: absolute;
    width: 360px;
    height: 550px;
    background: url('/assets/images/logo-ornament_2.png') center no-repeat;
    opacity: .1;
}

img.visi-misi-img {
    object-view-box: inset(0% 0% 0% 0%);
    filter: saturate(0.5);
    transition: .3s ease;
}

img.visi-misi-img:hover {
    filter: saturate(1.2);
    object-view-box: inset(10% 10% 10% 10%);
}

.service-card {
    position: relative;

    width: 400px;
    max-width: 400px;
    height: 300px;
    border-radius: 10px;
    cursor: pointer;
    max-height: 300px;
    background: url('/assets/images/service.png') center no-repeat;
    background-size: cover;
    transform: scale(1.0);
    transition: .3s ease;
    overflow: hidden;
    box-shadow: 0 0 20px #24231D88;
}

.service-card:hover {
    transform: scale(1.1);
}

.service-card .overlay {
    background: #275192bf;
    width: 100%;
    height: 100%;
    padding: 3rem;
    padding-right: calc(3rem + 80px);
    position: relative;
    cursor: pointer;
}

.service-card .overlay * {
    color: white;
}

.service-card .circle-quarter-top {
    position: absolute;
    right: 0;
    top: calc(50% - 80px);
    width: 80px;
    height: 80px;
    border-top-left-radius: 80px;
    background: var(--bs-primary);
    transition: .3s ease;
}

.service-card .circle-quarter-bottom {
    position: absolute;
    right: 0;
    top: 50%;
    width: 80px;
    height: 80px;
    border-bottom-left-radius: 80px;
    background: var(--bs-secondary);
    transition: .3s ease;
}

.service-card:hover .circle-quarter-top {
    background: var(--bs-white);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 70px;
    background: white;

    display: flex;
    justify-content: center;
    align-items: center;
}

.service-details li::marker {
    color: var(--bs-white);
    font-size: 16px;
}

.custom-section-background {
    background: url('/assets/images/integrated.png') center no-repeat;
    background-size: cover;
}

.custom-section-background .overlay {
    background: #275192bf;
    position: relative;
}

.custom-section-background .integrated-item:nth-child(odd) {
    display: flex;
    flex-direction: column;
}

.custom-section-background .integrated-item:nth-child(even) {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 120px;
}

.custom-section-background .integrated-item .integrated-name {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 28px;
    color: var(--bs-primary);
    text-align: center;
}

.custom-section-background .integrated-item:nth-child(odd) .integrated-name {
    margin-bottom: 4rem;
}

.custom-section-background .integrated-item:nth-child(even) .integrated-name {
    margin-top: 4rem;
}

.custom-section-background .integrated-item .outline-number {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 208px;
    height: 208px;
    border-radius: 208px;
}

.custom-section-background .integrated-item:nth-child(odd) .outline-number {
    border: 53px solid white;
    border-bottom: 53px solid transparent;
    border-right: 53px solid transparent;
    transform: rotate(45deg);
    transition: .3s ease;
}

.custom-section-background .integrated-item:nth-child(odd):hover .outline-number {
    transform: rotate(405deg);
}

.custom-section-background .integrated-item:nth-child(even) .outline-number {
    border: 53px solid var(--bs-secondary);
    border-top: 53px solid transparent;
    border-left: 53px solid transparent;
    transform: rotate(45deg);
    transition: .3s ease;
}

.custom-section-background .integrated-item:nth-child(even):hover .outline-number {
    transform: rotate(405deg);
}

.custom-section-background .integrated-item .number {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;

    width: 70px;
    height: 70px;
    border-radius: 70px;
    font-weight: 600;
    transform: rotate(-45deg);
}

.custom-section-background .integrated-item:nth-child(odd) .number {
    color: var(--bs-white);
    background: var(--bs-secondary);
}

.custom-section-background .integrated-item:nth-child(even) .number {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.integrated-item-responsive {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
}

.integrated-item-responsive:nth-child(odd) {
    align-self: flex-start;
    flex-direction: row-reverse;
}

.integrated-item-responsive:nth-child(even) {
    align-self: flex-end;
    flex-direction: row;
}

.integrated-item-responsive .outline-number {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 128px;
    height: 128px;
    border-radius: 128px;
    transform: rotate(-45deg);
    transition: .3s ease;
}

.integrated-item-responsive:hover .outline-number {
    transform: rotate(-405deg);
}

.integrated-item-responsive:nth-child(odd) .outline-number {
    border: 23px solid var(--bs-white);
    border-top: 23px solid transparent;
    border-left: 23px solid transparent;
}

.integrated-item-responsive:nth-child(even) .outline-number {
    border: 23px solid var(--bs-secondary);
    border-bottom: 23px solid transparent;
    border-right: 23px solid transparent;
}

.integrated-item-responsive .outline-number .number {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;

    width: 70px;
    height: 70px;
    border-radius: 70px;
    font-weight: 600;
    transform: rotate(45deg);
}

.integrated-item-responsive:nth-child(odd) .outline-number .number {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.integrated-item-responsive:nth-child(even) .outline-number .number {
    background: var(--bs-white);
    color: var(--bs-primary);

}

.integrated-item-responsive .integrated-name {
    padding: 1rem 3rem;
    background: white;
    color: var(--bs-primary);
    font-weight: 700;
    border-radius: 10px;
    font-size: 28px;
}

.integrated-item-responsive:nth-child(odd) .integrated-name {
    margin-left: 8rem;
    margin-right: 4rem;
    transition: .3s ease;
}

.integrated-item-responsive:nth-child(even) .integrated-name {
    margin-left: 4rem;
    margin-right: 8rem;
    transition: .3s ease;
}

.integrated-item-responsive:nth-child(odd):hover .integrated-name {
    margin-left: 10rem;
    margin-right: 6rem;
}

.integrated-item-responsive:nth-child(even):hover .integrated-name {
    margin-left: 6rem;
    margin-right: 10rem;
}

.card-team {
    position: relative;
    width: 400px;
    height: 280px;
    background: #F4F6F9;
    border-radius: 10px;
    padding: 2rem 3rem;
    position: relative;
    transform: scale(1);
    transition: .3s ease-in-out;
    overflow: hidden;
}

.card-team .team-name {
    font-size: 28px;
    font-weight: 700;
    line-height: 2.5rem;
    width: max-content;
    color: var(--bs-primary);
    transition: .3s ease-in-out;
}

.card-team .team-grade {
    font-size: 16px;
    font-weight: 500;
    color: var(--bs-primary);
    transition: .3s ease-in-out;
}

.card-team .team-photo {
    position: absolute;
    bottom: 0;
    right: -4rem;
    transform: scale(1);
    transform-origin: center right;
    transition: .3s ease-in-out;
}

.card-team:hover {
    transform: scale(1.1);
}

.card-team:hover .team-name {
    line-height: 2.5rem;
    font-size: 38px;
    opacity: 0;
}

.card-team:hover .team-photo {
    right: 5%;
    transform: scale(1.4);
}

.card-team:hover .team-grade {
    font-size: 20px;
    opacity: 0;
}

.card-team .card-team-ornament {
    gap: 0px;
    bottom: 0;
    right: 1rem;
    transition: .3s ease;
}

.card-team:hover .card-team-ornament {
    gap: 25px;
    bottom: calc(100% - calc(0.7 * 130px));
    right: 60%;
    transform: rotate(calc(360deg + 180deg)) scale(.7);
}

.card-team .overlay {
    position: absolute;
    width: 100%;
    height: 40%;
    bottom: -40%;
    left: 0;
    padding: 2rem;
    z-index: 1;
    transition: .3s ease;
    color: white;
    background: #275192;
    background: linear-gradient(0deg, rgba(39, 81, 146, 1) 0%, rgba(39, 81, 146, 0) 100%);
}

.card-team:hover .overlay {
    bottom: 0%;
}

.card-team .overlay .overlay-team-name {
    font-size: 28px;
    font-weight: 700;
}

.card-team .overlay .overlay-team-grade {
    font-size: 16px;
    font-weight: 600;
}

.instagrams-wrapper {
    overflow-x: auto;
}

.instagrams-wrapper::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.instagrams-wrapper::-webkit-scrollbar-track {
    background: #27519233;
}

.instagrams-wrapper::-webkit-scrollbar-thumb {
    background: var(--bs-secondary);
    border-radius: 4px;
}

.instagrams-wrapper::-webkit-scrollbar-thumb:hover {
    background: #94BC3Abf;
}

.instagram-media-rendered {
    min-width: 10px !important;
    border-radius: 10px !important;
    outline: none !important;
    border: none !important;
    /* min-height: 300px !important; */
    /* max-height: 300px !important; */
}

.ViewProfileButton {
    display: none !important;
}

.brand-icon {
    cursor: pointer;
    transition: .3s ease;
}

.brand-icon:hover {
    transform: scale(1.05) rotate(2deg);
}

.integration-wrapper {
    overflow-x: auto;;
}

.integration-wrapper::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.integration-wrapper::-webkit-scrollbar-track {
    background: #27519233;
}

.integration-wrapper::-webkit-scrollbar-thumb {
    background: var(--bs-secondary);
    border-radius: 4px;
}

.integration-wrapper::-webkit-scrollbar-thumb:hover {
    background: #94BC3Abf;
}

.classify-card {
    position: relative;

    width: 400px;
    max-width: 400px;
    height: 300px;
    border-radius: 10px;
    cursor: pointer;
    max-height: 300px;
    transform: scale(1.0);
    transition: .3s ease;
    overflow: hidden;
    box-shadow: 0 0 20px #24231D88;
}

.classify-card:hover {
    transform: scale(1.1);
}

.classofy-card .classify-icon {
    width: 70px;
    height: 70px;
    border-radius: 70px;
    background: white;

    display: flex;
    justify-content: center;
    align-items: center;
}

.classify-card * {
    color: var(--bs-primary);
}

.classify-card:hover * {
    color: var(--bs-white);
}

.classify-card .overlay {
    background: #f4f6f9;
    width: 100%;
    height: 100%;
    padding: 3rem;
    padding-right: calc(3rem + 80px);
    position: relative;
    cursor: pointer;
    transition: .3s ease;
}

.classify-card:hover .overlay {
    background: #275192ff;
}

.classify-card .circle-quarter-top {
    position: absolute;
    right: 0;
    top: calc(50% - 80px);
    width: 80px;
    height: 80px;
    border-top-left-radius: 80px;
    background: var(--bs-primary);
    transition: .3s ease;
}

.classify-card .circle-quarter-bottom {
    position: absolute;
    right: 0;
    top: 50%;
    width: 80px;
    height: 80px;
    border-bottom-left-radius: 80px;
    background: var(--bs-secondary);
    transition: .3s ease;
}

.classify-card:hover .circle-quarter-top {
    background: var(--bs-white);
}

#director .bg-director {
    background: url('/assets/images/integrated.png') center no-repeat;
    background-size: cover;
}

#director .bg-director .overlay {
    width: 100%;
    height: 100%;
    background: #275292e5;
    color: white;
    padding: 4rem;
}

.director-photo {
    width: 150px;
    height: 150px;
    border-radius: 150px;
    border: 6px solid var(--bs-white);
}

.spirit-card {
    background: url('/assets/images/service.png') center no-repeat;
    background-size: cover;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
}

.spirit-card .overlay {
    background: #f4f6f9;
    padding: 1.5rem;
    width: 100%;
    height: 100%;
    border-radius: 9px;
    transition: .3s ease;
}

.spirit-card:hover .overlay {
    background: #275192bf;
}

.spirit-card .our-value-short {
    color: var(--bs-secondary);
    transition: .3s ease;
}

.spirit-card .our-value-long {
    color: var(--bs-primary);
    transition: .3s ease;
}

.spirit-card:hover .our-value-long {
    color: var(--bs-white);
}

.service-card-extended {
    position: relative;

    width: 400px;
    max-width: 400px;
    height: 300px;
    border-radius: 10px;
    cursor: pointer;
    max-height: 300px;
    background: url('/assets/images/service.png') center no-repeat;
    background-size: cover;
    transform: scale(1.0);
    transition: .3s ease;
    overflow: hidden;
    box-shadow: 0 0 20px #24231D88;
}

.service-card-extended:hover {
    transform: scale(1.1);
}

.service-card-extended .overlay {
    background: #f4f6f9;
    width: 100%;
    height: 100%;
    padding: 2rem;
    padding-right: calc(2rem + 80px);
    position: relative;
    cursor: pointer;
    transition: .3s ease;
}

.service-card-extended:hover .overlay {
    background: #275192bf;
    color: white;
}

.service-card-extended .circle-quarter-top {
    position: absolute;
    right: 0;
    top: calc(50% - 80px);
    width: 80px;
    height: 80px;
    border-top-left-radius: 80px;
    background: var(--bs-primary);
    transition: .3s ease;
}

.service-card-extended .circle-quarter-bottom {
    position: absolute;
    right: 0;
    top: 50%;
    width: 80px;
    height: 80px;
    border-bottom-left-radius: 80px;
    background: var(--bs-secondary);
    transition: .3s ease;
}

.service-card-extended:hover .circle-quarter-top {
    background: var(--bs-white);
}

.service-card-extended .service-readmore {
    font-weight: bolder;
    text-decoration: underline;
    color: var(--bs-primary);
    padding-left: 1rem;
    transition: .3s ease;
}

.service-card-extended:hover .service-readmore {
    color: var(--bs-white)
}

.service-readmore:hover {
    color: var(--bs-white);
    padding-left: 1.5rem;
}

.portofolio-img {
    filter: saturate(.8);
    transform: scale(1);
    transition: filter .3s ease, transform 1s ease;
    cursor: pointer;
}

.portofolio-img:hover {
    filter: saturate(1.1);
    transform: scale(1.05);
}

.news-description {
    position: relative;
    background: white;
    height: 90px;
    border-radius: 10px;
    box-shadow: 0 4px 10px #00000080;
    margin: auto;
    margin-top: -50px;
}

.news-title {
    font-weight: bolder;
    color: var(--bs-primary);
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 0;
    transition: .3s ease;
}

.news-title:hover {
    padding-left: 5px;
}

.news-readmore {
    color: var(--bs-primary);
    padding-left: 0;
    transition: .3s ease;
}

.news-readmore:hover {
    padding-left: 5px;
}

section p {
    font-size: 16px
}

.contact-card {
    position: relative;

    width: 400px;
    max-width: 400px;
    height: 300px;
    border-radius: 10px;
    cursor: pointer;
    max-height: 300px;
    background: #f4f6f9;
    transform: scale(1.0);
    transition: .3s ease;
    overflow: hidden;
    box-shadow: 0 0 20px #24231D88;
    color: var(--bs-primary)
}

.contact-card:hover {
    transform: scale(1.1);
}

.contact-card .overlay {
    background: #f4f6f9;
    width: 100%;
    height: 100%;
    padding: 3rem;
    padding-right: calc(3rem + 80px);
    position: relative;
    cursor: pointer;
    transition: .3s ease;
}

.contact-card:hover .overlay {
    background: #275192bf;
}

.contact-card .overlay * {
    color: var(--bs-primary);
}

.contact-card:hover .overlay * {
    color: var(--bs-white);
}

.contact-card .circle-quarter-top {
    position: absolute;
    right: 0;
    top: calc(50% - 80px);
    width: 80px;
    height: 80px;
    border-top-left-radius: 80px;
    background: var(--bs-primary);
    transition: .3s ease;
}

.contact-card .circle-quarter-bottom {
    position: absolute;
    right: 0;
    top: 50%;
    width: 80px;
    height: 80px;
    border-bottom-left-radius: 80px;
    background: var(--bs-secondary);
    transition: .3s ease;
}

.contact-card:hover .circle-quarter-top {
    background: var(--bs-white);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 70px;
    background: white;

    display: flex;
    justify-content: center;
    align-items: center;
}

.required::after {
    content: ' *';
    color: red;
    font-weight: bolder;
}

.news-content img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
}

