body {
    height: 100%; 
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    
    font-size: 15px;
    line-height: 1.6;
    color: #333;  
}

h1 {
    margin: 0;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;    
}

.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: url("wf.png") center;
    background-repeat: no-repeat;
    background-size: cover;   
}

.intro_inner {
    width: 100%;
    min-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.intro__title {
    color: white;
    font-size: 150px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.intro__title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 60px auto;

    background-color: #fff;
}

.intro__suptitle {
    margin-bottom: 20px;
    font-family: 'Kaushan Script', cursive;
    font-size: 72px;
    color: #fff;
}

.header {
    width: 100%;
    padding-top: 30px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.nav {
    font-size: 14px;
    text-transform: uppercase;
}

.nav__link {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px;
    position: relative;

    color: white;
    text-decoration: none;

    transition: color .1s linear;
}

.nav__link:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;

    background-color: white;
    opacity: 0;

    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;

    transition: opacity .1s linear;
}

.nav__link:hover {
    color: #fff;
}

.nav__link:hover:after {
    opacity: 1;
}
 
.container_img {
    margin-left: 200px;
    margin-top: 120px;
    height: 100%;
}
  
.section {
    font-family: 'Montserrat', sans-serif;
    font-size: medium;
    color: black;
    display: flex;
    width: 80%; 
    margin-top: 120px;
    margin: 15px 0;
}
  
.image {
    margin-right: 20px; 
}
  
.rectangle {
    background-color: white; 
    height: 150px;
    border-radius: 10px;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    height: 100vh;
}

.rectangle_1 {
    display: flex;
    flex-direction: column;
    width: 1400px;
    height: 800px;
    background-color: white;
    margin-bottom: 10px;
    border-radius: 10px;
}

.rectangle_top {
    margin-top: 130px;
    margin-bottom: auto;
}

.image img {
    width: 250px; 
    height: auto;
}

.text {
    margin-right: 100px;
    margin-left: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}
  
.text button {
    padding: 10px 20px;
    font-size: 16px;
}

.btn {
    display: inline-block;
    vertical-align: top;
    padding: 8px 30px;
    margin-top: 15px;

    border: 3px solid white;

    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    text-decoration: none;

    transition: background .1s
    linear, color .1s linear
}

.btn:hover {
    background-color: grey;
    color: white;
}

.text_a {
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    margin-left: 20px;
    font-family: 'Montserrat', sans-serif;
    color: black;
    font-size: 20px;
}

.rectangle_a {
    background-color: white; 
    height: 400px;
    border-radius: 10px;
}

.textmore {
    margin-top: 30px;
    margin-left: 25px;
    margin-right: 25px;
    font-family: 'Montserrat', sans-serif;
}

.row {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; 
}

.row img {
    max-width: 30%;
    height: auto;
    margin-right: 20px; 
}