/* start variables */
:root {
    --main-color: #19c8fa;
    --transparent-color: #0f738f8f;
    --section-padding: 60px;
}
/* end variables */
/* start gobal rules */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    font-family: "Work Sans", sans-serif;
}
html {
    scroll-behavior: smooth;
}
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 gobal 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%;
    top: 65px;
    transform: translate(-50%, -50%);
    height: 0;
    width: 150px;
    border: 1px solid #333;
}
.main-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 65px;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #333;
    background-color: white;
}
.main-heading p {
    width: 450px;
    margin: 0 auto 100px auto;
    line-height: 1.6;
    max-width: 100%;
    color: #777;
}
/* end components */
/* start header */
header {
    position: absolute;
    z-index: 2;
    left: 0;
    width: 100%;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
@media (max-width: 767px) {
    header .container {
        height: 97.25px
    }
}
header .container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15px;
    height: 1px;
    width: calc(100% - 30px);
    background-color: #726f71;
}
@media (max-width: 767px) {
    header .container::after {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
}
header .logo img {
    height: 60px;
}
@media (max-width: 767px) {
    header .logo img {
        height: 50px;
    }
}
header nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width: 767px) {
    header nav {
        margin-left: 50px;
    }
}
header nav .toggle-menu {
    color: white;
    font-size: 22px;
}
@media (min-width: 768px) {
    header nav .toggle-menu {
        display: none;
    }
}
header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 767px) {
    header nav ul {
        display: none;
    }
    header .container nav .toggle-menu:hover + ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.541);
    }
    header nav ul li {
        width: 100%;
    }
    header .container nav ul li a {
        padding: 15px;
    }
}
header nav ul li a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 15px;
    transition: 0.3s;
    padding: 40px 10px;
    position: relative;
    z-index: 2;
}
header nav ul li a:active,
header nav ul li a:hover {
    color: var(--main-color);
    border-bottom: 1px solid var(--main-color);
}
header nav .form {
    width: 40px;
    height: 30px;
    position: relative;
    margin-left: 80px;
    border-left: 1px solid white;
    padding: 10px 20px;
}
@media (max-width: 767px) {
    header nav .form {
        margin-left: 20px;
    }
}
header nav .form i {
    color: rgb(255, 255, 255);
    font-size: 20px;
    position: absolute;
    top: 60%;
    right: -8px;
    transform: translate(-50%, -50%);
}
/* end header */
/* start landing */
.landing {
    min-height: 100vh;
    max-width: 100%;
    background-color: #726f71;
    background-image: url("../images/landing.jpg");
    background-size: cover;
    position: relative;
}
.landing .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 50%);
}
.landing .text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    padding: 40px;
    background-color: var(--transparent-color);
    color: white;
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 767px) {
    .landing .text {
        width: 95%;
    }

}
.landing .text .content {
    max-width: 450px;
}
@media (max-width: 767px) {
    .landing .text .content {
        width: 100%;
    }
}
.landing .text .content h2 {
    font-size: 25px;
    font-weight: normal;
    line-height: 1.8;
}
.landing .text .content p {
    font-size: 14px;
    font-weight: normal;
    padding-top: 20px;
    line-height: 1.6;
}
.landing .change-background {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: white;
}
@media (max-width: 767px) {
    .landing .change-background {
        display: none;
    }
}
.landing .fa-angle-left {
    left: 0;
}
.landing .fa-angle-right {
    right: 0;
}
.landing .bullets {
    position: absolute;
    left: 50%;
    top: 95%;
    transform: translate(-50%, -50%);
    display: flex;
}
.landing .bullets li {
    width: 20px;
    height: 20px;
    border: 1px solid white;
    border-radius: 50%;
    margin-left: 10px;
}
.landing .bullets li.active {
    background-color: var(--main-color);
    border-color: var(--main-color);
}
/* 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: 20px;
    justify-content: center;
    align-items: center;
}

}
.services-container .srv-box {
    display: flex;
    position: relative;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .services-container .srv-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}
.services-container .srv-box .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.services-container .srv-box i {
    color: #353235;
    font-size: 35px;
    margin-top: 15px;
    margin-right: 50px;
}
@media (max-width: 767px) {
    .services-container .srv-box i {
        padding-left: 10px;
        padding-bottom: 20px;
        margin: 0;
    }
}
.services-container .srv-box .text h3 {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 800;
    padding-bottom: 20px;
}
.services-container .srv-box .text p {
    color: #777;
    font-size: 15px;
    font-weight: normal;
    max-width: 80%;
    line-height: 1.6
}
@media (max-width: 767px) {
    .services-container .srv-box .text p {
        max-width: 80%;
        text-align: center;
    }
    .services-container .srv-box .text h3 {
        text-align: center;
    }
}
/* End services */
/* Start Design */
.design {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    height: 525px;
    position: relative;
    background-image: url("../images/design-background.jpg");
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}
.design::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
}
.design .image img {
    width: 400px;
    height: 450px;
}
@media (max-width: 1075px) {
    .design .image img {
        width: 200px;
        height: 250px;
        bottom: -26px !important;
        left: 74px !important;
    }
}
@media (max-width: 667px) {
    .design .image img {
        display: none;
    }
    .design .image {
        display: none;
    }
}
.design .image,
.design .text-design {
    position: relative;
    flex: 1;
}
.design .image img {
    position: relative;
    bottom: -121px;
    left: 222px;
}
.design .text-design {
    position: relative;
    left: 63px;
    padding: 20px;
}
.design .text-design {
    color: white;
    z-index: 2;
    background-color: var(--transparent-color);
}
@media (max-width: 667px) {
    .design .text-design {
        left: 12px;
    }
}
.design .text-design h2 {
    font-weight: normal;
    padding-bottom: 40px;
    font-size: 20px;
    text-transform: uppercase;
}
.design .text-design ul li {
    font-size: 15px;
    padding-bottom: 8px;
    font-weight: normal;
}
.design .text-design ul li::before {
    font-family: "Font Awesome 7 Free";
    content: "\f390";
    font-weight: 900;
    margin-right: 10px;
    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;
    align-items: center;
}
.portfolio .shuffle li {
    font-size: 15px;
    margin-left: 5px;
    padding: 5px;
}
.portfolio .shuffle li.active {
    background-color: var(--main-color);
    color: white;
}
.portfolio .imgs-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    justify-content: space-evenly;
    align-content: center;
}
.portfolio .imgs-container .box {
    position: relative;
    overflow: hidden;
}
.portfolio .imgs-container .box:hover .caption {
    bottom: 0;
}
@media (min-width: 768px) {
    .portfolio .imgs-container .box {
        flex-basis: 49%;
    }
}
@media (min-width: 1199px) {
    .portfolio .imgs-container .box {
        flex-basis: 24%;
    }
}
@media (max-width: 768px) {
    .portfolio .imgs-container .box {
        flex-basis: 99%
    }
}
.portfolio .imgs-container .box img {
    max-width: 100%;
    transition: 0.3s;
}
.portfolio .imgs-container .box img:hover {
    transform: scale(1.1) rotate(3deg);
}
.portfolio .imgs-container .box .caption {
    padding: 10px;
    position: absolute;
    bottom: -100px;
    background-color: white;
    width: 100%;
    transition: 0.3s
}
.portfolio .imgs-container .box .caption h4 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 10px;
}
.portfolio .imgs-container .box .caption p {
    font-size: 15px;
    font-weight: normal;
    color: var(--main-color);
}
.portfolio .more {
    text-decoration: none;
    color: white;
    background-color: var(--main-color);
    padding: 10px 40px;
    display: block;
    width: fit-content;
    margin: 30px auto;
    text-transform: uppercase;
}
/*End Portfolio*/
/*Start video*/
.video {
    position: relative;
    aspect-ratio: 16/9;
}
.video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
    .video::before {
        max-width: 100%;
    }
}
.video video {
    max-width: 100%;
}
.video .video-text {
    background-color: var(--transparent-color);
    padding: 30px;
    text-align: center;
    color: white;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.video .video-text h2 {
    font-weight: normal;
    margin-bottom: 30px;
    font-size: 35px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .video .video-text h2 {
        font-size: 15px;
        margin-bottom: 15px;
    }
}
.video .video-text p {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .video .video-text p {
        font-size: 10px;
        margin-bottom: 15px;
    }
}
.video .video-text button {
    background-color: black;
    color: white;
    padding: 4px 10px;
    margin-bottom: 10px;
    border: none;
}
@media (max-width: 768px) {
    .video .video-text button {
        font-size: 10px;
        margin-bottom: 15px;
    }
}
/*End video*/
/* Start about */
.about {
    padding-top: var(--section-padding);
    text-align: center;
    overflow: hidden;
}
.about .container img {
    max-width: 100%;
    width: 1000px;
    position: relative;
    top: 70px;
    left: 29px;
    margin-top: -200px;
}
@media (max-width: 768px) {
    .about .container img {
        margin-top: -120px;
        top:  10px;
    }
}
/* End about */
/* Start stats */
.stats {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    text-align: center;
    background-image: url("../images/statistic.jpg");
    background-size: cover;
    max-width: 100%;
    position: relative;
}
.stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}
.stats .container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.stats .container .box {
    color: white;
    flex: 1;
    background-color: var(--transparent-color);
    padding: 50px;
}
@media (max-width: 767px) {
    .stats .container .box {
        flex-basis: 100%;
        margin-bottom: 10px;
    }
}
@media (min-width: 768px) {
    .stats .container .box {
        flex-basis: 50%;
        margin-bottom: 10px;
    }
}
@media (min-width: 992px) {
    .stats .container .box {
        flex-basis: 25%;
        margin-bottom: 0;
    }
}
.stats .container .box i {
    width: 40px;
    height: 40px;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    border-radius: 50%;
}
.stats .container .box .number {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}
.stats .container .box p {
    font-size: 15px;
}
/* End stats */
/* Start our skills */
.our-skills {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}
.our-skills .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media (min-width: 992px) {
    .our-skills .container > div {
    flex-basis: 45% !important;
}
}
.our-skills .container > div > h3 {
    font-weight: normal;
    font-size: 30px;
    margin: 0 0 30px;
    text-align: center;
    text-transform: uppercase;
}
.our-skills .container > div > p {
    font-weight: normal;
    font-size: 15px;
    line-height: 1.6;
    color: #777;
    margin: 0 0 60px;
    text-align: center;
}
.our-skills .container .content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .our-skills .container .content {
        flex-direction: column;
        text-align: center;
    }
    .our-skills .container img {
        margin-bottom: 20px;
    }
    .our-skills .container .content .text {
        border-bottom: 1px solid #ccc;
        padding: 20px;
    }
}
.our-skills .container .content .text {
    border-bottom: 1px solid #ccc;
    padding: 20px;
}
.our-skills .container img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 30px;
}
.our-skills .container .content .text p:first-child {
    margin-bottom: 10px;
}
.our-skills .container .content .text p:last-child {
    text-align: end;
    color: #777;
}
.our-skills .container .testimonials .bullets {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.our-skills .container .testimonials .bullets li {
    width: 14px;
    height: 14px;
    border: 1px solid #746a6a;
    border-radius: 50%;
    margin-left: 10px;
}
.our-skills .container .testimonials .bullets li.active {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
}
.skills .prog-holder {
    margin: 10px;
}
.skills .prog-holder h4 {
    margin-bottom: 10px;
    margin-top: 20px;
    max-width: 100%;
    font-weight: normal;
    text-transform: uppercase;
}
.our-skills .skills .prog-holder .prog {
    height: 30px;
    background-color: #dedadc;
    position: relative;
}
.our-skills .skills .prog-holder .prog span {
    background-color: var(--main-color);
    position: absolute;
    height: 100%;
    left: 0;
}
.our-skills .skills .prog-holder .prog span::before {
    content: attr(data-progress);
    color: white;
    font-size: 15px;
    padding: 1px;
    border-radius: 3px;
    background-color: black;
    position: absolute;
    left: 100%;
    top: -30px;
    transform: translateX(-50%);
}
.our-skills .skills .prog-holder .prog span::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent;
    position: absolute;
    left: 100%;
    top: -11px;
    transform: translateX(-50%);
}
/* End our skills */
/* Start quote */
.quote {
    max-width: 100%;
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    background-image: url("../images/quote.jpg");
    background-size: cover;
    position: relative;
}
.quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.quote .container {
    position: relative;
    color: white;
    text-align: center;
}
.quote .container q {
    display: block;
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 30px;
    quotes: none;
}
.quote .container q::before {
    content: "\f10d";
    font-family: "Font Awesome 7 free";
    font-weight: 900;
}
.quote .container q::after {
    content: "\f10e";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
}
.quote .container span {
    display: block;
    font-size: 15px;
}
/* End quote */
/* Start pricing */
.pricing {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding)
}
.pricing .container .plans {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
    justify-content: center;
    align-items: center;
}
.pricing .container .plans .plan {
    background-color: #fcfcfc;
    text-align: center;
}
@media (max-width: 768px) {
    .pricing .container .plans .plan {
        border: 3px solid var(--main-color);
        background-color: #fcfcfc;
    }
}
.pricing .container .plans .plan .head {
    border-bottom: 1px solid var(--main-color);
    border-top: 1px solid var(--main-color);
    padding: 20px;
}
.pricing .container .plans .plan .head h3 {
    font-size: 20px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.pricing .container .plans .plan .head span {
    display: block;
    font-weight: 600;
    font-size: 50px;
    margin-bottom: 10px;
    position: relative;
}
.pricing .container .plans .plan .head span::before {
    content: "$";
    position: absolute;
    font-size: 17px;
    font-weight: 600;
    top: -2px;
    left: 70px;
}
.pricing .container .plans .plan .head span::after {
    content: "/MO";
    position: absolute;
    font-size: 13px;
    font-weight: 600;
    bottom: 0px;
    right: 57px;
}
.pricing .container .plans .plan ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.pricing .container .plans .plan ul li {
    width: fit-content;
    padding: 20px;
    border-bottom: 1px solid var(--main-color);
}
.pricing .container .plans .plan ul li:last-child {
    border-bottom: transparent
}
.pricing .container .plans .plan .foot {
    padding-top: 30px;
    border-top: 1px solid var(--main-color);
}
.pricing .plans .plan .foot a {
    border: 1px solid var(--main-color);
    padding: 10px auto 0;
    text-decoration: none;
    color: black;
    text-transform: capitalize;
    margin-bottom: 50px;
    padding: 10px 20px;
    display: inline-block;
}
.pricing .container .text-pricing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.pricing .container p {
    font-size: 20px;
    font-weight: normal;
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
}
.pricing .container .contact-link {
    text-decoration: none;
    color: white;
    background-color: var(--main-color);
    padding: 10px 20px;
    text-transform: capitalize;
}
/* End pricing */
/* Start subscribe */
.subscribe {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    background-image: url("../images/subscribe.jpg");
    background-size: cover;
    max-width: 100%;
    position: relative;
}
.subscribe::before {
    content: "";
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}
.subscribe .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 992px) {
    .subscribe .container {
        flex-direction: column;
    }
}
.subscribe form {
    display: flex;
    position: relative;
    width: 500px;
    max-width: 100%;
    margin-left: 40px;
}
@media (max-width: 992px) {
    .subscribe form {
        width: 300px;
        margin: 0 auto 40px;
    }
}
.subscribe form i {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    color: white;
}
.subscribe form input[type="email"] {
    border: 1px solid white;
    border-color: white transparent white white;
    background: none;
    padding: 10px 10px 10px 60px;
    caret-color: var(--main-color);
    width: calc(100% - 130px);
}
.subscribe form input[type="email"]::placeholder {
    color: white;
}
.subscribe form input[type="submit"] {
    width: 130px;
    border-width: 1px;
    border-style: solid;
    border-color: white white white transparent;
    background-color: var(--main-color);
    color: white;
    text-transform: uppercase;
}
.subscribe form input[type="submit"]:focus,
.subscribe form input[type="email"]:focus {
    outline: none;
}
.subscribe p {
    margin-left: 40px;
    color: white;
    font-weight: normal;
    line-height: 1.6;
}
@media (max-width: 992px) {
    .subscribe p {
        text-align: center;
        margin: 0 auto;
    }
}
/* End subscribe */
/* start contact */
.contact {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}
.contact .content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .contact .content {
        flex-direction: column;
    }
    .contact .content form {
        width: 100%;
        max-width: 100%;
    }
    .contact .content form input[type="submit"] {
        margin: 30px auto;
    }
    .contact .content .info {
        justify-content: center;
        margin: 0 auto;
        text-align: center;
    }
}
.contact .content form {
    flex-basis: 65%;
    display: flex;
    flex-direction: column;
}
.contact .content .info {
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
}
.contact .content form .main-input {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    padding: 20px;
}
.contact .content form textarea {
    height: 200px;
    resize: none;
}
.contact .content form .main-input:focus {
    outline: none;
    caret-color: #ccc;
}
.contact .content .info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.contact .content .info h4:nth-of-type(2) {
    margin-top: 60px;
}
.contact .content .info span,
.contact .content .info address {
    color: #777;
    font-size: 15px;
    font-weight: normal;
}
.contact .content .info span {
    margin-bottom: 10px;
}
.contact .content .info address {
    line-height: 1.6;
}
.contact .content input[type="submit"] {
    width: fit-content;
    padding: 20px 30px;
    color: white;
    background-color: var(--main-color);
    border: none;
    align-self: flex-end;
    margin-top: 40px;
    cursor: pointer;
}
/* end contact */
/* start footer */
.footer {
    padding-top: calc(var(--section-padding) / 2);
    padding-bottom: calc(var(--section-padding) / 2);
}
.footer {
    background-image: url("../images/footer.jpg");
    background-size: cover;
    position: relative;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.footer .container {
    position: relative;
    text-align: center;
}
.footer .container img {
    width: 200px;
}
.footer .container p:first-of-type {
    color: white;
    font-size: 20px;
    font-weight: normal;
    text-transform: uppercase;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}
.footer .container p:first-of-type::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 250px;
    background-color: white;
}
.footer .container p:last-of-type {
    color: white;
    font-size: 20px;
    font-weight: normal;
    text-transform: capitalize;
}
.footer .container p:last-of-type span {
    color: var(--main-color)
}
.footer .container .social-icons {
    color: white;
}
.footer .container .social-icons i {
    margin-left: 10px;
    margin-bottom: 50px;
}
/* end footer */