.section-tp {
    padding-top: 100px;
}

.section-bp {
    padding-bottom: 100px;
}

.cover-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bg-after {
    position: relative;
    z-index: 1;
}

.bg-after:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -2;
}

.heading-style {
    font-size: 36px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 40px;
    margin-top: 0;
}

.paragraph {
    margin-bottom: 0;
    line-height: 28px;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

/* font weight */
.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

/* font size */
.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-26 {
    font-size: 26px;
}

.fs-28 {
    font-size: 28px;
}

/* margin top */
.margin-top-twenty {
    margin-top: 20px;
}

.margin-top-thirty {
    margin-top: 30px;
}

.margin-top-fourty {
    margin-top: 40px;
}

.margin-top-fifty {
    margin-top: 50px;
}

.margin-top-sixty {
    margin-top: 60px;
}

.margin-top-seventy {
    margin-top: 70px;
}

/* margin bottom */
.margin-bottom-twenty {
    margin-top: 20px;
}

.margin-bottom-thirty {
    margin-top: 30px;
}

.margin-bottom-fourty {
    margin-top: 40px;
}

.margin-bottom-fifty {  
    margin-top: 50px;
}

.margin-bottom-sixty {
    margin-top: 60px;
}

.margin-bottom-seventy {
    margin-top: 70px;
}

/* padding right */
.padding-right-thirty {
    padding-right: 30px;
}

.padding-right-fourty {
    padding-right: 40px;
}

.padding-right-fifty {
    padding-right: 50px;
}

.padding-right-sixty {
    padding-right: 60px;
}

/* padding left */
.padding-left-thirty {
    padding-left: 30px;
}

.padding-left-fourty {
    padding-left: 40px;
}

.padding-left-fifty {
    padding-left: 50px;
}

.padding-left-sixty {
    padding-left: 60px;
}

/* color */
.text-black {
    color: #000000;
}

.text-white {
    color: #ffffff;
}

.text-dark {
    color: #2a3640;
}

.text-medium-dark {
    color: #424e59;
}

.text-orange {
    color: #f37121 !important;
}

/* background color */
.bg-black {
    background-color: #000000;
}

.bg-white {
    background-color: #ffffff;
}

.bg-transparent {
    background-color: transparent;
}

.bg-light-dark {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-orange {
    background-color: #f47221;
}

.bg-dark-blue {
    background-color: #2f3941;
}

/* button */
.orange-btn {
    color: #fff;
    background-color: #f47221;
    border: 1px solid #f47221;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}

.orange-btn:hover {
    color: #f47221;
    background-color: transparent;
}