﻿:root {
  --theme-deafult: #3e5067; }


/*=====================
    1.General CSS start
==========================*/

h1 {
    font-size: 60px;
    color: #222222;
    font-weight: 700;
    text-transform: uppercase;
}

    h1 span {
        font-size: 107px;
        font-weight: 700;
        color: var(--theme-deafult);
    }

h2 {
    font-size: 36px;
    color: #222222;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}

h3 {
    font-size: 24px;
    font-weight: 400;
    color: #777777;
    letter-spacing: 0.03em;
}

h4 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1;
}

h5 {
    font-size: 16px;
    font-weight: 400;
    color: #222222;
    line-height: 24px;
    letter-spacing: 0.05em;
}

h6 {
    font-size: 14px;
    font-weight: 400;
    color: #777777;
    line-height: 24px;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

li {
    display: inline-block;
}

p {
    font-size: 14px;
    color: #777777;
    line-height: 1;
}

a {
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

    a:hover {
        text-decoration: none;
        -webkit-transition: 0.5s ease;
        transition: 0.5s ease;
    }

    a:focus {
        outline: none;
    }

button:focus {
    outline: none;
}

section,
.section-t-space {
    padding-top: 70px;
}

.section-b-space {
    padding-bottom: 70px;
}

.large-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.p-t-0 {
    padding-top: 0;
}

hr.style1 {
    width: 75px;
    height: 3px;
    margin-top: 13px;
    background-color: var(--theme-deafult);
    text-align: center;
}





/* Start Social Media */
.social-media .box {
    padding-left: 70px;
}

    .social-media .box i {
        position: absolute;
        left: 0;
        top: 0;
        width: 52px;
        transition: 0.3s;
    }

        .social-media .box i:hover {
            transform: rotate(5deg);
        }

.social-media .twitter {
    background-color: rgb(29 161 242 / 20%);
    color: #1da1f2;
}

    .social-media .twitter i,
    .social-media .twitter a {
        background-color: #1da1f2;
    }

.social-media .facebook {
    background-color: rgb(24 119 242 / 20%);
    color: #1da1f2;
}

    .social-media .facebook i,
    .social-media .facebook a {
        background-color: #1877f2;
    }

.social-media .youtube {
    background-color: rgb(255 0 0 / 20%);
    color: #ff0000;
}

    .social-media .youtube i,
    .social-media .youtube a {
        background-color: #ff0000;
    }

.social-media .linkedin {
    background-color: rgb(0 119 181 / 20%);
    color: #0077b5;
}

    .social-media .linkedin i,
    .social-media .linkedin a {
        background-color: #0077b5;
    }
/* End Social Media */


