* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 100%;
    /* font-family: sans-serif; */
    font-family: 'Raleway';
}

nav,
section,
ul,
li,
a,
header {
    box-sizing: border-box;
}

header {
    width: 100%;
    display: flex;
    padding-right: 50px;
    padding-left: 50px;
    align-items: center;
    justify-content: space-between;
    position: inherit;
    z-index: 1;
    background-color: white;
    /* background-color: rgb(227, 253, 253, 0.5); */
}

header img {
    width: 100px;
}

#menu li {
    list-style: none;
    display: inline-block;
    margin: 20px;
}

#menu li a {
    color: #000000;
    text-decoration: none;
}

#menu li a:hover {
    text-decoration: underline;
}

section {
    width: 100%;
    float: left;
    position: relative;
}

#home {
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    
}

#about {
    background-color: #222831;
    background-position: center;
    text-align: -webkit-center;
    min-height: 100vh;
    background-size: cover;
}

.image-content {
    width: 50%;
    border-radius: 10px;
}

.content {
    color: #ffffff;
    width: 100%;
    height: 100%;
    text-align: -webkit-center;
    position: relative;
    padding-bottom: 80px;
}

.full-content {
    position: absolute;
}

.content-text {
    color: white;
    padding: 10px;
}

.content h1 {
    font-size: 60px;
    font-family: 'Times New Roman';
}

.content p {
    margin-top: 10px;
    text-align: justify;
    padding: 15px;
    line-height: 1.5;
}

.btn-home {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    background-color: transparent;
    margin: 10px;
    position: relative;
}

.btn-home:hover {
    background-color: #00ADB5;
    transition: 1s;
    color: black;
}

.left-content {
    float: left;
    width: 60%;
    height: 100%;
    top: 50%;
    left: 50%;
    text-align: center;
    color: #fff;
}

.card-article {
    background-color: #1B2430;
    padding: 20px;
    margin: 10px;
    border-radius: 25px;
    text-align: center;
}

.card-article h1 {
    font-size: 25px;
}

.card-aside {
    background-color: #1B2430;
    padding: 20px;
    margin: 10px;
    border-radius: 25px;
}

.card-aside h1 {
    font-size: 25px;
}

.card-aside ol {
    text-align: -webkit-left;
    padding: 10px;
    margin: 10px 10px 10px 20px;

}

.right-content {
    float: right;
    width: 40%;
    height: 100%;
    top: 50%;
    left: 50%;
    text-align: center;
    color: #fff;
}


footer {
    text-align: center;
    width: 100%;
    float: left;
    position: relative;
}

footer p {
    color: black;
    font-size: 20px;
    padding: 5px;
}

.card {
    height: 100%;
    background-color: #1B2430;
    padding: 20px;
    margin-top: 20px;
    border-radius: 25px;
}

.card img {
    width: 30%;
    border-radius: 10px;
}

.card h2 {
    text-align: center;
    color: white;
    padding: 10px;
}

.content .container {
    max-width: 1200px;
    width: 100%;
    padding: 40px 0;
}

.content .slide-container {
    margin: 0 30px;
    overflow: hidden;
}

.content .card {
    background: #fff;
    border-radius: 8px;
}

.content .card .image-box {
    height: 200px;
}

.content .card .image-box img {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
}

.content .card .profile-details {
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding: 15px;
}

.content .card .profile-details img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.content .profile-details .name {
    font-size: 15px;
    font-weight: 500;
}

.content .profile-details .job {
    font-size: 12px;
    font-weight: 500;
    color: #4d4d4d;
}

.content .swiper-navBtn {
    color: #000;
    height: 40px;
    width: 40px;
    background: #fff;
    border-radius: 50%;
}

.content .swiper-navBtn::before,
.content .swiper-navBtn::after {
    font-size: 18px;
}

.content .swiper-pagination-bullet {
    background-color: #FFFFFF;
}

@media screen and (max-width: 768px) {
    .content .swiper-navBtn {
        display: none;
    }
}

.slider {
    position: relative;
    background: #000116;
    width: 800px;
    max-height: 300px;
    margin: 20px;
    overflow: hidden;
    border-radius: 10px;
}

.slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: circle(0% at 0 50%);
}

.slider .slide.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s;
}

.slider .slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .slide .info {
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    width: 85%;
    color:white;
    margin-top: 50px;
    margin-left: 50px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 5%);
}

.slider .slide .info h2 {
    font-size: 2em;
    font-weight: 800;
    color: white;
}

.slider .slide .info p {
    font-size: 1em;
    font-weight: 400;
    color:white;
}

.navigation {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider:hover .navigation {
    opacity: 1;
}

.prev-btn,
.next-btn {
    z-index: 999;
    font-size: 2em;
    color: #222;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    cursor: pointer;
}

.prev-btn {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.next-btn {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.navigation-visibility {
    z-index: 999;
    display: flex;
    justify-content: center;
}

.navigation-visibility .slide-icon {
    z-index: 999;
    background: rgba(255, 255, 255, 0.5);
    width: 20px;
    height: 10px;
    transform: translateY(-50px);
    margin: 0 6px;
    border-radius: 2px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
}

.navigation-visibility .slide-icon.active {
    background: #4285F4;
}

.border-bottom {
    border-bottom-style: solid;
}

.align-center {
    text-align: center;
}

footer {
    bottom: 0;
}

@media (max-height:800px) {
    footer {
        position: static;
    }
}


.footer-distributed {
    background-color: white;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px sans-serif;
    padding: 50px 50px 20px 50px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
    display: inline-block;
    vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
    width: 35%;
}

/* The company logo */

.footer-distributed .footer-left img {
    width: 22%;
    height: 75px;
}

/* Footer links */

.footer-distributed .footer-links {
    color: #92999f;
}

.footer-distributed .footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
}

.footer-distributed .footer-company-name {
    color: #8f9296;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
    width: 35%;
}


.footer-distributed .footer-center i {
    background-color: #33383b;
    color: #ffffff;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
}

.footer-distributed .footer-center p {
    display: inline-block;
    color: black;
    vertical-align: middle;
    margin: 0;
}

.footer-distributed .footer-center p span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
}

.footer-distributed .footer-center p a {
    color: #e0ac1c;
    text-decoration: none;
    ;
}


/* Footer Right */

.footer-distributed .footer-right {
    width: 30%;
}

.footer-distributed .footer-company-about {
    line-height: 20px;
    color: #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}

.footer-distributed .footer-company-about span {
    display: block;
    color: black;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-distributed .footer-icons {
    margin-top: 25px;
}

.footer-distributed .footer-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color: #33383b;
    border-radius: 2px;

    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;

    margin-right: 3px;
    margin-bottom: 5px;
}

/* Here is the code for Responsive Footer */
/* You can remove below code if you don't want Footer to be responsive */


@media (max-width: 880px) {

    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-distributed .footer-center i {
        margin-left: 0;
    }

}

.shapedividers_com-8836 {
    overflow: hidden;
    position: relative;
}

.shapedividers_com-8836::before {
    content: '';
    font-family: 'shape divider from ShapeDividers.com';
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 100% 90px;
    background-position: 50% 0%;
    background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23ffffff"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23ffffff"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23ffffff"/></svg>');
}

@media (min-width:2100px) {
    .shapedividers_com-8836::before {
        background-size: 100% calc(2vw + 90px);
    }
}

.shapedividers_com-8836 {
    overflow: hidden;
    position: relative;
}

.shapedividers_com-8836::before {
    content: '';
    font-family: 'shape divider from ShapeDividers.com';
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 100% 90px;
    background-position: 50% 0%;
    background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23ffffff"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23ffffff"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23ffffff"/></svg>');
}

@media (min-width:2100px) {
    .shapedividers_com-8836::before {
        background-size: 100% calc(2vw + 90px);
    }
}

/* Style the tab */
.tab {
  float: left;
  width: 30%;
}

/* Style the buttons inside the tab */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  padding: 0px 12px;
  margin-left: 32%;
  border-left: none;
  width: -webkit-fill-available;
}


.underline {
    text-decoration: underline;
}

body {
    margin: 0;
}

.topnav {
    overflow: hidden;
    background-color: white;
}

.topnav a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a.active {
    color: #00ADB5 !important;
    text-decoration: underline !important;
}

.topnav .icon {
    display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 17px;
    border: none;
    outline: none;
    color: black;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    font-size: 14px;
    display: block;
    text-align: left;
}

.topnav a:hover,
.dropdown:hover .dropbtn {
    color: #00ADB5;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 600px) {

    .topnav a:not(:first-child),
    .dropdown .dropbtn {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }

    .topnav.responsive .dropdown {
        float: none;
    }

    .topnav.responsive .dropdown-content {
        position: relative;
    }

    .topnav.responsive .dropdown .dropbtn {
        display: block;
        width: 100%;
        text-align: left;
    }
}

.row {
    display: flex;
}

.column-left {
    padding: 10px;
    height: 500px;
    flex: 40%;
}

.column-right {
    flex: 60%;
    padding: 10px;
    height: 500px;
}

img {
    max-width: 100%;
}

h2,
p {
    font-size: 14px;
}

.white {
    color: white;
}

.content p {
    padding: 0px;
    margin: 0px;
    margin-left: 10px;
}

h3 {
    color: black;
}

i {
    color: grey;
    font-size: 14px;
}

/* Float four columns side by side */
.column {
    float: left;
    width: 23%;
    padding: 0 10px;
}

.card img {
    width: 100%;
    height: 200px;
}

/* Remove extra left and right margins, due to padding */
.row {
    margin: 0 -5px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive columns */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
}

/* Style the counter cards */
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 16px;
    text-align: center;
    background-color: #f1f1f1;
    max-height: 300px;
}

.center {
    text-align: center;
}

.content p {
    margin-top: 0px;
    padding-bottom: 0px;
}

/* Create two equal columns that floats next to each other */
.row {
    display: flex;
}

/* Create two equal columns that sits next to each other */
.column {
    padding: 10px;
    height: 200px;
    /* Should be removed. Only for demonstration */
}

.left {
    flex: 70%;
    align-items: center;

}

.right {
    flex: 30%;
    align-items: center;
    justify-content: center;
    display: flex;

}

img {
    max-width: 100%;
}

h2,
p {
    color: #222831;
}

@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700);
@import url(https://fonts.googleapis.com/css?family=Raleway:100,400,700);

.pc-tab>input,
.pc-tab section>div {
    display: none;
}

#tab1:checked~section .tab1,
#tab2:checked~section .tab2,
#tab3:checked~section .tab3,
#tab4:checked~section .tab4 {
    display: block;

}

#tab1:checked~nav .tab1,
#tab2:checked~nav .tab2,
#tab3:checked~nav .tab3,
#tab4:checked~nav .tab4 {
    color: red;
}

/* Visual Styles */
*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    -webkit-font-smoothing: antialiased;
    background: #ecf0f1;
    font-family: 'Raleway';
}

h1 {
    text-align: center;
    font-size: 60px;
}

.pc-tab {
    padding: 20px;
    width: 100%;
    margin: 0 auto;
}

.pc-tab ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pc-tab ul li label {
    font-family: "Raleway";
    float: left;
    padding: 15px 25px;
    border: 1px solid #ddd;
    border-bottom: 0;
    background: #eee;
    color: #444;
    border-radius: 10px 10px 0 0;
}

.pc-tab ul li label:hover {
    background: #ddd;
}

.pc-tab ul li label:active {
    background: #fff;

}

.pc-tab ul li:not(:last-child) label {
    border-right-width: 0;
}

.pc-tab section {
    font-family: "Droid Serif";
    clear: both;
}

.pc-tab section div:not(.card-exclude) {
    padding: 10px;
    background: #fff;
    line-height: 1.5em;
    letter-spacing: 0.3px;
    color: #444;
}

.pc-tab section div h2 {
    margin: 0;
    font-family: "Raleway";
    letter-spacing: 1px;
    color: #34495e;
}

#tab1:checked~nav .tab1 label,
#tab2:checked~nav .tab2 label,
#tab3:checked~nav .tab3 label,
#tab4:checked~nav .tab4 label {
    background: white;
    color: #111;
    position: relative;
}

#tab1:checked~nav .tab1 label:after,
#tab2:checked~nav .tab2 label:after,
#tab3:checked~nav .tab3 label:after,
#tab4:checked~nav .tab4 label:after {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    left: 0;
    bottom: -1px;
}

/*Card List*/
.education {
    --bg-color: #ffd861;
    --bg-color-light: #ffeeba;
    --text-color-hover: #4C5656;
    --box-shadow-color: rgba(255, 215, 97, 0.48);
}

.credentialing {
    --bg-color: #B8F9D3;
    --bg-color-light: #e2fced;
    --text-color-hover: #4C5656;
    --box-shadow-color: rgba(184, 249, 211, 0.48);
}

.wallet {
    --bg-color: #CEB2FC;
    --bg-color-light: #F0E7FF;
    --text-color-hover: #fff;
    --box-shadow-color: rgba(206, 178, 252, 0.48);
}

.human-resources {
    --bg-color: #DCE9FF;
    --bg-color-light: #f1f7ff;
    --text-color-hover: #4C5656;
    --box-shadow-color: rgba(220, 233, 255, 0.48);
}

.card-list {
    width: 220px;
    height: 321px;
    background: whitesmoke;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease-out;
    text-decoration: none;
}

.card-list:hover {
    transform: translateY(-5px) scale(1.005) translateZ(0);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11),
        0 24px 46px var(--box-shadow-color);
}

.card-list:hover .overlay {
    transform: scale(5) translateZ(0);
}

.card-list:hover .circle {
    border-color: var(--bg-color-light);
    background: var(--bg-color);
}

.card-list:hover .circle:after {
    background: var(--bg-color-light);
}

.card-list:active {
    transform: scale(1) translateZ(0);
    box-shadow: 0 15px 24px rgba(0, 0, 0, 0.11),
        0 15px 24px var(--box-shadow-color);
}

.card-list p {
    font-size: 17px;
    color: #4C5656;
    margin-top: 30px;
    z-index: 1000;
    transition: color 0.3s ease-out;
}

.circle {
    width: 131px;
    height: 131px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out;
}

.circle:after {
    content: "";
    width: 118px;
    height: 118px;
    display: block;
    position: absolute;
    background: var(--bg-color);
    border-radius: 50%;
    top: 7px;
    left: 7px;
    transition: opacity 0.3s ease-out;
}

.circle svg {
    z-index: 10000;
    transform: translateZ(0);
}

.overlay {
    width: 100px;
    position: absolute;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-color);
    top: 70px;
    left: 50px;
    z-index: 0;
    transition: transform 0.3s ease-out;
}