* {
    margin: 0;
    padding: 0;
}

*:focus {
    outline: none;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #fdfdfd;
}


/* Navigation */

.navigation {
    position: fixed;
    display: flex;
    width: 100%;
    height: 90px;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: all 0.4s;
}

.navigation .wrapper {
    position: relative;
    display: grid;
    width: 1100px;
    height: 80px;
    grid-template-columns: 0.5fr 3fr 0.3fr;
}

.navigation .image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: 80px;
    font-size: 2em;
    font-weight: 900;
    color: #e93212;
    cursor: pointer;
}

.navigation .image-wrapper a {
    text-decoration: none;
    color: #e93212;
}

.navigation .image-wrapper span {
    color: rgb(54, 53, 53);
}

.navigation .right-wrapper {
    position: relative;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.navigation .right-wrapper .headerlink {
    position: relative;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    color: rgb(54, 53, 53);
    padding: 6px 14px 6px 14px;
    text-transform: uppercase;
    transition: all 0.2s;
}

.navigation .right-wrapper .headerlink::before {
    position: absolute;
    content: "";
    width: 0px;
    height: 3px;
    background-color: #e93212;
    left: 14px;
    margin-top: 30px;
    transition: all 0.2s;
}

.navigation .right-wrapper .headerlink:hover {
    color: #e93212;
}

.navigation .right-wrapper .headerlink:hover::before {
    width: 50px;
}

.navigation .right-wrapper .headerlink:first-child:hover::before {
    width: 18px;
}

.navigation .right-wrapper .dropdown-wrapper .headerlink:first-child:hover::before {
    width: 50px;
}

.navigation .right-wrapper .dropdown-wrapper .dropdown {
    position: absolute;
    top: 35px;
    left: 132px;
    min-width: 240px;
    padding: 10px 20px 10px 20px;
    background-color: #fff;
    box-shadow: -10px 10px 30px #7c7c7c54;
    border: 1px solid #f3f3f3;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.navigation .right-wrapper .dropdown-wrapper .dropdown ul {
    position: relative;
    list-style: none;
}

.navigation .right-wrapper .dropdown-wrapper .dropdown ul li {
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
    border-bottom: 1px solid #6e6e6e;
}

.navigation .right-wrapper .dropdown-wrapper .dropdown li:last-child {
    border-bottom: none;
}

.navigation .right-wrapper .dropdown-wrapper .dropdown ul .list-dropdown {
    position: relative;
    display: inline-block;
    width: auto;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    color: rgb(54, 53, 53);
    transition: all 0.2s;
    overflow: hidden;
}

.navigation .right-wrapper .dropdown-wrapper .dropdown ul .list-dropdown i {
    position: relative;
    visibility: hidden;
    opacity: 0;
    margin-left: -13px;
    transition: all 0.4s;
}

.navigation .right-wrapper .dropdown-wrapper .dropdown ul .list-dropdown:hover {
    color: #e93212;
}

.navigation .right-wrapper .dropdown-wrapper .dropdown ul .list-dropdown:hover i {
    position: relative;
    visibility: visible;
    opacity: 1;
    margin-left: 10px;
    margin-right: 10px;
}

.navigation .right-wrapper .dropdown-wrapper:hover .dropdown {
    top: 75px;
    visibility: visible;
    opacity: 1;
}

.navigation .right-wrapper .dropdown-wrapper:hover .headerlink {
    color: #e93212;
}

.navigation .right-wrapper .dropdown-wrapper:hover .headerlink::before {
    width: 50px;
}

.navigation .socials-wrapper {
    position: relative;
    display: flex;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.navigation .socials-wrapper i {
    position: relative;
    cursor: pointer;
    display: flex;
    font-size: 1em;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 18px;
    color: #121213;
    border: 1px solid #121213;
    transition: all 0.1s;
}

.navigation .socials-wrapper i:hover {
    color: #e93212;
    border: 1px solid #e93212;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #12121367;
    z-index: 9999999999;
    transition: all 0.2s;
    visibility: hidden;
    opacity: 0;
}

.menu .sidebar {
    position: relative;
    float: right;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background-color: #fdfdfd;
    z-index: 9999999999;
    padding: 30px;
    overflow-y: auto;
    transition: all 0.4s;
    transform: translateX(calc(100% + 320px));
}

.menu .sidebar .fa-times {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background-color: #db2e2e;
    right: 20px;
    top: 20px;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}

.menu .sidebar .fa-times:hover {
    transform: rotate(30deg);
}

.menu .image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 160px;
    font-size: 2em;
    font-weight: 900;
    color: #e93212;
    cursor: pointer;
}

.menu .image-wrapper a {
    text-decoration: none;
    color: #e93212;
}

.menu .image-wrapper span {
    color: rgb(54, 53, 53);
}

.menu .desc-a {
    font-size: 0.8em;
    font-weight: 400;
    color: rgb(134, 134, 134);
}

.menu .sidebar .links {
    margin-top: 20px;
    position: relative;
    list-style: none;
    display: none;
}

.menu .sidebar .inner-links {
    margin-left: 20px;
}

.menu .sidebar .links .list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 30px;
    border-bottom: 1px solid #a7a7a7;
    padding-top: 10px;
    padding-bottom: 10px;
}

.menu .sidebar .links .list:last-child {
    border-bottom: none;
}

.menu .sidebar .links .inner-links {
    margin-top: 5px;
    position: relative;
}

.menu .sidebar .links .list li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 30px;
}

.menu .sidebar .links .list li a {
    position: relative;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    color: rgb(104, 104, 104);
    text-transform: uppercase;
    transition: all 0.2s;
}

.menu .sidebar .links li .headerlinks {
    position: relative;
    width: 100%;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    color: rgb(54, 53, 53);
    text-transform: uppercase;
    transition: all 0.2s;
}

.menu .sidebar .links li a:hover {
    color: #db2e2e;
}

.menu .socials {
    margin-top: 30px;
    position: relative;
    list-style: none;
    width: 100%;
}

.menu .socials li {
    position: relative;
    display: inline-block;
}

.menu .socials i {
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    transition: all 0.2s;
}

.menu .socials li:first-child i {
    background-color: #2858f5;
}

.menu .socials li:nth-child(2) i {
    background-color: #354c99;
}

.menu .socials li:nth-child(3) i {
    background-color: #819efc;
}

.menu .socials li:nth-child(4) i {
    background-color: #f53628;
}

.menu .socials li:hover i {
    background-color: #121213;
    color: #fff;
}

.menu .gallery-head {
    position: relative;
    display: inline-block;
    margin-top: 30px;
    font-size: 2em;
    font-weight: 700;
}

.menu .gallery {
    margin-top: 30px;
    margin-bottom: 70px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.menu .gallery img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}


/* Navigation */


/* First Container */

.first-container {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    overflow: hidden;
    background-color: #f5f6f7;
    height: 700px;
}

.first-container .wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    width: 1100px;
    justify-content: space-between;
    align-content: flex-start;
    padding-top: 240px;
    gap: 20px;
}

.first-container .wrapper .content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 20px;
}

.first-container .wrapper .images {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.first-container .wrapper .s-a {
    position: absolute;
    top: 550px;
    right: 80px;
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: anim-a 8s ease-in-out infinite normal;
}

.first-container .wrapper .s-b {
    position: absolute;
    top: 120px;
    right: 330px;
    width: 100px;
    height: 100px;
    object-fit: contain;
    animation: anim-b 30s linear infinite normal;
}

.first-container .wrapper .s-c {
    position: absolute;
    top: 160px;
    left: 28px;
    width: 90px;
    height: 90px;
    object-fit: contain;
    animation: anim-c 6s linear infinite normal;
}

.first-container .heading {
    font-size: 3.2em;
    font-weight: 700;
    color: rgb(24, 24, 24);
    text-shadow: 1px 1px #e9e9e9;
}

.first-container .sub-heading {
    width: 100%;
    font-size: 1em;
    font-weight: 400;
    color: rgb(112, 112, 112);
}

.first-container .button-one {
    font-family: "Roboto", sans-serif i !important;
    font-size: 1.2em;
    font-weight: 700;
    color: #ffffff;
    padding: 10px 18px 10px 18px;
    border: none;
    border-radius: 2px;
    background-color: #e93212;
    cursor: pointer;
    transition: all 0.4s;
    text-transform: uppercase;
}

.first-container .button-one:hover {
    background-color: #1f1f1f;
}

.first-container .background-one {
    position: absolute;
    right: 150px;
    top: -50px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    z-index: 2;
    border-radius: 2px;
    box-shadow: -10px 10px 50px #e2e4e7;
    transition: all 0.4s;
}

.first-container .background-two {
    position: relative;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: -10px 10px 50px #e0e2e4;
    transition: all 0.4s;
}

.first-container .background-one:hover,
.first-container .background-two:hover {
    transform: scale(1.04);
}

@keyframes anim-a {
    0% {
        transform: translateX(0px) translateY(0px);
    }
    25% {
        transform: translateX(60px) translateY(0px);
    }
    60% {
        transform: translateX(-50px) translateY(-40px);
    }
    100% {
        transform: translateX(0px) translateY(0px);
    }
}

@keyframes anim-b {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes anim-c {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(30deg);
    }
    50% {
        transform: rotate(10deg);
    }
    75% {
        transform: rotate(50deg);
    }
    100% {
        transform: rotate(0deg);
    }
}


/* First Container */


/* About Container */

.about-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding-top: 80px;
}

.about-container .wrapper {
    position: relative;
    display: grid;
    width: 1100px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
}

.about-container .bg {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-container .item {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
}

.about-container .item .sub-head {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 1.1em;
    font-weight: 500;
    text-align: left;
    color: #e93212;
    margin-bottom: 20px;
}

.about-container .item .line {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #e93212;
    margin-left: 20px;
}

.about-container .item .head {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 2.2em;
    font-weight: 700;
    text-align: left;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.about-container .item .shead {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 1.5em;
    font-weight: 700;
    text-align: left;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.about-container .item p {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 1em;
    font-weight: 400;
    text-align: left;
    color: #727272;
    margin-bottom: 30px;
}


/* About Container */


/* Service Container */

.service-container {
    margin-top: 50px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    overflow: hidden;
    background-color: #f5f6f7;
}

.service-container .wrapper {
    position: relative;
    display: grid;
    width: 1100px;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.service-container .info .sub-head {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 1.1em;
    font-weight: 500;
    text-align: left;
    color: #e93212;
    margin-bottom: 20px;
}

.service-container .info .line {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #e93212;
    margin-left: 20px;
}

.service-container .info .head {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 2.2em;
    font-weight: 700;
    text-align: left;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.service-container .info p {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 1em;
    font-weight: 400;
    text-align: left;
    color: #727272;
}

.service-container .wrapper img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-container .wrapper .owl-carousel-0 {
    position: relative;
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 3;
}

.service-container .item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    min-width: 200px;
    min-height: 200px;
    justify-content: center;
    align-content: center;
    padding: 50px;
    transition: all 0.4s;
    background-color: rgb(214, 36, 36);
}

.service-container .item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    filter: opacity(0.1);
}

.service-container .a {
    background-color: rgb(214, 36, 36);
}

.service-container .b {
    background-color: rgb(214, 122, 36);
}

.service-container .c {
    background-color: rgb(161, 214, 36);
}

.service-container .item i {
    position: relative;
    display: flex;
    justify-content: left;
    width: 100%;
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 30px;
    transition: all 0.4s;
    color: #fff;
}

.service-container .item span {
    display: inline-block;
    width: 100%;
    font-size: 1.3em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-align: left;
}

.service-container .item p {
    font-size: 1em;
    font-weight: 400;
    color: #fff;
    text-align: left;
    width: 100%;
}


/* Service Container */


/* Why Container */

.why-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}

.why-container .wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 1100px;
    justify-content: center;
    align-content: flex-start;
}

.why-container .info .sub-head {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 1.1em;
    font-weight: 500;
    justify-content: center;
    color: #e93212;
    margin-bottom: 20px;
}

.why-container .info .line {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #e93212;
    margin-left: 20px;
}

.why-container .info .head {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.why-container .info p {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 1em;
    font-weight: 400;
    text-align: center;
    color: #727272;
    margin-bottom: 30px;
}

.why-container .wrapper .item {
    position: relative;
    min-width: 200px;
    min-height: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    padding: 10px;
    gap: 10px;
    margin-top: 20px;
}

.why-container .wrapper .item .image {
    position: relative;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.why-container .wrapper .item .image span {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    color: #fff;
    background-color: #28f584;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0px;
    right: -20px;
    margin-right: 20px;
    z-index: 2;
}

.why-container .wrapper .item img {
    position: relative;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 85px;
    padding: 10px;
    border: 1px dashed #777777;
}

.why-container .wrapper #owl-item-one .image span {
    background-color: #28f584;
}

.why-container .wrapper #owl-item-two .image span {
    background-color: #2892f5;
}

.why-container .wrapper #owl-item-three .image span {
    background-color: #f5a328;
}

.why-container .wrapper #owl-item-four .image span {
    background-color: #f5284a;
}

.why-container .owl-carousel .item span {
    display: inline-block;
    width: 100%;
    font-size: 1.2em;
    font-weight: 700;
    color: #1b1b1b;
    text-align: center;
}

.why-container .owl-carousel .item p {
    color: #474747;
    text-align: center;
}


/* Why Container */


/* Counts Container */

.count-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding-bottom: 50px;
    padding-top: 50px;
    background-color: #fdecec;
}

.count-container .wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 1100px;
    justify-content: center;
    align-content: flex-start;
}

.count-container .info .sub-head {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 1.1em;
    font-weight: 500;
    justify-content: center;
    color: #e93212;
    margin-bottom: 20px;
}

.count-container .info .line {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #e93212;
    margin-left: 20px;
}

.count-container .info .head {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.count-container .info p {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 1em;
    font-weight: 400;
    text-align: center;
    color: #727272;
    margin-bottom: 30px;
}

.count-container .item {
    position: relative;
    max-width: 300px;
    max-height: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    border-radius: 6px;
    padding: 10px;
    gap: 20px;
}

.count-container .item span {
    font-size: 3em;
    font-weight: 700;
    text-align: center;
    color: #28f584;
}

.count-container .item #odo-one {
    color: #28f584;
}

.count-container .item #odo-two {
    color: #2858f5;
}

.count-container .item #odo-three {
    color: #f5285b;
}

.count-container .item p {
    text-align: center;
    color: #34423b;
    width: 100%;
    text-align: center;
}


/* Counts Container */


/* Review Container */

.review-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}

.review-container .background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50px;
    margin-top: -60px;
    object-fit: contain;
    z-index: -1;
}

.review-container .wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 1100px;
    justify-content: center;
    align-content: flex-start;
}

.review-container .info .sub-head {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 1.1em;
    font-weight: 500;
    justify-content: flex-start;
    color: #e93212;
    margin-bottom: 20px;
}

.review-container .info .line {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #e93212;
    margin-left: 20px;
}

.review-container .info .head {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 2.2em;
    font-weight: 700;
    text-align: left;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.review-container .info p {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 1em;
    font-weight: 400;
    text-align: left;
    color: #727272;
    margin-bottom: 30px;
}

.review-container .wrapper .item {
    position: relative;
    min-width: 200px;
    height: 290px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    padding: 20px;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 40px;
    border-top: 2px solid #db2e2e;
    border-bottom: 2px solid #db2e2e;
    box-shadow: 0 0 10px #e9e9e9;
    border-radius: 6px;
}

.review-container .wrapper .item::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    background-color: #db2e2e;
    bottom: -16px;
    transform: rotate(45deg);
    border-radius: 4px;
}

.review-container .wrapper .item .image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
    margin-top: 20px;
}

.review-container .wrapper .item i {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #e93212;
    font-size: 1.6em;
    width: 50px;
    height: 50px;
    border-radius: 40px;
}

.review-container .wrapper .item .line {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #e93212;
}

.review-container .owl-carousel .item span {
    font-size: 1.2em;
    font-weight: 700;
    color: #1b1b1b;
    text-align: center;
}

.review-container .owl-carousel .item .proff {
    display: inline-block;
    width: 100%;
    font-size: 1em;
    font-weight: 700;
    color: #db2e2e;
    text-align: center;
}

.review-container .owl-carousel .item p {
    color: #686868;
    text-align: center;
    margin-bottom: 20px;
}


/* Review Container */


/* Client Container */

.client-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding-top: 50px;
    overflow: hidden;
    background-color: #e4e4e4;
}

.client-container img {
    position: absolute;
    width: 100%;
    height: calc(100% - 160px);
    object-fit: cover;
    z-index: 0;
    top: 0;
}

.client-container .wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 1100px;
}

.client-container .wrapper .info {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 70px;
}

.client-container .wrapper .info div {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 30px;
    /* height: 300px; */
    box-shadow: 0 0 10px #42424277;
}

.client-container .info .sub-head {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 1.1em;
    font-weight: 500;
    justify-content: flex-start;
    color: #e93212;
    margin-bottom: 20px;
}

.client-container .info .line {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #e93212;
    margin-left: 20px;
}

.client-container .info .head {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 2.2em;
    font-weight: 700;
    text-align: left;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.client-container .info p {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 1em;
    font-weight: 400;
    text-align: left;
    color: #727272;
    margin-bottom: 30px;
}

.client-container .wrapper .item {
    position: relative;
    height: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.client-container .wrapper .item img {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: saturate(0);
    transition: all 0.4s;
}

.client-container .wrapper .item img:hover {
    filter: saturate(1);
}


/* Client Container */


/* Contact Container */

.contact-container {
    position: relative;
    display: grid;
    grid-template-rows: 1fr;
    justify-items: center;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    gap: 50px;
}

.contact-container .wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 1100px;
    justify-content: center;
    gap: 30px;
}

.contact-container .wrapper .info {
    position: relative;
    grid-column-start: 1;
    grid-column-end: 4;
}

.contact-container .info .sub-head {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 1.1em;
    font-weight: 500;
    justify-content: center;
    color: #e93212;
    margin-bottom: 20px;
}

.contact-container .info .line {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #e93212;
    margin-left: 20px;
}

.contact-container .info .head {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.contact-container .info p {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 1em;
    font-weight: 400;
    text-align: center;
    color: #727272;
}

.contact-container .item {
    position: relative;
    display: flex;
    height: 80px;
    max-width: 324px;
    background-color: #fff;
    box-shadow: -4px 4px 10px #ebebeb;
    justify-content: center;
    align-content: center;
    padding: 10px;
    border-radius: 2px;
    border: 1px solid #ebebeb;
    transition: all 0.4s;
    gap: 30px;
}

.contact-container .item:hover {
    box-shadow: -4px 4px 10px #e0e0e0;
    margin-top: -5px;
}

.contact-container .item i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4em;
    font-weight: 700;
    margin-left: 30px;
}

.contact-container .item:nth-child(2) i {
    color: #9973f3;
}

.contact-container .item:nth-child(3) i {
    color: #72f7ec;
}

.contact-container .item:nth-child(4) i {
    color: #e56ef5;
}

.contact-container .item div {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
}

.contact-container .item .head {
    font-size: 1.2em;
    font-weight: 700;
    color: #35303f;
}

.contact-container .item .desc {
    font-size: 1em;
    font-weight: 400;
    color: #919191;
    width: 100%;
}

.contact-container .contact-form {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 1100px;
    gap: 30px;
    border-radius: 2px;
}

.contact-container .contact-form img {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.contact-container .contact-form form {
    position: relative;
    width: 450px;
    border: 1px solid #f0f0f0;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: -4px 4px 10px #f3f3f3;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    padding: 30px;
    gap: 30px;
    transition: all 0.4s;
}

.contact-container .contact-form form:hover {
    box-shadow: -4px 4px 10px #e9e9e9;
}

.contact-container .contact-form span {
    font-size: 1.5em;
    text-align: left;
}

.contact-container .contact-form p {
    font-size: 0.9em;
    font-weight: 400;
    color: #979797;
    text-align: left;
}

.contact-container .contact-form .grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-container .contact-form label {
    position: relative;
    font-weight: 500;
    color: #646464;
}

.contact-container .contact-form input {
    margin-top: 10px;
    border: none;
    height: 20px;
    padding: 10px;
    border-radius: 2px;
    width: calc(100% - 20px);
    background-color: #f8f9fa;
    color: rgb(41, 53, 58);
}

.contact-container .contact-form .email {
    width: 100%;
}

.contact-container .contact-form input::placeholder {
    color: rgb(149, 170, 177);
    font-weight: 500;
    font-size: 1.1em;
}

.contact-container .contact-form .textarealabel {
    width: 100%;
}

.contact-container .contact-form textarea {
    position: relative;
    margin-top: 10px;
    border: none;
    min-height: 130px;
    max-height: 250px;
    padding: 10px;
    border-radius: 2px;
    width: calc(100% - 20px);
    background-color: #f8f9fa;
    color: rgb(41, 53, 58);
    resize: vertical;
}

.contact-container .contact-form textarea::placeholder {
    color: rgb(149, 170, 177);
    font-weight: 500;
    font-size: 1.1em;
}

.contact-container .contact-form button {
    font-family: "Manrope", sans-serif !important;
    font-size: 1.4em;
    font-weight: 500;
    color: #fff;
    padding: 10px 18px 10px 18px;
    border: none;
    border-radius: 2px;
    background-color: #db2e2e;
    cursor: pointer;
    transition: all 0.4s;
    width: 100%;
    text-align: center;
}

.contact-container .contact-form button:hover {
    box-shadow: -10px 10px 30px #cfcfcf;
}


/* Contact Container */


/* Footer */

.footer {
    margin-top: 90px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 10px;
    background-color: #121213;
}

.footer .background {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer .wrapper {
    position: relative;
    display: grid;
    width: 1100px;
    grid-template-rows: 1fr 3fr;
    gap: 30px;
    align-items: center;
    /* margin-top: 30px; */
}

.footer .wrapper img {
    position: absolute;
    top: -100px;
    width: 288px;
    height: 288px;
    object-fit: cover;
    border-radius: 10px;
}

.footer .subscribe {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
}

.footer .subscribe .subs-form {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.4s;
}

.footer .subscribe input {
    font-size: 1em;
    font-weight: 500;
    position: relative;
    border: 2px solid #db2e2e;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    width: 300px;
    height: 20px;
    padding: 10px;
    background: transparent;
    color: #fff;
    transition: all 0.4s;
}

.footer .subscribe input::placeholder {
    color: rgb(149, 170, 177);
    font-size: 1em;
    font-weight: 500;
}

.footer .subscribe button {
    font-family: "Manrope", sans-serif !important;
    font-size: 1.1em;
    font-weight: 500;
    position: relative;
    border: none;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    height: 44px;
    padding: 10px;
    background: transparent;
    color: #fff;
    background-color: #db2e2e;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s;
}

.footer .subscribe .subs-form:hover button {
    margin-left: 10px;
}

.footer .bottom {
    position: relative;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: flex-start;
    direction: rtl;
}

.footer .bottom .item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.footer .bottom .item span {
    font-size: 1.2em;
    font-weight: 700;
    display: inline-block;
    width: 100%;
    text-align: left;
    color: #fff;
}

.footer .bottom .item ul {
    position: relative;
    list-style: none;
    width: 100%;
}

.footer .bottom .item li {
    position: relative;
    margin-top: 4px;
    margin-bottom: 4px;
    width: 100%;
}

.footer .bottom .item a {
    text-decoration: none;
    color: #f0f0f0;
    font-size: 1em;
    font-weight: 400;
    text-align: left;
    display: inline-block;
    width: 100%;
    transition: all 0.4s;
}

.footer .bottom .item a:hover {
    color: #db2e2e;
}

.footer .socials {
    width: 100%;
    height: 40px;
    border-top: 1px solid #db2e2e;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 30px;
}

.footer .socials span {
    font-size: 0.8em;
    color: #e2e2e2;
}

.footer .socials div {
    position: relative;
    margin-top: -10px;
}

.footer .socials ul {
    list-style: none;
}

.footer .socials li {
    display: inline-block;
}

.footer .socials i {
    color: #e2e2e2;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    transition: all 0.2s;
}

.footer .socials i:hover {
    background-color: #e2e2e2;
    color: #121213;
}


/* Footer */


/* Responsive */

@media only screen and (max-width: 1199px) {
    .navigation .wrapper,
    .first-container .wrapper,
    .about-container .wrapper,
    .service-container .wrapper,
    .why-container .wrapper,
    .count-container .wrapper,
    .review-container .wrapper,
    .client-container .wrapper,
    .contact-container .wrapper,
    .contact-container .contact-form,
    .footer .wrapper {
        width: 991px;
    }
    .first-container .wrapper .background-one {
        width: 150px;
        height: 150px;
    }
    .first-container .wrapper .background-two {
        width: 250px;
        height: 250px;
    }
    .contact-container .wrapper {
        justify-content: space-between;
    }
    .contact-container .wrapper .item {
        width: 280px;
    }
}

@media only screen and (max-width: 1059px) {
    .navigation .wrapper,
    .first-container .wrapper,
    .about-container .wrapper,
    .service-container .wrapper,
    .why-container .wrapper,
    .count-container .wrapper,
    .review-container .wrapper,
    .client-container .wrapper,
    .contact-container .wrapper,
    .contact-container .contact-form,
    .footer .wrapper {
        width: 90%;
    }
    .footer {
        margin-top: 150px;
    }
    .footer .wrapper {
        grid-template-rows: 140px;
    }
    .footer .wrapper img {
        position: relative;
    }
    .footer .wrapper .subscribe {
        justify-content: flex-start;
    }
    .footer .wrapper .bottom {
        grid-template-columns: repeat(3, 1fr);
        direction: unset;
    }
    .navigation .wrapper {
        display: flex;
        justify-content: space-between;
    }
    .navigation .wrapper .right-wrapper {
        display: none;
    }
    .menu .sidebar .links {
        display: block;
    }
    .first-container .wrapper .s-b {
        right: -60px;
    }
    .first-container .wrapper .background-one {
        width: 200px;
        height: 200px;
    }
    .first-container .wrapper .background-one {
        width: 200px;
        height: 200px;
    }
    .first-container .wrapper .background-two {
        width: 300px;
        height: 300px;
    }
    .first-container {
        height: auto;
        padding-bottom: 80px;
    }
    .first-container .wrapper {
        grid-template-columns: 1fr;
    }
    .first-container .wrapper .images {
        margin-top: 110px;
    }
    .contact-container .wrapper {
        justify-content: center;
    }
    .contact-container .contact-form {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .contact-container .contact-form img {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .client-container .wrapper .info {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 768px) {
    body {
        font-size: 12px;
    }
    .first-container .wrapper {
        padding-top: 160px;
    }
    .first-container .wrapper .s-c {
        top: 80px;
        left: 10px;
    }
}

@media only screen and (max-width: 704px) {
    .contact-container .wrapper .item {
        width: 100%;
        max-width: none;
        justify-content: flex-start;
    }
    .contact-container .contact-form form {
        width: 100%;
    }
}

@media only screen and (max-width: 599px) {
    .about-container .wrapper {
        grid-template-columns: 1fr;
    }
    .about-container .wrapper .bg {
        grid-row-start: 2;
    }
    .service-container .wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .service-container .wrapper img {
        width: 100%;
        height: 300px;
    }
}

@media only screen and (max-width: 499px) {
    .contact-container .contact-form .grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .contact-container .contact-form label {
        width: 100%;
    }
    .first-container .wrapper .images .background-one {
        width: 140px;
        height: 140px;
    }
    .first-container .wrapper .images .background-two {
        width: 240px;
        height: 240px;
    }
    .footer .wrapper .subscribe .subs-form {
        width: 285px;
    }
    .footer .wrapper .bottom {
        grid-template-columns: 1fr;
    }
    .menu .sidebar {
        width: calc(100% - 60px);
    }
}


/* Responsive */