/*********************************************/
/****************** Fonts ********************/
/*********************************************/
@font-face {
    font-family: Poppins-Bold;
    src: url('fonts/Poppins-Bold.ttf');
}
@font-face {
    font-family: Poppins-ExtraBold;
    src: url('fonts/Poppins-ExtraBold.ttf');
}
@font-face {
    font-family: Poppins-Regular;
    src: url('fonts/Poppins-Regular.ttf');
}
@font-face {
    font-family: Aquire;
    src: url('fonts/Aquire.otf');
}
@font-face {
    font-family: AquireBold;
    src: url('fonts/AquireBold.otf');
}
@font-face {
    font-family: AquireLight;
    src: url('fonts/AquireLight.otf');
}
/*********************************************/
/****************** Colors *******************/
/*********************************************/
:root {
    color-scheme: light dark;
    --black: #0F0F0F;
    --white: #ece9fa;
    --yellow: #5b97ff;
    --yellow_transparent: rgba(6, 152, 249, 0.5);
    --main-color: var(--white);
    --text-color: var(--black);
}
/*********************************************/
/**************** Darkmode *******************/
/*********************************************/
/* [darkMode="false"] {
    --main-color: var(--white);
    --text-color: var(--black);
}
[darkMode="true"] {
     --main-color: var(--black);
     --text-color: var(--white);
}
.darkmode-checkbox {
    cursor: pointer;
    align-items: center;
}
.darkmode-checkbox:hover {
    color: var(--yellow);
}
.darkmode-checkbox input[type="checkbox"], .darkmode-checkbox .checked {
    display: none;
}
.darkmode-checkbox input[type="checkbox"]:checked ~ .checked {
    display: inline-block;
    color: var(--yellow);
}
.darkmode-checkbox input[type="checkbox"]:checked ~ .unchecked {
    display: none;
}
@media screen and (prefers-color-scheme: light) {
    body {
        --main-color: var(--white);
        --text-color: var(--black);
    }
}
@media screen and (prefers-color-scheme: dark) {
    body {
        --main-color: var(--black);
        --text-color: var(--white);
    }
} */
/*********************************************/
/*************** Global reset ****************/
/*********************************************/
*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: 'AquireLight', sans-serif;
}
body {
    width: 100%;
    height: 100vh;
    background: var(--main-color);
    color: var(--text-color);
    z-index: 0;
}
a {
    text-decoration: none;
}
strong {
    font-weight: 400;
    color: var(--yellow);
}
/*********************************************/
/**************** Scrollbar ******************/
/*********************************************/
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 5px !important;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--yellow);
    border-radius: 5px !important;
    cursor: grab;
}
/*********************************************/
/****************** Style ********************/
/*********************************************/
::selection {
    background-color: var(--yellow);
    color: var(--black);
}
::-moz-selection {
    background-color: var(--yellow);
    color: var(--black);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Aquire', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    text-align: center;
    margin: 0 0 50px 0;
    color: var(--yellow);
}
h1 {
    font-size: clamp(2.5em, 5vw, 3em);
}
h2 {
    font-size: clamp(2em, 4vw, 2.5em);
}
h3 {
    font-size: clamp(1.5em, 3vw, 2em);
}
h4 {
    font-size: clamp(1em, 2vw, 1.5em);
}
.btn {
    background: var(--yellow);
    border: 2px solid var(--yellow);
    height: 55px;
    width: 190px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 20px;
    border-radius: 50px;
    moz-transition: all .3s;
    -o-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
    box-shadow: 0 2px 8px 0 var(--yellow_transparent);
}
.btn:hover {
    box-shadow: 0 4px 25px 0 var(--yellow_transparent);
}
section {
    padding: 80px 10px 0 10px;
    font-family: Poppins-Regular, Arial, Helvetica, sans-serif;
}
/*********************************************/
/******************* Menu ********************/
/*********************************************/
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 5px;
    margin: 0 auto 0 auto;
    /* background: var(--black); */
    background: transparent;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 15;
}
#logo {
    display: none;
}
#logo_container {
    width: auto;
    height: 50px;
}
#logo_container img {
    height: 50px;
    filter: drop-shadow(0 2px 2px var(--black));
}
#link_container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    list-style-type: none;
}
#link_container li {
    height: 100%;
    min-width: 150px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    list-style-type: none;
}
.link {
    height: 100%;
    border-radius: 10px;
    color: var(--black);
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}
.link:hover, .link:focus, .link:active {
    border-bottom: 2px solid var(--yellow);
    border-top: 2px solid var(--yellow);
    color: var(--yellow);
}
.yellow {
    color: var(--yellow) !important;
}
.phone_contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px !important;
}
/* #Darktoggle {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 110;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;

} */
/*************** Button burger ***************/
.burger {
    height: 30px;
    width: 30px;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
    display: none;
}
.line {
    display: block;
    width: 100%;
    height: 2px !important;
    transition: transform 0.75s ease-out, opacity 0.2s ease-out;
    background: var(--yellow) !important;
}
.l1 {
    transform: translateY(-10px);
}
.l3 {
    transform: translateY(10px);
}
.burger.active .l1 {
    transform: translateY(0px) rotate(315deg);
}
.burger.active .l2 {
    opacity: 0;
}
.burger.active .l3 {
    transform: translateY(0px) rotate(-315deg);
}
/*********************************************/
/****************** Header *******************/
/*********************************************/
header {
    z-index: 5;
    position: relative;
    min-height: 95vh;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, var(--main-color) 100%), url('img/hero.webp');
    background-repeat: no-repeat !important;
    background-size: cover !important;
    object-fit: cover !important;
    background-position: top center !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

}
#main_title {
    font-family: Poppins-ExtraBold;
    line-height: 1.2em;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: clamp(1.3em, 4vw, 5em);
    display: flex;
    flex-direction: column;
    text-align: center;
    text-shadow: 0 4px 10px var(--black);
}
#main_second_title {
    height: 140%;
    width: 100%;
    font-family: Poppins-ExtraBold;
    line-height: 1em;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: clamp(.5em, 2vw, 2em) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: var(--yellow);
    color: var(--black);
}
#btn_contact {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#social {
    position: absolute !important;
    bottom: 30px !important;
    z-index: 110;
    width: 100%;
    min-width: max-content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-size: 1.5em;
}
#social a {
    color: var(--text-color);
    -webkit-box-reflect: below 4px linear-gradient(transparent, #ffee001c);
    moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
#social a:hover  {
    color: var(--yellow) !important;
    text-shadow: var(--yellow) 0 0px 10px !important;
}
#social a:nth-child(1) {
    animation: fadeIn 4s ease-out 0.5s infinite;
}
#social a:nth-child(2) {
    animation: fadeIn 4s ease-out 1s infinite;
}
#social a:nth-child(3) {
    animation: fadeIn 4s ease-out 1.5s infinite;
}
#social a:nth-child(4) {
    animation: fadeIn 4s ease-out 2s infinite;
}
@keyframes fadeIn {
    from {
        color: var(--yellow);
        text-shadow: var(--yellow) 0 0px 6px;
    }
    to {
        color: var(--text-color);
        text-shadow: transparent 0 0 0;
    }
}
/*********************************************/
/******************* Menu ********************/
/*********************************************/
#menu {
    z-index: 10;
    height: 100vh;
    position: fixed;
    top: 0;
    font-family: AquireLight;
    font-size: clamp(.5rem, 10vw, 1.5rem);
    padding-top: 80px;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: var(--white);
    transform: translateX(110%);
    transition: transform .5s cubic-bezier(0.73, 0.11, 0.67, 0.84);
}
#menu.active {
    transform: translate(0) !important;
}
#menu ul {
    list-style-type: none;
    width: max-content;
}
.menu_item {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    text-decoration: none;
    color: var(--yellow);
    letter-spacing: .1em;
    text-transform: uppercase;
    font-size: clamp(1rem, 4vw, 1.6rem); 
}
.menu_item:hover {
    color: var(--yellow);
    text-shadow: var(--yellow) 0 0 15px;
}
/*********************************************/
/***************** SMB ABOUT *****************/
/*********************************************/
#SMB p {
    max-width: 800px;
    margin: 0 auto 0 auto;
}
#SMB_img_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 75px;
    margin: 50px 0 10px 0;
}
#SMB_img_container img {
    height: auto;
    width: 100%;
    max-height: 260px;
    max-width: 260px;
    min-height: 240px;
    min-width: 240px;
    border-radius: 50%;
    border: 4px solid var(--yellow);
    object-fit: cover;
}
/*********************************************/
/**************** ENGAGEMENTS ****************/
/*********************************************/
#engagements {
    width: 100%;
    display: flex;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
}
.engagements_p {
    text-align: center;
    margin: 25px 0 50px 0;
}
#engagements_container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}
.box {
    min-height: 300px;
    max-width: 300px;
    /* min-width: 250px; */
    background-color: var(--yellow);
    border-radius: 10px;
    box-shadow: 0 0 5px var(--yellow);
    margin: 10px;
    padding: 10px;
    text-align: center;
    transition: .3s;
}
.box h3 {
    color: var(--black) !important;
    font-family: Poppins-Regular, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.box p {
    color: var(--black) !important;
    font-family: Poppins-Regular, Arial, Helvetica, sans-serif;
    font-size: 1em;
    text-align: center;
    margin: 0;
    margin-bottom: 10px;
}
.box:hover {
    box-shadow: 0 0 15px var(--yellow);
    transition: .3s;
    cursor: default;
}
/*********************************************/
/****************** CONTACT ******************/
/*********************************************/
#contact {
    width: 100%;
    display: flex;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
}
#social2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 50px 0 25px 0;
}
#social2 a {
    color: var(--yellow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#social2 a:hover {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    filter: drop-shadow(0 0 5px var(--yellow));
}
#social2 a i {
    font-size: 3em;
    color: var(--yellow);
}
#social2 a p {
    font-size: 1em;
    color: var(--yellow);
}

/*********************************************/
/****************** To Top *******************/
/*********************************************/
#progress {
    position: fixed;
    bottom: 30px;
    right: 15px;
    height: 45px;
    width: 45px;
    display: none;
    justify-content: center;
    align-items: center;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 5px var(--yellow);
    cursor: pointer;
}
#progress-value {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    background-color: var(--black);
    border-radius: 50%;
    font-size: 20px;
    color: var(--yellow);
}
/*********************************************/
/****************** Footer *******************/
/*********************************************/
footer {
    width: 100%;
    height: 30px;
    background-color: var(--yellow);
    font-family: Poppins-Regular, Arial, Helvetica, sans-serif;
    font-size: clamp(.8em, 2vw, .9em);
    margin-top: 25px;
    padding: 10px;
    color: #0F0F0F;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer a {
    color: var(--black);
    text-decoration: none;
    margin: 0 5px;
}
/*********************************************/
/******************* Media *******************/
/*********************************************/
@media screen and (max-width: 990px) {
    .burger {
        display: block;
    }
    #link_container li {
        display: none;
    }
    #logo {
        display: flex;
        justify-content: center;
        margin-top: 5px;
        max-height: auto;
        width: 80px;
    }
    #logo img {
        max-height: auto;
        width: 70px;
    }
    #navbar {
        justify-content: space-between;
        padding-left: 10px;
        padding-right: 15px;
    }
    #SMB_img_container {
        gap: 25px;
    }
}