:root {
    --secondary: #263842
}

h2 {
    font-size: 2.4rem;
    color: var(--secondary);
}
h3 {
    font-size: 1.7rem;
    color: var(--secondary);
	font-weight: 450;
}
h5 {
    font-size: .75rem;
    color: var(--secondary);
	font-weight: 400;
}

.recent-news {
	background-color: #F5F5F5;
	width: 100%;
}
.news-group {
    display: flex;
	height: 420px;
	width: 100%;
	align-items: start;
	justify-items: start;
	position: relative;
	overflow-x: hidden;
}
.news-item {
    display: flex;
	height: 400px;
    width: 320px;
    background-color: #F5F5F5;
    position: relative;
	margin: 10px 20px;
	border-radius: 10px;
}
.news-item img{
	height: 200px;
    width: 300px;
	object-fit: fill;
	margin: 10px 10px;
}
/* Caption text */
.text-container {
    position: absolute;
    height: 100%;
    width: 100%;
    display: grid;
	grid-template-rows: 1fr 1fr;	
    align-items: top;
	gap: 2em;
}

.text-content {
	width: 90%;
	height: 90%;
    color: #000000;
	display: grid;
	grid-template-rows: 1fr 4fr;
}

.text-content h1 {
    width: 100%;
	font-size: 1.1em;
    line-height: 1.3em;
    font-weight: 700;
}
.text-content h1:hover {
    transform: translateX(.5em);
    -webkit-transform: translateX(.5em);
    -moz-transform: translateX(.5em);
    -ms-transform: translateX(.5em);
    -o-transform: translateX(.5em);
	color: grey;
	cursor: pointer;
}
.text-content h5 {
    font-size: .75rem;
    color: var(--secondary);
	font-weight: 400;
}

.text-content p {
    width: 100%;
    font-weight: 300;
    /* font-size: 1.2em; */
}

.sol_header p {
    color: #fff;
}

.sol_header {
    background-image: url(../img/news/newsupdates_banner.webp);
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff !important;
    position: relative;
    background-attachment: fixed;
}

.banner .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
}


section {
    width: 100%;
}

.section-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3em;
}

.section-imgbox {
    width: 100%;
    height: 100%;
}

.btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3em;
}

.newsupdates-btn  {
    background-color: #FFFFFF;
    color: #000000;
	border: 2px solid #263842;
}

.nubtn {
    height: max-content;
    padding: .6em 3em;
    cursor: pointer;
    width: max-content;
    border-radius: 100em;
    -webkit-border-radius: 100em;
    -moz-border-radius: 100em;
    -ms-border-radius: 100em;
    -o-border-radius: 100em;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    font-size: .9em;
    text-transform: uppercase;
    transition: .3s ease-in;
    -webkit-transition: .3s ease-in;
    -moz-transition: .3s ease-in;
    -ms-transition: .3s ease-in;
    -o-transition: .3s ease-in;
}

.nubtn:hover {
    transform: translateX(.5em);
    -webkit-transform: translateX(.5em);
    -moz-transform: translateX(.5em);
    -ms-transform: translateX(.5em);
    -o-transform: translateX(.5em);
}

#slide {
    width: 50%;
}

.slider-container {
    height: 100%;
    width: 100%;
}

.mySlides {
    display: none;
    height: 100%;
    width: 100%;
    background-color: rgb(164, 164, 164);
    position: relative;
	border-radius: 10px;
    /* z-index: 2; */
}

.mySlides img {
    height: 100%;
    width: 100%;
    object-fit: cover;
	border-radius: 10px;
}

.arrow-container {
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.arrows {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.prev,
.next {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 16px;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;

    background-color: #0000004b;
    width: 2.5em;
    height: 3.5em;

    border-radius: 0 20em 20em 0;
    -webkit-border-radius: 0 20em 20em 0;
    -moz-border-radius: 0 20em 20em 0;
    -ms-border-radius: 0 20em 20em 0;
    -o-border-radius: 0 20em 20em 0;
}

.next {
    border-radius: 20em 0 0 20em;
    -webkit-border-radius: 20em 0 0 20em;
    -moz-border-radius: 20em 0 0 20em;
    -ms-border-radius: 20em 0 0 20em;
    -o-border-radius: 20em 0 0 20em;
}

.prev:hover,
.next:hover {
    background-color: var(--primary);
    color: var(--secondary);
}



.slider-indicator {
    position: relative;
    bottom: 2em;
    right: 0;
    left: 0;
    text-align: center;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 13px;
    width: 13px;
    margin: 0 2px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: var(--primary);
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px
    }
}
/* ------------------------------------------ SLIDER END ------------------------------------------ */

@media screen and (max-width:1650px) {
	
}

@media screen and (max-width:1420px) {

}

@media screen and (max-width:1350px) {

    .sol_header-group h1 {
        font-size: 3.5em;
    }

    .sol_header-group p {
        width: 50%;
    }
}

@media screen and (max-width:1200px) {

    .section-heading h2 {
        font-size: 2em;
    }

    .am .section-group {
        grid-template-columns: 1fr;
    }

    .am-img-grid span{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3em;
        align-items: start;
    }	
}


@media screen and (max-width:1170px) {

}

@media screen and (max-width:1050px) {
    .sol_header-group {
        padding: 3em 0;
    }
}

@media (max-width: 950px) {


}

@media screen and (max-width:800px) {

}

@media screen and (max-width: 750px) {
    .container {
        min-height: 100vh;
    }
}

@media screen and (max-width: 700px) {
	.section-group {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 2em;
	}
    .section-img-grid span {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 2em;
    }

    .section-imgbox {
        width: 100%;
        height: 45vh;
    }
    
    .section-imgbox img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 1em;
        -webkit-border-radius: 1em;
        -moz-border-radius: 1em;
        -ms-border-radius: 1em;
        -o-border-radius: 1em;
    }

	.slider-indicator {
		position: relative;
		display: none;
		bottom: 2em;
		text-align: center;
	}	

    .sol_header-group p{
        width: 100%;
    }
	
	.btn-group {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 1em;
    }
	
	.news-group {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 2em;
	}
	.news-item {
		display: grid;
		height: 400px;
		width: 320px;
		background-color: #F5F5F5;
		position: relative;
		margin: 10px 20px;
		border-radius: 10px;
	}
	.news-item img{
		height: 200px;
		width: 300px;
		object-fit: fill;
		margin: 10px 10px;
	}
	.arrow-container {
		display: none;
	}
}

@media screen and (max-width: 500px) {
    .sol_header-group {
        padding: 1em 0 !important;
    }
    .section-heading h2 {
        font-size: 1.5em;
    }

    .section-heading img {
        width: 4em;
    }

    .wms-grid,
    .sm-specs-grid,
    .ab-grid {
        grid-template-columns: 1fr;
    }

    .sol_header .container {
        min-height: 100vh;
    }
}

@media (max-width: 670px) {

}


@media screen and (max-width:600px) {

}

@media (max-width: 470px) {
	
}