/**********************************/
/********** General CSS ***********/
/**********************************/
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    width: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    background: #ffffff;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1140px;
    text-align: center;
    font-size: 0;
}

.credit {
    padding: 30px 0;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
}

.credit a {
    font-weight: 900;
    color: #222222;
    text-decoration: underline;
}

h2.title {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 30px;
    color: #222222;
}

h2.title::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 3px;
    left: calc(50% - 25px);
    bottom: 0;
    background: #222222;
}


/**********************************/
/*********** Button CSS ***********/
/**********************************/
.btn {
    position: relative;
    display: inline-block;
    margin: 15px;
    padding: 15px 30px;
    text-align: center;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #ffffff;
    background: #E94B3C;
    border: none;
    cursor: pointer;
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
}


.btn.btn-border-11 {
    padding: 12px 27px;
    color: #E94B3C;
    background: transparent;
    border: 3px solid #ebebe0;
}

.btn.btn-border-11::after,
.btn.btn-border-11::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    transition: .5s;
}

.btn.btn-border-11::after {
    top: -9px;
    left: -9px;
    border-top: 3px solid transparent;
    border-left: 3px solid transparent;
}

.btn.btn-border-11::before {
    bottom: -9px;
    right: -9px;
    border-bottom: 3px solid transparent;
    border-right: 3px solid transparent;
}

.btn.btn-border-11:hover {
    color: #222222;
}

.btn.btn-border-11:hover::after,
.btn.btn-border-11:hover::before {
    width: calc(100% + 18px);
    height: calc(100% + 18px);
    border-color: #ebebe0;
}



