:root {
    --BG-color: #050a30;
    --bg-2: #2889c976;
    --text: #fff;
    --primary-color: #389bdc;
    --secondry-color: #213ffa;
    --hover: linear-gradient(#389bdc, #213ffa);
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}


body {
    /* font-family: Quintessential; */
    font-family: 'Open Sans', sans-serif;
    /* background-color: var(--BG-color); */
    background-image: url('/pics/BG1.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    cursor: url('Cursor-removebg-preview.png'), auto;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.7);
}

::-webkit-scrollbar {
    /* height: 100vh; */
    width: 8px;
}

::-webkit-scrollbar-track{
    width: 5px;
    background-color: var(--bg-2);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

hr {
    border-color: var(--primary-color);
}

.heading-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading-box h1 {
    color: var(--primary-color);
    font-size: 40px;
    font-style: italic;
    font-family: Quintessential;
    text-transform: uppercase;
}

.logo h1 {
    font-size: 35px;
    font-family: Quintessential;
    color: var(--primary-color);
}

.header-area {
    opacity: 0;
    width: 100%;
    /* margin: 15px; */
    display: flex;
    flex-direction: row;
    position: fixed;
    z-index: 2;
    background-color: var(--BG-color);
    transition: all 0.5s ease-in-out;
    /* border: 2px solid white; */
    /* border-radius: 10px; */
}

.header-visible {
    opacity: 1;
}

.header-area:hover {
    opacity: 1;
}

.header-area .logo {
    display: flex;
    flex-direction: row-reverse;
    text-transform: uppercase;
    font-style: italic;
    /* margin: 15px;  */
    /* border: 2px solid white; */
    width: 600px;
    color: var(--text);
}

.header-area .logo h1 {
    font-size: 30px;
    font-family: Quintessential;
}

.header-area .logo img {
    height: 70px;
}

.header-area .nav {
    list-style: none;
    width: 100%;
    text-align: right;
    /* border: 2px solid white; */
}

.header-area .nav li {
    display: inline-block;
    /* margin-left: 30px; */
    margin: 20px;
    color: black;
    cursor: pointer;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: right;
    /* border: 2px solid white; */
}

/* .nav ul {
    display: flex;
    margin-left: 50px;
    border: 2px solid white;
} */

.nav a {
    color: var(--text);
    /* color: #389bdc; */
    cursor: pointer;
    text-decoration: none;
    font-size: 20px;
    margin-bottom: 52px;
    transition: all 0.5s ease-in-out;
}

.nav a:hover {
    color: var(--secondry-color);
    /* color: var(--hover); */
}



button {
    border: 0;
    border-radius: 20px;
    padding: 12px;
    /* margin-left: 22px; */
    /* margin-top: 10px; */
    cursor: pointer;
    color: #fff;
    background-color: var(--primary-color);
    transition: all 0.5s ease-in-out;
}

button:hover {
    transform: scale(1.1);
    cursor: pointer;
    color: #fff;
    /* background-color: var(--secondry-color); */
    background: var(--hover);
}

button a {
    text-decoration: none;
    color: #fff;
}

#Home {
    height: 100vh;
}

.container {
    padding-top: 25px;
    /* width: 1200px; */
    margin: auto;
    /* border: 2px solid white; */
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.container .image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    /* border: 2px solid white; */
    /* margin-top: 35px; */
}

.container .image img {
    /* margin-top: 100px; */
    max-width: 120%;
    border-radius: 50%;
}

.container .info {
    width: 35%;
    margin-top: 70px;
    /* border: 2px solid white; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 15px; */
}

.container .info h1 {
    /* float: left; */
    width: 100%;
    font-family: Quintessential;
    /* border: 2px solid white; */
    text-transform: uppercase;
    font-size: 70px;
    font-weight: bold;
    margin: 0 0 20px;
    line-height: 1.4;
    color: var(--text);
}

.container .info p {
    margin: 0;
    line-height: 1.6;
    font-size: 25px;
    padding-bottom: 15px;
    color: var(--text);
    /* color: var(--primary-color); */
}

.container .info button {
    border: 0;
    border-radius: 20px;
    padding: 12px 30px;
    margin-top: 30px;
    cursor: pointer;
    color: #fff;
    background-color: var(--primary-color);
}

.container .info button:hover {
    border: 0;
    border-radius: 20px;
    padding: 12px 30px;
    margin-top: 30px;
    cursor: pointer;
    color: #fff;
    background-color: var(--secondry-color);
}

.Tutorials-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.Tutorials-box .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border: 2px solid white; */
    margin: 10px;
    padding: 15px;
}

.box h2 {
    margin: 10px;
    color: var(--text);
}

.Tutorials-box .box img {
    width: 100px;
    margin: 5px;
    /* border: 2px solid white; */
    align-items: center;
}

.Tutorials-box .tutorials-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.Contact {
    height: 90vh;
}

.Contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 35px;
    border-radius: 25px;
    /* border: 2px solid white; */
    background-color: var(--bg-2);
}

.Contact-box h1 {
    color: var(--text);
    font-size: 40px;
    font-style: italic;
}

.Contact-box img {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    /* border: 2px solid white; */
}

.Contact-box .icn {
    margin: 15px;
}

.Contact-box .icn i {
    margin: 5px;
    font-size: 45px;
    color: var(--text);
    transition: all 0.3s ease-in-out;
}

.Contact-box .icn i:hover {
    transform: scale(1.3);
    color: var(--BG-color);
}

/* .work {
    margin: auto;
    border: 2px solid white;
} */

.Work-Box {
    margin: 15px;
    height: 70vh;
}

.Work-Box h1 {
    margin: 5px;
}

.form {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 60%;
    margin: auto;
}

.form h2 {
    color: var(--text);
    padding: 15px;
}

.form h6 {
    color: var(--text);
    font-size: 15px;
}

.form input {
    margin: 5px;
    padding: 5px;
    font-size: 25px;
    border: none;
    border-bottom: 2px solid var(--text);
    background: transparent;
    outline: none;
    width: 80%;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.form input:hover,
input:focus {
    font-style: italic;
    border-radius: 15px;
    border-bottom: 4px solid var(--primary-color);
    /* color: var(--primary-color); */
}

/* .form input:focus {
    border-bottom: 4px solid var(--primary-color);
} */

.form button {
    margin: 25px;
}

.About p {
    color: var(--text);
    line-height: 2rem;
    margin: 15px;
    padding: 10px;
    font-size: 25px;
    text-align: center;
}

.ftr {
    /* border: 2px solid white; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.ftr img {
    border-radius: 50%;
    /* border: 2px solid white; */
    margin: 20px;
    height: 70px;
}

.ftr p,
h1 {
    margin: 25px;
    color: var(--text);
}

.ftr h1 {
    font-family: Quintessential;
    text-transform: uppercase;
}

.ftr .icn {
    margin: 15px;
}

.ftr .icn i {
    margin: 5px;
    font-size: 25px;
    color: var(--text);
    transition: all 0.3s ease-in-out;
}

.ftr .icn i:hover {
    transform: scale(1.3);
    color: var(--primary-color);
}




