@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;

*{
    margin: 0;
    padding: 0;
    font-family: 'Alata', sans-serif;
    box-sizing: border-box;
}
html
{
    scroll-behavior: smooth;
}

body
{
    background: #000000;
    color: #fff;
}
#header
{
    width: 100%;
    height: 900px;
    background-size: cover;
    background-position: center;
}

#header-subpage
{
    width: 100%;
    background-size: cover;
    background-position: center;
}

.container
{
    padding: 10px 10%;
}

nav
{
    display: flex;
    align-items: center;
    justify-content:space-between;
    flex-wrap: wrap;
}

.logo
{
    width: 140px;
}

nav ul li 
{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a
{
    display: flex;
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    position: relative;
}

nav ul li a::after
{
    content: '';
    width: 0;
    height: 3px;
    background: #ffff;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after
{
    width: 100%;
}

.header-text
{
    margin-top: 10%;
    font-size: 20px;
}

.header-text h1
{
    flex-basis: 25%;
    font-size:55px;
    margin-top: 10px;
}

.header-text p span
{
    color: #a5a5a5;
}

.header-text h1 span
{
    color: #a5a5a5;
}

.header-content
{
    display: flex;
    justify-content: space-between; 
    align-items: center;   
    margin-top: -40px;
}

.header-col-2 img
{
    margin-top: 20%;
    margin-left: 35%;
    width: 65%;
    border-radius: 15px;
}

/*About*/
#about
{
    padding: 40px 0;
    color: #ababab;
}
.row
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-col-1
{
    flex-basis: 25%;
}

.about-col-1 img
{
    width: 100%;
    border-radius: 15px;
}

.about-col-2
{
    flex-basis: 60%;
}

.sub-title
{
    font-size: 50px;
    font-weight: 600;
    color: #fff;
}

.tab-titles
{
    display: flex;
    margin: 20px 0 40px;
}

.tab-links
{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-links::after
{
    content: '';
    width: 0;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-link::after
{
    width:100%;
}

.tab-contents ul li
{
    list-style: none;
    margin: 10px 0;
}

.tab-contents ul li span
{
    color:#fff;
    font-size: 14px;
}

.tab-contents
{
    display: none;
}

.tab-contents.active-tab
{
    display: block;
}

ul li a
{
    color: #888888;
    text-decoration: underline;
    font-size: 15px;
    position: relative;
}

ul li a:hover
{
    color: #fff;
}

/*Contact*/
.contact-left
{
    flex-basis: 35%;
}

.contact-right
{
    flex-basis: 60%;
}

.contact-left p
{
    margin-top: 30px;
}

.contact-left p i
{
    color:#fff;
    margin-right: 15px;
    font-size: 25px;
}

.social-icons
{
    margin-top: 30px;
}

.social-icons a
{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
    transition: transform 0.5s;
}

.social-icons a:hover
{
    color: #fff;
    transform: translateY(-3px);
}

.btn.btn2
{   
    margin-top: 30px;
    width: 50%;
    text-decoration: none;
    border: 2px solid #000;
    padding: 10px 20px;
    display: inline-block;
    text-align:center;
    background: #fff;
    color: #000;
    border-radius: 15px;
}

.btn.btn2:hover
{
    background-color: #e4e4e4;
}

.contact-right form
{
    width: 100%;
}
form input, form textarea
{
    width: 100%;
    border: 0;
    outline: none;
    background: #262626;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
}

form .btn2
{
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}

.copyright
{
    width:100%;
    text-align: center;
    padding: 25px 0px;
    background: #262626;
    font-weight: 300;
    margin-top: 20px;
}

#msg
{
    color: #61b752;
    margin-top: 10px;
    display: block;
}

/*Blog page*/

#blog-container h2 
{
    font-size: 24px;
    margin-bottom: 5px;
}

#blog-container h2 a
{
    color: #ababab;
    text-decoration: none;
}

#blog-container h2 a:hover
{
    color: #ffff;
    text-decoration: none;
}

#blog-container h2 a::after
{
    color: #ababab;
    text-decoration: none;
}

#blog-container p 
{
    margin-bottom: 15px;
}

#blog-content
{
    color:#ffff;
    margin-left: none;
}

.blog-entry 
{
    margin-top: 20px;
    margin-bottom: 20px; 
    padding: 15px; 
    border: 1px solid #ccc; 
    border-radius: 10px;    
    max-width: 800px; 
}




/*CSS for small screen
@media only screen and (max-width: 600px)
{
    #header
    {
        
    }
    .header-text
    {
        margin-top: 100%;
        font-size: 16px;
    }
    .header-text h1 
    {
        font-size: 30px;
    }

    .btn.btn2
    {
        margin-top: 30px;
        width: 50%;
        text-decoration: none;
        border: 2px solid #000;
        padding: 10px 30px;
        display: inline-block;
        text-align:center;
        background: #fff;
        color: #000;
        border-radius: 15px;
    }
}
*/
