@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,200i,300,400,500,600,700,800,900&display=swap");

*{
	list-style: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

.wrapper{
	width: 1000px;
	margin: 100px auto;
}

.tabs ul{
	display: flex;
	background: #fbfbfb;
	border: 1px solid #dddddd;
	border-radius: 5px;
	margin-bottom: 25px;
}

.tabs ul li{
	width: 250px;
	padding: 15px;
	border-right: 1px solid #dddddd;
	text-align: center;
	color: #3b3b3b;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 3px;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
}

.tabs ul li .icon{
	font-size: 20px;
	margin-right: 5px;
	vertical-align: middle;
}

.tabs ul li:last-child{
	border-right: 0px;
}

.tabs ul li:before{
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #ff656a;
	opacity: 0;
	transition: all 0.2s ease;
}

.tabs ul li:hover,
.tabs ul li.active{
	background: #e8f5f1;
    color: #ff656a;
}

.tabs ul li:hover:before,
.tabs ul li.active:before{
	opacity: 1;
}

.content{
	background: #fbfbfb;
	border: 1px solid #dddddd;
	border-radius: 5px;
	padding: 20px;
}

.tab_wrap .title{
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: 600;
}

.tab_wrap .tab_content p{
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 10px;
}

@media (max-width: 428px) {
    .wrapper{
        width: 100%;
        margin: 0 auto;
    }
    
    .tabs ul{
        display:flex;
        flex-direction: column;
        width: 100%;
       
    }
    .tabs ul li{
        width: 100%;
        padding: 15px;
        border-right: 1px solid #dddddd;
        text-align: center;
        color: #3b3b3b;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 3px;
        cursor: pointer;
        transition: all 0.2s ease;
        position: relative;
    }

    .tabs ul li .icon{
        font-size: 3rem;
        margin-right: 0.5rem;
        vertical-align: middle;
    }

  } 
  @media(orientation: landscape) {
    body {
      flex-direction: row;
    }
  }