*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: 'Lato', sans-serif;
    color: #454545;
    font-weight: 400;
    background: #ffffff;
}

.right_body a {
    color: #333333;
    font-weight: 400;
    outline: none;
    text-decoration: none;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}

.right_body p {
    padding: 0;
    margin: 0 0 15px 0;
    color: #454545;
    font-weight: 400;
}

h1,
.right_body h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0 0 15px 0;
    color: #333333;
    font-weight: 700;
    
}

h1 {
    font-weight: 700;
}

.right_body img {
    width: 100%;
    height: auto;
}

.credit {
	padding: 30px 15px 0 15px;
	text-align: center;
	font-size: 30px;
	font-weight: 400;
}

.credit a {
	font-weight: 900;
	color: #000000;
	text-decoration: underline;
}



.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 920px;
    }
}


.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.column {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .column {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .column {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .column {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.section-title {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 45px 0 30px 0;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    background: #eeeeee;
}

.section-title h1 {
    color: #353535;
    font-size: 30px;
    letter-spacing: 5px;
    margin-bottom: 5px;
}

@media(max-width: 767.98px) {
    .section-title h1 {
        font-size: 40px;
        letter-spacing: 3px;
    }
}

@media(max-width: 567.98px) {
    .section-title h1 {
        font-size: 30px;
        letter-spacing: 2px;
    }
}.effect-5 {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.effect-5 * {
    transition: .3s;
}

.effect-5 .effect-img {
    font-size: 0;
    overflow: hidden;
}

.effect-5 .effect-img img {
    width: 100%;
    height: auto;
    transition: .5s;
}

.effect-5:hover .effect-img img {
    transform: scale(1.2);
}

.effect-5 .effect-text {
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 15px;
    text-align: center;
    background: rgba(0, 0, 0, .1);
    border: 15px solid rgba(255, 255, 255, .1);
    transition: .5s;
}

.effect-5 .effect-text h2 {
    position: relative;
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 15px;
    top: calc(50% - 13px); 
    transition: .5s;
}

.effect-5 .effect-text p {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
    transform: scale(0);
    opacity: 0;
    transition: .5s;
    transition-delay: .1s;
}


.effect-5 .effect-btn .btn {
    display: inline-block;
    height: 35px;
    padding: 7px 15px;
    color: #333333;
    background: #ffffff;
    transform: scale(0);
    opacity: 0;
    transition: .2s;
    transition-delay: .3s;
}

.effect-5:hover .effect-text {
    background: rgba(0, 0, 0, .5);
    border: 15px solid rgba(255, 255, 255, .5);
}

.effect-5:hover .effect-text h2 {
    top: 0;
}

.effect-5:hover .effect-text p {
    transform: scale(1);
    opacity: 1;
}

.effect-5:hover .effect-text .btn {
    transform: scale(1);
    opacity: 1;
}
