

@import url("https://fonts.googleapis.com/css?family=Montserrat");

.menu {
    height: 55px;
    width: 50px;
    position: relative;
    top: 27px;
    left: 52px;
    transform: translate(-50%, -50%);
}

.menu:hover {
    cursor: pointer;
}

.hambergerIcon {
    height: 3px;
    width: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50px;
    background-color: #000;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: all ease 0.5s;
}

.hambergerIcon::before,
.hambergerIcon::after {
    content: "";
    position: absolute;
    height: inherit;
    border-radius: inherit;
    background-color: inherit;
    margin: auto;
    width: 50%;
    transition: all ease 0.5s;
}

.hambergerIcon::before {
    top: -7px;
    left: 0;
    transform-origin: left;
}

.hambergerIcon::after {
    bottom: -7px;
    right: 0;
    transform-origin: right;
}

.open {
    transform: translate(-50%, -50%) rotate(135deg);
}

.open::before {
    top: 0;
    transform: translateX(100%) rotate(-90deg);
}

.open::after {
    bottom: 0;
    transform: translateX(-100%) rotate(-90deg);
}











.menu{
    display: none;
}













header {
    padding-top: 15px;
    background: #000;
    height: auto;
    background-image: url(../imges/Vector\ \(6\).png);
    background-repeat: no-repeat;
    background-size: 15%;
    padding-bottom: 300px;
    z-index: 1;
    min-height: 600px;
    position: relative;
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 33%;
    height: 64%;
    background-position: left bottom;
    left: 0;
    background-repeat: no-repeat;
    z-index: -1;
    background-size: contain;
    background-image: url(../imges/Group\ 1000000760.png);
}

.subheader {
    padding-top: 155px;
}


.logo-menu,
.icon-menu {
    display: none;
}

.bg-div-mune {
    height: 100vh;
    background-color: #000;
    opacity: .5;
    position: fixed;
    top: 0;
    transform: translateX(-100%);
    right: 0;
    z-index: 888;
    transition: all .3s linear;
    width: 100%;
}

.bg-div-mune.active {
    transform: translateX(0%);
}




.element {

    display: flex;
    justify-content: end;
    align-items: center;
    gap: 12px;

}




.element ul {
    text-decoration: none;
    font-size: 18px;
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 6px;
}

.element ul li {
    display: block;
}
.element ul li a {
    transition: all .3s linear;
}
.element a:hover {
    color: #E2B12B
}


.element ul li a {
    font-weight: "400";
    font-size: 18px;
}



.btn a {
    border: 1px solid #fff;
    width: 154px;
    height: 45px;
    border-radius: 42px;
    border: 1px solid #CAAB66;
    background: #CAAB66;
    color: #fff;
    transition: all .3s linear;
}



.btn a :hover{
    background-color: transparent;
    border-color: #CAAB66;
    color:#CAAB66 ;
}


.top-par {
    background-color: #fff;
    border-radius: 50px;
    padding: 10px 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 155px;
    margin-right: 16px;
}

.logo img {
    border-radius: 30px;
}

.text-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    text-shadow: rgba(191, 191, 191, 1) 14px -15px 91px;
}

.text-header h1 {
    font-size: 54px;
    font-family: "font_bold";
    width: 100%;
    color: #fff;
    text-align: center;
}


/* .img-header {
    position: relative;
    width: 44%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 100px;
} */

.img-header img {
    max-width: 85%;
}

.btns {
    display: none;
}

.stand-img {
    position: absolute;
    right: 0;
    bottom: -108px;
}

.stand-img img {
    max-width: 62%;
}













.btn-toggle {
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    padding: 12px;
    background-color: transparent;
    border-color: transparent;
    outline: none;
    transform: translateZ(0);
    transition: transform 0.1s ease-out;
}

.btn-toggle:active {
    transform: translateY(4px);
}

.btn-toggle:focus .line:after {
    background-color: black;
}

.line {
    display: block;
    width: 60px;
    padding: 3.75px;
}

.line:after {
    content: "";
    display: block;
    width: 100%;
    height: 7.5px;
    background-color: dimgray;
    border-radius: 2px;
    transform: translateZ(0) rotate(0);
    transition: background-color 0.2s ease-out;
}

.open .line:nth-child(1) {
    -webkit-animation: jump-1 0.9s forwards ease;
    animation: jump-1 0.9s forwards ease;
}

.open .line:nth-child(1):after {
    -webkit-animation: line-1 0.9s forwards ease-in-out;
    animation: line-1 0.9s forwards ease-in-out;
}

.open .line:nth-child(2) {
    -webkit-animation: jump-2 0.9s forwards ease;
    animation: jump-2 0.9s forwards ease;
}

.open .line:nth-child(2):after {
    -webkit-animation: line-2 0.9s forwards ease-in-out;
    animation: line-2 0.9s forwards ease-in-out;
}

.close .line:nth-child(1) {
    animation: jump-1 0.9s reverse ease;
}

.close .line:nth-child(1):after {
    animation: line-1 0.9s reverse ease-in-out;
}

.close .line:nth-child(2) {
    animation: jump-2 0.9s reverse ease;
}

.close .line:nth-child(2):after {
    animation: line-2 0.9s reverse ease-in-out;
}

.open .line:nth-child(3),
.close .line:nth-child(3) {
    -webkit-animation: jump-3 0.9s forwards ease-out;
    animation: jump-3 0.9s forwards ease-out;
}

@-webkit-keyframes line-1 {
    10% {
        transform: translateZ(0) rotate(0);
    }

    80% {
        transform: translateZ(0) rotate(395deg);
    }

    90%,
    100% {
        transform: translateZ(0) rotate(405deg);
    }
}

@keyframes line-1 {
    10% {
        transform: translateZ(0) rotate(0);
    }

    80% {
        transform: translateZ(0) rotate(395deg);
    }

    90%,
    100% {
        transform: translateZ(0) rotate(405deg);
    }
}

@-webkit-keyframes line-2 {
    10% {
        transform: translateZ(0) rotate(0);
    }

    20% {
        transform: translateZ(0) rotate(10deg);
    }

    90%,
    100% {
        transform: translateZ(0) rotate(-405deg);
    }
}

@keyframes line-2 {
    10% {
        transform: translateZ(0) rotate(0);
    }

    20% {
        transform: translateZ(0) rotate(10deg);
    }

    90%,
    100% {
        transform: translateZ(0) rotate(-405deg);
    }
}

@-webkit-keyframes jump-1 {
    10% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-90px);
    }

    90%,
    100% {
        transform: translateY(-7.5px);
    }
}

@keyframes jump-1 {
    10% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-90px);
    }

    90%,
    100% {
        transform: translateY(-7.5px);
    }
}

@-webkit-keyframes jump-2 {
    10% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-75px);
    }

    85%,
    100% {
        transform: translateY(-22.5px);
    }
}

@keyframes jump-2 {
    10% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-75px);
    }

    85%,
    100% {
        transform: translateY(-22.5px);
    }
}

@-webkit-keyframes jump-3 {
    10% {
        transform: translateY(-7.5px) rotate(15deg);
    }

    30% {
        transform: translateY(-30px) rotate(-10deg);
    }

    50% {
        transform: translateY(7.5px) rotate(5deg);
    }

    80% {
        transform: translateY(0);
    }
}

@keyframes jump-3 {
    10% {
        transform: translateY(-7.5px) rotate(15deg);
    }

    30% {
        transform: translateY(-30px) rotate(-10deg);
    }

    50% {
        transform: translateY(7.5px) rotate(5deg);
    }

    80% {
        transform: translateY(0);
    }
}

@-webkit-keyframes glow {
    50% {
        box-shadow: rgba(131, 131, 131, 0.4) 0 0 2px 2px;
    }
}

@keyframes glow {
    50% {
        box-shadow: rgba(131, 131, 131, 0.4) 0 0 2px 2px;
    }
}



/* start new style :) */



.img-header img {
    max-width: 100%;
    object-fit: contain;
    max-height: 100%;
}

.img-header {
    position: absolute;
    width: 48%;
    height: 530px;
    right: 0%;
    pointer-events: none;
    bottom: -15%;
}


.btn a {
    border: 1px solid #fff;
    width: 154px;
    height: 45px;
    border-radius: 42px;
    border: 1px solid #CAAB66;
    background: #CAAB66;
    color: #fff;
    transition: all .3s linear;
    justify-content: center;
    align-items: center;
    display: flex;
}
