*{
    line-height: 1.5;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    background: #F5F5F5;
}

body{
    overflow-x: hidden;
}


.main-width{
    width: 1500px;
    max-width: 95%;
    margin: 0 auto;
    padding: 0px 20px; 
}

.hero{
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.title_top{
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    padding: 18px 0 30px;
    letter-spacing: 3px;
    line-height: 1.2;
    padding: 60px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(77, 77, 77, 0.622) 100px,rgba(255, 255, 255, 0.041) 195px), url("/image/beach.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 0% 67.5%;
    /* When you declare two values, the first value is the horizontal offset and the second value is the vertical offset.*/

}

nav {
    position: absolute;
    right: 10%;
    top: 0;
    background-color: transparent;
    padding: 40px 0 30px;
}

nav .nav-list{
    background-color: transparent;
    list-style: none;  
}

nav .nav-list li{
    background-color: transparent;
    display: inline-block;
}

nav .nav-list li a{
    background-color: transparent;
    display: inline-block;
    color: #eee;
    margin-left: 20px;
    /* margin-left: 55px; */
    font-size: 19px;
    font-weight: 900;
}

nav .nav-list li:not(:last-child) a:hover{
    color: #2ecc71;
    transition: .4s;
}

nav .nav-list li.btn a {
    display: inline-block;
    background: transparent;
    border: 3px solid #2ecc71;
    padding: 9px 28px;
    border-radius: 30px;
    line-height: 1.3;
    color: #2ecc71;
    font-weight: 600;
}

nav .nav-list li.btn:hover a{
    background: #2ecc71;
    color: white;
    border: 3px solid transparent;
    transition: .4s;
}

.title_top h1{
    padding-top: 180px;
    color:rgb(0, 165, 226);
    background: transparent;
}

.myself{
    margin-top: 140px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.myself img{
    margin-right: 3%;
    width: 280px;
    height: auto;

}

.myself h3 {
    margin-top: 80px;
    margin-left: 3%;
    max-width: 60%;
}

.comment{
    margin-top: 180px;
}

.com-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.com-list li {
    border: 2px dotted black;
    width: 60%;
    margin: 10px auto; /* Add margin to center the comments vertically and horizontally */
}

.values{
    margin-top: 180px;
    text-align: center;
}

.core-values-list {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    max-width: 100%;
    margin-right: 3%;
    margin-left: 3%;
    /* so far, the width of the first line of (img & text) takes up 81%) */
}

.core-values-list div{
    max-width: 29%;
}

.others{
    margin-top: 180px;
    justify-content: center;
    display: flex;
    text-align: center;
    flex-direction: row;
    max-width: 100%;
}

.others div{
    margin-left: auto;
    margin-right: auto;
    width:35.5%;
}


.sidebar {
    position: fixed;
    top: 50%;
    right: 0.5%;
    transform: translateY(-50%);
    /* Customize the width, background, and other styles as needed */
    width: 80px;
    background-color: transparent;
    padding: 10px;
}

.social-media-icon i{
    margin-top: 30px;
    width: 39px;
    height: 39px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    display:flex;
    flex-direction: column;
    color: #eee;
    margin-bottom: 10px;
    background-color: rgba(99, 99, 99, 0.597);
}

.social-media-icon i:hover{
    transform: scale(1.1);
    background:#2ecc71;
    transition: .4s;
}