/* start variables */
:root {
    --main-color: #19c8fa;
    --transparent-color: rgb(15 116 143 /70%);
    --section-padding: 100px;
}

/* End variables */
/* start global rules */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
}

ul {
    list-style: none;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

/* medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/* large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

/* end global rules */
/* start components */
.main-heading {
    text-align: center;
}

.main-heading h2 {
    font-weight: normal;
    font-size: 40px;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
}

.main-heading h2::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background-color: black;
    bottom: -30px;
    width: 120px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.main-heading h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #333;
    bottom: -38px;
    background-color: white;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.main-heading p {
    width: 550px;
    margin: 0 auto 100px;
    max-width: 100%;
    line-height: 2;
    color: #777;
}

/* end components */
/* start header */
header {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 97px;
}

header .container::after {
    content: '';
    height: 1px;
    width: calc(100% - 30px);
    position: absolute;
    left: 15px;
    bottom: 0;
    background-color: #a2a2a2;
}

header .logo img {
    height: 30px;
}

header nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header nav .toggle {
    color: #fff;
    font-size: 22px;
}

@media (min-width: 768px) {
    header nav .toggle {
        display: none;
    }
}

header nav ul {
    display: flex;
}

@media (max-width: 767px) {
    header nav ul {
        display: none;
    }

    header nav .toggle:hover+ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }

    header nav ul li a {
        padding: 15px !important;
    }
}

header nav ul li a {
    display: block;
    padding: 40px 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    position: relative;
    z-index: 2;
}

header nav ul li a.active,
header nav ul li a:hover {
    color: var(--main-color, #19c8fa);
    border-bottom: 1px solid var(--main-color, #19c8fa);
}

header nav .form {
    width: 40px;
    height: 30px;
    position: relative;
    margin-left: 30px;
    border-left: 1px solid #fff;
}

header nav .form i {
    color: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

/* end header */
/* Start landing */
.landing {
    min-height: 100vh;
    background-image: url(../images/slider-1.jpg);
    background-color: #1f2021;
    background-size: cover;
    position: relative;
}

.landing .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.705);
}

.landing .text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 50%;
    padding: 50px;
    background-color: var(--transparent-color);
    color: white;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .landing .text {
        width: 100%;
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .landing .text .content {
        max-width: 100%;
    }
}

.landing .text .content {
    max-width: 500px;
}

.landing .text .content h2 {
    font-size: 32px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 20px;

}

.landing .text .content p {
    font-size: 14px;
    line-height: 2;
}

.landing .change-background {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    color: white;
}

@media (max-width: 767px) {
    .landing .change-background {
        display: none;
    }
    .landing .text .content h2 {
        font-size: 20px;
    }
}

.landing .fa-angle-left {
    left: 30px;
}

.landing .fa-angle-right {
    right: 30px;
}

.landing .bullets {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: 30px;
    display: flex;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.landing .bullets li {
    width: 20px;
    height: 20px;
    margin-right: 10PX;
    border: 1px solid #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.landing .bullets li.active {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.landing .bullets li:not(.active) {
    background-color: transparent;
    border-color:#fff;
}

/* end landing */
/* Start services */
.services {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

@media (min-width: 768px) {
    .services .services-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
        grid-column-gap: 40px;
        grid-row-gap: 60px;
    }
}

.services .srv-box {
    display: flex;
}

.services .srv-box i {
    margin-right: 50px;
}

@media (max-width: 767px) {
    .services .srv-box {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }

    .services .srv-box i {
        margin: 0 0 30px;
    }
}

.services .srv-box h3 {
    margin-bottom: 30px;
    color: var(--main-color);
}

.services .srv-box p {
    line-height: 2;
    color: #777;
}

/* end services */
/* start design  */
.design {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    height: 600px;
    position: relative;
    background-image: url(../images/des-img.jpeg);
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.design::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.595);
}

.design .image,
.design .text {
    position: relative;
    z-index: 2;
    flex: 1;
}

.design .image {
    text-align: center;
}

.design .image img {
    position: relative;
    bottom: -150px;
}

@media (max-width: 767px) {
    .design .image {
        display: none;
    }
}

.design .text {
    color: #fff;
    padding: 50px;
    background-color: var(--transparent-color);
}

.design .text h2 {
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.design .text ul li {
    padding: 15px 0;
    text-transform: capitalize;
}

.design .text ul li::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f108';
    font-weight: 900;
    margin-right: 20px;
    position: relative;
    top: 1px;
}

/* end design */
/* start portfolio */
.portfolio {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.portfolio .shuffle {
    display: flex;
    justify-content: center;
}

.portfolio .shuffle li {
    padding: 10px;
}

.portfolio .shuffle li.active {
    background-color: var(--main-color);
    color: white;
}

.portfolio .imgs-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}

.portfolio .imgs-container .box {
    overflow: hidden;
    position: relative;
    flex-basis: 100%;
}

.portfolio .imgs-container .box:hover .caption {
    bottom: 0;
}

.portfolio .imgs-container .box:hover img {
    transform: rotate(3deg) scale(1.1);
    -webkit-transform: rotate(3deg) scale(1.1);
    -moz-transform: rotate(3deg) scale(1.1);
    -ms-transform: rotate(3deg) scale(1.1);
    -o-transform: rotate(3deg) scale(1.1);
}

@media (min-width: 768px) {
    .portfolio .imgs-container .box {
        flex-basis: 50%;
    }
}

@media (min-width: 1199px) {
    .portfolio .imgs-container .box {
        flex-basis: 25%;
    }
}

.portfolio .imgs-container .box img {
    /* max-width: 100%; */
    width: 100%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.portfolio .imgs-container .box .caption {
    position: absolute;
    left: 0;
    padding: 20px;
    background-color: white;
    width: 100%;
    transition: 0.3s;
    bottom: -100%;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.portfolio .imgs-container .box .caption h4 {
    font-weight: normal;
    margin-bottom: 10px;
}

.portfolio .imgs-container .box .caption p {
    color: var(--main-color)
}

.portfolio .more {
    background-color: var(--main-color);
    color: #fff;
    padding: 15px 20px;
    display: block;
    width: fit-content;
    margin: 30px auto;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/* end portfolio */
/* start video */
.video {
    position: relative;
}

.video::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.435);
}

.video video {
    width: 100%;
}

.video .text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 50px;
    background-color: var(--transparent-color);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    color: #fff;
    text-align: center;
}

.video .text h2 {
    margin: 0 0 30px;
    text-transform: uppercase;
    font-weight: normal;
}

.video .text p {
    margin: 0 0 30px;
}

.video .text button {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    text-transform: uppercase;
}

/* end video */
/* start about */
.about {
    padding-top: var(--section-padding);
    overflow: hidden;
    text-align: center;
}

.about img {
    position: relative;
    bottom: -120px;
    margin-top: -120px;
    max-width: 100%;
}

@media (max-width: 767px) {
    .about img {
        bottom: -60px;
        margin-top: -60px;
    }
}

/* end about */
/* start Statistics */
.stats {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    text-align: center;
    background-image: url(../images/img7.jpeg);
    background-size: cover;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.595);
}

.stats .container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.stats .container .box {
    color: white;
    padding: 50px;
    background-color: var(--transparent-color);
}

/* mobile => small */
@media (max-width: 767px) {
    .stats .container .box {
        flex-basis: 100%;
    }
}

/* tablets => medium */
@media (min-width: 768px) {
    .stats .container .box {
        flex-basis: 50%;
    }
}

/* large => pc , lab */
@media (min-width: 992px) {
    .stats .container .box {
        flex-basis: 25%;
    }
}

.stats .container .box i {
    width: 40px;
    height: 40px;
    display: flex;
    background-color: black;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.stats .container .box .number {
    font-size: 50px;
    font-weight: bold;
    margin: 0 0 20px;
}

.stats .container .box p {
    font-size: 14px;
}

/* end Statistics */
/* start skills */
.skills-sec {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.skills-sec .container {
    display: flex;
    gap: 8%;
}

@media (max-width: 980px) {
    .skills-sec .container {
        display: flex;
        flex-direction: column;
    }
}

.skills-sec .testimon {
    position: relative;
}

.skills-sec .testimon,
.skills-sec .skills {
    flex-basis: 45%;
}

.skills-sec h2 {
    text-align: center;
    font-weight: normal;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 20px;
}

.skills-sec p {
    color: #777;
    text-align: center;
    padding: 5px;
    margin: 0 0 50px;
    line-height: 1.5;
}

.skills-sec .testimon .people {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

@media (max-width: 980px) {
    .skills-sec .testimon .people {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .skills-sec .testimon .image {
        margin: 20px auto;
    }
}

.skills-sec .testimon .image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
}

.skills-sec .testimon .image img {
    max-width: 100%;
    height: 100%;
}



.skills-sec .testimon .content {
    flex-basis: 75%;
    line-height: 1.3;
    word-spacing: 2px;
    color: #333;
}

.skills-sec .testimon .name {
    text-align: end;
    padding: 10px 0;
    color: #77777799;
    border-bottom: 1px solid #888;
    font-size: 14px;
}

.skills-sec .bullets {
    position: absolute;
    left: 50%;
    margin: 10px;
    display: flex;
}

@media (max-width: 980px) {
    .skills-sec .bullets {
        margin-left: -30px;
    }
}

.skills-sec .bullets li {
    width: 15px;
    height: 15px;
    margin-right: 10PX;
    border: 1px solid #777;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.skills-sec .bullets li.active {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

@media (max-width: 980px) {
    .skills-sec .skills {
        margin-top: 100px;
    }
}

.skills-sec .skill-bar {
    margin-top: 50px;
}

.skills-sec .skill-bar .skill {
    width: 100%;
    text-transform: uppercase;
}

.skills-sec .skill-bar span {
    display: block;
    width: 100%;
    height: 30px;
    background-color: #e0dfdf;
    margin: 10px 0 20px;
    position: relative;
}

.skills-sec .skill-bar .sk1::before,
.skills-sec .skill-bar .sk2::before,
.skills-sec .skill-bar .sk3::before,
.skills-sec .skill-bar .sk4::before {
    content: '';
    height: 100%;
    background-color: var(--main-color);
    position: absolute;
}

.skills-sec .skill-bar .sk1::before,
.skills-sec .skill-bar .sk4::before {
    width: 90%;
}

.skills-sec .skill-bar .sk2::before {
    width: 85%;
}

.skills-sec .skill-bar .sk3::before {
    width: 80%;
}

.skills-sec .skill-bar .sk1::after,
.skills-sec .skill-bar .sk2::after,
.skills-sec .skill-bar .sk3::after,
.skills-sec .skill-bar .sk4::after {
    color: #fff;
    background-color: black;
    position: absolute;
    top: -35px;
    padding: 5px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    margin-left: -25px;
}

.skills-sec .skill-bar .sk1::after,
.skills-sec .skill-bar .sk4::after {
    content: '90%';
    left: 90%;
}

.skills-sec .skill-bar .sk2::after {
    content: '85%';
    position: absolute;
    left: 85%;
}

.skills-sec .skill-bar .sk3::after {
    content: '80%';
    left: 80%;
}

/* end skills */
/* start quot */
.quot {
    background-image: url(../images/repeat.jpeg);
    width: 100%;
    text-align: center;
    color: #fff;
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    margin-bottom: var(--section-padding);
    position: relative;
}

.quot::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.655);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.quot q {
    display: block;
    font-size: 30px;
    margin-bottom: 20px;
    position: relative;
}

.quot .name {
    position: relative;
    font-size: 18px;
}

/* end quot */
/* start pricing */

.pricing .prices {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.pricing .prices .price {
    flex-basis: calc(25% - 20px);
    background-color: #fcfcfc;
}

@media (max-width: 1199px) {
    .pricing .prices .price {
        flex-basis: calc(33% - 20px);
    }
}

@media (max-width: 992px) {
    .pricing .prices .price {
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 545px) {
    .pricing .prices .price {
        flex-basis: calc(100%);
    }
}

.pricing .prices .price .head {
    border-top: 1px solid var(--main-color);
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    padding: 30px;
}

.pricing .price .number {
    font-weight: bold;
    font-size: 50px;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--main-color);
    position: relative;
}

.pricing .price .number::before {
    content: "$";
    font-weight: normal;
    font-size: 20px;
    position: absolute;
    top: -5%;
    left: 30%;
}

.pricing .price .number::after {
    content: '/Mo';
    position: absolute;
    font-size: 20px;
    bottom: 20px;
    margin: 10px;
}

.pricing .price p {
    text-align: center;
    text-transform: capitalize;
    font-size: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--main-color);
    width: 60%;
    margin: auto;
}

.prices .price p:last-of-type {
    width: 100%;
}

.pricing .price button {
    padding: 15px 24px;
    background-color: white;
    border-color: var(--main-color);
    border-width: 1px;
    margin: 20px auto;
    display: block;
    text-transform: capitalize;
}

.pricing .contact {
    text-align: center;
    padding: 40px 0;

}

.pricing .contact p {
    font-size: 20px;
    padding-bottom: 20px;
    line-height: 1.5;
}

.pricing .contact button {
    color: white;
    background-color: var(--main-color);
    padding: 15px 30px;
    border: none;
    text-transform: capitalize;
    font-size: 18px;
}

/* end pricing */
/* start subscribe */
.sub {
    width: 100%;
    background-image: url(../images/earth.jpeg);
    background-size: cover;
    position: relative;
    color: white;
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.sub::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.649);
    width: 100%;
    height: 100%;
}

.sub form, .sub p {
    position: relative;
    z-index: 5;
}

.sub form {
    width: 70%;
    display: flex;
    justify-content: space-between;
    margin: auto;
}

@media (min-width: 990px) {
    .sub .container {
        display: flex;
    }
}

@media (max-width: 646px) {
    .sub form {
        width: 90%;
    }
}

.sub form .icon {
    position: relative;
    padding: 0 10px;
    border: 2px solid #fff;
    border-right: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub form input {
    outline: none;
    border: none;
    padding: 15px 25px;
    color: white;
}

.sub form #email {
    caret-color: var(--main-color);
    background: none;
    width: calc(100% - 150px);
    border: 2px solid #fff;
    border-right: none;
    border-left: none;
    text-transform: capitalize;
}

.sub form button {
    background-color: var(--main-color);
    text-transform: uppercase;
    color: white;
    width: 150px;
    border: none;
    display: block;
    padding: 20px;
    border: 2px solid white;
    border-left: none;
}

.sub p {
    padding-top: 50px;
    line-height: 1.7;
    text-align: center;
}

@media (min-width: 990px) {
    .sub p {
        padding-top: 0;
        margin-left: 50px;
    }
}

/* end subscribe */
/* start contact */
.contact {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.contact .content {
    display: flex;
    gap: 8%;
}

.contact .content form input,
.contact .content form textarea {
    width: 100%;
    padding: 15px 30px 20px;
    outline: none;
    border: .5px solid #777;
    margin-bottom: 20px;
}

.contact .content form textarea {
    height: 200px;
}

.contact .content form button {
    color: white;
    width: 170px;
    background: var(--main-color);
    padding: 18px 20px;
    border: none;
    text-transform: uppercase;
    position: relative;
    left: calc(100% - 170px);
}

.contact .content .info h4 {
    font-weight: normal;
    font-size: 18px;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.contact .content .info h4:last-of-type {
    margin-top: 50px;
}

.contact .content .info span,
.contact .content .info address {
    color: #777;
    line-height: 2;
    margin-bottom: 20px;
}

.contact .content .info span {
    display: block;
}

@media (max-width: 767px) {
    .contact .content {
        flex-direction: column-reverse;
    }

    .contact .content .info {
        text-align: center;
    }
}

/* end contact */
/* start footer */
.footer {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    text-align: center;
    background-image: url(../images/earth.jpeg);
    background-color: #777;
    background-size: cover;
    position: relative;
}

.footer::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0000008c;
}

.footer .content {
    position: relative;
    z-index: 10;
    color: white;
}

.footer .content .logo {
    margin-top: -5%;
    margin-bottom: 50px;
}

.footer .content .social-contact {
    margin-bottom: 50px;
}

.footer .content .social-contact p {
    padding-bottom: 70px;
    text-transform: uppercase;
    font-size: 20px;
    position: relative;
    word-spacing: 5px;
}

.footer .content .social-contact p::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background-color: #fff;
    height: 1px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.footer .content .social-contact a {
    color: white;
    text-decoration: none;
}

.footer .content .social-contact i {
    display: inline-block;
    padding: 0 15px;
}

.footer .content .copy-right {
    text-transform: capitalize;
}

.footer .content .copy-right span {
    color: var(--main-color);
    font-weight: bold;
}

/* end footer */