body {
    font-family: "Questrial", serif;

    font-style: normal;
}

:root {
    --primary-color: #FFFFFF;
    --secondary-color: #1B1B1B;
    --text-color: #F5F5F4;
    --accent-color: #F5F5F5;
    --dark-color: #000000;
    --divider-color: #FFFFFF1A;
    --dark-divider-color: #F7FBFA1A;
}

/* Header styles */
.main-header {
    background-color: black;
}

.main-header img {
    object-fit: contain;
    width: 100%;
}

.main-header a.navbar-brand {
    width: 13%;
}

a.btn-header {
    font-weight: 600;
    padding: 7px 20px;
    background: #fff;
    color: #1d1d1d;
    font-size: 16px;
    border-radius: 30px;
    margin-right: 15px;
    text-decoration: none;
}

a.btn-header img {
    width: 16%;
    margin-left: 6px;
}

.main-header .navbar-nav {
    padding: 2px 5px;
    border: 1px solid rgb(255 255 255 / 50%);
    border-radius: 30px;
}

.main-header li.nav-item {
    display: flex;
    align-items: center;
    margin: 2px;
}

.main-header .navbar-nav .nav-link {
    padding: 5px 20px;
}

.main-header .navbar-nav .nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 20px;
    border-radius: 30px;
}

.navbar-toggler.collapsed .navbar-toggler-icon {
    background: url(../images/hamburger.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 50px;
}

.navbar-toggler .navbar-toggler-icon {
    background: url(../images/close.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 18px;
}

.main-header .navbar-nav a {
    color: #fff;
}

.main-header .banner {
    color: red;
}

/* Header styles End */
/* Banner Section  */
section.banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
    color: #fff;
}

section.banner img {
    width: 15%;
}

section.banner h1 {
    font-size: 3rem;
}

/* Banner Section  End*/

/* Footer Styles Start */

.footer-work-together {
    position: relative;
    padding: 80px 0;
}

.footer-work-together::before {
    content: '';
    display: block;
    position: absolute;
    right: -20px;
    top: 12%;
    background: url(../images/section-bg-shape-7.png) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 250px;
    height: 250px;
    opacity: 40%;
    animation: circlerotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}

.work-together-box {
    position: relative;
}

.work-together-content {
    position: relative;
    background: url('../images/work-together-bg.png') no-repeat;
    background-position: center center;
    background-size: auto;
    text-align: center;
}

.work-together-content::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/work-together-bg-gradient.png) no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-work-together {
    margin-bottom: 0;
}

.footer-work-together h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-work-together h2 {
    font-size: 180px;
    font-weight: 800;
    text-transform: uppercase;
}

.work-together-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-work-together .work-together-btn a {
    background-color: var(--accent-color);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.footer-work-together .work-together-btn a:hover {
    background-color: var(--secondary-color);
}

.footer-work-together .work-together-btn a img {
    width: 100%;
    max-width: 24px;
    height: 24px;
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.footer-work-together .work-together-btn a:hover img {
    filter: brightness(0) invert(1);
    transform: rotate(45deg);
}

.footer-work-together .work-together-btn a span {
    width: 100%;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--dark-color);
    transition: all 0.3s ease-in-out;
}

.footer-work-together .work-together-btn a:hover span {
    color: var(--primary-color);
}

.footer-main {
    border-top: 1px solid var(--divider-color);
    padding: 60px 0 0;
    background: #000000;
    color: #fff;
}

.footer-main-box {
    display: flex;
    gap: 30px 60px;
    flex-wrap: wrap;
}

.about-footer {
    width: calc(30% - 30px);
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    width: 100%;
    max-width: 177px;
}

.about-footer-content p {
    margin-bottom: 0;
}

.footer-newsletter-form {
    border-top: 1px solid var(--divider-color);
    margin-top: 25px;
    padding-top: 25px;
}

.footer-newsletter-form h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-newsletter-form .form-group {
    display: flex;
}

.footer-newsletter-form .form-group .form-control {
    width: calc(100% - 60px);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--text-color);
    background: transparent;
    border: 1px solid var(--divider-color);
    border-radius: 100px;
    outline: none;
    box-shadow: none;
    padding: 15px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: var(--text-color);
}

.footer-newsletter-form .form-group .newsletter-btn {
    background-color: var(--accent-color);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover {
    background-color: var(--primary-color);
}

.footer-newsletter-form .form-group .newsletter-btn i {
    font-size: 30px;
    padding-right: 5px;
}

.footer-links-box {
    width: calc(70% - 30px);
}

.footer-contact-list {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.footer-contact-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-list ul li {
    position: relative;
    width: calc(33.33% - 33.33px);
    font-size: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.footer-contact-list ul li::before {
    content: '';
    position: absolute;
    top: 0;
    right: -25px;
    bottom: 0;
    background-color: var(--divider-color);
    height: 100%;
    width: 1px;
}

.footer-contact-list ul li:nth-child(3n + 3):before,
.footer-contact-list ul li:last-child:before {
    display: none;
}

.footer-contact-list ul li a {
    color: inherit;
    text-decoration: none;
}

.footer-contact-list ul li a:hover {
    color: var(--accent-color);
}

.footer-contact-list ul li img {
    width: 100%;
    max-width: 25px;
    margin-right: 15px;
}

.footer-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 80px;
}

.footer-links {
    position: relative;
    width: calc(30% - 53.33px);
}

.footer-links.footer-service-links {
    width: calc(40% - 53.33px);
}

.footer-links::before {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    bottom: 0;
    background-color: var(--divider-color);
    height: 100%;
    width: 1px;
}

.footer-links:nth-child(3n + 3):before,
.footer-links:last-child:before {
    display: none;
}

.footer-links h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    text-transform: capitalize;
    line-height: 1.7em;
    margin-bottom: 15px;
    text-decoration: none;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-links ul li a i {
    font-size: 18px;
    color: var(--accent-color);
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover i {
    color: var(--primary-color);
}

.footer-copyright-text {
    text-align: center;
    border-top: 1px solid var(--divider-color);
    margin-top: 60px;
    padding: 60px 0;
}

.footer-copyright-text p {
    margin: 0;
}

/* Footer Styles Start */