/* Satoshi Font Family */

@font-face {
    font-family: 'Satoshi';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/Satoshi/Satoshi-Light.otf') format('opentype');
}

@font-face {
    font-family: 'Satoshi';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Satoshi/Satoshi-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Satoshi';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Satoshi/Satoshi-Medium.otf') format('opentype');
}

@font-face {
    font-family: 'Satoshi';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Satoshi/Satoshi-Bold.otf') format('opentype');
}

@font-face {
    font-family: 'Satoshi';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/Satoshi/Satoshi-Black.otf') format('opentype');
}

/* Global Styling  */
:root {
    --primary-color: #49C4D7;
    --secondary-color: #201C27;
    --primary-font-family: "Satoshi", sans-serif;
    --white-color: #fff;
    --black-color: #000;
}

body {
    font-family: var(--primary-font-family);
    font-size: 16px;
    color: var(--secondary-color);
}

/* Butns */

.butn {
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none !important;
    font-weight: bold;
    transition: 0.4s all;
    cursor: pointer;
    border: unset;
    outline: none;
}

.butn:hover {
    background-color: var(--white-color);
    color: var(--secondary-color);
}

.butn-white {
    background-color: var(--white-color);
    color: var(--secondary-color);
}

.butn-white:hover{
    background-color: var(--primary-color);
    color: var(--white-color);
}

.butn-hover-black:hover{
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.butn-large {
    font-size: 20px;
    padding: 16px 42px;
}

/* Headings */
h1,
.h1 {
    font-size: 46px;
}

h2,
.h2 {
    font-size: 36px;
}

h3,
.h3 {
    font-size: 26px;
}

h4,
.h4 {
    font-size: 24px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}


/* Sections Padding */
.sec-padding {
    padding: 50px 0;
}

.sec-padding-small {
    padding: 40px 0;
}

.sec-padding-medium {
    padding: 80px 0;
}

.sec-padding-large {
    padding: 100px 0;
}

/* Badges */

.badge-primry {
    padding: 8px 12px;
    background-color: var(--primary-color);
    font-size: 20px;
    color: var(--white-color);
    font-weight: bold;
    border-radius: 10px;
    display: inline-block;
}

/* Custom Containers */

.small-container {
    max-width: calc(100% - 300px);
    margin: 0 auto;
}

.medium-container {
    max-width: calc(100% - 140px);
    margin: 0 auto;
}

/* Margins */
.m-bottom-5 {
    margin-bottom: 5px;
}

.m-bottom-10 {
    margin-bottom: 10px;
}

.m-bottom-15 {
    margin-bottom: 15px;
}

.m-bottom-20 {
    margin-bottom: 20px;
}

.m-bottom-25 {
    margin-bottom: 25px;
}

.m-bottom-30 {
    margin-bottom: 30px;
}

.m-bottom-35 {
    margin-bottom: 35px;
}

.m-bottom-40 {
    margin-bottom: 40px;
}


.m-top-5 {
    margin-top: 5px;
}

.m-top-10 {
    margin-top: 10px;
}

.m-top-15 {
    margin-top: 15px;
}

.m-top-20 {
    margin-top: 20px;
}

.m-top-25 {
    margin-top: 25px;
}

.m-top-30 {
    margin-top: 30px;
}

.m-top-35 {
    margin-top: 35px;
}

.m-top-40 {
    margin-top: 40px;
}


/* Background Classess */

.bg-primary-color {
    background-color: var(--primary-color);
}

.bg-secondary-color {
    background-color: var(--secondary-color);
}

/* Section Title */
.sec-title h4 {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.sec-title span{
    color: var(--primary-color);
}
.sec-title h2 {
    text-transform: capitalize;
    /* color: var(--white-color); */
    font-weight: 900;
}

.sec-title-spacing {
    margin-bottom: 60px;
}