*{ 
    
    margin: 0;padding: 0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: uppercase;
}

/*carousel*/
.container1{
    top:0;
    position: relative;
    overflow: hidden;
    
    
}
.container1 .slide-container .slide{
    min-height: 100vh;
    z-index: -1;
}
.container1 .slide-container .slide img{
    position: absolute;
    top: 0; left:0;
    z-index: -1;
    height:100%;
    width: 100%;
    object-fit: cover;
    animation:fadeIn .4s linear ;
} 
@keyframes fadeIn{
    0%{
        transform: scale(1.2); 
    } 
}
.container1 .slide-container .slide .content{
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: rgba(0, 0, 0, 0.247);
    text-align: center;
}
.container1 .slide-container .slide h5{
    font-family:'Arial', Helvetica, sans-serif;
    font-weight: bolder;
    margin-top: 130px;
    font-size: min(30em,5.5vh);
    color: white;
    text-shadow: 0 3px  3px rgba(0, 0, 0, 0.637);
    z-index: 0;
    animation:animate 1 linear .4s backwards;
    -webkit-text-fill-color: white; /* Will override color (regardless of order) */
  -webkit-text-stroke: 2px rgb(21, 0, 212);
}
.container1 .slide-container .slide p{
    font-family: 'Arial', Helvetica, sans-serif;
    font-size: min(30em,2.5vh);
    color: white;
    padding: 1% 0;
    font-weight: bold;
    text-shadow: 0px 3px 3px rgba(0, 0, 0,600);
    max-width: 60%;
    animation:scale 1 linear .5s backwards;
    -webkit-text-fill-color: white; /* Will override color (regardless of order) */
    -webkit-text-stroke: 1px rgb(16, 2, 146);
}
.container1 .slide-container .content .linkbtn{
    
    padding: 9px 30px;
    background: rgb(44, 171, 255);
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    border: solid rgb(171, 238, 255);
    border-radius: 15px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: min(30em,1.9vh);
    margin-top: 10px;
    cursor: pointer;
    text-decoration: none;

    transition: 0.2s linear;
    animation:up 1 linear 0.5s backwards;
}
.container1 .slide-container .content .linkbtn:hover{
    
    letter-spacing: 2px;
    border-radius: 10px;
}

@keyframes animate {
    0%{
        opacity: 0;
        transform:scale(0.5) translateY(-60px)
    }
    
}
@keyframes up {
    0%{
        opacity: 0;
        transform: translateY(60px)
    }
    
}
@keyframes scale {
    0%{
        opacity: 0;
        transform: scale(0.5)
    }
}

.container1 .slide-container{
    display: none;
    transition: opacity 0.5s ease-in-out;
}
.container1 .slide-container.active{
    display: block;
    transition: opacity 0.5s ease-in-out;
}
.container1 #next, 
.container1 #prev{
    position: absolute;
    top:50%;
    z-index: 1;
    background: rgba(255, 255, 255, 0.401);
    color: rgb(255, 255, 255);
    font-weight: lighter;
    height: 60px;
    width: 50px;
    line-height: 55px;
    font-size: 30px;
    text-align: center;
    cursor: pointer;
    transition: 0.4s;
}
.container1 #next{
    right:0;
    border-radius: 20px 0px 0px 20px;
}
.container1 #prev{
    left:0;
    border-radius: 0px 20px 20px 0px;
}
.container1 #next:hover{
    right:0;
    width: 60px;
    border-radius: 20px 0px 0px 20px;
}
.container1 #prev:hover{
    left:0;
    width: 60px;
    border-radius: 0px 20px 20px 0px;
}


.container2{
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    padding-left: 10%;
    padding-right: 10%;
}
.container2 #welcome{
    font-family: 'Arial', Helvetica, sans-serif;
    padding-top: 6%;
    padding-bottom: 3%;
    font-weight: bolder;
    font-size: min(15em, 3.5vw);
    text-align: center;
    color: #0000a2; 
}
.container2 #welcome-content{
    
    font-size: min(20em, 1vw);
    font-weight: bolder;
    text-align: center;
    color: #0000a2;
    padding: 2px 0px;
    text-shadow: 0 2px  2px rgba(0, 0, 0, 0.185);
    max-width: 70%;
}

.container3{
    display: flex; /* Use flexbox for centering */
    flex-flow: column;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    width: 100%; /* Optional: Set the width of the container */
    height: auto; /* Optional: Set the height of the container */
    margin-top: 50px;
}
.container3 img{
    padding: 5px 0;
    max-width: 100%; /* Optional: Ensure the image doesn't exceed container width */
    max-height: 100%; /* Optional: Ensure the image doesn't exceed container height */
}


/*inquiry*/
.inquiry{
    margin-top: -100px;
    position: relative;
    overflow: hidden;
    padding: 12%;
   padding-bottom: 5%;
}
.inquiry img{
    position: relative;
    z-index: -1;
    height:100%;
    width: 100%;
    object-fit: cover;
}
.inquiry .content{
    font-family: 'Arial', Helvetica, sans-serif;
    position: absolute;
    margin-top: 10%;
    margin-right: 10%;
    width: 100%;
    left: 20%;
    align-items: left;
    justify-content: left;
    flex-flow: column;
    text-align: left;
}
.inquiry h5{
    font-size: min(30em,5vh);
    color: black;
    padding: 5px 0;
    font-weight: bold;
    text-shadow: 5px 2px  0px rgba(0,0,0,0.3);
    max-width: 600px;
}
.inquiry p{
    font-size: min(10em,2vh);
    color: black;
    padding-top: 40px;
    padding-bottom: 30px;
    font-weight: bolder;
    text-shadow: 2px 1px  0px rgba(0,0,0,0.3);
    max-width: min(60em,60vh);
}

#painter {
    overflow: visible;
    position: absolute;
    height:50%;
    width: 50%;
    z-index: -1;
    bottom: 0;
    right: 0;
}

.inquiry .content .contactbtn{
    
    padding: 10px;
    background: rgba(0, 0, 0, 0);
    box-shadow: inset 0 5px 10px rgba(0,0,0,0.3);
    width: auto;
    border-style: solid;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: min(1.5em,60vh);
    cursor: pointer;
    text-decoration: none;
    
    transition: .2s;
}
.inquiry .content .contactbtn:hover{
    letter-spacing: 2px;
}
@media (max-width: 1400px){
    .inquiry{
        margin-top: 20px;
        position: relative;
        overflow: hidden;
        padding-top: 0;
       padding-bottom: 5%;
    }
}

@media (max-width: 1000px){
    .container3{
        display: flex; /* Use flexbox for centering */
        flex-flow: column;
        justify-content: center; /* Horizontally center */
        align-items: center; /* Vertically center */
        width: 100%; /* Optional: Set the width of the container */
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .container2{
        min-height: 0;
        justify-content: center;
        flex-flow: column;
        padding-left: 5%;
        padding-right: 5%;
    }
    .container2 #welcome{
        padding-top: 6%;
        padding-bottom: 3%;
        font-weight: bolder;
        font-size: 40px;
        text-align: center;
        color: #0000a2; 
    }
    .container2 #welcome-content{
        
        font-size: 20px;
        text-align: center;
        color: #0000a2;
        padding:0;
        max-width: 80%;
    }
    .inquiry{
        position: relative;
        overflow: hidden;
        padding-top: 0px;
       padding-bottom: 20%;
    }
    .inquiry img{
        visibility: hidden;
    }
    .inquiry h5{
        font-size: 40px;
        color: black;
        padding: 1px 0;
        font-weight: bold;
        text-shadow: 5px 2px  0px rgba(0,0,0,0.3);
        max-width: 600px;
    }
    .inquiry p{
        font-size: 25px;
        color: black;
        padding-top: 10px;
        padding-bottom: 30px;
        font-weight: lighter;
        text-shadow: 2px 1px  0px rgba(0,0,0,0.3);
        max-width: 600px;
    }
    .inquiry .content .contactbtn{
        padding: 10px;
        background: rgba(0, 0, 0, 0);
        box-shadow: inset 0 5px 10px rgba(0,0,0,0.3);
        width: auto;
        border-style: solid;
        color: gray;
        font-weight: bold;
        font-size: 30px;
        cursor: pointer;
        
        transition: .2s;
    }
    .inquiry .content .contactbtn:hover{
        letter-spacing: 2px;
    }
}
@media (max-width: 700px){
    .container3{
        display: flex; /* Use flexbox for centering */
        flex-flow: column;
        justify-content: center; /* Horizontally center */
        align-items: center; /* Vertically center */
        width: 100%; /* Optional: Set the width of the container */
        height: auto; /* Optional: Set the height of the container */
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .container2{
        min-height: 0;
        justify-content: center;
        flex-flow: column;
        padding-left: 5%;
        padding-right: 5%;
    }
    .container2 #welcome{
        padding-top: 6%;
        padding-bottom: 3%;
        font-weight: bolder;
        font-size: 30px;
        text-align: center;
        color: #0000a2; 
    }
    .container2 #welcome-content{
        
        font-size: 18px;
        text-align: center;
        color: #0000a2;
        padding:0;
        max-width: 80%;
    }
    .inquiry{
        position: relative;
        overflow: hidden;
        padding-top: 0px;
        padding-bottom: 20%;
    }
    .inquiry img{
        visibility: hidden;
    }
    .inquiry h5{
        font-size: 25px;
        color: black;
        padding: 1px 0;
        font-weight: bold;
        text-shadow: 5px 2px  0px rgba(0,0,0,0.3);
        max-width: 600px;
    }
    .inquiry p{
        font-size: 12px;
        color: black;
        padding-top: 10px;
        padding-bottom: 30px;
        font-weight: lighter;
        text-shadow: 2px 1px  0px rgba(0,0,0,0.3);
        max-width: 400px;
    }
    .inquiry .content .contactbtn{
        padding: 5px;
        background: rgba(0, 0, 0, 0);
        box-shadow: inset 0 5px 10px rgba(0,0,0,0.3);
        width: auto;
        border-style: solid;
        color: gray;
        font-weight: bold;
        font-size: 15px;
        cursor: pointer;
        
        transition: .2s;
    }
    .inquiry .content .contactbtn:hover{
        letter-spacing: 2px;
    }
}
@media (max-width: 500px){
    .container1 #next, 
    .container1 #prev{
    top:82%;
    background: rgba(255, 255, 255, 0.401);
    color: rgb(255, 255, 255);
    height: 60px;
    width: 50px;
    }
    .container2{
        min-height: 0;
        justify-content: center;
        padding-left: 5%;
        padding-right: 5%;
    }
    .container2 #welcome{
        padding-top: 6%;
        padding-bottom: 3%;
        font-size: 40px;
        text-align: center;
    }
    .container2 #welcome-content{
        font-size: 20px;
        padding:0;
        max-width: 80%;
    }
    .container3{
        display: flex; /* Use flexbox for centering */
        flex-flow: column;
        justify-content: center; /* Horizontally center */
        align-items: center; /* Vertically center */
        width: 100%; /* Optional: Set the width of the container */
        margin-top: 0;
        margin-bottom: 0px;
    }
    .container3 img{
        padding: 5px 0;
        max-width: 100%; /* Optional: Ensure the image doesn't exceed container width */
        max-height: 100%; /* Optional: Ensure the image doesn't exceed container height */
    }
    .inquiry{
        padding: 0;
    }
    .inquiry h5{
        font-size: 30px;
        color: black;
        padding: 0;
        font-weight: bold;
        max-width: 100%;
    }
    .inquiry .content{
        position: absolute;
        margin-top: 0;
        margin-right: 0;
        width: 100%;
        left: 0;
        
        align-items: left;
        justify-content: left;
        flex-flow: column;
        text-align: center;
    }
    .inquiry p{
        font-size: 15px;
        padding-top: 10px;
        padding-bottom: 30px;
        max-width: 100%;
    }
    .inquiry img{
        visibility:hidden;
        position: relative;
        height:250px;
        width: 100%;
    }
    .inquiry .content .contactbtn{
    
        padding: 10px;
        background: rgba(0, 0, 0, 0);
        box-shadow: inset 0 5px 10px rgba(0,0,0,0.3);
        width: auto;
        border-style: solid;
        color: gray;
        font-weight: bold;
        font-size: 12px;
        cursor: pointer;
        
        transition: .2s;
    }
    
    #painter {
        display: none;
    }
}
@media (max-width: 300px){
    .container2 #welcome-content{
        font-size: 15px;
        text-align: center;
        color: #0000a2;
        padding:0;
        max-width: 80%;
    }
    .inquiry{
        position: relative;
        overflow: hidden;
        padding-top: 0;
        padding-bottom: 10%;
    }
    .inquiry h5{
        font-size: 20px;  
    }
    .inquiry p{
        font-family: 'Arial', Helvetica, sans-serif;
        font-weight: bolder;
        font-size: 15px;
    }
}

