@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,600;1,700&display=swap');
*,
*:after,
*:before {
	box-sizing: border-box;
}

body {
	font-family: 'poppins' !important;
	font-size: 1rem;
	line-height: 1.5;
	background-color: #fff;
	color: #484847;
	padding-bottom: 0rem;
}
html {
	scroll-behavior: smooth;
  }

.article-img img {
	display: block;
	max-width: 100%;
}

.responsive-wrapper {
	width: 95%;
	max-width: 1900px;
	margin-left: auto;
	margin-right: auto;
}


.page-title {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	display: flex;
	justify-content: center;
	h1 {
		font-size: 1.75rem;
		font-weight: 700;
		color: #000;
		text-align: center;
		position: relative;
		
		
		&:after {
			content: "";
			display: block;
			position: absolute;
			width: 100%;
			bottom: -3px;
			height: 2px;
			background-color: currentcolor;
		}
	}
}

.magazine-layout {
	margin-top: 3rem;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-row-gap: 2rem;
}

.magazine-column {
	padding: 0 1.5rem;
	grid-column: span 5;
	
	@media (min-width: 800px) {
		grid-column: span 2;
		border-right: 1px solid #CCC;
		&:last-child {
			border-right: none;
		}
	}
	
	&:nth-child(2) {
		@media (min-width: 800px) {
			grid-column: span 1;
		}
	}
	&:nth-child(3) {
		@media (min-width: 800px) {
			grid-column: span 1;
		}
	}
}

.article {
	& + .article {
		padding-top: 2rem;
		margin-top: 2rem;
		border-top: 1px solid #ccc;
	}
}

.article-img {
	& + * {
		margin-top: 1rem;
	}
}

.article-link {
	color: inherit;
	text-decoration: none;
}

.article-title {
	font-family: 'poppins';
	font-weight: 600;
	line-height: 1.25;
	color: #000;

	&--large {
		font-size: 2rem;
		& + * {
			margin-top: 1.5rem;
		}
	}
}
.article-title {
	font-family: 'poppins';
	font-weight: 600;
	line-height: 1.25;
	color: #000;
	&--medium {
		font-size: 1.5rem;
		& + * {
			margin-top: 0.75rem;
		}
	}
}
.article-title {
	font-family: 'poppins';
	font-weight: 600;
	line-height: 1.25;
	color: #000;
	&--small {
		font-size: 1.25rem;
		& + * {
			margin-top: 0.75rem;
		}
	}
}

.article-link {
	color: inherit;
}

.mark {
	background-color: #a1cffa;
	&--secondary {
		background-color: #c2dddf;
	}
	
	&--tertiary {
		background-color: #F8E177;
	}
}

.article-excerpt,
.article-creditation {
	font-size: 1.125rem;
	line-height: 1.4;
	p + p {
		margin-top: 1.5rem;
	}
}

.article-author {
	display: flex;
	flex-wrap: wrap;
	margin-top: 1.5rem;
}

.article-author-img {
	width: 3rem;
	height: 3rem;
	border-radius: 12px;
	background-color: #323232;
	overflow: hidden;
	background-blend-mode: multiply;
	img {
	}

	& + .article-author-info {
		margin-left: 0.5rem;
	}
}

.article-author-info {
	line-height: 1.375;
	dl {
		margin-top: 0.25em;
	}

	dt {
		font-weight: 600;
	}

	dd {
		font-size: 0.875em;
	}
}

.article-category {
	font-weight: 500;
	margin-bottom: 1rem;
	display: block;
	svg {
		max-width: 1.5rem;
		margin-right: .5rem;
		vertical-align: middle;
	}
	
}



 #slide {
  margin-top: 6rem;
  text-align: center;
  margin: auto;
  padding: auto;
}

.wrapper {
    display: inline-flex;
    max-width: 90%;
    position: relative ;
    padding: 20px 0px;
}

.wrapper i {
    top: 50%;
    height: 44px;
    width: 44px;
    color: #343F4F;
    cursor: pointer;
    font-size: 1.15rem;
    position: absolute;
    text-align: center;
    line-height: 44px;
    background: #CCC;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.1s linear;
}

.wrapper i:active {
    transform: translateY(-50%) scale(0.9);
}

.wrapper i:hover {
    background: #f2f2f2;
}

.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 {
    padding: 20px 5px;
    height: 100%;
    object-fit: cover ;
    user-select: none;
    margin-left: 14px;
    width: calc(100%/4);
}

.carousel img:first-child {
    margin-left: 0px;
}

/* Media Queries for adjusting image size on smaller screens */
@media screen and (max-width: 900px) {
	#slide {
		padding-left: 0px;
	  }
	.carousel img {
        width: calc(100% / 3);
    }
}

@media screen and (max-width: 600px) {

	.carousel img {
        width: calc(100% / 2);
    }
}




.responsive1-wrapper {
	width: 95%;
	max-width: 1900px;
	margin-left: auto;
	margin-right: auto;
}

.magazine1-layout {
	margin-top: 6rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-row-gap: 2rem;
}

.magazine1-column {
	padding: 0 2rem;
	grid-column: span 5;
	
	@media (min-width: 800px) {
		grid-column: span 1;
		border-right: 1px solid #CCC;
		&:last-child {
			border-right: none;
		}
	}
	
	&:nth-child(2) {
		@media (min-width: 800px) {
			grid-column: span 1;
		}
	}
	&:nth-child(3) {
		@media (min-width: 800px) {
			grid-column: span 1;
		}
	}
}
.magazine1-column h2{
	padding-bottom: 15px;
}
.article1 {
	& + .article1 {
		padding-top: 2rem;
		margin-top: 2rem;
		border-top: 1px solid #ccc;
	}
}

.article1-img {
	& + * {
		margin-top: 1rem;
	}
}

.article1-link {
	color: inherit;
	text-decoration: none;
}

.article1-title {
	font-family: "Fraunces", serif;
	font-weight: 900;
	line-height: 1.25;
	color: #000;

	&--large {
		font-size: 2rem;
		& + * {
			margin-top: 1.5rem;
		}
	}
}
.article1-title {
	font-family: 'poppins', serif;
	font-weight: 600;
	line-height: 1.25;
	color: #000;
	&--medium {
		font-size: 1.5rem;
		& + * {
			margin-top: 0.75rem;
		}
	}
}
.article1-title {
	font-family: 'poppins';
	font-weight: 600;
	line-height: 1.25;
	color: #000;
	&--small {
		font-size: 1.25rem;
		& + * {
			margin-top: 0.75rem;
		}
	}
}

.article1-link {
	color: inherit;
}

.mark {
	background-color: #a1cffa;
	&--secondary {
		background-color: #c2dddf;
	}
	
	&--tertiary {
		background-color: #F8E177;
	}
}

.article1-excerpt,
.article1-creditation {
	font-size: 1.125rem;
	line-height: 1.4;
	p + p {
		margin-top: 1.5rem;
	}
}

.article1-author {
	display: flex;
	flex-wrap: wrap;
	margin-top: 1.5rem;
}

.article1-author-img {
	width: 3rem;
	height: 3rem;
	border-radius: 12px;
	background-color: #323232;
	overflow: hidden;
	background-blend-mode: multiply;
	img{
	}

	& + .article1-author-info {
		margin-left: 0.5rem;
	}
}

.article1-author-info {
	line-height: 1.375;
	dl {
		margin-top: 0.25em;
	}

	dt {
		font-weight: 600;
	}

	dd {
		font-size: 0.875em;
	}
}

.article1-category {
	font-weight: 500;
	margin-bottom: 1rem;
	display: block;
	svg {
		max-width: 1.5rem;
		margin-right: .5rem;
		vertical-align: middle;
	}
	
}

.article1-img img {
	display: block;
	max-width: 100%;
}

.article2-img img {

	display: flex;
	max-width: 100px;
	float: left;
	margin-left: -45px;
	padding-right: 10px;
}








  



.foot{
    padding-top: 50px !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    text-decoration: none;
}
footer{
  width: 100%;
  bottom: 0;
  left: 0;
  background: #111;
}
footer .content{
  max-width: 1350px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .content p,a{
  color: #fff;
  text-decoration: none;
}
footer .content .box{
  width: 33%;
  transition: all 0.4s ease;
}
footer .content .topic{
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

footer .content .campusesheading{
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}


footer .content p{
  text-align: justify;
}
footer .content .lower .topic{
  margin: 24px 0 5px 0;
}
footer .content .lower i{
  padding-right: 16px;
}
footer .content .middle{
  padding-left: 80px;
}
footer .content .middle a{
  line-height: 32px;
  text-decoration: none;
}
footer .content .right input[type="text"]{
  height: 45px;
  width: 100%;
  outline: none;
  color: #d9d9d9;
  background: #000;
  border-radius: 5px;
  padding-left: 10px;
  font-size: 17px;
  border: 2px solid #222222;
}
footer .content .right input[type="button"]{
  height: 42px;
  width: 100%;
  font-size: 18px;
  color: #d9d9d9;
  background: #eb2f06;
  outline: none;
  border-radius: 5px;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 12px;
  border: 2px solid #eb2f06;
  transition: all 0.3s ease-in-out;
}
.content .right input[type="button"]:hover{
  background: none;
  color:  #eb2f06;
}

footer .content .media-icons a{
  font-size: 16px;
  height: 45px;
  width: 45px;
  display: inline-block;
  text-align: center;
  line-height: 43px;
  border-radius: 5px;
  border: 2px solid #222222;
  margin: 30px 5px 0 0;
  transition: all 0.3s ease;
}
.content .media-icons a:hover{
  border-color: #eb2f06;
}
footer .bottom{
  width: 100%;
  text-align: right;
  color: #d9d9d9;
  padding: 0 40px 5px 0;
}
footer .bottom a{
  color: #eb2f06;
}
footer a{
  transition: all 0.3s ease;
}
footer a:hover{
  color: #eb2f06;
}
@media (max-width:1100px) {
  footer .content .middle{
    padding-left: 50px;
  }
}
@media (max-width:950px){
  footer .content .box{
    width: 50%;
  }
  .content .right{
    margin-top: 40px;
  }
}
@media (max-width:560px){
  footer{
    position: relative;
  }
  footer .content .box{
    width: 100%;
    margin-top: 30px;
  }
  footer .content .middle{
    padding-left: 0;
  }
}


.magcard-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    max-width: 1250px;
    margin: 150px auto;
	margin-top: 40px;
	margin-bottom: 0;
    padding: 20px;
    gap: 20px;
}

.magcard-list .magcard-item {
    background: #f5f5f5;
    padding: 26px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border 0.5s ease;
}

.magcard-list .magcard-item:hover {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

.magcard-list .magcard-item img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    object-fit: cover;
}

.magcard-list span {
	width: 100%;
    display: inline-block;
    background: #F7DFF5;
	padding: 1%; 
	border-radius: 2px;
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 600;
}

.magcard-list .red {
    background-color: #F7DFF5; 
    color: #B22485;
}   

.magcard-list .blue {
    background-color: #d1e8ff;
    color: #2968a8;
}

.magcard-list .green {
    background-color: #d6f8d6; 
    color: #205c20;
}

.magcard-item h1 {
    color: #000;
    font-size: 16px;
    margin-top: 5px;
    font-weight: 400;
}

.magcard-item a{
    text-decoration: none;
}
.magcard-item h1:hover{
    color: #2968a8;
}


@media (max-width: 1200px) {
    .magcard-list .magcard-item {
        padding: 15px;
    }
}

@media screen and (max-width: 980px) {
    .magcard-list {
        margin: 0 auto;
    }
}