.section-divider {
    width: 100%;
    background-color: #f2c322;
    display: flex;
    align-items: center;
    padding: 5px;
    flex-wrap: wrap;
    justify-content: space-around;
    color: #fff;
}

.contact-button:hover {
  background-color: #0056b3;
}
.section-line {
  width: 100%;
  border: none;
  border-top: 1px solid #333;
}
* {box-sizing: border-box;}
        .slideshow-container {
            width: 100%;
            position: relative;
            overflow: hidden;
            margin: auto;
            box-shadow: inset 0px -6px 0 #002a55;
        }
        .mySlides {
            display: none;
            position: relative;
            width: 100%;
            height: auto;
        }
        .mySlides img {
            width: 100%;
            height:450px;
        }
        .read-more {
            display: inline-block;
            color: #fff;
            background-color: #e7ad14;
            padding:5px 20px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color .3s;
        }
@keyframes slideInFromRight {
    0% { transform: translateX(100%); }
    100% { transform: translateX(0); }
}  
.slideInFromRight {
    animation: slideInFromRight 2s ease-in-out;
}
.title-box {
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    position: absolute;
    top: 43%;
    background: rgb(0 0 0 / 54%);
    border-radius: 10px 0;
    padding: 1px;  
    margin: 5px;
}
@keyframes textFrame {
    0% { opacity: 0; transform: translateY(-100px); }
    70% { opacity: 1; transform: translateY(10px); }
    80% { transform: translateY(-10px); }
    90% { transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
 .description-box {
            animation: textFrame 5s ease-out;
            color: #fff;
            font-size: 14px;
            font-weight: bold;
            position: absolute;
            bottom: 50px;
            background: rgb(0 32 255 / 47%);
            border-radius: 5px 0 0 5px;
            width: 310px;
            padding: 5px;
            margin: 5px;
        }
        
@keyframes fadeZoom {
    0% {opacity: 0; transform: scale(0.5)}
    100% {opacity: 1; transform: scale(1)}
}
.fadeZoom {
    animation: fadeZoom 2s ease-in-out;
}
@keyframes spinZoom {
    0% {transform: scale(0) rotate(0deg);}
    100% {transform: scale(1) rotate(360deg);}
}
.spinZoom {
    animation: spinZoom 2s ease-in-out;
}
@keyframes slideInTop {
    0% {transform: translateY(-100%);}
    100% {transform: translateY(0);}
}
.slideInTop {
    animation: slideInTop 2s ease-in-out;
}
@keyframes slideInBottom {
    0% {transform: translateY(100%);}
    100% {transform: translateY(0);}
}
.slideInBottom {
    animation: slideInBottom 2s ease-in-out;
}
@media screen and (max-width: 600px) {
  .title-box  {
    font-size: 40px;
     margin: 5px;
  }
.anwankdmh{
    font-size: 30px; 
}
}

