/* Font */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400&family=Supermercado+One&display=swap');

/* Common CSS */
body {
    margin: 0;
    font-family: 'Oswald', 'Supermercado One', cursive;
}

.title {
    position: relative;
    display: inline-block;
    font-size: 32px;
}

.title p {
    margin: 5px;
    
}


.shape1 {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #FFCF00;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.shape2 {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #FFCF00;
    left: 50%;
    bottom: -12px;
    transform: translateX(calc(-50% + 26px)) rotate(45deg);
}

.shape3 {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #FFCF00;
    left: 50%;
    bottom: -12px;
    transform: translateX(calc(-50% - 26px)) rotate(45deg);
}

.title::after {
    content: "";
    height: 4px;
    background-color: #FFCF00;
    position: absolute;
    bottom: -10px;
    right: 0;
    left: calc(50% + 40px);
}

.title::before {
    content: "";
    height: 4px;
    background-color: #FFCF00;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: calc(50% + 40px);
}


.line {
    width: 100%;
    height: 4px;
    background-color: white;
}

/* Header Section */

.photo-bg {
    width: 100%;
    height: 80px;
    background-color: #FFCF00;
    position: relative;
    margin-top: 63px;
   
}

.photo-bg .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}

.photo-bg .logo img {
    width: 200px;
    border-radius: 6px;
}

/* About Section */

.about {
    text-align: center;
    margin-top: 65px;
    
    
}

.content {
    width: 80%;
    margin: auto;
    margin-top: 30px;
    text-align: justify;
}

.content img {
    width: 90px;
    float: left;
    margin-right: 6px;
}

/* Key People */

.key-people {
    text-align: center;
    overflow: hidden;
    
    
}

.card-area {
    overflow: hidden;
    margin-top: 30px;
}

.card {
    width: 25%;
    float: left;
    padding: 0 20px;
    box-sizing: border-box;
    
 }

 .card .box {
    background-color: #FFCF00;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
 }

.box .photo img {
    width: 100%;
    object-fit: cover;
    height: 200px;
    border-radius: 10px 10px 0px 0px;
    padding: 5px;
    box-sizing: border-box;
}

.social-icon ul {
    padding: 0;
}

.social-icon ul li {
    list-style: none;
    display: inline-block;
    font-size: 24px;
    margin: 0 15px;
}


.social-icon ul li a {
    color: white;
}

.text h2 {
    margin-top: -10px;
}

.text p {
    position: relative;
    display: inline-block;
}

.text p::after {
    content: "";
    height: 2px;
    width: 100%;
    background-color: white;
    position: absolute;
    bottom: -6px;
    left: 0;
    
}

.social-icon ul li a i {
    background-color: #2c3e50;
    padding: 8px;
    border-radius: 50%;
}

/* Footer */

footer {
    background-image: url(../images/starry-night-sky.png);
    margin-top: 20px;
    padding: 100px 0;
}

footer .footer-area .box {
    width: 60%;
    background-color: #FFCF00;
    margin: 0px auto;
    border-radius: 6px;
    overflow: hidden;

}

.box li {
    list-style: none;
}

.box li a {
    text-decoration: none;
    color: black;
}

.contact-area {
    width: 50%;
    float: left;
    
}

.contact-area .curner-cut {
    width: 50%;
    height: 40px;
    background-color: #343a40;
    position: relative;
    text-align: center;
    display: inline-block;
    border-radius: 6px 0 0 0;
}
.contact-area .curner-cut::after {
    content: "";
    position: absolute;
    border-top: 40px solid transparent;
    border-left: 30px solid #343a40;
    left: 100%;
    bottom: 0;
}

.contact-area .curner-cut p {
    color: white;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translate(-50%, -50%);

}

.link-area {
    width: 50%;
    float: left;
}

.list {
    list-style: none;
    padding: 0;
    text-transform: uppercase;
    font-size: 18px;
}

.list li {
    position: relative;
}

.list li::before {
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: blue;

}

.list li:hover:before {
    color: black;
}

/* Copyright */

.copyright {
    background-color: #FFCF00;
    text-align: center;
}

.copyright .text a {
    text-decoration: none;
    color: blue;
}

