@charset "UTF-8";
@import "../font/effra/style.css";

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

body {
    width: 100vw;
    height: 100vh;
    /*color: #bebebe;*/
    color: #646363;
    background: #f6f6f6;
    font-family: 'Effra', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    font-style: normal;
    font-variant: normal;
    line-height: 1.7;
}

body.overflow {
    overflow: hidden;
}

ul,
ol {
    padding: 0;
}

ol,
li {
    list-style: none;
}

a {
    -webkit-transition: all 0.25s cubic-bezier(0, 0.52, 0.39, 1);
    -moz-transition: all 0.25s cubic-bezier(0, 0.52, 0.39, 1);
    -ms-transition: all 0.25s cubic-bezier(0, 0.52, 0.39, 1);
    -o-transition: all 0.25s cubic-bezier(0, 0.52, 0.39, 1);
    transition: all 0.25s cubic-bezier(0, 0.52, 0.39, 1);
}

h1,
h2,
h3 {
    color: #0c2a63;
    font-weight: bold;
    letter-spacing: 0px;
    font-style: normal;
    font-variant: normal;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

p {
    font-size: 1rem;
    width: 430px;
    max-width: 100%;
    font-style: italic;
    line-height: 1.3;
    text-align: center;
}

/*ZoomIn Hover Effect*/

.hover-rotate img {
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

.hover-rotate:hover img {
    -webkit-transform: rotate(360deg) !important;
    -moz-transform: rotate(360deg) !important;
    -o-transform: rotate(360deg) !important;
    -ms-transform: rotate(360deg) !important;
    transform: rotate(360deg) !important;
}

.hover-zoomin,
.hover-zoomOut {
    display: block;
    position: relative;
    /* overflow: hidden; */
}

.hover-zoomin img,
.hover-zoomOut img {
    width: 100%;
    height: auto;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.hover-zoomin:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.hover-zoomOut:hover img {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

@media (min-width: 768px) {
    .position-sm-absolute {
        position: absolute;
        z-index: 99;
        top: 0;
    }
}

section {
    position: relative;
}


/* Buttons */

.btn {
    color: #fff !important;
    font-size: 0.8rem;
    position: relative;
    background: linear-gradient(135deg, #C9471E 0%, #F36F45 67.64%);
    border-radius: 30px;
    padding: 0.5rem 1.3rem;
    border: 1px solid transparent;
    letter-spacing: 0.1em;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    margin-top: 20px;
}

.btn span {
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: #000;
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((1 - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((1 - 1) * 0.1s);
    z-index: -1;
}

.btn:hover {
    color: #fff !important;
}

.btn:hover span {
    transform: translateY(0) scale(2);
}

.btn span:nth-child(1) {
    left: calc((1 - 1) * 25%);
    transition-delay: calc((1 - 1) * 0.1s);
}

.btn span:nth-child(2) {
    left: calc((2 - 1) * 25%);
    transition-delay: calc((2 - 1) * 0.1s);
}

.btn span:nth-child(3) {
    left: calc((3 - 1) * 25%);
    transition-delay: calc((3 - 1) * 0.1s);
}

.btn span:nth-child(4) {
    left: calc((4 - 1) * 25%);
    transition-delay: calc((4 - 1) * 0.1s);
}

@media (min-width: 1200px) {
    .container {
        max-width: 1180px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
}