/*----------------------------------------------

[Main CSS]

Theme   : Lifegiver
Version : 1.0.0
Author  : mr.Root

----------------------------------------------*/

/*----------------------------------------------

[Content Index]

0. Feature
1. Header
2. Banner
2. Content
3. Colors


----------------------------------------------*/

/*----------------------------------------------
0. Feature
----------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

.outline {
    outline: 1px solid red;
}

body {
	width: 100%;
	height: 100%;
    font-family: 'Montserrat', sans-serif;
}

.mask {
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 1100;
    transition: 0.6s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 75px;
    height: 75px;
    border: 10px solid rgba(152, 38, 65, 0.6);
    border-radius: 50%;
    border-left-color: #307D3C;
    animation: loader 1.3s linear infinite;
}
@keyframes loader {
    100%{
        transform: rotate(360deg);
    }
}
.hide {
    opacity: 0;
}

h1 {
    font-weight: bold;
    font-size: 48px;
}

h2 {
    font-weight: bold;
    font-size: 36px;
}

p {
    font-weight: normal;
    font-size: 18px;
}

p.text-bold-help{
    text-align: center;
    font-weight: bold;
}

a.bg-color-1:hover {
    color: #982641 !important;
    border: 1px solid;
    border-color: #982641;
}

a.bg-color-2:hover {
    color: #307D3C !important;
    border: 1px solid;
    border-color: #307D3C;
}

a.position-relative{
    z-index: 3;
}

.icon {
    width: 40px;
    height: auto;
}

/*----------------------------------------------
1. Header
----------------------------------------------*/
.navbar-brand img {
    width: 100%;
	height: 35px;
}

/*----------------------------------------------
2. Banner
----------------------------------------------*/
.image-1 {
    max-width: 200px;
    max-height: auto;
    /* position: absolute; */
    top: -50px;
    right: 0; 
    z-index: 1;
}

.image-2 {
    max-width: 250px;
    max-height: auto;
    /* position: absolute; */
    bottom: -100px;
    left: -50px;
    z-index: 2;
}

/*----------------------------------------------
3. Content
----------------------------------------------*/
.image-3 {
    max-width: 90%;
    max-height: auto;
}

.cover-img-1 {
    background-image: url("../img/Image-4.jpeg");
    background-size: cover;
}



.cover-img-2 {
    background-image: url("../img/Image-5.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

.cover-img-3 {
    background-image: url("../img/Image-6.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

/*----------------------------------------------
4. Colors
----------------------------------------------*/
.color-1 {
    color: #982641 !important;
}

.color-2 {
    color: #307D3C !important;
}

.bg-color-1 {
    background-color: #982641;
}

.bg-color-2 {
    background-color: #307D3C;
}

.bg-color-3 {
    background-color: #FFF3E0;
}

.bg-gradient-1 {
	background-image: -webkit-linear-gradient(180deg, #F3E7E9 0%, #E3EEFF 100%) !important;
	background-image: linear-gradient(180deg, #F3E7E9 0%, #E3EEFF 100%) !important;
}

.bg-gradient-2 {
	background-image: -webkit-linear-gradient(45deg, #F3E7E9 0%, #E3EEFF 100%) !important;
	background-image: linear-gradient(45deg, #F3E7E9 0%, #E3EEFF 100%) !important;
}

.bg-gradient-3 {
	background-image: -webkit-linear-gradient(45deg, #FDFBFB 0%, #EBEDEE 100%) !important;
	background-image: linear-gradient(45deg, #FDFBFB 0%, #EBEDEE 100%) !important;
}

