/* Importing Common Fonts For All Pages */
@font-face {
    font-family: 'Guttenbay';
    src: url('../assets/fonts/Guttenbay.ttf');
}

@font-face {
    font-family: 'Sofa-Sans-Regular';
    src: url('../assets/fonts/SofaSansHand-Regular.otf');
}

@font-face {
    font-family: 'Sofa-Sans-Regular-DP';
    src: url('../assets/fonts/SofaSansHand-RegularDP.otf');
}

@font-face {
    font-family: 'Sofa-Sans-Bold';
    src: url('../assets/fonts/SofaSansHand-Bold.otf');
}

@font-face {
    font-family: 'Sofa-Sans-Display-Bold';
    src: url('../assets/fonts/SofaSansHand-BoldDP.otf');
}

@font-face {
    font-family: 'Sofa-Sans-Black';
    src: url('../assets/fonts/SofaSansHand-Bk.otf');
}

@font-face {
    font-family: 'Sofa-Sans-Display-Black';
    src: url('../assets/fonts/SofaSansHand-BkDP.otf');
}

@font-face {
    font-family: 'Sofa-Sans-3D-Hatched';
    src: url('../assets/fonts/SofaSansHand-Bk3DHatched.otf');
}

@font-face {
    font-family: 'LookingFlowers-ScriptPro';
    src: url('../assets/fonts/Looking\ Flowers\ Script\ Pro.otf');
}

/* End Of Importing Common Fonts For All Pages */

/* Global Styles */
* {
    font-family: 'Sofa-Sans-Regular-DP';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #13b2d6;
    border-radius: 100px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #2a375e;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #13b2d6;
    border-radius: 100px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #2a375e;
}

/* Safari Compatibility Issue */
.safari-issue {
    -webkit-appearance: none;
}
/* End Of Safari Compatibility Issue */

/* Text Selection Bg Change */
::selection {
    color: #fff;
    background: #13b2d6;
}
/* End Of Text Selection Bg Change */

/* Common Navbar Styles */
#logo-img {
    width: 80px;
}

.navDesktop {
    padding: 0 60px;
}

.navbar-mobile {
    position: absolute;
    padding-right: 25px;
    top: 0.5em;
    left: 0;
    display: flex;
    margin: 0 auto 30px;
    justify-content: space-between;
    z-index: 100000;
}

.nav-link-mobile {
    background-color: #2a375e;
    text-align: center;
    border-bottom: 1px solid #fff;
}

.exclude-in-nav-link {
    background-color: #2a375e;
    text-align: center;
}

.navbar-nav .nav-item .nav-link {
    font-family: 'Sofa-Sans-Regular-DP';
    margin: 0 20px;
    font-size: 17px;
    color: #fff;
    letter-spacing: 0.8px;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #fff;
    border-bottom: 4px solid #13b2d6;
    padding-bottom: 0px;
}

.active {
    color: #fefefe !important;
}
/* End Of Common Navbar Styles */

/* Socials Sidebar */
.socials-sidebar {
    -webkit-transform: rotate(-90deg) translateX(-50%);
    transform: rotate(-90deg) translateX(-50%);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    position: fixed;
    display: flex;
    flex-direction: row-reverse;
    left: 30px;
    top: 50%;
    font-family: 'Sofa-Sans-Regular';
    z-index: 1000;
}

.socials-text {
    letter-spacing: 1.2px;
    font-size: 15px;
    color: white;
    margin-right: 7px;
}

.social-line {
    width: 80px;
    height: 1.5px;
    margin: 7px 4px;
    background: white;
}

.social-line {
    width: 80px;
    height: 1.5px;
    margin: 7px 4px;
    background: white;
}

.socials-f {
    padding: 0;
    margin: 0;
    margin-left: 12px;
    font-size: 115%;
    color: white;
}

.socials-b {
    padding: 0;
    margin: 0;
    margin-left: 12px;
    font-size: 118%;
    color: white;
}

.socials-i {
    padding: 0;
    margin: 0;
    margin-left: 12px;
    font-size: 125%;
    color: white;
}
/* End Of Socials Sidebar */

/* End Of Global Styles */
