/* Start Global Rules */
*, ::after, ::before {
    box-sizing: border-box;
}
link {
    display: none;
}
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
}
html {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    height: 100%;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}
body {
    height: 100%;
    width: 100%;
}
*, ::after, ::before {
    box-sizing: border-box;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.nav ul li a {
    text-decoration-line: none;
    color: var(--white);
}
ul {
    display: block;
    list-style: none;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}
.container {
    width: 00%;
    padding-left: 150px;
    padding-right: 150px;
    margin-left: auto;
    margin-right: auto;
}
/* End Global Rules */
/* Start Nav */
.nav {
    padding: 30px 150px;
    background-color: #051922;
    height: 20%;
    z-index: 2;
    position: sticky;
    height: 100px;
    width: 100%;
    }
    .nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    }
    .nav .container li {
        display: inline-block;
        unicode-bidi: isolate;
        font-size: 15px;
        position: relative;
        font-weight: 600;
    }
    .nav ul li a:hover {
        color: var(--orange);
    }
    .nav .special {
        color: var(--orange);
    }
    .nav .links {
    width: 400px;
    font-size: 15.0px;
    color: var(--light);
    }
    .nav ul {
        display: flex;
        justify-content: space-between;
    } 
    .nav i:hover {
        color: var(--orange);
    }
    .nav i {
        color: var(--light);
        margin-right: 30px;
        font-size: 15px;
    }
    .nav .container ul li .extra-1 {
        width: 200px;
        height: 100px;
        right: -120px;
        bottom: -100px;
    }
    .nav .container ul li .extra-2 {
        width: 200px;
        height: 400px;
        right: -120px;
        bottom: -400px;
    }
    .nav .container ul li .extra-3 {
        width: 200px;
        height: 200px;
        right: -120px;
        bottom: -200px;
    }
    .nav .container ul li .extra {
         background-color: var(--white);   
          display: none;     
          position: absolute;
          border-radius: 10%;
          z-index: 3;
    }
    .nav ul .li-1:hover .extra-1 {
        display: block;
    }
    .nav ul .li-2:hover .extra-2 {
        display: block;
    }
    .nav ul .li-3:hover .extra-3 {
        display: block;
    }
    .nav .container ul li .extra .extra-page {
        display: block;
        color: var(--dark);
        margin-top: 20px;
        margin-left: 10px;
    }
    .nav .container ul li .extra .extra-page:hover {
        color: var(--orange);
    }
    /* End Nav */
/* Start Header */
.header {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: calc(100%);
    background-image: url(../IMGS/hero-bg.jpg);
}
.header::before {
    content: "";
    background-color: rgb(0 0 0 / 45%);;
    width: 100%;
    height: calc(100% - 100px);
    position: absolute;
    right: 0;
    top: 100px;
    z-index: 0;
}
.header * {
    z-index: 2;
    position: relative;
}
.header .container-header {
text-align: center;
    padding: 200px 0 100px;
}
.header p {
color: var(--orange);
letter-spacing: 6px;
font-size: 20px;
font-weight: bold;
}
.header h1 {
color: var(--white);
font-size: 70px;
margin-bottom: 40px;
font-weight: bolder;
}
.header .container button {
    width: calc(fit-content + 30px);
    height: 50px;
    border-radius: 50%;
}
.header .button-1 {
 background-color: var(--orange);
 border: 1px solid var(--orange);
 color: var(--white);
}
.header .button-1:hover {
    background-color: var(--dark);
    border: 1px solid var(--dark);
    color: var(--orange);
   }
.header .button-2 {
    background-color: transparent;
    border: 1px solid var(--orange);
    color: var(--white);
}
.header .button-2:hover {
    background-color: var(--orange);
    border: 1px solid var(--orange);
    color: var(--white);
   }
/* End Header */
/* Start List */
.list {
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f5f5f5;
}
.list .container {
display: flex;
justify-content: space-evenly;
}
.list .container .box {
    display: flex;
}
.list .container .box .icon {
    margin-right: 30px;
    color: var(--orange);
    font-size: 30px;
    height: 75px;
    width: 75px;
    border: 1px dotted var(--orange);
    border-radius: 50%;
    text-align: center;
}
.list .container .box .text h2 {
    font-size: 20px;
    font-weight: bold;
}
.list .container .box .text p {
    opacity: 0.7;
}
/* End List */
/* Start Products */
.products {
padding-top: 100px;
padding-bottom: 100px;
}
.products .container {
    
}
.products .container .heading {
    text-align: center;
}
.products .container .heading h1 {
     font-weight: bolder;
     margin-bottom: 20px;
}
.products .container .heading h1 .special-1 {
    color: var(--orange);
}
.products .container .heading p {
    opacity: 0.7;
    font-size: 20px;
}
/* End Products */