:root {
    --primary-color: #ECBA09;
    --section-margins: 60px;
}

.blue:root {
    --primary-color: #0CC6EF;
}

.pink:root {
    --primary-color: #FF4AAC;
}

.green:root {
    --primary-color: #5EBB00;
}

@media (min-width: 768px) {
    :root {
        --section-margins: 80px;
    }
}

@media (min-width: 1200px) {
    :root {
        --section-margins: 120px;
    }
}

.theme-change {
    background-color: #fff;
    padding: 10px;
    width: 120px;
    position: absolute;
    right: 0;
    top: 150px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.theme-change ul {
    display: flex;
    flex-wrap: wrap;
}

.theme-change ul li {
    width: 50%;
    padding: 5px
}

.box {
    width: 100%;
    height: 40px;
    background-color: #ECBA09;
    cursor: pointer;
}

.box.blue {
    background-color: #0CC6EF;
}

.box.pink {
    background-color: #FF4AAC;
}

.box.green {
    background-color: #5EBB00;
}

h1, 
.h1,
h2, 
.h2,
h3, 
.h3,
h4, 
.h4,
h5, 
.h5,
h6, 
.h6 {
    margin:0;
    padding: 0;
    font-family: 'Cardo', serif;
    font-weight: 400;
}

h2, 
.h2 {
   line-height: 1.2em;
   padding-bottom: 20px;
   font-size: 30px;
   font-weight: 700;
}


h3, 
.h3 {
    line-height: 1.3em;
    padding-bottom: 20px;
    font-size: 30px;
}

h4, 
.h4 {
    font-size: 20px;
    padding-bottom: 15px;
    font-family: 'Asul', sans-serif;
    font-weight: 400;
    color: var(--primary-color);
}

p {
    margin: 0;
    padding: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.5em;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p:last-child {
    padding-bottom: 0;
}

a {
    text-decoration: none;
    transition: all .3s ease-in-out;
    color: var(--primary-color);
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.object-fit {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-responsive {
    max-width: 100%;
}

.section-margins {
    margin-top: var(--section-margins);
    margin-bottom: var(--section-margins);
}

/* Used only for sections with colored backgrounds */
.section-padding {
    padding-top: var(--section-margins);
    padding-bottom: var(--section-margins);
}

@media (min-width: 768px) {

    h2, 
    .h2 {
        font-size: 42px;
    }
    
    h3, 
    .h3 {
        font-size: 42px;
    }

    h4, 
    .h4 {
        font-size: 25px;
    }

}
/**
* Clearfix
* Apply clearing without adding additional markup
*/

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.btn {
    background-color: transparent;
    color: var(--primary-color);
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    padding: 0;
    border: 1px solid var(--primary-color);
    position: relative;
    margin: 7px;
    cursor: pointer;
}

.btn span {
    padding: 15px 35px; 
    display: block;
    position: relative;
}

.btn::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid var(--primary-color);
    top: -7px;
    left: -7px;
    transition: all 0.5s;
}

.btn::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid var(--primary-color);
    top: -7px;
    right: -7px;
    transition: all 0.5s;
}

.btn span::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid var(--primary-color);
    bottom: -7px;
    left: -7px;
    transition: all 0.5s;
}

.btn span::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid var(--primary-color);
    bottom: -7px;
    right: -7px;
    transition: all 0.5s;
}

.btn:hover::after {
    left: calc(100% - 9px);
    transition: all 0.5s;
    background-color: var(--primary-color);
}

.btn:hover::before {
    top: calc(100% - 9px);
    transition: all 0.5s;
    background-color: var(--primary-color);
}

.btn:hover span::after {
    bottom: calc(100% - 9px);
    transition: all 0.5s;
    background-color: var(--primary-color);
}


.btn:hover span::before {
    right: calc(100% - 9px);
    transition: all 0.5s;
    background-color: var(--primary-color);
}
