
*{
    padding: 0;
    margin: 0;
}

/* .scroll-up
{
    width: 100%;
    height: 300vh;
    background: url(scroll-up1.png) no-repeat;
    background-size: cover;
} */
.wrapper
{
    width: 1300px;
    margin:0 auto;
}
header {
	height: 100px;
	background: #180657;
	width: 100%;
    z-index: 10;
	position: fixed;
}
.logo
{
    width: 30%;
    float: left;
	line-height: 100px;
}
.logo a {
	text-decoration: none;
	font-size: 30px;
	font-family: poppins;
	color: #fff;
	letter-spacing: 5px;
    font-family: 'Dancing Script', cursive;
}
nav {
	float: right;
	line-height: 100px;
}
nav a {
	text-decoration: none;
	font-family: poppins;
	letter-spacing: 4px;
	font-size: 20px;
	margin: 0 10px;
	color: #fff;
}
#banner /*1st pic-home*/
{
    background: url(lighthouse.PNG)no-repeat;
    background-size: cover;
    width: 100%;
	height: 700px;
}
.top-underline
{
    /* padding-top: 3px;
    color: #009688; */
    border-bottom: 1px solid #009688;
    font-weight: 3px;
}
.top-underline:hover
{
    color: #009688;
}
.welcome
{
    width:100%;
    padding: 70px 0;
    /* padding-bottom: 100px; */
}
.welcome-heading
{
    text-align: center;
    padding-top: 100px;
    padding-bottom: 20px;
}
h1
{
    font-family: poppins;
    /* padding-top: 50px; */
    font-size: 50px;
    text-align: center; 
    padding-bottom: 10px;
}


.welcome-box
{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* text-align: center; */
}
.welcome-box-inner
{
     flex-basis: 60%; 
    /* display: inline-block;
    width: 70%;
    float: left; */
}
.welcome-box-inner p
{
    font-size: 20px;
    width: 640px;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.welcome-pic
{
    flex-basis: 40%;
    margin: auto; 
    text-align: right;
}
.welcome-pic img
{
    width: 100%;
    border-radius: 10px;
    height: 450px;
}

/*Places to visit*/
.places-box
{
    width: 100%;
    padding: 90px 0;
    background: #efefef;
}
.places-title
{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
.places-box-inner
{
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}
.place-name
{
    flex-basis: 48%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
}
.place-name a img
{
    width: 100%;
    height: 300px;
    border-radius: 7px;
}
.overlay
{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 7px;
    cursor: pointer;
    background: linear-gradient(rgba(0,0,0,0.5),#180657);
    opacity: 0;
    transition: 1s;
}
.place-name:hover .overlay
{
    opacity: 1;
}
.places-desc
{
    width: 80%;
    position: absolute;
    bottom: 0;
    opacity: 0;
    left: 50%;
    transform: translate(-50%);
    transition: 1s;
    color: white;
}
h3
{
    font-size: 25px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.places-desc-names
{
    font-size: 18px;
}
hr
{
    background: #fff;
    height: 2px;
    border: 0;
    margin: 15px auto;
    width: 60%;
}

/* .place-name p
{
    font-size: 14px;
} */
.place-name:hover .places-desc
{
    bottom: 40%;
    opacity: 1;
}
@media screen and (max-width: 770px)
{
    .place-name
    {
        flex-basis: 12px;
        margin-bottom: 30px;
    }
    .places-desc p
    {
        font-size: 12px;
    }
    hr
    {
        margin: 5px auto;
    }
    .place-name:hover .places-desc
    {
        bottom: 25% !important;
    }
} 


/* scroll up btn */
.gotop
{
    position: fixed;
    width: 50px;
    height: 50px;
    background: #18065717;
    bottom: 40px;
    right: 50px;

    text-decoration: none;
    text-align: center;
    line-height: 50px;
    font-size:30px;
    color: #180657;
}
/* .gotop img
{
    width: 50px;
    height: 50px;
} */
html
{
    scroll-behavior: smooth;
}


/* testimonials */
#testimonial
{
    width: 100%;
    padding: 90px 0;
}
.testimonial-row
{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.testimonial-col
{
    flex-basis: 28%;
    padding: 10px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 10px 20px 3px #00968814;
    cursor: pointer;
    transition: transform 0.5s;
}
.testimonial-col p
{
    font-size: 14px;
}
/* u
{
    background: rgb(3, 3, 3);
    height: 2px;
    border: 0;
    margin: 15px auto;
    width: 60%;
} */
.user
{
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.user img
{
    width: 40px;
    margin-right: 20px;
    border-radius: 3px;
}
.twitter-icon
{
    margin-left: 10px;
    height: 15px;
    width: 0.5px;
    color: #27c0ff;
}
.user-info small
{
    color: #009688;
}
.testimonial-col:hover
{
    transform: translateY(-7px);
}
@media screen and (max-width: 770px)
{
    .testimonial-col
    {
        flex-basis: 100%;
    }
}


/* footer */
#footer
{
    padding: 100px 0 20px;
    background: #efefef;
    position: relative;
}
.footer-row
{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-left,.footer-right
{
    flex-basis: 45%;
    padding: 10px;
    margin-bottom: 20px;
}
.footer-right
{
    text-align: right;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}
.footer-row h1
{
    margin: 10px 0;
    font-size: 30px;
}
.footer-row h1
{
    margin: 10px 0;
}
.footer-row p
{
    line-height: 35px;
}
.footer-img
{
    max-width: 370px;
    opacity: 0.1;
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%,-50%);
}
.social-links
{
    text-align: center;
}

.social-links p
{
    font-size: 12px;
    margin-top: 20px;
} 

.baseline p
{
    font-size: 25px;
    padding-bottom: 7px;
    padding-left: 5px;
    color: #180657;
}
.feedback
{
    width: 60%;
    height: 25px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
    padding-bottom: 15px;
   

}
      textarea {
        width: 60%;
        height: 150px;
        padding: 12px 20px;
        box-sizing: border-box;
        border: 2px solid #ccc;
        border-radius: 4px;
        background-color: #f8f8f8;
        font-size: 16px;
        resize: none;
         /* color: #ab97f3; */
        font-family: Arial, Helvetica, sans-serif;
      }

      .button
      {
        padding-top: 13px;
        padding-left: 2px;
      }
      .button-submit
      {
        background-color: #180657;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        padding-top: 10px;
        text-decoration: none;
      }



@media screen and (max-width: 770px)
{
    .footer-left,.footer-right
    {
        flex-basis: 100%;
        font-size: 14px;
    }
    .footer-img
    {
        top: 25%;
    }
}
.social-links
{
    text-align: center;
}
.social-links i 
{
    height: 40px;
    width: 40px;
    font-size: 20px;
    line-height: 40px;
    border: 1px solid #180657;
    margin: 40px 5px 0;
    color: #180657;
    cursor: pointer;
    transition: 0.5s;
}
.social-links i:hover
{
    background: #180657;
    color: #fff;
    transform: translateY(-7px);
}