/* ========================================================
							INDEX
   ========================================================






   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap');

:root {
	--heading-color: #292929;
	--bg-color: #E3E3E3;
	--bg-color-2: #f9f9f9;
	--bg-color-3: #EEEEEE;
	--body-color: #686868;
	--theme-color: #FEBC34;
	--theme-color-2: #F6475F;
	--theme-color-3: #2024b0;
	--theme-color-sec: #255dff;
	--white-color: #fff;
	--black-color: #000;
	--light-color: #EFEFEF;
	--border-color:#E3E8FE;
	--lightgrey-color: #ccc;
	--font-family-1: 'Source Sans Pro', sans-serif;
    --font-family-2: 'Poppins', sans-serif;
}

/* ===== Default ===== */

*, *:before, *:after {
 	box-sizing: inherit;
}

html, body {
	height: auto;
    width:100%;
    margin:0;
    padding:0;
    overflow-x: hidden;
    font-size: 62.5%;
	box-sizing:border-box;
}

body {
	font-family: var(--font-family-1);
	font-style: normal;
	color: var(--body-color);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.8rem;
	-moz-osx-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--body-color);
}

a,
a:active,
a:focus,
a:hover {
    outline:none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	text-decoration: none;
}

a:hover {
    color:#666;
}

h2 {
    color:var(--heading-color);
    margin:0 0 1.5rem 0;
    font-weight: 700;
    font-family: var(--font-family-2);
	line-height: 1.2;
}

h2 {
    font-size:36px;
}

.img, img {
	max-width: 100%;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	height:auto;
}

::selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

/* Grid */
.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 3rem;
}

/* Padding */
.de-padding {
    padding: 8rem 0;
}

/* Site Title */
.site-title {
    margin-bottom: 5rem;
    margin-top: -1rem;
    position: relative;
    z-index: 1;
}

.site-title::before {
    position: absolute;
    content: attr(data-text);
    bottom: 40px;
    left: 50%;
    font-size: 12.6rem;
    font-family: var(--font-family-2);
    color: #FCFCFC;
    opacity: 1;
    z-index: -1;
    font-weight: 600;
    transform: translate(-50%, 0);
    width: 100%;
}

.site-title h2 {
    text-transform: capitalize;
    line-height: 5rem;
    font-size: 4rem;
	margin-bottom: 0;
}

.sub-head {
    font-size: 1.6rem;
    color: var(--heading-color);
    padding-left: 0;
    display: block;
    letter-spacing: 1.96px;
    margin-bottom: 1rem;
}


@media only screen and (min-width: 1400px) {
	.container {
		max-width: 1360px;
	}
} 


/* ===== What's news ===== */

/* Blog 2 */
.blog-2-box {
    display: grid;
    grid-template-columns: 25rem 1fr;
	box-shadow: 1px 5px 10px rgba(114, 114, 114, 0.4);
}

.blog-2-box .blog-text-tags {
    padding: 1rem 3rem;
}

.blog-2-box .blog-2-tags {
    margin-bottom: 1rem;
}

.blog-2-box .blog-2-tags a {
    font-size: 1.4rem;
    font-family: var(--font-family-2);
    line-height: 3rem;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    margin-right: 6px;
    display: inline-block;
}

.blog-2-box .blog-2-tags a:hover {
    color: #141414;
}

.blog-2-box .blog-2-tags a::before {
    position: absolute;
    right: -6px;
    bottom: 0px;
    content: ',';
}

.blog-2-box .blog-2-tags a:last-child::before {
    display: none;
}

.blog-2-box .blog-2-text {
	font-size: 14px;
}

.blog-2-box .blog-2-text b {
	font-weight: 700;
	padding-right: 25px;
}

.blog-2-box .blog-2-text span {
	color:#669900;
	font-weight: 600;
}

.blog-2-box .blog-2-bottom {
	padding: 0 2rem;
	border-top: 1px solid rgba(128, 128, 128,0.2);
}

.blog-2-box .blog-2-bottom a {
	font-size: 15px;
    display: flex;
    align-items: center;
}

.blog-2-box .blog-2-bottom a:hover {
    color: #8080c0;
}


.blog-2-content .blog-2-bottom a {
	position: relative;
	display: inline-block;
	padding: 3% 15%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.blog-2-content .blog-2-bottom a {
		padding: 4.5% 11%;
	}
}

@media only screen and (max-width: 1199px) {
	.blog-2-content .blog-2-bottom a {
		padding: 2% 17%;
	}
}