
/* =====================================
Business Name: 	Healing Hands Walk-in Clinic
Author Name: Yuna Seo & Jiwoo Park
Website: http://healinghandwalkinclinic.com/
Description: 
Version:	
========================================*/   
/*======================================
[ CSS Table of contents ]
* Global CSS
* Header CSS
	+ Topbar
	+ Logo
	+ Widget
	+ Main Menu
	+ Search
* Hero Slider CSS
* Schedule CSS

* Footer CSS
========================================*/ 


/*===================
	   Global CSS 
=====================*/

:root {
  --navbar-bg-color: hsl(0, 0%, 100%);
  --navbar-text-color: hsl(0, 0%, 30%);
  --navbar-text-color-focus: rgb(139, 139, 139);
  --navbar-bg-contrast: hsl(0, 0%, 25%);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height:100vh;
  font-family: 'Inter';
  margin: 0 auto;
  color:#53494C;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

@media all and (min-width:1025px){
  .container{
    max-width: 1200px;
    margin: 0 auto;
  }
}


.hidden {
  opacity: 0;
  transform: translateY(50px); 
  transition: opacity 2s ease, transform 1s ease;
}

.animate.in-view {
  opacity: 1;
  transform: translateY(0); 
}


/*===================
	   Header CSS 
=====================*/


/* General Styles */

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #53494C;
  transition: color 0.3s;
}

a:hover {
  color: #00ADEE;
}

img {
  max-width: 100%;
  height: auto;
}



/* Topbar Styles */
.topbar {
  background-color: #ffffff;
  padding: 5px 0;
  border-bottom: 1px solid #ffffff;
}


.topbar-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media all and (min-width: 700px){
  .topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
  }
}

.topbar ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.topbar ul.top-contact {
  justify-content: flex-end;
  font-size: 12px;
  color: #53494C;
}
@media all and (min-width: 700px){
  .topbar ul.top-contact {
    font-size: 14px;
    color: #53494C;
  }
  
}


.topbar ul li {
  margin-right: 5px;
}
@media all and (min-width: 1025px){
  .topbar ul li {
    margin-right: 50px;
  }
}

.topbar ul li a {
  color: #53494C;
  font-size: 12px;
}

.topbar ul li i {
  margin-right: 5px;
}

.topbar ul li a:hover {
  color: #00ADEE; 
}

.top-contact li{
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.top-contact img {
  display: inline-block;
  vertical-align: middle;
}





/* Header Inner Styles */
.header-inner {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #e2e2e2;
}



.main-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}



/*===================
	   N A V B A R 
=====================*/

#navbar {
  --navbar-height:145px;
  position: fixed;
  height: var(--navbar-height);
  background-color: var(--navbar-bg-color);
  left: 0;
  right: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  z-index: 101;
}
@media all and (min-width:768px){
  #navbar {
    --navbar-height:140px;
  }
} 
@media all and (min-width:1025px){
  #navbar {
    --navbar-height:130px;
  }
}


#navbar.hidden {
  transform: translateY(-100%); /* Hidden when scrolled up */
}


.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 100px;
  align-items: center;
}
.navbar-item {
  margin: 0.4em;
  width: 100%;
}


.home-link,
.navbar-link {
  color: var(--navbar-text-color);
  text-decoration: none;
  display: flex;
  font-weight: 400;
  align-items: center;
}

.home-link:is(:focus, :hover) {
  color: var(--navbar-text-color-focus);
}

.navbar-link {
  justify-content: center;
  width: 100%;
  padding: 0.4em 0.8em;
  border-radius: 5px;
  white-space: nowrap; 
  text-align: center;
}

.navbar-link:is(:focus, :hover) {
  color: var(--navbar-text-color-focus);
  background-color: var(--navbar-bg-contrast);
}

.logo-image{
  max-width:90%;
  padding-left:30px;
  padding-bottom:7px;
}
@media all and (min-width:700px) and (max-width:1025px) {
  .logo-image{
    max-width:90%;
    padding:0px;
  }
} 

#navbar-toggle {
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.icon-bar {
  display: block;
  width: 25px;
  height: 4px;
  margin: 2px;
  background-color: var(--navbar-text-color);
}
#navbar-toggle:is(:focus, :hover) .icon-bar {
  background-color: var(--navbar-text-color-focus);
}
#navbar-toggle[aria-expanded="true"] .icon-bar:is(:first-child, :last-child) {
  position: absolute;
  margin: 0;
  width: 30px;
}
#navbar-toggle[aria-expanded="true"] .icon-bar:first-child {
  transform: rotate(45deg);
}
#navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(2) {
  opacity: 0;
}
#navbar-toggle[aria-expanded="true"] .icon-bar:last-child {
  transform: rotate(-45deg);
}
#navbar-menu {
  position: fixed;
  top: var(--navbar-height);
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  left: 0;
  right: 0;
  background-color: var(--navbar-bg-color);
}


#navbar-toggle[aria-expanded="true"] + #navbar-menu {
  background-color: rgba(163, 163, 163, 0.4);
  opacity: 1;
  visibility: visible;
}
.navbar-links {
  list-style: none;
  position: absolute;
  background-color: var(--navbar-bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 0;
  right: 0;
  margin: 22px;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

#navbar-toggle[aria-expanded="true"] + #navbar-menu .navbar-links {
  padding: 1em;
}
@media screen and (min-width: 700px) {
  #navbar-toggle,
  #navbar-toggle[aria-expanded="true"] {
    display: none;
  }

  #navbar-menu,
  #navbar-toggle[aria-expanded="true"] #navbar-menu {
    visibility: visible;
    opacity: 1;
    position: static;
    display: block;
    height: 50%;
  }

  .navbar-links,
  #navbar-toggle[aria-expanded="true"] #navbar-menu .navbar-links {
    margin: 0;

    box-shadow: none;
    position: static;
    flex-direction: row;
    width: 100%;
    height: 50%;
  }

  .navbar-links{
    padding-top:17px;
  }
}




/*========================================
	            Section Styling
==========================================*/

/* Style for centering the section content */


section {
  margin: 0px auto;
  background-color: white;
}


/*===================
	      Home  
=====================*/

/* Welcome Hero Image */

.Home{
  padding-top:145px;
}
@media screen and (min-width: 700px) {
  .Home{
    padding-top:130px;
  }
}


.hero-image{
  position:relative;
  background-image: url("image/hero-image.svg");
  background-position: center;
  background-size:cover;
  text-align:center;
  height:700px;
  z-index:1;
  justify-content: center; /* Horizontally centers the text */
  align-items: center;    /* Vertically centers the text */
  display:flex;

}

.hero-text { 
  max-width: 1200px;
  text-align: center;
}



.hero-text h2{
  font-size: 45px;
  color:#FFFFFF;
  font-weight:700;
  letter-spacing:2.4px;
  line-height: 1.2;
  margin-left:50px;
  margin-right:50px;
  padding-bottom: 30px;
  text-shadow: #333 1px 0 10px;
}

.hero-text p{
  font-size: 30px;
  color:#ffffff;
  margin-top:30px;
  margin-left:50px;
  margin-right:50px;
  line-height:1.1;
  text-shadow: #333 1px 0 10px;
}
@media all and (min-width:700px) and (max-width:1025px) {
  .hero-text p{
    width: 500px;
    margin: 0 auto;
  }
} 


h1 {
  margin: 0;
  padding: 0;
  color: #53494C;
}

/*===================
	 Opearation Hours  
=====================*/




/*============================
	     Welcome (about- us)
==============================*/

#About-Us{
  padding-bottom: 50px;
  background-color: rgba(0, 0, 0, 0.05);
}


.about-us-container{
  width: 100%;
  margin: 0 auto;
}
@media all and (min-width:768px) and (max-width:1025px) {
  .about-us-container{
    min-width: 768px;
    margin: 0 auto;
    padding-bottom: 30px;
  }
} 
@media all and (min-width:1025px){
  .about-us-container{
    width: 950px;
    margin: 0 auto;
    padding-bottom: 30px;
  }
}

.welcome-text{
  text-align:center;
  width: 90%;
  margin: 0 auto;
  line-height: 1.5;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width:1025px){
  .welcome-text{
    width:100%;
    text-align:center;
  }
}

.welcome-title{
  font-size:24px;
  text-align:center;
  width:90%;
  margin:0 auto;
  padding: 30px 0;
  line-height: 1.3;
}
.welcome-greeting-text{
  font-size: 16px;
}
@media all and (min-width:768px) and (max-width:1025px) {
  .welcome-greeting-text{
    font-size: 17px;
  }
} 
@media all and (min-width:1025px){
  .welcome-title{
    font-size:32px;
    text-align:center;
    width:100%;
  }
  .welcome-greeting-text{
    font-size: 20px;
  }
}




.about-us-fix{
  display:flex;
  flex-direction: column;
  padding-bottom:0px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media all and (min-width:1025px){
  .about-us-fix{
    display:flex;
    flex-direction: row;
    padding-bottom:0px;
    justify-content: center;
    align-items: center;
  }
}

.about-us-image{
  display: block;
  width:80%;
  max-width: 400px;
  margin:0 auto;
  padding: 20px 0;
}
@media all and (min-width:768px) and (max-width:1025px) {
  .about-us-image{
    padding-top:20px;
    padding-bottom:40px;
  }
} 
@media all and (min-width:1025px){
  .about-us-image{
    display: block;
    width:100%;
    width:300px;
  }
}


.about-us-text{
  width: 87%;
  text-align: center;  
  margin:0 auto;
  line-height: 1.5;
}
.about-us-text p{
  font-size: 16px;
  color:#53494C;
}
@media all and (min-width:768px) and (max-width:1025px) {
  .about-us-text{
    display:flex;
    width: 87%;
    text-align: center;  
  }
  .about-us-text p{
    font-size: 17px;
    color:#53494C;
  }
} 
@media all and (min-width:1025px){
  .about-us-text{
    display:flex;
    width: 570px;
    text-align: left;  
    padding-left: 20px;
  }

  .about-us-text p{
    font-size: 20px;
    color:#53494C;
  }
}




.home-contact-main{
  padding-top: 50px;
  margin: 0 auto;
  width:100%;
  display: flex;
  padding-bottom: 50px;
}
@media all and (min-width:768px) and (max-width:1025px) {
  .home-contact-main{
    margin: 0 auto;
    max-width:700px;
    display: flex;
    padding-bottom: 70px;
  }
} 
@media all and (min-width:1025px){
  .home-contact-main{
    margin: 0 auto;
    max-width:1010px;
    display:flex;
    padding-bottom:70px;
  }
}





/*===================
	  Services Main
=====================*/


#Services{
  padding: 10px 0px 50px;
  width:100%;
}
.service-we-offer{
  width:100%;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width:1025px){
  #Services{
    padding: 30px 0px 70px;
    width:1000px;
  }
  .service-we-offer{
    width:1000px;
  }
}

.services-title{
  font-size:32px;
  color:#53494C;
  text-align: center;
  padding: 20px 0;
}


.services-urgent {
  text-align: center;
  line-height: 1;
  color:#EF5454;
  font-size: 16px;
  width:90%;
  margin: 0 auto;
  line-height: 1.5;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width:1025px){
  .services-urgent {
    text-align: right;
    line-height: 1;
    color:#EF5454;
    margin-left: auto; 
    margin-right: 0;
    font-size: 17px;
  }
}



.service-readmore a {
  padding: 20px 20px 0px 0px;
  display: block;
  color: #53494C;
  text-decoration: none;
  text-align: right;
  font-size:16px
}
.service-readmore img{
  display: inline-block;
  vertical-align: middle;
}
.service-readmore a:hover {
  text-decoration: underline;
  color:#00ADEE;
}

@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width:1025px){
  .service-readmore a {
    display: block;
    color: #53494C;
    text-decoration: none;
    text-align: right;
    font-size:20px;
  }
  .service-readmore img{
    display: inline-block;
    vertical-align: middle;
  }
  .service-readmore a:hover {
    text-decoration: underline;
    color:#00ADEE;
  }
  
}



/*===================
	    Insurance 
=====================*/

#Insurance{
  background-color: rgba(0, 0, 0, 0.05);
  padding-bottom: 70px;
}


.insurance-title{
  font-size: 32px;
  color: #53494C;
}

.insurance-container{
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}


.insurance-image{
  float:left;
  max-width: 100%;
}

.insurance-text{
  font-size: 20px;
  color:#53494C;
  padding-left: 20px;
  padding-top:7px;
}





/*===================
	    Contact 
=====================*/

.contact-title{
  font-size:30px;
  color:#53494C
}



 /* Button Stlying */
 
 button {
  background-color: #00ADEE;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #004080;
}




/*===================
	    footer 
=====================*/
footer {
  background-color: #113948; /* Dark background for contrast */
  color: white;
  width: 100%;
  line-height: 1.3;
}
.footer-content {
  width: 90%;
  margin: 0 auto;
  padding:20px 0px;
  text-align: center;
  font-size: 16px;
}
.footer-info{
  padding-top:20px;
}
.footer-copyright{
  font-size: 15px;
  color: #CCCCCC;
  padding:40px 0px;
  text-align: center;
}

.word-spacing{
  display: block;
  margin-top:5px;
}
.next-line{
  display: block;
  margin-top:25px;
}

@media all and (min-width:1025px){
  footer {
    color: white;
    padding: 20px;
    width: 100%;
  }
  .footer-content {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
  }
  .footer-info{
    padding-top:10px;
  }
  .footer-copyright{
    font-size: 15px;
    color: #CCCCCC;
    padding:40px 0;
    text-align: center;
  }
  .word-spacing{
    display:inline;
    padding-left: 15px;
  }
  .next-line{
    display: block;
    margin-top:15px;
  }
  
}








html {
  scroll-behavior: smooth;
}





/*===================
	  ABOUT US INTRO 
=====================*/

.about-us-topbar-container{
  height:242px;
  margin: 0 auto;
  background-color:#ffffff;
  padding-top:142px;
  display:flex;
  justify-content: center;
}
.about-us-topbar-container-h2{
  height:100px;
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
  background-color: #113948;
}

.about-us-topbar-container h2{
  font-size:32px;
  color:#ffffff;
}
@media all and (min-width:768px) and (max-width:1025px) {
  .about-us-topbar-container{
    height:220px;
    margin: 0 auto;
    background-color:#ffffff;
    padding-top:120px;
    justify-content: center;
    align-items: center;
    display:flex;
  }

} 
@media all and (min-width:1025px){
  .about-us-topbar-container{
    height:220px;
    margin: 0 auto;
    background-color:#ffffff;
    padding-top:120px;
    justify-content: center;
    align-items: center;
    display:flex;
  }

}

/*===================
	  ABOUT US MAIN 
=====================*/

.about-us-main{
  margin: 0 auto;
  width:100%;
  padding-bottom: 100px;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width:1025px){
  .about-us-main{

    margin: 0 auto;
    width:1000px;
    padding-bottom:100px;
  }
}



.intro-welcome{
  padding:15px 50px;
  width:100%;
  margin: 0 auto;
  text-align: center;
}
.intro-welcome h3{
  color:#53494C;
  font-size:25px;
  margin: 0 auto;
  padding-top: 20px;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width:1025px){
  .intro-welcome{
    padding:30px 0px;
    width:1000px;
    margin: 0 auto;
    text-align: center;
  }
  .intro-welcome h3{
    color:#53494C;
    font-size:25px;
    margin: 0 auto;
    padding-top: 20px;
  }
}


.intro-container{
  width: 100%;
  padding-bottom:50px;
  justify-content: center;
  align-items: center;
  display:flex;
  flex-direction: column;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width:1025px){
  .intro-container{
    width: 100%;
    padding-bottom:50px;
    justify-content: center;
    align-items: center;
    display:flex;
    flex-direction: row;
  }
}




.intro-container-big{
  width:100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width:1025px){
  .intro-container-big{
    width: 1000px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
}


.intro-container1{
  width: 100%;
  padding-bottom:20px;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width:1025px){
  .intro-container1{
    width: 1000px;
    display:flex;
    flex-direction: row;
    margin:0 auto;
  }
}



.intro-image-box{
  width:100%;
  justify-content: center;
  align-items: center;
  display:flex;
  padding: 20px 0px 30px 0px;
}

.intro-image{
  display: block;
  width:100%;
  width:300px;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width:1025px){
  .intro-image-box{
    width:500px;
    justify-content: center;
    align-items: center;
    display:flex;
  }
  
  .intro-image{
    display: block;
    width:100%;
    width:300px;
  }
}

.intro-text{
  display:flex;
  width: 85%;
  text-align:left;
  padding-left: 0px;
  font-size: 17px;
  color:#53494C;
  line-height: 1.5;
  text-indent: 30px;
}

@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width:1025px){
  .intro-text{
    display:flex;
    width: 450px;
    text-align:left;
    padding-left: 20px;
    font-size: 20px;
    color:#53494C;
  }
}



.intro-container2{
  display:flex;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.intro-text2{
  width:85%;
  display:flex;
  flex-direction: column;
  text-align:left;
  font-size: 17px;
  color:#53494C;
  line-height: 1.5;
}

@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width:1025px){
  .intro-container2{
    display:flex;
    justify-content: center;
    align-items: center;
    width: 980px;
    margin: 0 auto;
  }
  
  .intro-text2{
    width:100%;
    vertical-align:middle;
    display:table-cell;
    text-align:center;
    font-size: 20px;
    color:#53494C;
  }
}



/*===================
	     Contact 
=====================*/


.contact-main{
  padding-top: 30px;
  margin: 0 auto;
  width:100%;
  display: flex;
  padding-bottom: 100px;
}
@media all and (min-width:768px) and (max-width:1025px) {
  .contact-main{
    margin: 0 auto;
    max-width:700px;
    display: flex;
    padding-bottom: 100px;
  }
} 
@media all and (min-width:1025px){
  .contact-main{
    margin: 0 auto;
    max-width:1010px;
    display:flex;
    padding-bottom: 100px;
  }
}



.contact-container{
  width: 100%;
  margin: 0 auto;
  vertical-align:middle;
  display:table-cell;
}
@media all and (min-width:768px) and (max-width:1025px) {
  .contact-container{
    width: 700px;
    margin: 0 auto;
    padding-top:30px;
    vertical-align:middle;
    display:table-cell;
  }
} 
@media all and (min-width:1025px){
  .contact-container{
    width: 900px;
    padding-top:20px;
    display: table-cell;
    vertical-align: middle;
    margin: 0 auto;
  }
}


.contact-map-box{
  width: 100%;
  justify-content: center;
  align-items: center;
  display:flex
}
@media all and (min-width:768px) and (max-width:1025px) {
  .contact-map-box{
    width:700px;
    justify-content: center;
    align-items: center;
    display:flex;
  }
} 
@media all and (min-width:1025px){
  .contact-map-box{
    width:900px;
    justify-content: center;
    align-items: center;
    display:flex;
  }
}



.contact-map{
  margin: 0 auto;
  padding-bottom:30px;
  width: 100%;
  height:300px;
}
@media all and (min-width:768px) and (max-width:1025px) {
  .contact-map{
    margin:0 auto;
    width:100%;
    height:450px;
  }
} 
@media all and (min-width:1025px){
  .contact-map{
    margin:0 auto;
    width:100%;
    height:450px;
  }
}



.contact-text{
  width: 90%;
  display:flex;
  flex-direction: column;
  margin: 0 auto;
  line-height: 1;
}
@media all and (min-width:768px) and (max-width:1025px) {
  .contact-text{
    display:flex;
    width: 700px;
    text-align:left;
    justify-content: space-between;
    flex-direction: row;
  }  
} 
@media all and (min-width:1025px){
  .contact-text{
    display:flex;
    width: 900px;
    text-align:left;
    justify-content: space-between;
    flex-direction: row;
  }
}


.contact-text h3{
  font-size: 22px;
  color:#53494C;
  padding: 10px 0;
}
.contact-text p{
  font-size: 17px;
  color:#53494C;
  padding-top:7px;
  padding-left:3px;
  line-height:1.2;
}

.contact-wrapped-text{
  display: inline-block;
  margin-top: 2px; 
}
@media all and (min-width:768px) and (max-width:1025px) {
  .contact-wrapped-text{
    display: inline-block;
    margin-top: 2px; 
  }
} 
@media all and (min-width: 1025px){
  .contact-wrapped-text{
    margin-top: 0px; 
    margin-left: 0px;
  }
}

.contact-text-location{
  padding-bottom:20px;
}
@media all and (min-width:768px) and (max-width:1025px) {
  .contact-text-location{
    padding: 10px 0px 0px 10px;
    display:flex-start;
  }
} 
@media all and (min-width: 1025px){
  .contact-text-location{
    padding: 10px 0px 0px 10px;
    display:flex-start;
  }
}

.contact-text-opr-hours{
  padding-top:15px;
}
.contact-text-opr-hours-container{
  display: flex;
}
.contact-text-opr-hours-container-time{
  padding-left:20px;
}
@media all and (min-width:768px) and (max-width:1025px) {
  .contact-text-opr-hours{
    padding: 10px 0px 0px 10px;
    display:flex-end;
    width:400px;
  }
} 
@media all and (min-width: 1025px){
  .contact-text-opr-hours{
    padding: 10px 0px 0px 10px;
    display:flex-end;
  }
}


@media all and (max-width: 768px) {
  .top-contact {
    flex-direction: column; 
    align-items: flex-start; 
    gap: 10px; 
  }

  .top-contact li {
    margin-right: 0; 
  }
}

/*===================
	  Insurance Main 
=====================*/


.insurance-main{
  margin: 0 auto;
  width:100%;
  padding-top: 20px;
  padding-bottom: 100px;
}

.insurance-main-container{
  width:100%;
  justify-content: center;
  align-items: center;
  display:flex;
  flex-direction: column;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .insurance-main{
    margin: 0 auto;
    width:1200px;
    padding-top: 30px;
    padding-bottom: 100px;
  }
  
  .insurance-main-container{
    width: 1000px;
    justify-content: center;
    align-items: center;
    display:flex;
    margin: 0 auto;
  }
}




.insurance-main-text{
  display:flex;
  width:90%;
  vertical-align:middle;
  display:table-cell;
  line-height:1.5;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .insurance-main-text{
    display:flex;
    width: 900px;
    vertical-align:middle;
    display:table-cell;
  }
}




.insurance-main-text h3{
  font-size: 29px;
  color:#53494C;
  text-align: center;
  padding: 30px 0;
}
.insurance-main-text p{
  font-size: 16px;
  color:#53494C;
  padding-top:5px;
  line-height:1.5;
  text-align: center;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){

  .insurance-main-text h3{
    font-size: 32px;
    color:#53494C;
    text-align: center;
  }
  .insurance-main-text p{
    font-size: 20px;
    color:#53494C;
    padding-top:5px;
    line-height:1.5;
    text-align: left;
  }
}


.insurance-main-membership{
  padding-top: 50px;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .insurance-main-membership{
    padding-top: 50px;
  }
}


.insurance-main-icon-container {
  display: flex;
  flex-direction: column;
  width:100%;
  margin: 0 auto;
  padding-top:10px;
}
@media all and (min-width:768px) and (max-width:1025px) {
  .insurance-main-icon-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
  }
} 
@media all and (min-width: 1025px){
  .insurance-main-icon-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 900px;
    margin: 0 auto;
    padding: 30px 0;
  }
}


.insurance-main-service-item {
  text-align: center;
  width: 90%;
  margin: 25px auto;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .insurance-main-service-item {
    text-align: center;
    width: 30%;
    padding: 20px;
  }
}

.insurance-main-service-item img {
  width: 80px;
  height: 80px;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .insurance-main-service-item img {
    width: 80px;
    height: 80px;
  }
}


.insurance-main-service-item p {
  font-size: 17px;
  text-align: center;
  margin: 0;
}

.insurance-main-text-center p{
  text-align: center;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .insurance-main-service-item p {
    font-size: 18px;
    margin-top: 5px;
    text-align: center;
  }
  
  .insurance-main-text-center p{
    text-align: center;
  }
}




/*===================
	  Services Main 
=====================*/

#services-main{
  color:#53494C;
  padding-bottom: 100px;
}

.services-main{
  margin: 0 auto;
  width:100%
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .services-main{
    margin: 0 auto;
    width:1200px;
    padding-top: 30px;
  }
}




.services-main-container{

  justify-content: center;
  align-items: center;
  display:flex;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .services-main-container{
    justify-content: center;
    align-items: center;
    display:flex;
  }
}





.services-main-text{
  display:flex;
  width: 100%;
  vertical-align:middle;
  display:table-cell;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .services-main-text{
    display:flex;
    vertical-align:middle;
    display:table-cell;
    width:1000px;
  }
}


.services-we-offer{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
  width: 100%;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .services-we-offer{
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
  }
}



.services-main-icon-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width:90%;
  margin: 0 auto;
  padding: 10px;
}
@media all and (min-width:768px) and (max-width:1025px) {
  .services-main-icon-container {
    display: flex;
    flex-direction: row;
    width: 95%;
    margin: 0 auto;
    padding: 0 0.3rem;
  }
} 
@media all and (min-width: 1025px){
  .services-main-icon-container {
    display: flex;
    flex-direction: row;
    width: 1000px;
    margin: 0 auto;
    padding: 0 0.3rem;
  }
}



.services-main-service-item {
  text-align: center;
  width: 95%;
  padding: 10px 0;
  line-height:1.5;
}
@media all and (min-width:768px) and (max-width:1025px) {
  .services-main-service-item {
    text-align: center;
    width: 33%;
    padding: 10px;
  }
} 
@media all and (min-width: 1025px){
  .services-main-service-item {
    text-align: center;
    width: 33%;
    padding: 20px 30px;
  }
}


.services-main-service-item img {
  width: 70px;
  height: 70px;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .services-main-service-item img {
    width: 70px;
    height: 70px;
  }
}


.services-main-service-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  text-align: center;
  padding: 7px 0;
}
.services-main-service-item p {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .services-main-service-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    text-align: center;
  }
  .services-main-service-item p {
    font-size: 17px;
    margin-bottom: 10px;
    text-align: center;
  }
}





.services-main-text-center p{
  text-align: center;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .services-main-text-center p{
    text-align: center;
    font-size: 20px;
  }
}




.services-detailed-conditions {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .services-detailed-conditions {
    width: 1000px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }
}



.services-detailed-container-contents ul {
  list-style-type:disc;
  list-style-position: outside;
  padding-left:20px;
  padding-right:10px;
}
.services-detailed-container-contents ul li {
  line-height: 1.5;
  font-size: 17px;
}
.services-detailed-conditions h3{
  font-size: 29px;
  text-align: center;
  padding: 20px 0;
}
.services-detailed-container h3{
  font-size: 25px;
  text-align: center;
  padding: 10px 10px 15px 5px;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .services-detailed-conditions h3{
    font-size: 29px;
    text-align: center;
    padding-bottom: 20px;
  }
  .services-detailed-container h3{
    font-size: 25px;
    text-align: center;
  }
}






.wrapped-text {
  display: inline-block;
  margin-top: 13px; 
  margin-left: 8px;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .wrapped-text {
    display: inline-block;
    margin-top: 13px; 
    margin-left: 8px;
  }
}





.services-detailed-container{
  width:100%;
  margin: 0 auto;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .services-detailed-container{
    width:1000px;
    margin: 0 auto;
    display:flex;
    flex-direction:row;
    align-items: flex-start;
    gap: 30px;
  }
}



.services-detailed-container-left{
  width:95%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .services-detailed-container-left{
    width:450px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 5px 0px 5px 0px;

  }
}


.services-detailed-container-right{
  width:95%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .services-detailed-container-right{
    width:450px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 5px 0px 5px 0px;
  }
}


.services-detailed-container-contents{
  padding: 20px;
  margin:12px auto;
  background-color: rgba(0, 173, 238, 0.1);
  border-radius: 18px;
  line-break: auto;
  width: 87%;
  border: solid;
  border-width:1px;
  border-color: #05adeb;
}
@media all and (min-width:768px) and (max-width:1025px) {

} 
@media all and (min-width: 1025px){
  .services-detailed-container-contents{
    padding: 20px;
    margin:15px 0;
    border-radius: 18px;
    line-break: auto;
    width: 100%;
  }
}


