@import url('https://fonts.googleapis.com/css?family=Poppins: 200,300,400,500,600,700,800,900&display=swap');
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif
}
section
{
    position: relative;
    width: 100%;
    min-height: 5vh;
    padding: 90px;
    display: flex;
    justify-content: space-between;
    align-items:center;
    background: rgb(255, 255, 255);
}

header
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo
{
    position: relative;
    max-width: 80px;
}

header ul
{
    position: relative;
    display: flex;
}

header ul li
{
    list-style: none;
}

header ul li a
{
    display: inline-block;
    color: rgb(0, 0, 0);
    font-weight:400;
    margin-left: 40px;
    text-decoration: none;
}
.TABS::after
{
	content: '';
	display:  block;
	width: 0;
	height: 2px;
	background: rgb(0, 0, 0);
	transition: width .3s
}
.TABS:hover::after
{
	width: 100%;
	transition: width .3s;
}

.content
{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content .textBox
{
    position: relative;
    max-width: 600px;
}

.content .textBox h2
{
    color: #333;
    font-size: 4em;
    line-height: 1.4em;
    font-weight: 500;
}

.content .textBox h2 span
{
    color: #e24e28;
    font-size: 1.2em;
    font-weight: 800;
}

.content .textBox p
{
    color: #333;
}

.content .textBox a
{
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: #e24e28;
    color: #fff;
    border-radius: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
}

.content .imgBox
{
    width: 600px;
    display: flex;
    justify-content: flex-end;
    padding-right: 100px;
    margin-top: 50px;
	
}

.content .imgBox img
{
    max-width: 400px;
}

.icons
{
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: flex;
}

.icons li
{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    cursor: pointer;
	transition: transform .2s;
}

.icons li:hover
{
    transform: translateY(-15%);
	
	
}

.icons li img
{
    max-width: 80px;
}

.social
{
    position: absolute;
    top: 60%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.social li
{
    list-style: none;
}

.social li a
{
    display: inline-block;
    margin: 5px 0;
    transform: scale(0.6);
    filter: invert(1);
}

.circular
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f17742;
    clip-path: circle(600px at right 900px);
	transition:all .2s linear;
	
}
*{
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
main
{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items:center;
    background: rgb(255, 255, 255);
}
.wrapper
{
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.card
{
    width: 350px;
    height: 200px;
    padding: 3rem 1rem;
    background: #fff;
    position: relative;
    display: flex;
    align-items: flex-end;
    box-shadow: 0px 8px 10px rgba(0,0,0,0.5);
    transition: 0.5s ease-in-out;
    margin-top: 20px;
}
.card:hover
{
    transform: translateY(20px);
}
.card:before
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #d9e1e0ca, rgb(223, 55, 13));
    z-index: 2;
    transition: 1s all;
    opacity: 0;
}
.card:hover:before
{
    opacity: 1;
}
.card img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.card .info
{
    position: relative;
    z-index: 3;
    color: rgb(255, 255, 255);
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all;
    font-size: 20px;
}
.card:hover .info
{
    opacity: 1;
    transform: translateY(30px);
}
