* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bs-body-bg: transparent;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    background-color: #000518;
}

@font-face {
    font-family: 'GoodTiming';
    src: url('../fonts/FontsFree-Net-Good-Timing-W00-Light.ttf');
}

[data-bs-padding-right],
[style*="padding-right: 17px"] {
    padding-right: 0 !important;
}

body.offcanvas-backdrop-open,
body.offcanvas-active,
body[data-bs-padding-right],
body[style*="padding-right: 17px"] {
    padding-right: 0 !important;
}

#myNavbar[style*="padding-right"] {
    padding-right: 0 !important;
}

body {
    font-family: "Roboto", serif;
    background-image: url('../images/dots.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

body{
    padding-right: 0px !important;
}

div {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:active,
a:focus,
a:visited {
    color: inherit;
    text-decoration: none;
    outline: none;
}

/* --------------------------------- */

header {
    background: transparent;
}

.navbar {
    height: 100px;
    font-size: 14px;
}

#nav {
    font-family: 'GoodTiming';
}

#nav .nav-link {
    color: white;
    margin-inline-end: 25px;
    transition: color 0.3s ease;
}

#nav .nav-link:hover {
    color: #0ad0f6;
}

.dropdown-menu {
    background-color: white;
    color: black;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    min-width: 250px;
    color: black;
}

.dropdown-item {
    display: flex;
    align-items: center;
    color: black !important;
    font-weight: 500;
    margin-bottom: 10px;
    transition: all 0.3s;
    border-radius: 10px;
}

.dropdown-item:hover{
    background-color: #dae0e2;
    color: black;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #dae0e2 !important;
    color: black !important;
    text-decoration: none !important;
}

.dropdown-item:hover {
    color: #0ad0f6;
}

.dropdown-item i {
    color:black;
    font-size: 1.2rem;
    margin-right: 15px;
}

.navbar .dropdown-toggle:focus,
.navbar .dropdown-toggle:focus-visible,
.navbar .dropdown-toggle:active,
.navbar .dropdown-toggle.show,
.navbar .nav-link:focus,
.navbar .nav-link:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background-color: transparent !important;
}

.dropdown-menu {
  transform: none !important;
  top: 100% !important;
  margin-top: 0 !important;
  transition: none !important;
  will-change: auto !important;
  position: absolute !important;
}

#nav .nav-link {
    border-bottom: 2px solid transparent;
}
#nav .nav-link.active {
    border-bottom-color: white;
}

#nav .bi-list {
    color: white;
    font-size: 32px;
}

#nav .navbar-brand img {
    height: auto;
}

#nav span {
    color: white;
}

#nav .translate {
    align-items: center;
    justify-content: center;
}

#nav .translate img {
    height: 16px;
    width: auto;
    margin-left: 5px;
}

.navbar a {
    color: white;
}

.navbar a:hover {
    color: black;
}

.navbar-toggler:focus {
    box-shadow: none;
    border: none;
}

.navbar-toggler {
    border: none;
}

.offcanvas.custom-offcanvas {
    width: 320px;
    background-color: black;
    color: white;
    box-shadow: -5px 0 15px rgba(109, 109, 109, 0.5); 
}

.offcanvas-header {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.offcanvas-header img {
    max-width: 100%;
    height: auto;
    margin-top: 5px;
}

.offcanvas-body {
    padding-top: 0;
    margin-top: 10px;

    overflow-y: auto;
    max-height: 100vh;
}

.offcanvas-body ul {
    padding: 0;
}

.custom-offcanvas .dropdown-menu.show + ul > li {
    transition: margin-top 0.3s ease; 
    margin-top: 100px; 
}

.offcanvas-body li {
    display: flex;
    align-items: center;
    padding: 10px;
    transition: background-color 0.3s;
    border-radius: 10px;
}

.offcanvas-body li:hover {
    background-color: #333;
}

.offcanvas-body a {
    text-decoration: none;
    color: white;
    width: 100%;
}

.offcanvas-body a i {
    margin-right: 8px;
}

.offcanvas-body .bi-file-earmark-code-fill {
    margin-right: 11px;
}

.offcanvas-body .tr-lang,
.eng-lang {
    width: auto;
    margin-right: 8px;
}

.offcanvas-body .tr-lang img {
    height: 16px;
    width: auto;
}

.offcanvas-body .eng-lang img {
    height: 16px;
    width: auto;
}

.offcanvas-body .list-unstyled {
    --bs-list-group-border-color: none;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.offcanvas-body a i.fa-chevron-right {
    transition: transform 0.3s ease;
    color: white !important;
}

.offcanvas-body a[aria-expanded="true"] i.fa-chevron-right {
    transform: rotate(90deg);
}

/* --------------------------------- */

#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1b9bb2;
    color: white;
    padding: 15px;
    text-align: center;
    font-family: Roboto, sans-serif;
    font-size: 11pt;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

#cookieBanner a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

#cookieBanner button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-left: 15px;
    font-size: 10pt;
    cursor: pointer;
    border-radius: 4px;
    font-family: Roboto, sans-serif;
}

#cookieBanner button:hover {
    background-color: #333;
}

/* --------------------------------- */

#ana-slider {
    font-family: 'GoodTiming', sans-serif;
    position: relative;
    min-height: 50rem;
}

#ana-slider .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#ana-slider h1 span {
    font-weight: bold;
}

#ana-slider .colored {
    color: #1b9bb2;
}

#ana-slider .fa-arrow-up-right {
    color: #0ad0f6;
}

#ana-slider .caption-text {
    width: 80%;
    margin: auto;
    text-align: left;
    position: relative;
    padding-top: 15%;
}

/* --------------------------------- */

#service-area {
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#service-area .mountain-img {
    position: absolute;
    width: 100vw;
}

#service-area .down-img {
    position: relative;
    margin-top: -170px;
    text-align: center;
    width: 100%;
    height: auto;
    object-fit: cover;
}

#service-area .service-cards-area {
    background-image: url('../images/stars-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -100px;
    background-color: #000518;
}

#service-area .card-area-icon {
    position: relative;
    z-index: 2;
}

#service-area .col-lg-6 {
    z-index: 10;
}

#service-area .service-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 10px;
    border: 0.1px solid #374359;
    border-radius: 55px;
    background-image: url('../images/card.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-height: 280px;
    z-index: 1;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-color: #010d28;
    background-image:
        url('../images/card.png'),
        linear-gradient(to right, #1b75e9, #8e7cd9);
    transition: all 0.4s ease;
}

#service-area .service-container:hover {
    border: 0.1px solid transparent;
}

#service-area .service-container h5 {
    font-family: 'GoodTiming', sans-serif;
}

#service-area .service-container i {
    font-size: 45px;
    color: #0ad0f6;
    transition: color 0.4s ease;
}

#service-area .service-container:hover i {
    color: #a9dbe5;
}

#service-area .title {
    margin-left: 0;
}

#service-area p {
    font-size: 16px;
    color: #7e8283;
}

/* --------------------------------- */

#sectors-header {
    background-color: black;
}

#sectors-header h2 {
    font-family: 'GoodTiming', sans-serif;
}

#sectors-header p {
    color: #7e8283;
}

/* --------------------------------- */

#sectors-scroll {
    background-color: black;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 24px;
}

#sectors-scroll .content-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 68%;
    padding-right: 2px;
    flex-wrap: wrap;
}

#sectors-scroll .text-content {
    flex: 1;
    margin-right: 15px;
    max-height: 422px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #555 #222;
}

#sectors-scroll .text-content::-webkit-scrollbar {
    width: 6px;
}

#sectors-scroll .text-content::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 10px;
}

#sectors-scroll .text-content::-webkit-scrollbar-track {
    background-color: #222;
}

#sectors-scroll .text-content .item {
    margin-bottom: 30px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
    position: relative;
    padding-left: 20px;
}

#sectors-scroll .text-content .item.active {
    opacity: 1;
}

#sectors-scroll .text-content .item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #ffffff;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease-in-out;
}

#sectors-scroll .text-content .item.active::before {
    transform: scaleY(1);
}

#sectors-scroll .text-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

#sectors-scroll .text-content p {
    font-size: 16px;
    color: #d3d3d3;
    margin-bottom: 10px;
}

#sectors-scroll .image-content {
    flex: 0 0 49%;
    position: relative;
    height: 400px;
}

#sectors-scroll .image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border: white 1px solid;
}

#sectors-scroll .image-content img.active {
    opacity: 1;
}

/* --------------------------------- */

#tech-area {
    background-color: #000518;
}

#tech-area .tech-cards {
    border: #374359 0.1px solid;
    display: flex;
    align-items: center;
    height: 145px;
    border-radius: 15px;
    padding: 5px;
    background-image: url('../images/card.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: border 0.4s ease;

    z-index: 1;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-color: #010d28;
    background-image:
        url('../images/card.png'),
        linear-gradient(to right, #1b75e9, #8e7cd9);
    transition: all 0.4s ease;
}

#tech-area .tech-cards:hover {
    border: 0.1px solid transparent;
}

#tech-area .icon {
    margin-left: 18px;
}

#tech-area i {
    transition: color 0.4s ease;
    color: #0ad0f6;
}

#tech-area .fa-users {
    font-size: 55px;
}

#tech-area .fa-pen-ruler,
.fa-globe-pointer {
    font-size: 65px;
}

#tech-area .fa-square-code {
    font-size: 75px;
}

#tech-area .tech-cards:hover i {
    color: #a9dbe5;
}

#tech-area .title {
    margin-left: 10px;
}

#tech-area h5 {
    font-family: 'GoodTiming', sans-serif;
    color: white;
}

#tech-area p {
    color: #7e8283;
}

/* --------------------------------- */

#products-360-area {
    background-color: black;
}

#products-360-area h1 {
    font-family: 'GoodTiming', sans-serif;
    color: #0ad0f6;
}

#products-360-area h5 {
    color: #0ad0f6;
}

#products-360-area .products-desp .card {
    background-color: #11111b;
    border-radius: 20px;
}

#products-360-area .products-desp .card-title {
    font-family: 'GoodTiming', sans-serif;
}

#products-360-area .products-desp .card-text {
    color: #7e8283;
}

#products-360-area .brands{
    display: flex;
    justify-content: center;
    align-items: center;
}

#products-360-area .brands img{
    width: 230px;
    height: auto;
}

#products-360-area .brands .webai{
    margin-top: -12px;
}

#products-360-area .brands .webai-img{
    width: 200px;
}
/* --------------------------------- */

#safeservicehub-area {
    background-color: black;
}

#safeservicehub-area h2 {
    font-family: 'GoodTiming', sans-serif;
}

#safeservicehub-area .card {
    background-color: #11111b;
    border-radius: 20px;
}

#safeservicehub-area .col-lg-8 {
    text-align: end;
}

#safeservicehub-area .row {
    align-items: center;
}

#safeservicehub-area .card {
    border: none;
}

#safeservicehub-area .pink {
    color: #cb11ff;
}

#safeservicehub-area .blue {
    color: #0096fe;
}

/* --------------------------------- */

#web3-area {
    background-color: #000518;
}

#web3-area h1 {
    position: relative;
    font-family: 'GoodTiming', sans-serif;
}

#web3-area h3 {
    position: relative;
    font-family: 'GoodTiming', sans-serif;
}

#web3-area .platform-area {
    position: relative;
    line-height: 4rem;
}

#web3-area .card {
    position: relative;
    border: 2px solid transparent;
    border-radius: 15px;
    background-color: transparent;

    background: linear-gradient(#000518, #000518) padding-box,
        linear-gradient(to right, #1b75e9, #8e7cd9) border-box;
}

#web3-area .card-text {
    position: relative;
}

#web3-area .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 15px;
}

#web3-area .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    mix-blend-mode: overlay;
    pointer-events: none;
    border-radius: 15px;
}

#web3-area .highlight {
    position: relative;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#web3-area .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
}

#web3-area .highlight-startup {
    color: #0ad0f6;
}

#web3-area .highlight-carbonex {
    color: #42aa53;
    transition: color 0.4s ease;
}

#web3-area .highlight-safeservicehub {
    color: #cb11ff;
    transition: color 0.4s ease;
}

#web3-area .highlight-safemanga {
    color: aqua;
    transition: color 0.4s ease;
}

#web3-area .highlight-carbonex:hover {
    color: white
}

#web3-area .highlight-safeservicehub:hover {
    color: white;
}

#web3-area .highlight-safemanga:hover {
    color: white;
}

#web3-area .highlight i {
    transition: 0.s;
    font-size: 2rem;
}

#web3-area .col-md-12 h3 {
    font-size: 43px;
}

#web3-area .img-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#web3-area .img-area img {
    margin-right: 40px;
    width: 450px;
    height: auto;
    object-fit: cover;
}

/* --------------------------------- */

#two-card-area {
    background-color: #000518;
}

#two-card-area .card {
    border-radius: 15px;
}

#two-card-area .card-area {
    background-color: #000518;
    background-size: cover;
    background-position: center;

    position: relative;
    border: 2px solid transparent;
    border-radius: 15px;
    background: linear-gradient(#000518, #000518) padding-box,
        linear-gradient(to right, #1b75e9, #8e7cd9) border-box;
}

#two-card-area .card-title {
    font-family: 'GoodTiming', sans-serif;
}

#two-card-area i {
    font-size: 40px;
    color: #0ad0f6;
    transition: color 0.4s ease;
}

#two-card-area .card-area:hover i {
    font-size: 40px;
    color: #a9dbe5;
}

#two-card-area .card-text {
    font-size: 14px;
    color: #828fb1;
}

/* --------------------------------- */

#carbonex-area {
    background-color: black;
}

#carbonex-area .row {
    align-items: center;
}

#carbonex-area .card {
    border: none;
}

#carbonex-area h3 {
    font-family: 'GoodTiming', sans-serif;
}

#carbonex-area h3 span {
    color: #42aa53;
}

#carbonex-area .card .logo {
    border-radius: 30px;
}

/* --------------------------------- */

#map-area {
    background-color: black;
    display: flex;
}

#map-area .text {
    font-size: 14px;
}

#map-area .text a:hover {
    transition: 0.4s ease;
    color: #0ad0f6;
}

#map-area .fa-house {
    margin-right: 5px;
}

/* --------------------------------- */

#top-area {
    margin-top: 130px;
    height: 170px;
    background-image: url('../images/top-bar.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 0;
}

#top-area h3 {
    font-family: 'GoodTiming', sans-serif;
    font-weight: bold;
}

/* --------------------------------- */
 
#about-us img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* --------------------------------- */

#services-area .service-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 10px;
    border: 0.1px solid #374359;
    border-radius: 55px;
    background-image: url('../images/card.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-height: 280px;
    z-index: 1;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-color: #010d28;
    background-image:
        url('../images/card.png'),
        linear-gradient(to right, #1b75e9, #8e7cd9);
    transition: all 0.4s ease;
}

#services-area .service-container:hover {
    border: 0.1px solid transparent;
}

#services-area .service-container h5 {
    font-family: 'GoodTiming', sans-serif;
}

#services-area .service-container i {
    font-size: 45px;
    color: #0ad0f6;
    transition: color 0.4s ease;
}

#services-area .service-container:hover i {
    color: #a9dbe5;
}

#services-area .title {
    margin-left: 0;
}

#services-area p {
    font-size: 16px;
    color: #7e8283;
}

/* --------------------------------- */

#products-area h2 {
    color: #9CC9F1;
}

#products-area .card {
    position: relative;
    border: 0.1px solid #374359;
    border-radius: 15px;
    background-color: #010d28;
    background-image:
        linear-gradient(#010d28, #010d28),
        linear-gradient(to right, #1b75e9, #8e7cd9);
    background-origin: border-box;
    background-clip: padding-box, border-box;

    transition: all 0.4s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin-bottom: 1rem;
}

#products-area .card:hover {
    border: 0.1px solid transparent;
}

#products-area .line {
    padding-top: 15px;
    padding-bottom: 15px;
    width: 60%;
    border-top: #374359 1px solid;
    margin: 0 auto;
}

#products-area h5 {
    vertical-align: middle;
    align-items: center;
}

#products-area .card-img-top {
    height: 120px;
    width: 100%;
    border-radius: 30px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    object-fit: contain;
}

#products-area .card-text {
    color: #7e8283;
    padding-right: 5px;
    padding-left: 5px;
    transition: 0.3s;
}

#products-area .card:hover .card-text {
    color: white;
    text-decoration: underline;
}

#products-area .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --------------------------------- */

#sectors-area h2 {
    color: #9CC9F1;
}

#sectors-area .card {
    position: relative;
    border: 0.1px solid #374359;
    border-radius: 15px;
    background-color: #010d28;
    background-image:
        linear-gradient(#010d28, #010d28),
        linear-gradient(to right, #1b75e9, #8e7cd9);
    background-origin: border-box;
    background-clip: padding-box, border-box;

    transition: all 0.4s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin-bottom: 1rem;
}

#sectors-area .card:hover {
    border: 0.1px solid transparent;
}

#sectors-area h5 {
    vertical-align: middle;
    align-items: center;
}

#sectors-area .card-img-top {
    height: 200px;
    border-radius: 30px;
    max-width: 100%;
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    object-fit: cover;
    padding: 20px;
}

#sectors-area .card-text {
    color: #7e8283;
    transition: 0.3s;
    padding-right: 5px;
    padding-left: 5px;
}

#sectors-area .card:hover .card-text {
    color: white;
    text-decoration: underline;
}

#sectors-area .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --------------------------------- */

#sectors-area-detail img {
    border-radius: 10px;
}

/* --------------------------------- */

#contact-form .card-area {
    background-color: #000518;
    background-size: cover;
    background-position: center;

    position: relative;
    border: 3px solid transparent;
    border-radius: 15px;
    background: linear-gradient(#000518, #000518) padding-box,
        linear-gradient(to right, #1b75e9, #8e7cd9) border-box;
}

#contact-form .icon {
    margin-left: 10px;
    font-size: 36px;
    color: #0ad0f6;
}

#contact-form .special-phone-area input#phone {
    background: transparent;
    padding-left: 58px;
    width: 100%;
    border-radius: 5px;
    color: white;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: 1px solid #ccc;
    vertical-align: middle;
}

#contact-form .special-phone-area label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    padding-left: 58px;
    pointer-events: none;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    color: white;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

#contact-form .special-phone-area:focus-within label,
#contact-form .special-phone-area input#phone:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    height: auto;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 58px;
}

#contact-form .special-phone-area input#phone::placeholder {
    color: transparent;
}

#telephone::placeholder {
    color: white;
    opacity: 1;
}

/* INTL TEL INPUT */
.iti {
    width: 100%;
    display: block;
}

.iti__flag-container {
    background-color: transparent;
    color: white;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    border-radius: 11px 0 0 11px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent;
    display: flex;
    align-items: center;
    height: 100%;

}

.iti__country-list {
    background-color:#000518;
    color: #fff;
    border-radius: 6px;
    margin-top: 5px !important;
    z-index: 5;
    position: absolute;
    left: 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);

}

.iti__country-name,
.iti__dial-code {
    font-size: 14px;
}

#contact-form .special-phone-area input{
    padding-top: 16px; 
    padding-bottom: 16px;
}

#contact-form .form-control {
    background-color: transparent;
    color: white;
}

#contact-form .form-control:focus{
    box-shadow: none !important;
    border-color: #dee2e6 !important;
    outline: none !important;
}

#contact-form label {
    color: white;
}

#contact-form .title {
    margin-left: 10px;
}

#contact-form h5 {
    color: #0ad0f6;
}

#contact-form p {
    color: gray;
}

#contact-form h6 {
    color: #0ad0f6;
}

#contact-form .kvkk {
    color: white;
}

#contact-form label {
    margin-left: 10px;
}

#contact-form .btn-send .bi-send-fill {
    margin-right: 5px;
}

#contact-form .btn-send {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
    background-color: #131d4c;
    color: white;
}

#contact-form .btn-send:hover {
    background-color: #212429;
    color: white;
    transition: 0.3s;
}

#google-maps-area {
    position: relative;
}

.message-textarea::placeholder {
    color: white;
}

.custom-swal-modal {
    width: 750px !important;
    max-height: 500px !important;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
    padding: 0;
}

.custom-swal-html {
    padding: 15px;
    overflow-y: auto;
    height: 400px;
}

.custom-swal-html h1 {
    font-size: 11pt;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.custom-swal-html h2 {
    font-size: 10pt;
    margin-top: 10px;
    font-weight: bold;
    text-align: left;
}

.custom-swal-html p {
    font-size: 9pt;
    line-height: 1.4;
    text-align: left;
}

.swal2-actions {
    padding: 10px;
    margin-top: 5px;
}

/* --------------------------------- */

#error-bg{
    width: 100%;
    height: 100vh;
    background-image: url('../images/error.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#error-bg .row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#error-bg .img-fluid {
    height: 90px;
    width: auto;
}

#error-bg h1 {
    font-family: 'GoodTiming', sans-serif;
}

#error-bg h2 {
    font-family: 'GoodTiming', sans-serif;
}

#error-bg .pls-click{
    transition: 0.3s ease;
}

#error-bg .pls-click:hover {
    color: #0ad0f6;
}

#error-bg .error-bg .first {
    font-size: 55px;
}

/* --------------------------------- */

@media (max-width: 480px) {
    #sectors-scroll .text-content h2 {
        font-size: 18px;
    }

    #sectors-scroll .text-content p {
        font-size: 12px;
    }

    #sectors-scroll .image-content {
        height: 200px;
    }

    #sectors-scroll .image-content img {
        width: 90%;
        border: none;
    }
}

@media (max-width: 576px) {

    #nav .navbar-brand img {
        width: 150px;
        height: auto;
    }

    #tech-area .container {
        padding-top: 16px !important;
        padding-bottom: 16px !important;
    }

    #service-area .card-area-icon {
        padding-top: 0 !important;
    }

    #ana-slider h1 {
        font-size: 25px !important;
    }

    #ana-slider {
        min-height: 30rem;
    }

    #service-area .mountain-img {
        margin-top: 84px;
    }

    #service-area .service-cards-area {
        margin-top: -10px;
    }

    #tech-area h5 {
        font-size: 18px;
    }

    #tech-area h6 {
        font-size: 14px;
    }

    #tech-area p {
        font-size: 14px;
    }

    #web3-area h3 {
        font-size: 25px !important;
    }

    #carbonex-area h3 {
        text-align: center;
    }

    #carbonex-area .col-md-4 {
        margin-top: 16px;
    }

    #safeservicehub-area h2 {
        text-align: center;
    }

    #safeservicehub-area .container {
        padding-top: 0 !important;
        padding-bottom: 24px !important;
    }

    #safeservicehub-area .card {
        padding-top: 24px !important;
        padding-right: 24px !important;
        padding-left: 24px !important;
    }

    #safeservicehub-area .col-md-8 h2 {
        padding-top: 8px !important;
    }

    #contact-form .form-area {
        order: 1;
    }

    #contact-form .contact-area {
        order: 2;
    }
}

@media (max-width: 992px) and (min-width: 576px) {
    #ana-slider h1 {
        font-size: 25px !important;
    }

    #ana-slider {
        min-height: 30rem;
    }

    #service-area .mountain-img {
        margin-top: 84px;
    }

    #service-area .service-cards-area {
        margin-top: -10px;
    }

    #safeservicehub-area h2 {
        padding-top: 8px;
        text-align: center;
        font-size: 1.5rem;
    }

    #carbonex-area h3 {
        text-align: center;
        font-size: 1.3rem;
        padding-bottom: 8px;
    }
}

@media (max-width: 768px) {
    #sectors-scroll .content-section {
        flex-direction: column;
        width: 90%;
    }

    #sectors-scroll .image-content img {
        border: none;
    }

    #sectors-scroll .text-content {
        margin-right: 0;
        margin-bottom: 20px;
    }

    #sectors-scroll .text-content h2 {
        font-size: 20px;
    }

    #sectors-scroll .text-content p {
        font-size: 14px;
    }

    #sectors-scroll .image-content {
        height: 300px;
    }

    #safeservicehub-area h2 {
        text-align: center;
        font-size: 1.5rem;
    }

    #safeservicehub-area .container {
        padding-top: 16px !important;
        padding-bottom: 24px !important;
    }

    #safeservicehub-area .card {
        padding-top: 16px !important;
        padding-right: 24px !important;
        padding-left: 24px !important;
    }

    #safeservicehub-area .col-md-8 h2 {
        padding-top: 8px !important;
    }

    #web3-area h1 {
        font-size: 1.9rem;
    }

    #carbonex-area h3 {
        text-align: center;
        font-size: 1.3rem;
    }

    #ana-slider h1 {
        font-size: 25px !important;
    }

    #contact-form .form-area {
        order: 1;
    }

    #contact-form .contact-area {
        order: 2;
    }
}

@media (min-width: 769px) and (max-width: 991.98px) {
    #ana-slider h1 {
        font-size: 35px !important; 
    }
}

@media (min-width: 992px) {
    #ana-slider h1 {
        font-size: 40px !important;
    }
}

@media (max-width: 992px) {
    .web-360-title {
      text-align: center !important;
    }
  }
  
@media (max-width: 992px) {

    #products-360-area .brands {
        margin-left: auto;
        margin-right: auto;
        float: none;
        display: block;
    }

    #products-360-area .brands img{
        width: 200px !important;
        height: auto;
    }

    #products-360-area .brands .webai{
        margin-top: -5px !important;
    }

    #products-360-area .brands .webai-img{
        width: 170px !important;
        height: auto;
    }

    #safeservicehub-area .logo {
        width: 100% !important;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    #safeservicehub-area .card.logo {
        text-align: center;
    }

    #carbonex-area .logo {
        width: 100% !important;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    #carbonex-area .card.logo {
        text-align: center;
    }
}

@media (max-width:1200px) {
    #contact-form .form-area {
        order: 1;
    }

    #contact-form .contact-area {
        order: 2;
    }

    #products-360-area .brands img{
        width: 175px;
        height: auto;
    }

    #products-360-area .brands .webai-img{
        width: 175px;
        height: auto;
    }
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu {
        margin-top: 0;
    }
}

