* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    background-color: #ecf0f1;
}

/* Basic */

.clearfix::after {
    content: "";
    clear: both;
    display: block;
}
a {
    color:  white;
    text-decoration: none;
    text-align: center;
}
/* Header */

.header {
    background-color: #27ae60;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
}
.header .logo {
    float: left;
    width: 40%;
}
.header .logo img {
    display: inline-block;
    margin: 7px 0 0 20px;
    width: 40px;
    height: 40px;
    transition: .3s;
}
.header .logo img:hover {
    transform: scale(1.2);
}
.header .logo h2 {
    display: inline-block;
    color: white;
    position: relative;
    top: -8px;
    left: 15px;
    font-size: 27px;
    cursor:pointer;
    transition: .3s;
}
.header .logo h2:hover {
    transform: scale(1.1);
}
.header .menu {
    float: right;
    width: 60%;
}
.header .menu ul {
    text-align: right;
}
.header .menu ul li {
    display: inline-block;
    margin-left: -4px;
}
.header .menu ul li:nth-child(3) {
    position: relative;
}
.header .menu ul li:last-child {
    margin-right: 20px;
}
.header .menu ul li a {
    display: inline-block;
    font-size: 18px;
    padding: 15px;
    transition: .4s;
}
.header .menu ul li:hover > a{
    background-color: #158142;
}
.header .menu ul li i {
    transition: .3s;
}
.header .menu ul li:nth-child(3):hover i {
    transform: rotate(-90deg);
}
.header .menu ul li ul {
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #27ae60;
    box-shadow: 1px 5px 15px 0 rgba(0, 0, 0, 0.3);
    transition: .4s;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top center;
}
.header .menu ul li ul li {
    display: block;
    margin: 0;
}
.header .menu ul li ul li:last-child {
    margin: 0;
}
.header .menu ul li ul li a {
    display: block;
}
.header .menu ul li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

/* Banner */

.banner {
    background-image: linear-gradient(rgba(0, 0, 0, .4),rgba(0, 0, 0, .8)), url(../img/banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 600px;
}
.banner h1 {
    position: relative;
    top: 30px;
    left: 0;
    color: white;
    font-size: 80px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    z-index: 1;
}
.banner h1:hover {
    transform: scale(1.1);
}
.banner .misa-kotha {
    position: relative;
    top: 40px;
    left: 0;
    color:  white;
    font-size: 30px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    z-index: 1;
}
.banner .misa-kotha:hover {
    transform: scale(1.1);
}
.banner .contact {
    display: block;
    text-align: center;
    margin: 220px 0 0 0;
}

.banner .ct {
    display: inline-block;
    color: white;
    font-size: 25px;
    padding: 5px 10px;
    background-color: #27ae60;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    z-index: 1;
}
.banner .ct::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    opacity: 0;
    visibility: hidden;
    background-color: #085829;
    border-radius: 5px;
    z-index: -1;
    transition: .4s;
}
.banner .ct:hover::after {
    width: 100%;
    opacity: 1;
    visibility: visible;
}
.banner ul {
    display: inline-block;
    margin-left: 20px;
}
.banner ul li {
    display: inline-block;
    margin: 0 5px;
}
.banner ul li a {
    font-size: 30px;
    color: white;
    transition: .2s;
}
.banner ul li a:hover {
    color: #27ae60;
}

/* Container */

.container {
    overflow: hidden;
    padding-top: 50px;
}
.container .content h2 {
    display: inline-block;
    font-size: 25px;
    padding: 4px 20px;
    color: white;
    background-color: #27ae60;
    width: 100%;
    cursor: pointer;
}
.container .content {
    float: left;
    width: 67%;
    box-sizing: border-box;
    margin: 10px 10px 0 10px;
}
.container .content p{
    font-size: 20px;
    text-align: justify;
    padding: 10px;
    margin: 0 0 30px 0;
}
.container .content img {
    display: inline-block;
    width: 180px;
    margin: 10px 20px;
}
.container .content .p-text {
    display: inline-block;
    width: 75%;
    position: relative;
    top: -75px;
    left: 0;
    z-index: -1;
}
.container .content .p-name {
    position: relative;
    top: -45px;
    left: 0;
    z-index: -1;
}
.container .notice {
    float: left;
    width: 30%;
    box-sizing: border-box;
    margin: 10px 0 0 10px;
}
.container .notice h2 {
    display: inline-block;
    text-align: center;
    font-size: 25px;
    padding: 4px 20px;
    color: white;
    background-color: #27ae60;
    width: 100%;
    cursor: pointer;
}
.container .notice ul {
    list-style-type: square;
    margin: 10px 0 30px 30px;
}
.container .notice ul li{
    padding: 5px 0;
}
.container .notice ul li .date {
    font-size: 12px;
    padding-left: 5px;
    color: grey;
}
.container .notice ul li a {
    color: black;
    font-size: 18px;
    text-decoration: underline;   
}
.container .notice ul li:hover > a{
    color: #1d8649;
}

/* Contact and Map */

#contact {
    transition: 0.5s;
}
.bottom {
    overflow: hidden;
    margin: 0 0 20px 0;
}
.bottom .contact {
    float: left;
    width: 50%;
    text-align: center;
}
.bottom .contact h2 {
    text-align: center;
    font-size: 30px;
    color: #27ae60;
}
.bottom .contact .name, .email {
    display: block;
    margin: 20px auto;
    font-size: 20px;
    padding: 5px;
    width: 500px;
    border: none;
    border-bottom: 2px solid transparent;
    transition: .3s;
    transform-origin: center left;
    
}
.bottom .contact .name:hover, .bottom .contact .email:hover {
    border-bottom: 2px solid #27ae60;
}
.bottom .contact .name:focus, .bottom .contact .email:focus {
    border-bottom: 2px solid #27ae60;
}
.bottom .contact textarea {
    width: 500px;
    padding: 10px;
    font-size: 20px;
    line-height: 30px;
    resize: none;
    border: 2px solid transparent;
    transition: .3s;
}
.bottom .contact textarea:hover {
    border: 2px solid #27ae60;
}
.bottom .contact textarea:focus {
    border: 2px solid #27ae60;
}
.bottom .contact .submit {
    display: block;
    margin: 20px auto;
    font-size: 20px;
    padding: 5px;
    width: 500px;
    border-radius: 5px;
    color: #27ae60;
    background-color: white;
    border: 2px solid #27ae60;
    
    transition: .3s;
}
.bottom .contact .submit:hover {
    cursor: pointer;
    color: white;
    background-color: #27ae60;
}
.bottom .contact .name:focus, .bottom .contact .email:focus, .bottom .contact textarea:focus {
    outline: none;
}
.bottom .map {
    float: right;
    width:  50%;
}
.bottom .map h2 {
    text-align: center;
    font-size: 30px;
    color: #27ae60;
    margin: 0 0 20px 0;
}
.bottom .map iframe {
    display: inline-block;
    margin: 0 10px 0 80px ;
}

/* Footer */

.footer {
    display: block;
    width: 100%;
    height: 50px;
    background-color: #27ae60;
    text-align: center;
}
.footer p {
    color: white;
    font-size: 20px;
    padding: 10px;
    cursor: default;
}
.footer a {
    color: darkred;
    font-weight: 550;
}

/* The End */