* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
list-style-type: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    height: 2000px;
}

.WM_GLOBAL_heading44 {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 0.3em;
}

.logo_ {
    height: 115px;
}

.t_t {
    color: rgb(49, 44, 43);
    font-weight: 700;
  font-size: 107px;
  text-align: center;
  margin-top: 125px;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: gray;
    padding-right: 130px;
    padding-left: 130px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.menu.scrolled {
    background: rgb(255, 252, 244);
    z-index: 9;
}

.menu .logo {
    font-size: 1.5em;
    font-weight: bold;
}

.menu-links {
    display: flex;
    gap: 20px;
}

.menu-links a {
    color: gray;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 8px;
}

.menu-links a:hover {
    color: #ccc;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.aaa {
	background: linear-gradient(rgba(255, 252, 244, 0.2), rgba(255, 252, 244, 0.2)), url("../img/11.jpg") center center / cover no-repeat;
	height: 100vh;
	min-height: calc(-50px + 100vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttoon1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px;
}

.buttoon {
	width: 238px;
	font-size: 15px;
	margin-top: 20px;
    margin-right: 12px;
    margin-left: 12px;
	border-radius: 50px;
	white-space: nowrap;
	color: rgb(239, 232, 215);
	background-color: rgba(0, 0, 0, 0);
	background-position: 0% 0%;
	background-attachment: scroll;
	background-image: linear-gradient(-180deg, rgb(146, 123, 119) 0%, rgb(105, 84, 80) 96%);
	background-size: auto;
	background-origin: padding-box;
	background-clip: border-box;
	box-shadow: rgba(105, 84, 80, 0.5) 0px 4px 10px 0px;
	padding: 15px 25px;
}

.buttoon2 {
	margin-top: 20px;
	border-radius: 50px;
	white-space: nowrap;
	color: rgb(71, 59, 57);
	background-color: rgba(0, 0, 0, 0);
	background-position: 0% 0%;
	background-attachment: scroll;
	background-image: linear-gradient(-180deg, rgb(255, 252, 244) 0%, rgb(250, 245, 234) 96%);
	background-size: auto;
	background-origin: padding-box;
	background-clip: border-box;
	box-shadow: rgba(146, 123, 119, 0.3) 0px 4px 10px 0px;
	width: 238px;
	padding: 0px 40px;
	overflow: hidden;
	text-overflow: ellipsis;
	box-sizing: border-box;
	text-align: center;
	height: 50px;
	line-height: 50px;
	cursor: pointer;
	text-decoration: none !important;
	font-weight: 400;
	background-repeat: no-repeat !important;
	font-size: 14px;
	display: block;
	font-weight: bold;
}

@media only screen and (max-width: 140px) {
  .aaa {
    background: linear-gradient(rgba(255, 252, 244, 0.2), rgba(255, 252, 244, 0.2)), url("../img/11.jpg") center center / cover no-repeat;
  }

    .t_t {
        color: rgb(49, 44, 43);
        font-weight: 700;
        padding: 0px;
    }
}

@media only screen and (max-width: 1200px) {
    .menu {
		padding-right: 40px;
		padding-left: 40px;
    }

    .logo_ {
        height: 95px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .t_t {
        color: rgb(49, 44, 43);
        font-weight: 700;
        padding: 0px;
    font-size: 65px;
	  margin-top: 115px;
    }
	
	.buttoon {
		margin-top: 100px;
	}
}

@media (max-width: 1200px) {
    .menu-links {
        position: fixed;
        top: 141px;
        left: 0;
        width: 100%;
        background-color: rgb(255, 252, 244);;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
        clip-path: circle(0px at 90% -10%);
        transition: all 0.5s ease-out;
    }

    .menu-links.active {
        clip-path: circle(1000px at 90% -10%);
    }

    .menu-links li {
        opacity: 0;
        animation: fadeIn 0.3s ease forwards;
    }

    .buttoon1 {
        flex-direction: column;
        margin-top:95px;
    }

    .buttoon {
        width: 225px;
        font-size: 15px;
        margin-top:15px;
    }

    .menu-links li:nth-child(1) { animation-delay: 0.3s; }
    .menu-links li:nth-child(2) { animation-delay: 0.6s; }
    .menu-links li:nth-child(3) { animation-delay: 0.9s; }
    .menu-links li:nth-child(4) { animation-delay: 1.2s; }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateX(-50px); }
        to { opacity: 1; transform: translateX(0); }
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: gray;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}