@font-face {
    font-family: 'gs-light';
    src: url('../fonts/ge-ss-light.otf');
}

@font-face {
    font-family: 'gs-bold';
    src: url('../fonts/ge-ss-bold.otf');
}

@font-face {
    font-family: 'cairo-bold';
    src: url('../fonts/Cairo-Bold.ttf');
}

body {
    font-family: 'gs-light' !important;
    background-color: #000;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'gs-bold' !important;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    --primary-color: #0EA7DD;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    margin-bottom: 0px;
    text-align: justify;
}

.btn-button {
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 50px;
    display: inline-block;
    transition: all .3s ease-in-out;
}

.main-title {
    color: var(--primary-color);
    font-size: 32px;
    position: relative;
    padding-right: 15px;
    margin-bottom: 15px;
}

.main-title::before {
    content: '';
    position: absolute;
    right: 0px;
    width: 4px;
    height: 38px;
    background-color: var(--primary-color);
}

.sub-title {
    color: #fff;
    font-size: 20px;
    padding-right: 15px;
    margin-bottom: 40px;
}

.btn-button:hover {
    background-color: var(--primary-color);
}

.navbar-custom {
    background: transparent;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
    padding: 25px 0px;
}

.navbar .nav-item {
    margin-left: 40px;
}

.navbar .nav-link {
    color: #fff;
    padding: 15px 0px !important;
}

.navbar .nav-link:hover {
    color: var(--primary-color);

}

.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 12px;
    /* مساحة للخط */
    color: #fff;
    transition: color 0.3s ease;
}

/* الخط */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: var(--primary-color, #0099cc);
    transition: width 0.4s ease;
    border-radius: 2px;
}

/* الدايرة */
.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    bottom: -3px;
    /* علشان تنزل على نفس مستوى الخط */
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--primary-color, #0099cc);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* عند hover أو active */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    opacity: 1;
}



/* تعديل شكل الايقونة بتاعة FontAwesome */
.navbar-nav .nav-link.dropdown-toggle i {
    margin-right: 5px;
    /* مسافة صغيرة */
    font-size: 14px;
    transition: transform 0.3s ease;
}


.dropdown-toggle::after {
    border: 0px;
}

.navbar-nav .dropdown-item {
    text-align: right;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid transparent;
    color: #fff;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--primary-color);
}

.navbar-nav .dropdown-menu {
    background-color: #000;
    padding: 0px;
    border-radius: 8px;
    border: 1px solid #000;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* يغطي الشاشة */
    background: linear-gradient(rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    /* فوق الفيديو وتحت المحتوى */
    pointer-events: none;
    /* ما يمنعش الكليك */
}
.overlay-gradient-pages{
        position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background-color: rgba(14,167,221,.20);
    z-index: 1;
    /* فوق الفيديو وتحت المحتوى */
    pointer-events: none;
    /* ما يمنعش الكليك */
    
}
/* الفيديو الخلفية */
.hero .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* وراء كل حاجة */
    overflow: hidden;
}

.hero .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* يغطي المساحة بالكامل */
}


.hero .content {
    position: relative;
    z-index: 1;
}

.hero .content h1 {
    color: var(--primary-color);
    font-size: 55px;
    padding-bottom: 15px;
}

.hero .content p {
    width: 55%;
    padding-bottom: 25px;
    margin: auto;
    display: table;
    text-align: center;
}



.services-box {
    display: flex;
    justify-content: center;
    /* يجيبهم في النص */
    align-items: flex-start;
    /* نتحكم يدوي في ارتفاع كل كارت */
    gap: 0;
    margin-top: 35px;
    flex-wrap: nowrap;
    position: relative;
}

.service-card {
    background: rgba(24, 24, 24, 0.2);
    color: #fff;
    padding: 20px 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 80px;
    width: 300px;
    justify-content: center;
    transition: all .3s ease-in-out;
    cursor: pointer;
    position: relative;
    margin: 0 -40px;
    z-index: 1;
}

/* الكارت الأول */
.service-card.up {
    transform: translate(85px, 30px) rotate(-3deg);
    z-index: 3;

}

/* الكارت اللي في النص */
.service-card.down {
    transform: translate(10px, 100px) rotate(0deg);
    /* نزلته لتحت */
    z-index: 2;
}

/* الكارت التالت */
.service-card.left {
    transform: translate(-30px, 60px) rotate(-5deg);
    z-index: 1;
}

.service-card:hover {
  background-color: rgba(14, 167, 221, 0.2);
    z-index: 5;
}

.service-card:hover img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.services-box .service-card img {
    transition: all .3s ease-in-out;
}

.services-box .service-card span {
    padding-right: 5px;
    color: #fff;
}
@keyframes floatUpDown {
    0%, 100% {
        transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--r, 0deg));
    }

    50% {
        transform: translate(var(--x, 0), calc(var(--y, 0) - 15px)) rotate(var(--r, 0deg));
    }
}

/* تطبيق الانيميشن */
.service-card {
    animation: floatUpDown 4s ease-in-out infinite;
}

/* الكارت الأول */
.service-card.up {
    --x: 85px;
    --y: 30px;
    --r: -3deg;
    animation-delay: 0s;
}

/* الكارت اللي في النص */
.service-card.down {
    --x: 10px;
    --y: 100px;
    --r: 0deg;
    animation-delay: 0.5s;
}

/* الكارت التالت */
.service-card.left {
    --x: -30px;
    --y: 60px;
    --r: -5deg;
    animation-delay: 1s;
}

.about .video {
    position: relative;
    display: inline-block;
    max-width: 600px;
    cursor: pointer;
}

.about .video img.video-cover {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.about .video .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s;
}

.about .video .icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
}


/* Custom tab styles */
.nav-tabs {
    border: 0px;
}

.nav-tabs .nav-link {
    color: #fff;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 24px;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    background: transparent;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.tab-content p {
    color: #fff;
    margin-top: 1rem;
    font-size: 18px;
    line-height: 36px;
}

.about {
    background-image: url('./../images/Group\ 35444.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    padding-top: 70px;
}

.about .vision h2 {
    color: var(--primary-color);
    font-size: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.about .vision p {
    color: #EDEDED;
    font-size: 18px;
    line-height: 35px;
}

.clients-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 40px;

}

/* الدايرة بتاعة العنوان */
.clients-section .circle-title {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #00c4ff;
    /* نفس اللون اللي في الصورة */
    flex-shrink: 0;
}

/* حجم السلايدر */
.swiper {
    width: 100%;
}

.clients-section .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-section .swiper-slide img {
    max-height: 80px;
    object-fit: contain;

}

.our-services {
    padding-top: 100px;
    padding-bottom: 70px;
    background-image: url('../images/Serves\ \(1\).png');
    background-size: cover;
    background-repeat: no-repeat;
}

.our-services .item {
      border-radius: 12px;
    padding: 40px 32px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
transition: all 0.3s ease;
	box-shadow:none
}

.our-services .item:hover {
   background-color: rgba(14, 167, 221, 0.2);
	border:1px solid rgba(14, 167, 221, 1)

}

.our-services .item:hover img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.our-services .item:hover a {
    color: #fff;
}

.our-services .item .photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.05),
            rgba(0, 0, 0, 0.4));
}

.our-services .item .photo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    transition: all 0.3s ease;
}

.our-services .item h2 {

    font-size: 20px;
    margin: 25px 0px;
    transition: all 0.3s ease;
}

.our-services .item h2 a {
    color: var(--primary-color);
}

.our-services .item p {
    color: #fff;
    font-size: 16px;
    line-height: 25px;
}

.our-services .btn-button {
    background-color: var(--primary-color);
    color: #fff;
    display: table;
    margin: auto;
    border: 1px solid var(--primary-color);
}

.our-services .btn-button:hover {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);

}

.difference {
    padding: 70px 0;
    position: relative;

}

.difference .sub-title {
    margin-bottom: 0;
}

.difference .timeline {
    position: relative;
    background-image: url("../images/Marketing.png");
    /* الخط */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 700px;
}

.step {
    position: absolute;
    width: 280px;
    text-align: center;
    color: #fff;
}

.step .number {
    position: absolute;
    top: -100px;
    right: -80px;
    font-size: 200px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
    font-family: 'cairo-bold' !important;
}

.icon-box {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.icon-box .rect {
    width: 23px;
    height: 23px;
    border-radius: 10px;
    background-color: var(--primary-color);
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step p {
    font-size: 16px;
    line-height: 1.6;
}

/* توزيع أماكن العناصر فوق الخط */
.step-1 {
    left: 10%;
    top: 70%;
}

.step-2 {
    left: 40%;
    top: 50%;
}

.step-3 {
    left: 65%;
    top: 20%;
}

.step:last-child p {
    max-width: 85%;
    display: table;
    margin: auto;
}


/* Background container */
.bg-story {
    position: relative;
    height: 515px;
    overflow: hidden;
}

/* GIF background */
.bg-story::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/bgAnimate.gif") no-repeat center center / cover;
    opacity: 0.2;
    /* opacity only on background */
    z-index: 1;
}

/* Foreground content */
.bg-story .content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;

}

.bg-story .content h2 {
    color: var(--primary-color);
    font-size: 40px;
    margin-bottom: 15px;
}

.bg-story .content p {
    color: #fff;
    font-size: 19px;
    line-height: 42px;
    margin-bottom: 30px;
}

.works-gallery {
    padding: 70px 0px;
    position: relative;
}

.works-gallery .swiper-slide img {
     width: 100%;
  height: 400px; /* ارتفاع ثابت لكل الصور */
  object-fit: cover; /* يخلي الصورة تملأ الـ slide */
}
.works-gallery .curve {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 2;
    display: block;
}

.works-gallery .curve-top {
    margin-top: -1px;
}

.works-gallery .curve-bottom {
       bottom: 50px;
}
.top-footer {
    padding-top: 70px;
}

.top-footer .row {
    padding-bottom: 50px;
}

.top-footer .info p {
    color: #fff;
    font-size: 17px;
    padding: 30px 0px;
    max-width: 90%;
}

.top-footer .links h2 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.top-footer .links ul li {
    padding-bottom: 15px;
}

.top-footer .links ul li a {
    color: #fff;
    font-size: 14px;
}

.top-footer .links .contact span {
    color: #fff;
    font-size: 18px;
    padding-right: 7px;
}

.top-footer .links .contact .svg-inline--fa {
    color: var(--primary-color);
}

.bottom-footer {
    justify-content: space-between;
    padding: 30px 0px;
    border-top: 1px solid rgba(232, 234, 240, .5);
}

.bottom-footer ul li {
    position: relative;
}

.bottom-footer ul li:first-of-type a:after {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 1px;
    height: 18px;
    left: -8px;
}

.bottom-footer ul li:last-of-type {
    padding-right: 15px;
}

.bottom-footer ul li a {
    color: #fff;
    font-size: 14px;
}

.bottom-footer p {
    color: #fff;
    font-size: 14px;

}

.breadcramp-page {
    position: relative;
    min-height: 160vh;
    overflow: hidden;
     background-image: url('../images/Group\ 1597883131.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 200px;



}

.breadcramp-page .up {
    width: 100%;
    text-align: center;

}

.breadcramp-page .up h2 {
    color: var(--primary-color);
    font-size: 40px;
    padding-bottom: 10px;
}

.breadcramp-page .breadcrumb {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.breadcrumb-item a {
    color: #fff;
    font-size: 18px;
}

.breadcramp-page .breadcrumb-item.active {
    color: var(--primary-color);
    font-size: 18px;
}

.breadcramp-page .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.content-page {
    padding-top: 80px;
    padding-right: 30px;
    position: relative;
    overflow: hidden;
}

.content-page::before {
    position: absolute;
    right: 0px;
    width: 10px;
    height: 80px;
    content: '';
    background-image: linear-gradient(to bottom,
            rgba(14, 167, 221, .2),
            rgba(231, 246, 252, .2));

}

.content-page h2 {
    color: var(--primary-color);
    font-size: 22px;
    padding-bottom: 10px;
}

.content-page p {
    color: #fff;
    font-size: 18px;
    padding-bottom: 25px;
    line-height: 1.9;
}

.about-page {
    margin-top: -450px;
}

.about-page .right {
    width: 40%;
}

.about-page .content-page {
    width: 60%;
    padding-top: 100px;
}

.prefooter {
    padding-top: 80px;
    padding-bottom: 50px;
}

.prefooter .bg {
    text-align: center;
    background-image: url('../images/Frame\ 1707480642.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0px;
    color: #fff;
}

.prefooter .bg h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.prefooter .bg p {
    font-size: 22px;
    margin-bottom: 30px;
    text-align: center;
}

.prefooter .bg p span {
    color: var(--primary-color);
}

.prefooter .bg .btn-button {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.prefooter .bg .btn-button:hover {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ourServices-page {
    padding-bottom: 0px;
    margin-top: -600px;
    z-index: 9;
    position: relative
}

.breadcramp-page-contact {
    margin-top: -450px;
}

.contact-us {
    padding-top: 0px;


}

.contact-us .send {
    padding: 32px;
    border-radius: 16px;
    background-color: rgba(24, 24, 24, .2);
    border: 1px solid rgba(255, 255, 255, .2);
    position: relative;
    z-index: 9;
}

.contact-us .send h2 {
    color: #fff;
    font-size: 20px;
    padding-bottom: 25px;
}

.contact-us .send .form-control {
    border-radius: 6px;
    height: 48px;
    background-color: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .20);
    margin-bottom: 20px;
    color: #fff;
}

.contact-us .send .form-control::placeholder {
    color: rgba(255, 255, 255, .6);
    font-size: 16px;
}

.contact-us .send textarea {
    height: 150px !important;
}

[type=email] {
    direction: rtl !important;
}

.contact-us .send input[type='submit'] {
    background-color: var(--primary-color);
    width: 100%;
    border-radius: 6px;
    height: 48px;
    border: 1px solid var(--primary-color);
    color: #fff;
    font-size: 16px;
}

.submit-wrapper {
    position: relative;
}

.submit-wrapper .btn-icon {
    position: absolute;
    top: 25%;
    left: 43%;
}

.contact-us .contact-info {
    padding: 32px;
    border-radius: 16px;
    background-color: rgba(24, 24, 24, .2);
    border: 1px solid rgba(255, 255, 255, .2);
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 9;
}

.contact-us .contact-info h2 {
    color: #fff;
    font-size: 20px;
    padding-bottom: 20px;
}

.contact-us .contact-info p {
    color: #fff;
    font-size: 16px;
    line-height: 1.9;

}

.contact-us .social-contact {
    padding: 32px;
    border-radius: 16px;
    background-color: rgba(24, 24, 24, .2);
  border: 1px solid rgba(255, 255, 255, .2);
    padding-bottom: 10px;

}

.contact-us .social-contact .parent {
    margin-bottom: 15px;
}

.contact-us .social-contact .icon .svg-inline--fa {
    color: var(--primary-color);
    font-size: 20px;
}

.contact-us .social-contact .info {

    margin-right: 15px;
}

.contact-us .social-contact .info h2 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 7px;
}

.contact-us .social-contact .info p {
    color: rgba(255, 255, 255, .8);
    font-size: 15px;
}

.works-filters {
    margin-top: -500px;
    position: relative;
    z-index: 9;
}

.works-filters .nav-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px !important;
}

.works-filters .nav-tabs .nav-link {
    font-size: 20px;
}

.works-filters .col-md-4 {
    margin-bottom: 30px;
}

.single-page {
    margin-top: -750px;
}

.single-page .right img {
    height: 450px;
}

.single-page ul li {
    color: #fff;
    padding-bottom: 15px;
}

.accordion {
    position: relative;
    background-color: rgba(24, 24, 24, 0.2);
    /* الخلفية ثابتة */
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
    font-size: 1.2rem;
    z-index: 1;
    overflow: hidden;
}

.accordion::before {
    content: "";
    position: absolute;
    inset: 0;
    /* يغطي العنصر */
    border-radius: inherit;
    padding: 2px;
    /* سمك البوردر */
    background: linear-gradient(135deg, #181818 0%, #181818 50%, #181818 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    /* عشان يبان البوردر بس */
    mask-composite: exclude;
    pointer-events: none;
}

.accordion-button::after {
    content: '+';
    /* الافتراضي */
    font-size: 1.2rem;
    margin-right: auto;
    /* RTL */
    background-image: none !important;
}

.accordion-button:not(.collapsed)::after {
    content: '-';
    /* عند الفتح */
}

/* استايل لما يكون مفتوح */
.accordion-button:not(.collapsed) {
    background-color: #181818;
    color: #fff;
    font-weight: bold;
    padding: 1rem 1.25rem;
    border-radius: 16px;
}

.accordion-button {
    background-color: #181818;
    border-radius: 16px;
    border: 1px solid #181818 !important;
    color: #fff;
}

.accordion-body {
    background-color: #181818;
    color: #fff;
    border-radius: 16px !important;
}

.accordion {
    --bs-accordion-border-color: #181818;
    --bs-accordion-border-radius: 16px;
    --bs-accordion-bg: #181818;
}

.accordion-item {
    margin-bottom: 20px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px !important;
    border-bottom-left-radius: 16px !important;
}

.accordion-button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed)::after {
    background-color: var(--primary-color);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}

.difference-mobile {
    display: none;
}

.contact-sidebar {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    background-image: url('../images/sidebar.png');
    height: 200px;
    background-size: cover;
    padding: 20px;
}

.contact-sidebar .contact-item {
    background: #141414;
    /* نفس خلفية الكروت */
    border: 1px solid #141414;
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    backdrop-filter: blur(8px);
    /* تأثير زجاجي */
}

.contact-sidebar .contact-item .svg-inline--fa {
    font-size: 20px;
}

.contact-sidebar .contact-item img {
    max-width: 24px;
    max-height: 24px;
}

.contact-sidebar .contact-item:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle 150px at 50% 50%,
            rgba(14, 167, 221, 0.60),
            rgba(14, 167, 221, 0.10),
            transparent 70%);
}
.social-icons .svg-inline--fa{
        color: #fff;
    font-size: 18px;
}
.wpcf7 form.sent .wpcf7-response-output,.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
    border-color: #0EA7DD;
    color: #fff;
}
.dropdown-item.active{
    
    background-color: var(--primary-color);
}