*{
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    background: linear-gradient(90deg, #000, #404040, #b3b3b3);
}

.navbar{
    display: flex;
    position: relative;
    justify-content: space-between;
    background-color: #333;
    align-items: center;
    color: white;
}

.brand-title{
    font-size: 1.5rem;
    margin: .5rem;
}

.navbar-links{
    height: 100%;
}

.navbar-links ul{
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li{
    list-style: none;
}

.navbar-links li a{
    text-decoration: none;
    color: white;
    padding: 1rem;
    display: block;
}

.navbar-links li:hover{
    background-color: #555;
}

img{
    width: 100px;
    height: 60px;
}

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.copyrightText{
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    margin-top: 618px;
}

.copyrightText a{
    text-decoration: none;
    color: #fff;
}

.wrapper{
    height: 350px;
    width: 600px;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    perspective: 800px;
    -webkit-perspective: 800px;
}

.card{
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
    transition: 2s;
}

.card:hover{
    transform: rotateY(-180deg);
}

.front{
    background-color: #252628;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content:center;
    backface-visibility: hidden;
}

.logo{
    height: 150px;
    width: 150px;
    position: absolute;
    top: 40px;
}

.name{
    position: absolute;
    color: white;
    font-size: 18px;
    top: 200px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 10px;
}

.slogan{
    color: #faa51a;
    font-family: "Work Sans", sans-serif;
    position: absolute;
    top: 250px;
    font-size: 20px;
    font-style: italic;
}
.back{
    background-color: white;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    background: linear-gradien(90deg, #fff, #ffa64d, #cc6600);
}

.details{
    height: 255px;
    width: 285px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    justify-content: center;
    color: #252628;
}

.name1{
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    position: absolute;
    top: 10px;
    letter-spacing: 1px;
    font-weight: 700;
}

.position{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
    position: absolute;
    top: 42px;
    color: #444444;
}

.divider{
    background-color: #faa51a;
    height: 2px;
    width: 50px;
    position: absolute;
    top: 80px;
}

.number{
    position: absolute;
    top: 110px;
}

.email{
    position: absolute;
    top: 155px;
}

.address{
    position: absolute;
    top: 198px;
    text-align: center;
}

.number, .email, .address{
    font-size: 18px;
    font-family: "Work Sans", sans-serif;
}

i{
    color: #faa51a;
}