/* 
 YOU COULD PLEASE WRITE YOUR CUSTOM CSS HERE 
 ------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=League+Spartan:wght@100..900&display=swap');

@font-face {
  font-family: gogh;
  src: url(fonts/Gogh-ExtraBold.otf);
}

@font-face {
  font-family: montserrat;
  src: url(fonts/Montserrat-Regular.otf);
}


@font-face {
  font-family: montserrat-semibold;
  src: url(fonts/Montserrat-SemiBold.otf);
}

a {
	color:#475862 !important;
}
a:link {color: #475862;
   background-color: transparent;
    text-decoration: none;}
a:visited {color: purple;
                                      background-color: transparent;
                                      text-decoration: none;}
a:hover {color: blue;
        background-color: transparent;
        text-decoration: underline;}
a:active {color: yellow;
        background-color: transparent;
        text-decoration: underline;}

span.yellow {
    font-family: "League Spartan" !important;
    font-size: 14px;
    color: #475862;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
}

span.yellow-12{
	font-size: 12px;
    font-weight: normal;
    font-family: "League Spartan" !important;
    color: #475862;
    text-decoration: none;
}
span.yellow-bold {
    font-family: "League Spartan" !important;
    font-size: 16px;
    color: #475862;
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
}

span.yellow-bold-17 {
    color: rgb(200, 151, 44);
    font-weight: bold;
    font-style: normal;
    font-size: 18px;
    text-decoration: none;
    font-family: "League Spartan" !important;
    line-height: 20px;
    text-transform: uppercase !important;
}

span.description {
    color: #475862;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    font-family: "League Spartan" !important;
    line-height: 18px;
    font-style: italic;
}
span.heading-description {
	    color: #908673;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    font-family: "League Spartan" !important;
    line-height: 18px;
    font-style: italic;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.left {
	text-align: left;
}
span.item_title {
    color: rgb(200, 151, 44);
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    text-decoration: none;
    font-family: "League Spartan" !important;
    line-height: 20px;
    text-transform: uppercase !important;
}

span.item_price {
    color: rgb(200, 151, 44);
    font-style: normal;
    margin-left: 15px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    font-family: "League Spartan" !important;
    line-height: 20px;
}
.bottom-0 {
	margin-bottom: 0px !important;
}

.bottom-7 {
	margin-bottom: 7px !important;
}

.how-it-work {
    position: relative; 
    overflow: hidden;   
    background-color: white;
    /* Removed background-image from here so we can rotate it below */
    border-bottom: 50px solid #475862;
    z-index: 1;
}

/* Top Right Image */
.how-it-work::before {
    content: "";
    position: absolute;
    top: -17px;
    right: -6%;
    width: 300px;
    height: 329px;
    background-image: url(top-right-bg_1.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-35deg);
    z-index: -1;
}

/* Bottom Left Image */
.how-it-work::after {
    content: "";
    position: absolute;
    bottom: -88px;
    left: -7%;
    width: 400px;
    height: 400px;
    background-image: url(header-left-bottom.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(2deg);
    z-index: -1;
}

.section-divider {
    width: 80px;
    height: 2px;
    background-color: rgb(200, 151, 44);
    margin: 0 auto 20px;
}