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


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

p {
    font-size: 15px;
    line-height: 24px;
}

a, a:hover {
    text-decoration: none;
    font-weight: 400;
}

p, div {
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6, span, p, sup {
    color: var(--ftcolor);
    transition: all 0.4s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: 0.4px;
}

    h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover, span:hover, p:hover, sup:hover {
        color: var(--hftcolor);
    }

.p-15 {
    padding: 15px;
}

.porl {
    position: relative;
}

a.ctbgcl {
    background-color: var(--bgcolor);
    color: var(--ftcolor);
    border-color: var(--bdcolor);
    transition: all 0.4s ease-in-out;
}

    a.ctbgcl:hover {
        background-color: var(--hbgcolor);
        color: var(--hftcolor);
        border-color: var(--hbdcolor);
    }

.comimg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.feature-design6 .fe6dv {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 20px;
}

.feature-design6 h3 {
    margin-top: 20px;
}

.feature-design1 h4{ font-size: 20px; color: #333e79; }


/*--------------------------------------------------------------
Title Elements Style
--------------------------------------------------------------*/
.title-1 h1, .title-2 h2, .title-3 h3 {
    margin: 0;
}

.title-5 .t5h3dv,
.title-6 .t6h3dv {
    height: 3px;
    position: relative;
    padding-top: 1px;
    width: auto;
}

.title-5 .t5abdv {
    position: absolute;
    height: 3px;
    width: 100px;
    left: calc(50% - 50px);
    top: 0px;
}

.title-6 .t6h3dv {
    margin-top: 10px;
}

.title-6 .t6abdv {
    position: absolute;
    height: 3px;
    width: 60px;
    left: calc(50% - 30px);
    bottom: 0px;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 22px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 4px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

    input:checked + .slider:before {
        transform: translateX(14px);
    }

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }
