/* Start Styling the header */

/* styling of logo  */

.header-container {
    width: 100%;
    height: 150px;
    background-color: var(--black-one-color);
    overflow: hidden;
}
.header-container .brand-logo {
    margin-top: 25px;
    margin-bottom: 25px;
    width: auto;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-container .brand-logo .container {
    text-align: center;
    position: relative;
}
.header-container .brand-logo .container > .btn-show-menus {
    position: absolute;
    width: 40px;
    height: 30px;
    left: 20px;
    top: 50%;
    transform: translate(0,-50%);
    padding: 7.5px 0px;
    cursor: pointer;
}
.header-container .brand-logo .container > .btn-show-menus > span {
    display: inline-block;
    width: 5px;
    margin:0px 2px;
    height: 15px;
    background-color: var(--black-three-color);
    transform: rotate(30deg);
    transition: all 1s;

}
.header-container .brand-logo .container > .btn-show-menus:hover >span,
.header-container .brand-logo .container > .btn-show-menus:focus >span  {
    background-color: var(--white-one-color);
    transform: rotate(-30deg);
}

.header-container .brand-logo .container a {
    -webkit-user-select: none; 
    -moz-user-select: none;    
    -ms-user-select: none;     
    user-select: none;         
}
.header-container .brand-logo .container a img {
    height: 80px;
}


.header-container .brand-logo .container > .btn-show-options {
    position: absolute;
    width: 40px;
    height: 30px;
    right: 20px;
    top: 50%;
    transform: translate(0,-50%);
    padding: 7.5px 0px;
    cursor: pointer;
}
.header-container .brand-logo .container > .btn-show-options > span {
    display: inline-block;
    width: 5px;
    margin:0px 2px;
    height: 15px;
    background-color: var(--black-three-color);
    transform: rotate(-30deg);
    transition: all 1s;
}
.header-container .brand-logo .container > .btn-show-options:hover >span,
.header-container .brand-logo .container > .btn-show-options:focus >span  {
    background-color: var(--white-one-color);
    transform: rotate(30deg);
}



/*
----------------------------
 styling of menus
----------------------------
*/

.navbar-container {
    width: 100%;
    background: rgba(23, 23, 23, .8);
    padding: 20px;
    position: absolute;
    transition: all 1s ease-in-out;
    opacity: 1;
    z-index: 9;
    transform: translateY(0);

}
.navbar-container .container .main-menu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.navbar-container .container {
    position: relative;
}
.navbar-container .container .close-menu {
    position: absolute;
    padding: 10px;
    font-size: 14px;
    left: 15px;
    color: var(--white-four-color);
    border: 1px solid var(--black-three-color);
    bottom: 15px;
    cursor: pointer;

}
.navbar-container .container .logo-menu  {
    display: flex;
    height: 60px;
    align-items: center;
    overflow: hidden;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(46, 46, 46, .5);

}
.navbar-container .container h4 {
    color: var(--black-five-color);
    margin: 0px 20px 0px 0px;
    position: relative;
    font-size: 20px;
}
.navbar-container .container h4::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--black-six-color);
    top: 50%;
    right: -20px;
    position: absolute;
    transform: translate(0, -50%);
}

.navbar-container .container .main-menu > li {
    width: 100%;
    min-width: 100px;
    height: 60px;
    color: var(--white-one-color);
    overflow: hidden;
}
.navbar-container .container .main-menu > li > a {
    font-size: 16px;
    font-weight: 500;
    text-align: start;
    height: 100%;
    line-height: 60px;
    padding: 0px 40px;
    background-color: rgba(46, 46, 46, .6);
    border: 1px solid rgba(46, 46, 46, .5);
    display: block;
    position: relative;
}

.navbar-container .container .main-menu > li > a::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--black-four-color);
    top: 25px;
    right: 15px;
    position: absolute;
}
.show-menu {
    padding: 20px;
    transform: translateY(-100%);
    opacity: 1;
}

/*
----------------------------
 styling of our vison
----------------------------
*/
.boss-section {
    width: 100%;
    height: calc(100vh - 150px);
    background-color: var(--black-one-color);

}
.boss-section .container {
    width: 100%;
    height: 100%;
    background: url(../images/Boss.png);
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: top;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 50px;
}
.boss-section .container h2 {
    font-size: 65px;
    color: var(--white-one-color);
    margin-bottom: 15px;
}
.boss-section .container p {
    font-size: 40px;
    color: var(--white-six-color);
    max-width: 600px;
    text-align:justify;
    line-height: 50px;
}
.boss-section .container p .dot {
    display: inline-block;
    background-color: aliceblue;
    width: 5px;
    height: 5px;
    margin: 0px 10px;
    animation-name: blink;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear ease-in-out;
    animation-direction: alternate;

}
@keyframes blink {
    0%{
        opacity: 0;
        transform: scale(1);
    }
    100%{
        opacity: 1;
        transform: scale(1.5);
    }

}

/*
----------------------------
 styling of statistics section
----------------------------
*/


.our-statistics {
    position: relative;
    background-color: var(--white-two-color);
    min-height: 500px;
    padding-bottom: 100px;
    text-align: center;
}
.our-statistics::before {
    content: '';
    width: 15px;
    height: 15px;
    background-color: var(--white-three-color);
    top: 30px;
    left: 50%;
    transform: translate(-50%,0);
    position: absolute;

}
.our-statistics .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.our-statistics .container > h2 {
    font-size: 60px;
    font-weight: bold;
    color: var(--black-three-color);
    margin-top: 70px;
    margin-bottom: 20px;
}
.our-statistics .container > p {
    font-size: 24px;
    color: var(--black-four-color);
    margin-bottom: 40px;
}
.our-statistics .container > p:last-child {
    margin-bottom: 40px;
}
.our-statistics .container .container-statistic {
    display: grid;
    margin: 0;
    gap: 10px;
    grid-template-columns: repeat(4,1fr);
}
.our-statistics .container .container-statistic .single-statistic {
    width: 100%;
    background-color: rgb(209 209 209 / 50%);
    border: 1px solid var(--white-three-color);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.05) 1.95px 1.95px 2.6px;
    padding: 10px;
}
.our-statistics .container .container-statistic .single-statistic > h3 {
    font-size: 80px;
    color: var(--white-four-color);
    margin-bottom: 0px;
    font-family: 'Blenda',Arial, Helvetica, sans-serif;
}

.our-statistics .container .container-statistic .single-statistic > h5 {
    font-size: 25px;
    margin-bottom: 5px;
}

.our-statistics .container .container-statistic .single-statistic > p {
    font-size: 20px;
}


/*
----------------------------
 styling of Summary of us section
----------------------------
*/


.our-Summary {
    position: relative;
    background-color: var(--black-two-color);
    min-height: 500px;
    padding-bottom: 100px;
    text-align: center;
    overflow: hidden;
}
.our-Summary::before {
    content: '';
    width: 15px;
    height: 15px;
    background-color: var(--white-five-color);
    top: 30px;
    left: 50%;
    transform: translate(-50%,0);
    position: absolute;

}
.our-Summary .container {
    display: flex;
    flex-direction: column;
}
.our-Summary .container > h2 {
    font-size: 60px;
    font-weight: bold;
    color: var(--white-four-color);
    margin-top: 70px;
    margin-bottom: 20px;
}

.our-Summary .container > p {
    font-size: 24px;
    color: var(--black-six-color);
    margin-bottom: 5px;
}
.our-Summary .container > p:nth-child(3) {
    margin-bottom: 50px;
}
.our-Summary .container .container-Summary {
    display: flex;
    flex-direction: column;
}
.our-Summary .container .container-Summary .our-name {
    position: relative;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    padding: 20px;
    margin: 0px 0px 50px 0px;
}

.our-Summary .container .container-Summary .our-name h3 {
    font-size: 35px;
    margin-bottom: 15px;
    color: var(--white-one-color);
}
.our-Summary .container .container-Summary .our-name p {
    font-size: 25px;
    font-weight: lighter;
    color: var(--white-five-color);
}

.our-Summary .container .container-Summary .about-us p {
    text-align: justify;
    color: var(--white-three-color);
    font-size: 35px;
    line-height: 60px;
    margin-bottom: 100px;
    font-weight: lighter;
}
.our-Summary .container .container-Summary .about-us p span {
    position: relative;
    text-decoration: underline solid 2px var(--black-three-color);
    text-underline-offset: 20px;
}
.our-Summary .container .container-Summary button {
    position: relative;
    font-family: 'lyon',Arial, Helvetica, sans-serif;
    background-color: var(--black-three-color);
    border: 1px solid var(--white-six-color);
    color: var(--white-four-color);
    font-size: 20px;
    width: 300px;
    height: 60px;
    cursor: pointer;
    transition: background 1s;

}
.our-Summary .container .container-Summary button::after,
.our-Summary .container .container-Summary button::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white-four-color);
}
.our-Summary .container .container-Summary button::after {
    left: -4.5px;
}
.our-Summary .container .container-Summary button::before {
    right: -4.5px;
}
.our-Summary .container .container-Summary button:hover {
    background-color: var(--black-one-color)
}