*{
    margin: 0;
    padding: 0;
}

header{
    max-width: 1080px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 150px;
    /* margin: 0 auto;*/
    padding: 0 4%;
    position: absolute;
    width: 100%;
    z-index: 7;
    padding-left: 20vw;
}
.logo {
   color: rgb(255, 166, 0);
}

header ul {
    display: flex;
    padding: 10px 0;
    gap: 30px;
}

header li{
    list-style: none;
}

a:hover{
    color: red;
    opacity: 0.7;
}

a{
    text-decoration: none;
    color: blueviolet;
}

.section1{
    background-image: url(images/myanmar-hero.jpg);
    background-position: center bottom;
    background-size: cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
}
.section1 .container{
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    z-index: 2; 
}
.section1 .heading{
    font-size: 16px;
    font-weight: 7oo;
    margin-bottom: 40px;
    color: yellow;
}

.section1 h2{
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
}

.section1 .text{
    font-size: 20px;
    margin-bottom: 40px;
}
.section1 a{
    font-size: 16px;
    font-weight: 700;
    padding: 16px 40px 20px;
    display: inline-block;
    background-color: blueviolet;
    color: aliceblue;
    border-radius: 6px;
    letter-spacing: 2px;
    transition-duration: 0.5s;
}

.section1 a:hover{
    background-color: #2cb67d;
}

video{
    width: 200px;
    height: 500px;
}

/* --------ABOUT----------*/
.main-content{
    flex: 1;
    display: flex;
}

.About-container{
    margin-left: 20%;
}

body{
    background-color: #FFD4FA;
}

.content-box{
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 20px;
}

.video-area video{
    width: 350px;
    height: auto;
    border-radius: 8px;
    margin-top:110px;
}

.title{
    margin-bottom: 15px;
}

.text{
    text-size-adjust: 10px;
    line-height: 2;
}

.text-area{
    color: #555;
    margin-top:210px;
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
}

/* ----Information-------- */
.info-container{
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.info-block {
    margin-bottom: 40px;
    text-align: center;
}

.info-block img{
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

.map iframe{
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
}

.info-block p {
     margin-top: 10px;
     font-size: 16px;
     color: #2cb67d;
}

/* ------Information-------- */
.section2 {
    padding-top: 150px;
    padding-bottom: 80px;
}

.section2 .container {
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
}

.section2 .row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

/*ーーーーー Give the text and image equal width ーーー*/
.section2 .col {
    flex: 1;
}


.section2 h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

/*------text----*/
.section2 .text {
    font-size: 16px;
    color: #555;
}

/*-------- image------- */
.section2 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* contact */
html,body{
    height: 100%;
    margin: 0;
}
body{
    display: flex;
    flex-direction: column;

}

.section3{
    flex: 1;
    padding-top: 150px;
}


.section3 .container{
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
}

.section3 h3{
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    color: cadetblue;
}

.section3 form {
   max-width: 540px;
   margin: 0 auto; 
}

.section3 label{
    display: block;
    margin-bottom: 16px;
    font-weight: 400;
}

.section3 input , .section3 textarea { 
    background-color: #fff;
    display: block;
    width: 90%;
    padding: 13px 16px;
    margin-bottom: 30px;
}

.section3 input[type=submit]{
    text-align: center;
    background-color: #7f5af0;
    color: #fff;
    font-weight: 400;
    margin-left: 20px;
    padding: 20px 16px 22px;
    letter-spacing: 7px;
    border-radius: 15px;
    transition-duration: 0.2s;

}
.section3 input[type=submit]:hover {
    background-color: #2cb67d;
}

.footer{
    padding:7px 0 7px;
    text-align: center;
    background-color: #333;
    color: #fff;
}

.footer .copyright{
    font-size: 16px;  
}

