@import url('https://fonts.googleapis.com/css2?family=Charmonman:wght@400;700&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200&family=Neuton:wght@200;300;400;700;800&family=Tangerine:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;500;600;700&display=swap');

body {
	font-family: 'Charmonman', cursive;
	font-family: 'Tangerine', cursive;
	font-family: 'Montserrat', sans-serif;
	padding: 50px 0;
    background-color: #ddd;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Neuton', serif;
}
.section-one {
    background-color: #f8f8f8;
    padding: 50px 50px 0;
}
.section-two {
    background-color: #f8f8f8;
    padding: 50px;
}

.section-one .display-3 {
    font-weight: 700;
    font-style: italic;
}
.section-one .img-fluid {
    width: 100%;
    margin-bottom: 20px;
}
.custom-btn {
    text-align: center;
    margin-bottom: 50px;
}
a.custom-button {
    text-decoration: none;
    border: 1px solid #ddd;
    padding: 10px 20px;
    background-color: #CA007A;
    color: #fff;
    transition: .3s;
    text-transform: uppercase;
}

a.custom-button:hover {
    background-color: #ddd;
    color: #000;
}

.sidebar-left {
    border: 1px solid #ddd;
}
.sidebar-left h1 {
    background-color: #CA007A;
    color: #fff;
    padding: 10px 20px;
    margin: 0;
}

.sidebar-left ul {
    list-style: none;
    text-decoration: none;
    padding: 0;
    margin-bottom: 30px;
}
.sidebar-left ul li {
    position: relative;
}
.sidebar-left ul li:before {
    content: '➤';
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 15px;
    color: #CA007A;
    transition: .3s;
}
.sidebar-left ul li:hover:before {
    content: '➤';
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 15px;
    color: #fff;
}
.sidebar-left ul li a {
    padding: 5px 15px 5px 40px;
    display: block;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
    color: #555;
    background-color: #f5f5f5;
    transition: .3s;
}
.sidebar-left ul li:first-child a {
    padding-top: 15px;
    border-top: 1px solid #ddd;
}
.sidebar-left ul li a:hover {
    border-bottom: 1px solid #ddd;
    color: #fff;
    background-color: #CA007A;
}
.sidebar-left .img-fluid {
    padding: 10px 15px;
}
.sidebar-left .custom-btn {
    margin-bottom: 30px;
}
.section-two h2 {
    font-weight: 600;
    font-style: italic;
}
.section-two h3 {
    margin-bottom: 0;
    font-weight: 500;
    font-style: italic;
}
.section-two p {
    padding-left: 50px;
}