*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    text-decoration: none;
}
body{
    background: #f1f1fa;
}

.container{
    width: 100%;
    min-height: 100vh;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
    overflow: hidden;
    
}

.navbar{
    width: 100%;
    display: flex;
    align-items: center;
}

.logo{
    width: 100px;
    cursor: pointer;
    align-items: center;
}

.menu-icon{
    width: 55px;
    cursor: pointer;
    display: none;
}

nav{
    flex: 1;
    text-align: center;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin-right: 30px;
}

nav ul li a {
   text-decoration: none;
   color: #0691ab;
   font-size: 18px;
}

nav ul li a:hover {
    color: #dabb4e;
 }

 .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px 0;
    margin-top: -1px;
 }

 .col-1{
    flex-basis: 40%;
    position: relative;
    margin-left: 50px;
}

.col-1 h2{
    font-size: 38px;
    color: #dabb4e;
}
.col-1 p{
    font-size: 18px;
    color: #0691ab;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
}
button{
    width: 140px;
    border: 0;
    padding: 12px 10px;
    outline: none;
    color: #fff;
    background: linear-gradient(to right,#0691ab, #dabb4e);
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: width 0.5s;
}

button img {
    width: 30px;
    display: none;
   
}

button:hover img {
    display: block;
}
button:hover{
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.col-1::after{
    content: '';
    width: 10px;
    height: 57%;
    background: linear-gradient(#0691ab, #dabb4e);
    position: absolute;
    left: -40px;
    top: 8px;
}

.col-2{
    position: relative;
    flex-basis: 60%;
    display: flex;
    align-items: center;
}

.col-2 .banners{
    width: 90%;
    border-radius: 30%;
}

.color-box{
    position: absolute;
    right: 0;
    top: 0;
    background: (#0691ab, #dabb4e);
    border-radius: 20px 0 0 20px;
    height: 100%;
    width: 80%;
    z-index: -1;
    transform: translateX(150px);
}

@media only screen and (max-width:700px) {
    nav ul {
        width: 100%;
        background: linear-gradient(#0691ab, #dabb4e);
        position: absolute;
        top: 75px;
        right: 0;
        z-index: 2;
    }
    nav ul li {
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    nav ul li a{
        color: #fff;
    }
    .menu-icon{
        display: block;
    }
    #menuList{
        overflow: hidden;
        transition: 0.5s;
    }
    .row{
        flex-direction: column-reverse;
        margin: 50px 0;
        margin-top: -15px;
    }
    .col-2{
        flex-basis: 100%;
        margin-bottom: 50px;
    }

    .col-2 .banners{
        width: 77%;
    }
    .color-box{
        transform: translateX(75px);
    }
    .col-1{
        flex-basis: 100%;
    }
    .col-1 h2{
        font-size: 35px;
    }

    .col-1 p{
        font-size: 20px;
    }

}

.heading{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}

.heading h2{
    font-size: 50px;
    color: #000;
    margin-bottom: 25px;
    position: relative;
}

.heading h2::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background:  #0691ab;
}
.heading p{
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.container-about{
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;   
}

.about-image{
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
}

.about-image img{
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.5s ease;
    border-radius: 20px;
}

.about-content{
    flex: 1;
}

.accordion{
    margin: 60px auto;
    width: 600px;
}

.accordion li{
    list-style: none;
    width: 100%;
    margin: 20px;
    padding: 10px;
    border-radius: 8px;
    background: #e3edf7;
    box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), 
                6px 6px 10px -1px rgba(255, 255, 255, 0.7);
}

.accordion li label {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

label::before {
    content: '>>';
    margin-right: 10px;
    font-size: 20px;
    font-weight: 600;
}

input[type="radio"]{
    display: none;
}
.accordion .content-accordion{
    color: #555;
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}
.accordion input[type="radio"]:checked + label + .content-accordion{
    max-height: 1500px;
    padding: 10px 10px 20px;
}

.accordion input[type="radio"]:checked + label::before{
    content: '--';
}

.about-content .read-more{
    width: 30%;
    text-align: center;
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(#0691ab, #dabb4e);
    color: #f1f1fa;
    font-size: 19px;  
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
}


@media screen and (max-width:768px) {
    .heading{
        padding: 0px 20px;
    }
    .heading h2{
        font-size: 30px;
    }
    .heading p{
        font-size: 14px;
        margin-bottom: 0px;
    }
    .container-about{
        padding: 0px;
    }

    .about{
        flex-direction: column;
    }
    .about-image{
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .about-content .accordion{
        width: 300px;
        margin-left: -80px;
    }  
    
    .accordion input[type="radio"]:checked + label + .content-accordion{
        max-height: 4100px;
        padding: 10px 10px 20px;
    }
}

.wrapper{
    display: flex;
    max-width: 95%;
    position: relative;
    margin-left: 25px;
  }
  .wrapper i{
    top: 50%;
    height: 44px;
    width: 44px;
    color: #fFF;
    cursor: pointer;
    font-size: 1.15rem;
    position: absolute;
    text-align: center;
    line-height: 44px;
    background: #05555c;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.1s linear;
  }
  .wrapper i:active{
    transform: translateY(-50%) scale(0.9);
  }

  .wrapper i:first-child{
    left: -22px;
    display: none;
  }
  .wrapper i:last-child{
    right: -22px;
  }
  .wrapper .carousel{
    font-size: 0px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
  }
  .carousel.dragging{
    cursor: grab;
    scroll-behavior: auto;
  }
  .carousel.dragging img{
    pointer-events: none;
  }
  .carousel img{
    height: 340px;
    object-fit: cover;
    user-select: none;
    margin-left: 14px;
    width: calc(100% / 5);
    border-radius: 15px;
  }
  .carousel img:first-child{
    margin-left: 0px;
  }
  @media screen and (max-width: 900px) {
    .carousel img{
      width: calc(100% / 2);
    }
  }
  @media screen and (max-width: 550px) {
    .carousel img{
      width: 100%;
    }
  }


/*   *** Contact Section Styling Starts ***   */
.contact-form{
	width: 80%;
	padding: 70px 8% 50px;
    
}
.contact-form .contact-row{
	width: 100%;
	display: flex;

}
.contact-row .column-1{
	flex-basis: 40%;
	min-width: 320px;
	padding: 50px;
}
.contact-row .column-2{
	flex-basis: 60%;
}
.column-1 .contactTitle h2{
	position: relative;
	font-size: 36px;
	color: #05555c;
	display: inline-block;
	margin-bottom: 25px;
}
.column-1 .contactTitle h2::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	top: 120%;
	left: 0px;
	background-color: #277b6d;
}
.column-1 .contactTitle h2::after{
	content: '';
	position: absolute;
	width: 40%;
	height: 3px;
	top: calc(120% - 1px);
	left: 0px;
	background-color: #05555c;
}
.column-1 .contactTitle p{
	font-size: 15px;
	color: #3f7277;
	letter-spacing: 1px;
	line-height: 1.2;
	padding-bottom: 20px;
}
.column-1 .form-1 .inputGroup{
	position: relative;
	margin: 40px 0px;
}
.column-1 .form-1 input{
	width: 100%;
	font-size: 18px;
	padding: 2px 0px;
	background-color: #f6f9fe;
	color: #05555c;
	border: none;
	border-bottom: 1px solid  #3f7277;
	outline: none;
}
.column-1 .form-1 p,
.column-2 .form-2 p{
	position: absolute;
	left: 0;
	bottom: 4px;
	color:  #3f7277;
	font-size: 15px;
	transition: 0.4s;
	pointer-events: none;
}
.column-2 .form-2 p{
	top: 25px;
	left: 20px;
}
.column-1 .form-1 input:focus ~ p,
.column-1 .form-1 input:valid ~ p,
.column-2 .form-2 textarea:focus ~ p,
.column-2 .form-2 textarea:valid ~ p{
	transform: translateY(-30px);
	font-size: 14px;
	opacity: 0.8;
}
.column-1 .contactSocialMedia{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	padding: 30px 0px 0px;
}
.column-1 .contactSocialMedia a{
	width: 35px;
	height: 35px;
	text-decoration: none;
	text-align: center;
	margin-left: 15px;
	border: 1px solid transparent;
	border-radius: 5px;
	background-color: #05555c;
	transition: 0.4s;
}
.column-1 .contactSocialMedia a i{
	color:  #f6f9fe;
	font-size: 18px;
	line-height: 35px;
	transition: 0.4s;
}
.column-1 .contactSocialMedia a:hover{
	transform: translateY(-5px);
	background-color:  #f6f9fe;
	border: 1px solid #05555c;
}
.column-1 .contactSocialMedia a:hover i{
	color: #05555c;
}
.column-2 .form-2{
	width: 100%;
	height: calc(100% - 20px);
	padding-top: 50px;
}
.column-2 .form-2 .inputGroup{
	position: relative;
	width: 100%;
	height: 100%;
	border-left: 1px solid #3f7277;
}
.column-2 .form-2 textarea{
	width: 100%;
	min-height: 100%;
	display: block;
	resize: none;
	border: none;
	outline: none;
	background-color: #f6f9fe;
	color: #05555c;
	padding: 20px;
	font-size: 16px;
}
.column-2 .form-2 .form-button{
	width: 100%;
	height: 50px;
	border: none;
	outline: none;
	background-color: #05555c;
	color: #f6f9fe;
	font-size: 17px;
	letter-spacing: 1px;
	text-align: center;
	cursor: pointer;
	transition: 0.4s;
    margin-top: 50px;

}
.column-2 .form-2 .form-button:hover{
	background-color: #186f78;
}

@media(max-width: 768px){
    /* Contact Section */
	.contact-form .contact-row{
		flex-direction: column;
	}
	.contact-row .column-1,
	.contact-row .column-2{
		flex-basis: 100%;
	}
	.contact-row .column-1{
		min-width: 250px;
		padding: 20px;
	}
	.column-2 .form-2 textarea{
		margin-top: 0px;
		height: 200px;
	}
	.column-2 .form-2 .inputGroup{
		border: 1px solid #ddd;
	}
}

/*   *** Footer Section Styling Starts ***   */
.page-footer{
	width: 80%;
	padding: 80px 8%;
	margin-top: 20px;

}
.page-footer .footer-contents{
	display: flex;
	justify-content: space-between;
	text-align-last: center;
}
.footer-contents a{
	text-decoration: none;
	font-size: 22px;
	font-weight: 700;
	color: #05555c;
	margin-right: 20px;
}
.footer-contents p{
	font-size: 16px;
	color:  #3f7277;
}
.footer-contents p span{
	color: #05555c;
	font-weight: bold;
}
/*   *** Footer Section Styling Ends ***   */

@media(max-width: 550px){
    /* Footer Section */
	.page-footer .footer-contents{
		flex-direction: column;
	}
	.footer-contents a{
		margin-bottom: 10px;
	}
	.footer-contents p{
		margin-bottom: 10px;
	}
}