/*
* Civil Mafiya Template
* Version: 01,

===========================================
    
    All include section: 

    01. Google fonts
    02. Basic css
    03. hamberger css
    05. header css
    04. header css
    05. manifesto css
    06. vision css
    07. what css
    08. mission css
    09. background css
    10. team css
    11. footer css
    12. tools resources css
    13. contact css
    14. our Gang css
    15. some stories css
    16. casa css
    17. smile css
    18. social css
    19. agc football css
    20. donation css
    21. back to top css

===========================================


*/

/*======================
   01. Google fonts
========================*/
@font-face {
    font-family: impact_bold;
    src: url(../webfonts/impact_bold.ttf);
}

@font-face {
    font-family: chantal_light;
    src: url(../webfonts/chantal_light.ttf);
}

@font-face {
    font-family: NanumPenScript-Regular;
    src: url(../webfonts/NanumPenScript-Regular.ttf);
}

@font-face {
    font-family: BasicSans-Light;
    src: url(../webfonts/BasicSans-Light.ttf);
}

@font-face {
    font-family: BasicSans-Regular;
    src: url(../webfonts/BasicSans-Regular.ttf);
}

@font-face {
    font-family: BasicSans-SemiBold;
    src: url(../webfonts/BasicSans-SemiBold.ttf);
}

@font-face {
    font-family: BasicSans-Bold;
    src: url(../webfonts/BasicSans-Bold.ttf);
}

@font-face {
    font-family: BasicSansAlt-Black;
    src: url(../webfonts/BasicSansAlt-Black.ttf);
}


/*======================
   02. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

body {
    font-size: 1.8rem;
    line-height: 3rem;
    color: #ffffff;
    font-family: BasicSans-SemiBold;
}

ol,
ul {
    list-style: none;
}

a:hover {
    text-decoration: none;
}

button:focus, input:focus, textarea:focus {
    outline: 0;
}

/*1 rem = 8px*/
html {
    font-size: 50%;
}

.head_text {
    font-size: 8.4rem;
    color: #0e5e6d;
    font-family: impact_bold;
    text-transform: uppercase;
}

.color_one {
    color: #37a1a0;
}

.color_two {
    color: #2fa2a1;
}

.color_three {
    color: #f7bb5a;
}

.mt_20 {
    margin-top: 2rem;
}

.mt_30 {
    margin-top: 3rem;
}

.mt_50 {
    margin-top: 5rem;
}

.pb_150 {
    padding-bottom: 15rem;
}

.pb_80 {
    padding-bottom: 8rem;
}

.font_bold {
    font-family: BasicSans-Bold;
}

/*======================
   03. hamberger css
========================*/
.hamburger-menu {
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    display: none;
    z-index: 999;
    top: -1.3rem;
}

.hamburger-menu span {
    background: #fff;
    width: 3rem;
    height: 0.3rem;
    display: block;
    margin: 0.5rem 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .line-top {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.hamburger-menu:hover .line-bottom {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.hamburger-menu:hover .line-top.current,
.hamburger-menu:hover .line-bottom.current {
    -webkit-transform: 0;
    -ms-transform: 0;
    transform: 0;
}

.hamburger-menu .line-top.current {
    -webkit-transform: translateY(200%) rotate(135deg);
    -ms-transform: translateY(200%) rotate(135deg);
    transform: translateY(200%) rotate(135deg);
}

.hamburger-menu .line-center.current {
    opacity: 0;
}

.hamburger-menu .line-bottom.current {
    -webkit-transform: translateY(-325%) rotate(-135deg);
    -ms-transform: translateY(-325%) rotate(-135deg);
    transform: translateY(-325%) rotate(-135deg);
}

/*======================
   04. header css
========================*/
header {
    position: fixed;
    height: 16rem;
    z-index: 1000;
    width: 100%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

header.sticky {
    -webkit-box-shadow: 0 0.8rem 2rem 0 rgba(0, 0, 0, .1);
            box-shadow: 0 0.8rem 2rem 0 rgba(0, 0, 0, .1);
    height: 9rem;
    background: #000000;
}

.logo img {
    max-width: 19rem;
}

.menu_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

#menu {
    text-align: right;
}

#menu li {
    display: inline-block;
}

#menu li a {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #ffffff;
    padding: 0 3rem;
}

#menu li:last-child a{
    padding-right: 0;
}

#menu>li>a.active,
#menu>li>a:hover {
    color: #37a1a0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-family: BasicSansAlt-Black;
}

.header_social a {
    width: 3rem;
    height: 3rem;
    background: #ffffff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    color: #000000;
    font-size: 1.8rem;
    margin-left: 1rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.header_social a:hover {
    background: #37a1a0;
    color: #ffffff;
}

.main_bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 16rem;
}

/*======================
   05. manifesto css
========================*/
.manifesto_wrapper {
    padding-top: 3rem;
}

.manifesto_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 4rem 4.5rem;

}

.manifesto_text h1 {
    font-size: 7.5rem;
    line-height: 10.7rem;
    color: #0e5e6d;
    font-family: impact_bold;
}

.manifesto_text p {
    font-size: 3.0rem;
    color: #3f3f3f;
    font-family: BasicSans-Bold;
    padding-top: 2rem;
    line-height: 6.5rem;
}

.star_icon {
    position: absolute;
    bottom: -5rem;
    right: -4.9rem;
    width: 15rem;
}

/*======================
   06. vision css
========================*/
.vision_wrapper {
    padding: 15rem 0;
}

.vision_wrapper h3 {
    font-size: 3.3rem;
    line-height: 4rem;
    font-family: BasicSans-Light;
    padding: 4.5rem 0;
    font-style: italic;
}

/*======================
   07. what css
========================*/
.what_wrap01, .what_wrap02, .what_wrap03 {
    overflow: hidden;
}

.head_two {
    font-size: 5.4rem;
    font-family: chantal_light;
    color: #f7bb5a;
    line-height: 9rem;
}

.head_three {
    font-size: 2.0rem;
    font-family: BasicSans-Bold;
    color: #2ba1a0;
    line-height: 4.5rem;
}

/*======================
   08. mission css
========================*/
.mission_wrapper p img {
    width: 2.5rem;
    margin-right: 1rem;
}

/*======================
   09. background css
========================*/
.nanumpen_font {
    font-family: NanumPenScript-Regular;
}

.learn_btn {
    color: #37a1a0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.learn_btn:hover {
    color: #37a1a0;
    text-decoration: underline;
}

/*======================
   10. team css
========================*/
.team_wrapper {
    padding: 15rem 0;
}

.team_item {
    display: block;
}

.team_img {
    padding: 1.2rem;
    background: #ffffff;
    height: 55rem;
    -o-object-fit: cover;
       object-fit: cover;
}

.team_item p {
    color: #27a1a1;
    font-size: 2.7rem;
    font-family: BasicSans-Bold;
    margin-top: 3rem;
    line-height: 2.3rem;
}

.team_item h2 {
    font-size: 3.8rem;
    font-family: BasicSansAlt-Black;
    color: #ffffff;
    margin: 1rem 0;
    line-height: 3.6rem;
}

.team_item span {
    font-size: 1.9rem;
    color: #ffffff;
    font-family: BasicSans-SemiBold;
    display: block;
    line-height: 1.8rem;
}

/*======================
   11. footer css
========================*/
footer {
    padding: 10rem 0 10rem 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.footer_logo img {
    max-width: 37rem;
}

.footer_box p {
    font-family: BasicSans-SemiBold;
    font-size: 2.5rem;
    line-height: 3rem;
}

.footer_social a {
    display: block;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 3rem;
    font-family: BasicSans-SemiBold;
}

.footer_social span {
    width: 5rem;
    height: 5rem;
    background: #ffffff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 50%;
    margin-right: 1.5rem;
    color: #3B8F92;
    font-size: 2.4rem;
}

/*======================
   12. tools resources css
========================*/
.tools_wrapper {
    padding-top: 3rem;
    height: 120rem;
    z-index: 1;
    overflow: hidden;
}

.tools_wrapper .slider_active {
    bottom: auto;
    top: 30%;
}

/*======================
   13. contact css
========================*/
.contact_wrapper {
    padding-top: 3rem;
    overflow: hidden;
    z-index: 1;
}

.contact_wrapper p {
    font-size: 3.5rem;
    line-height: 4.5rem;
}

.input_info {
    width: 100%;
    height: 5.5rem;
    background: #a0a0a0;
    padding-left: 2rem;
    font-size: 2rem;
    color: #ffffff;
    border: transparent;
}

.input_info::-webkit-input-placeholder {
    color: #ffffff;
}

.input_info::-moz-placeholder {
    color: #ffffff;
}

.input_info:-ms-input-placeholder {
    color: #ffffff;
}

.input_info::-ms-input-placeholder {
    color: #ffffff;
}

.input_info::placeholder {
    color: #ffffff;
}

.textarea_info {
    height: 30rem;
    resize: none;
    padding-top: 1rem;
}

.form_btn {
    background: #a0a0a0;
    border: transparent;
    height: 5.5rem;
    padding: 0 4rem;
    font-size: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    -webkit-transition:.3s;
    -o-transition:.3s;
    transition:.3s;
}

.form_btn:hover {
    background: #000000;
}

.slider_active {
    padding: 1rem 0;
    background: #f6ba59;
    -webkit-transform: rotateZ(6deg) translateY(-50%);
        -ms-transform: rotate(6deg) translateY(-50%);
            transform: rotateZ(6deg) translateY(-50%);
    width: 200%;
    position: absolute;
    bottom: 26%;
    left: -50%;
    z-index: -1;
}

.slider_active .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition-timing-function: linear !important;
         -o-transition-timing-function: linear !important;
            transition-timing-function: linear !important;
}

.marque_img {
    -webkit-transform: rotate(-6deg);
        -ms-transform: rotate(-6deg);
            transform: rotate(-6deg);
    width: auto !important;
    height: 4rem;
}

.marque_img02 {
    width: auto !important;
    height: 2rem;
}

.slider_active.owl-drag .owl-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

/*======================
   14. our Gang css
========================*/
.gang_wrapper {
    padding-top: 3rem;
}

.gang_wrapper .head_two {
    font-size: 6.1rem;
    line-height: 7rem;
}

.gang_image {
    overflow: hidden;
}

.gang_image .container-fluid {
    padding-right: 0;
    padding-left: 0;
}

.tag_wrap {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.tag_wrap a {
    color: #ffffff;
    font-size: 4.1rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    line-height: 4.5rem;
    margin-top: 3.5rem;
}

/*======================
   15. some stories css
========================*/
.stories_wrapper {
    overflow: hidden;
}

.stories_wrapper .head_two {
    line-height: 8.3rem;
}

.stories_wrapper .head_two span {
    font-size: 6rem;
}

.head_textborder {
    font-size: 6rem;
    position: relative;
    display: inline-block;
    padding-bottom: 2rem;
}

.head_textborder::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.8rem;
    border-radius: 1rem;
    background: #ffffff;
    -webkit-box-shadow: 0.1rem 0.1rem 1.5rem rgba(255, 255, 255, 0.57);
            box-shadow: 0.1rem 0.1rem 1.5rem rgba(255, 255, 255, 0.57);
}

.stories_text p {
    font-size: 4rem;
    line-height: 5rem;
    font-family: BasicSans-Regular;
}

.stories_text span {
    font-family: BasicSans-Regular;
    color: #f6ba59;
    display: block;
    font-size: 3.3rem;
}

.stories_wrap p {
    font-size: 3.5rem;
    line-height: 4.5rem;
}

/*======================
   16. casa css
========================*/
.casa_wrapper {
    overflow: hidden;
}

.casa_wrapper span {
    color: #2fa2a1;
}

/*======================
   17. smile css
========================*/
.smile_img {
    height: 90rem;
    -o-object-fit: cover;
       object-fit: cover;
}

/*======================
   18. social css
========================*/
.social_wrapper a {
    font-size: 2.8rem;
    color: #ffffff;
    display: inline-block;
    margin: 3rem 3rem 0 0;
}

.social_wrapper a span {
    width: 4rem;
    height: 4rem;
    background: #2fa2a1;
    color: #ffffff;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 1rem;
    font-size: 2.4rem;
}

/*======================
   19. agc football css
========================*/
.agc_wrapper .stories_text p {
    font-size: 3.5rem;
}

/*======================
   20. donation css
========================*/
.donation_wrapper {
    padding-top: 3rem;
}

/*======================
   21. back to top css
========================*/
.back-to-top {
    font-size: 2.4rem;
    width: 4.5rem;
    height: 4.5rem;
    line-height: 4.5rem;
    text-align: center;
    color: #ffffff;
    display: none;
    position: fixed;
    bottom: 3rem;
    right: 2rem;
    z-index: 99999;
    border-radius: 50%;
    background: #3B8F92;
}

.back-to-top i {
    color: #ffffff;
}


