@charset utf-8;
/*
Theme Name: circle wp
*/



*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background: none;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

body {
    background: #f5f5f5;
    font-size: 14px;
    color: #646464;
    font-family: Arial, Helvetica, sans-serif;
}


a {
    color: inherit;
    text-decoration: none;
    outline-style: none;
    word-break: break-word;
}


p {
    line-height: 1.3;
    margin: 0 0 20px;
}

li {
    list-style: none outside none;
}

strong,
b {
    font-weight: 600;
}

em,
i {
    font-style: italic;
}

strong em,
em strong {
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 42px;

}

h2 {
    font-size: 42px;

}

h3 {
    font-size: 36px;

}

h4 {
    font-size: 20px;

}

h5 {
    font-size: 18px;

}

h6 {
    font-size: 18px;

}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

hr {
    clear: both;
    margin: 40px 0;
    border: 0;
    border-bottom: 0;
    padding: 0px;
    width: 100%;
    background: #e1e0da;
    height: 1px;
}

pre {
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}



.inner {
    max-width: 1120px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

input,
button,
textarea,
select {
    outline-style: none;
}


.button {
    border-radius: 3px;
    border: 2px solid #feb506;
    text-align: center;
    /* color: inherit; */
    font-weight: 500;
    display: inline-block;
    font-size: 20px;
    padding: 6px 20px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    line-height: 34px;
    background-color: #feb506;
    color: #1a4341;
}
.white-button {
    border-radius: 3px;
    border: 2px solid ;
    text-align: center;
    color: inherit;
    font-weight: 500;
    display: inline-block;
    font-size: 20px;
    padding: 6px 20px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    line-height: 34px;
}

.button::after,
.white-button::after {
    font-family: 'FontAwesome';
    content: '\f105';
    display: block;
    position: absolute;
    font-size: 30px;
    right: 10px;
    top: 5px;
    opacity: 0;
    transition: all 0.3s;
}

.button:hover,
.white-button:hover {
    text-decoration: none;
    border: 2px solid transparent;
    background-color: hsla(0,0%,100%,.2);
    padding: 6px 40px 6px 20px;
    color: inherit;
}
.button:hover::after,
.white-button:hover::after {opacity: 1;}

.fixed-padding{padding: 75px 0;}


@media(max-width:768px){
    .wrapper{padding-top:86px;}
    .fixed-padding{padding: 40px 0;}
}