* {
    margin: 0;
    padding: 0;
}

body,
html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    /* padding-top: 110px; */
    font-family: 'Mulish', sans-serif;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --text: #282828;
    --button-bg: #2b2b2b;
    --red: #e92e28;
    --grey: #cccccc;
    --grey2: #f1f0f5;
}

::selection {
    background-color: var(--red);
    color: var(--white);
}


a {
    text-decoration: none;
}

figure,
.figure-img {
    margin-bottom: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    line-height: 28px;
}


.navbar {
    transition: all 0.6s ease;
    /* background-color: transparent; */
    position: absolute;
    z-index: 2;
    width: 100%;
    /* border-bottom: 1px solid #999999; */
}

.navbar-brand img {
    width: 200px;
}

/* .nav-item:not(:last-child) {
    padding: 0 10px;
} */
.navbar .header_phone a {
    background-color: var(--red);
    color: var(--white);
    border-radius: 36px;
    padding: 8px 1rem !important;
    overflow: hidden;
    transition: transform 500ms ease-out;
}

.navbar .header_phone a:hover {
    background-color: var(--black);
}

.navbar .header_phone a::before {
    content: '';
    background: rgba(255, 255, 255, 0.5);
    width: 60%;
    height: 100%;
    top: 0%;
    left: -125%;
    transform: skew(45deg);
    position: absolute;
    transition: left 500ms ease-out;
}

.navbar .header_phone a:hover::before {
    left: 150%;
}

.scrolled {
    background-color: var(--white) !important;
    transition: background-color 200ms linear;
}

.navbar .navbar-nav {
    align-items: center;
}

.navbar .reach-btn {
    margin-left: 10px;
    /* font-size: 18px; */
}

.reach-btn {
    color: var(--white);
    border: 2px solid var(--red);
    background-color: var(--red);
    border-radius: 36px;
    padding: 5px 30px;
    font-weight: 600;
    position: relative;
    display: block;
    overflow: hidden;
    transition: .6s all ease;
}

.reach-btn::before {
    background-color: var(--white) !important;
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: -1;
    transition: all 0.6s ease;
}

.reach-btn:hover {
    color: var(--red);
    border: 2px solid var(--white);
}

.reach-btn:hover::before {
    height: 380%;
}


.banner {
    height: 93vh;
    position: relative;
    overflow: hidden;
}

.banner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--button-bg);
    top: 0;
    left: 0;
    opacity: 0.7;
}

.banner video {
    width: 100%;
}

.banner .banner-text {
    position: absolute;
    top: 50%;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    text-align: center;
    width: 100%;
}

.banner .banner-text h1 {
    font-size: 70px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 80px;
}

.banner .banner-text .reach-btn {
    width: fit-content;
    margin: auto;
}

.banner .carousel-caption {
    bottom: 21rem;
    text-align: left;
    left: 48%;
}

.banner .carousel-caption p {
    color: var(--text);
    margin-bottom: 0;
}

.banner .carousel-caption h1 {
    color: var(--text);
    font-weight: 700;
    margin-bottom: 0;
    font-size: 50px;
}

.banner .carousel-caption h1 span {
    color: var(--red);
}

.banner .carousel-caption .buttons {
    margin-top: 25px;
}

.banner .carousel-caption a {
    font-weight: bold;
    color: var(--white);
    border-radius: 36px;
    padding: 8px;
    width: 200px;
    display: inline-block;
    text-align: center;
}

.banner .carousel-caption .buttons a:first-child {
    background-color: var(--red);
}

.banner .carousel-caption .buttons a:last-child {
    background-color: var(--button-bg);
}

.banner .carousel-indicators {
    margin-bottom: 0;
    align-items: center;
    bottom: 50px;
}

.banner .carousel-indicators [data-bs-target] {
    background-color: var(--grey);
    opacity: 1;
}

.banner .carousel-indicators .active {
    background-color: var(--red);
    width: 9px;
    height: 9px;
    border-radius: 50%;
}


.service-cards {
    /* margin-top: -50px; */
    margin-top: -80px;
    margin-bottom: 50px;
}

.service-cards .card {
    display: flex;
    flex-direction: unset;
    align-items: center;
    gap: 20px;
    /* padding: 20px; */
    padding: 40px 30px;
    border: 0;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    transition: all 0.5s ease-in-out;
    background-color: var(--white);
}

.service-cards img {
    width: 60px;
    transition: all 0.5s ease-in-out;
}

.service-cards a {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    z-index: 0;
    transition: all 0.5s ease-in-out;
}

.service-cards .hvr-rectangle-out::before {
    background-color: var(--red);
    border-radius: 0.375rem;
    transition-duration: 0.5s;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
}

.service-cards .card:hover a {
    color: var(--white);
}

.service-cards .card:hover img {
    filter: invert(1) brightness(20);
}


.help {
    height: 100vh;
    display: flex;
    align-items: center;
}

.help h2 {
    color: var(--red);
    font-weight: 500;
    width: 70%;
    margin-bottom: 50px;
    font-size: 36px;
}

.help .row:not(.rtcm) {
    align-items: center;
}

.help .rtcm {
    row-gap: 40px;
}

.help .rtcm_info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.help .rtcm_info img {
    width: 80px;
}

.help .rtcm_info h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--red);
    margin-bottom: 5px;
}

.help .rtcm_info p {
    color: var(--text);
    margin-bottom: 0;
}

.help .image {
    position: relative;
}

.help .image::before {
    content: url('../../images/home/rtcm_red.webp');
    position: absolute;
    z-index: -1;
    right: 70px;
    top: -50px;
}

.help .image::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: var(--text);
    border-radius: 50%;
    bottom: 20px;
    left: -20px;
    z-index: -1;
}



.improve {
    background: linear-gradient(163.7deg, var(--red) 63.5%, transparent 50%);
}

.improve h4 {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
}

.improve h2 {
    color: var(--white);
    font-weight: bold;
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 30px;
    width: 100%;
}

.improve p {
    color: var(--white);
    font-weight: 400;
    width: 90%;
    margin-bottom: 50px;
}

.improve a {
    color: var(--text);
    font-weight: 600;
    background-color: var(--white);
    border-radius: 36px;
    padding: 8px 30px;
    width: fit-content;
    border: 2px solid var(--white);
}

.improve .image::before {
    content: url('../../images/home/improve_black_big.webp');
    z-index: 0;
    right: 20px;
    top: -70px;
}

.improve .image img {
    z-index: 0;
    position: relative;
}

.improve .image::after {
    content: url('../../images/home/improve_black.webp');
    background-color: transparent;
    left: unset;
    right: 100px;
    bottom: 50px;
}


.services {
    flex-direction: column;
    justify-content: center;
}

.services .container {
    text-align: center;
}

.services h4 {
    color: var(--text);
    margin-bottom: 0;
    font-size: 18px;
}

.services h2 {
    font-weight: bold;
    color: var(--text);
    width: 100%;
    font-size: 40px;
}

.services h2 span {
    color: var(--red);
}

.services .carousel-item h3 {
    font-weight: bold;
    color: var(--red);
    margin: 20px 0 10px;
    font-size: 26px;
}

.services .carousel-item p {
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0;
}

.services .carousel-indicators {
    margin-bottom: 0;
    align-items: center;
    bottom: -60px;
}

.services .carousel-indicators [data-bs-target] {
    background-color: var(--grey);
    opacity: 1;
}

.services .carousel-indicators .active {
    background-color: var(--red);
    width: 9px;
    height: 9px;
    border-radius: 50%;
}


.service2 {
    background: url('../../images/bg/hexagon.png'), linear-gradient(var(--text) 50%, var(--white) 50%);
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.service2 h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 80px;
    font-weight: 800;
    font-size: 60px;
    position: relative;
}

.service2 h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: var(--white);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.service2 h2 span {
    color: var(--red);
}

.service2 .row1 {
    text-align: center;
    margin-bottom: 50px;
}

.service2 .row1 img {
    background-color: var(--red);
    padding: 10px;
    width: 60px;
    margin-bottom: 30px;
}

.service2 .row1 a:not(.readmore) {
    color: var(--white);
    font-weight: 800;
    font-size: 20px;
    position: relative;
    transition: all 0.5s ease-in-out;
    z-index: 0;
}

.service2 .row1 a:not(.readmore)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    background-color: var(--red);
    bottom: 2px;
    left: 0;
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

.service2 .row1 a:not(.readmore):hover::after {
    width: 100%;
}

.service2 .row1 p {
    margin-bottom: 0;
    color: var(--white);
    margin-top: 10px;
}

.service2 .read-more {
    margin-left: 100px;
    margin-top: 50px;
    display: inline-flex;
}

.service2 .readmore {
    position: relative;
    margin: auto;
    padding: 8px 22px;
    transition: all .2s ease;
}

.service2 .readmore::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 28px;
    background: rgb(233 46 40 / 50%);
    width: 40px;
    height: 40px;
    transition: all .3s ease;
}

.service2 .readmore span {
    position: relative;
    font-weight: 600;
    color: var(--white);
}

.service2 .readmore svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--white);
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all .3s ease;
}

.service2 .readmore:hover::before {
    width: 100%;
    background: var(--red);
}

.service2 .readmore:hover svg {
    transform: translateX(0);
}

.service2 .readmore:active {
    transform: scale(0.96);
}

.service2 .row2 {
    margin-top: -50px;
    align-items: center;
}

.service2 .row2 .col-lg-6:first-child {
    margin-top: 120px;
}

.service2 .row2 h3 {
    line-height: 50px;
}

.service2 .row2 h3,
.service2 .row2 h4 {
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text);
}

.service2 .row2 h3 span {
    color: var(--red);
}

.service2 .row2 .col-lg-6:first-child p {
    width: 85%;
}

.service2 .row2 h4 {
    font-size: 30px;
    margin: 30px 0;
}

.service2 .row2 ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1rem;
    padding-left: 20px;
}

.service2 .row2 ul li {
    flex: 1 0 50%;
    padding-left: 10px;
}

.service2 .row2 ul li::marker {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    color: var(--red);
}

.service2 .row2 .col-lg-6:last-child {
    position: relative;
}

.service2 .row2 .figure,
.service2 .row2 img {
    width: 100%;
}

/* .service2 .row2 img {
    position: absolute;
    width: 40%;
    top: 40%;
} */
.service2 .paly-button {
    width: 104px;
    height: 104px;
    background: #e92e28;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: -92px;
}

.service2 .paly-button a {
    color: var(--white);
    position: relative;
}

.service2 .paly-button a::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -17px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-style: solid;
    border-width: 1px;
    border-color: white;
    box-sizing: border-box;
    animation: scale-before 2s infinite ease;
}

.service2 .paly-button a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -17px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-style: solid;
    border-width: 1px;
    border-color: white;
    box-sizing: border-box;
    animation: scale-after 2s infinite 0.3s;
}




footer {
    height: 100vh;
}

footer .footer {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

footer .footer-contact {
    background: url('../../images/bg/map-bgimage.png') var(--text);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 55%;
    height: inherit;
    display: flex;
    align-items: center;
}

footer .footer-contact .row {
    align-items: center;
}

footer .footer-contact h4 {
    font-weight: 600;
    color: var(--white);
    font-size: 24px;
}

footer .footer-contact h2 {
    color: var(--white);
    font-weight: bold;
    font-size: 60px;
    margin: 16px 0;
}

footer .footer-contact h2 span {
    color: var(--red);
}

footer .footer-contact p {
    color: var(--white);
    font-weight: 600;
}

footer .footer-contact .address {
    margin-top: 50px;
    row-gap: 30px;
}

footer .footer-contact .address .adress-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

footer .footer-contact .address .adress-info img {
    background-color: var(--red);
    border-radius: 50%;
    padding: 5px;
    width: 40px;
}

footer .footer-contact .address h5 {
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 3px;
}

footer .footer-contact .address p {
    margin-bottom: 0;
}

footer .footer-contact .address p,
footer .footer-contact .address a {
    font-weight: 400;
}

footer .footer-contact .address a {
    color: var(--white);
    transition: all .3s ease-in-out;
}

footer .footer-contact .address a:hover {
    color: var(--red);
}

footer .footer-contact .map-shape {
    position: relative;
}

footer .footer-contact .map-image {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

footer .footer-contact .map-shape .iframe {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
}

footer .footer-contact .map-shape .iframe iframe {
    height: 99.9%;
    width: 100%;
}

footer .footer-contact .map-image iframe {
    display: block;
    width: 87%;
    height: 553px;
    position: inherit;
    margin: auto;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

/* footer .footer-contact .map-image::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--red);
    border-radius: 50%;
    top: -50px;
    right: 50px;
} */
footer .footer-contact .map-image img {
    z-index: 1;
    position: relative;
    border: solid 1px #282828;
}

footer .footer-contact .map-shape .figure {
    position: absolute;
    right: 50px;
    top: 50px;
    z-index: 3;
    opacity: 0.6;
}

footer .footer-contact .map-shape .figure img {
    width: 50px;
}

footer .copyright {
    padding: 20px 0;
}

footer .copyright .container {
    display: flex;
    justify-content: center;
}

footer .copyright p {
    margin-bottom: 0;
    color: var(--text);
}

footer .copyright p a {
    color: var(--red);
}


#myBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    border: none;
    outline: none;
    background-color: var(--red);
    color: white;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: 0.5s all ease-in-out;
    z-index: 2;
}

#myBtn:hover {
    background-color: #555;
}

/* hover-effect-section */
.navbar-expand-lg .navbar-nav .nav-link {
    position: relative;
    padding: 10px 15px;
    transition: 0.5s all;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}

.nav-link .line_hvr {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.225s;
    transform: scale(0.9) skew(0deg, 0deg);
    transition-delay: 0.15s;
}

.nav-link .line_hvr::before,
.nav-link .line_hvr::after {
    width: 60px;
    opacity: 0;
    content: "";
    height: 2px;
    position: absolute;
    display: block;
    transition: all 0.375s;
    transition-delay: 0.3s;
    background: var(--red);
}

.nav-link .line_hvr::before {
    top: 5px;
    left: calc(50% - 30px);
}

.nav-link .line_hvr::after {
    bottom: 5px;
    right: calc(50% - 30px);
}

/* .nav-link .line_hvr span::before,
 .nav-link .line_hvr span::after{
    height: 0;
    transition-delay: 0s;
    content: "";
    background: var(--red);
    position: absolute;
    display: block;
    width:1px;
    transition: all 0.225s;
}
.nav-link .line_hvr span::before{
    left:5px;
    top:5px;
}
.nav-link .line_hvr span::after{
    right:5px;
    bottom:5px;
} */
.nav-link .line_hvr:hover {
    transform: scale(1) skew(-40deg, 0deg);
}

.nav-link:hover .line_hvr::before {
    left: 5px;
}

.nav-link:hover .line_hvr::after {
    right: 5px;
}

.nav-link:hover .line_hvr::before,
.nav-link:hover .line_hvr::after {
    transition-delay: 0s;
    width: 30px;
    opacity: 1;
}

/* .nav-link:hover .line_hvr span::before,
 .nav-link:hover .line_hvr span::after {
    height: 25px;
    transition-delay: 0.45s;
} */
.nav-link:hover {
    color: var(--red);
}




.inner-pages {
    padding-top: 132px;
}

#basicSlider {
    position: relative;
}

#basicSlider .MS-content {
    white-space: nowrap;
    overflow: hidden;
    margin: 0 2%;
    /* height: 50px; */
}

#basicSlider .MS-content .item {
    display: inline-block;
    width: 20%;
    position: relative;
    vertical-align: top;
    overflow: hidden;
    height: 100%;
    white-space: normal;
    line-height: 50px;
    vertical-align: middle;
}

#basicSlider .MS-content .item a {
    line-height: 50px;
    vertical-align: middle;
}

#basicSlider .MS-controls button {
    position: absolute;
}

#basicSlider .MS-controls .MS-left {
    top: 35px;
    left: 10px;
}

#basicSlider .MS-controls .MS-right {
    top: 35px;
    right: 10px;
}



.inner-banner {
    position: relative;
}

.inner-banner::after {
    content: '';
    position: absolute;
    background-color: var(--black);
    opacity: .5;
    width: 100%;
    height: 100%;
    top: 0;
}

.inner-banner .text {
    position: absolute;
    bottom: 10%;
    left: 50%;
    z-index: 1;
    width: 66%;
    display: flex;
    transform: translateX(-50%);
    justify-content: space-between;
    align-items: end;
}

.inner-banner .text h2 {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 40px;
    margin-top: 10px;
    color: var(--red);
}

.inner-banner .text p {
    width: 60%;
}

.inner-banner a,
.inner-banner p {
    color: var(--white);
}

.inner-banner p {
    margin-bottom: 0;
}

.breadcrumb-item.active {
    color: var(--white);
    background: linear-gradient(to right, transparent 50%, var(--red) 50%);
}

.breadcrumb {
    margin-bottom: 0;
    justify-content: end;
}

.inner-banner nav {
    flex: 1 0 auto;
}



.form {
    text-align: center;
    padding: 50px 0;
}

.form form {
    text-align: left;
    width: 60%;
    margin: auto;
}

.form form .form-control {
    border-radius: 0;
}


.stand {
    /* padding: 50px 0; */
    height: 100vh;
    background: var(--grey2) !important;
    display: flex;
    align-items: center;
}

.stand p,
.stand h2 {
    color: var(--black);
}

.stand p {
    margin-bottom: 10px;
}

.stand h2 span {
    color: var(--red);
}

.stand .row2 {
    margin-top: 50px;
    row-gap: 30px;
}

.stand .row2 .col-lg-6 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.stand .row2 .col-lg-6 img {
    width: 80px;
}

.stand .image::before,
.stand .image::after {
    position: absolute;
}

.stand .image::after {
    right: 50px;
    bottom: 0px;
}

.stand .image::before {
    content: url(../../images/home/rtcm_red.webp);
}

.stand .image {
    position: relative;
}

.stand .image img {
    z-index: 1;
}

.stand h3 {
    color: var(--red);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
}



.four-cards {
    height: 100vh;
    display: flex;
    align-items: center;
}


.customer {
    color: var(--white);
    background: url('../../images/bg/Hexagon.svg');
    background-repeat: no-repeat;
    background-position: top left;
    /* background-size: cover; */
}

.customer .card {
    background-color: var(--red);
    height: 450px;
    justify-content: center;
    padding-left: 50px;
    padding-right: 400px;
    width: 85%;
    border-radius: 20px;
    border: 1px solid var(--red);
}

.customer .card img {
    position: absolute;
    right: -190px;
    top: 50%;
    transform: translateY(-50%);
}

.customer .card h3 {
    font-weight: bold;
    margin: 20px 0;
    font-size: 30px;
}

.customer .card .call-us {
    margin-top: 100px;
}

.customer .card .call-us h5 {
    font-size: 24px;
    font-weight: bold;
}

.customer .card .call-us p {
    margin-bottom: 0;
}

.customer .card .call-us p i {
    font-size: 20px;
    animation: tilt-shaking 0.25s infinite;
}

.customer .card .call-us p a {
    color: var(--white);
}



.services1 .row {
    margin-top: 60px;
    row-gap: 30px;
}

.services1 .col-lg-4 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.services1 .col-lg-4 img {
    width: 80px;
}

.services1 .col-lg-4 h3 {
    margin-bottom: 10px;
}



.contact-form {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    background: url('../../images/bg/map-bgimage.png') var(--grey);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.contact-form h3 {
    font-weight: 800;
    font-size: 40px;
    color: var(--text);
    margin-bottom: 20px;
}

.contact-form h3 span {
    color: var(--red);
}

.contact-form p a {
    color: var(--red);
    font-weight: bold;
}

.contact-form p.pp {
    width: 64%;
    margin: auto;
    margin-bottom: 50px;
}

.input-form input,
.input-form textarea {
    padding: 10px 20px;
    border: 2px solid var(--text);
    border-radius: 5px !important;
    background-color: transparent;
}

.input-form span {
    position: relative;
    left: 20px;
    top: -36px;
    padding: 0 4px;
    background: #fff;
    transform-origin: top left;
    transition: all 0.3s ease-in;
    pointer-events: none;
    background-color: transparent;
}

.input-form span.textarea {
    top: -85px;
    background-color: transparent;
}

.input-form input:focus+span,
.input-form input:not(:placeholder-shown)+span {
    top: -60px;
    left: 8px;
    transform: scale(0.8);
    font-weight: bold;
    pointer-events: none;
    /* font-size: 14px; */
    /* border-left: 2px solid var(--red);
    border-right: 2px solid var(--red); */
    background-color: var(--red);
    color: var(--white);
    border-radius: 2px;
}

.input-form textarea:focus+span,
.input-form textarea:not(:placeholder-shown)+span {
    top: -108px;
    left: 8px;
    background-color: var(--red);
    color: var(--white);
    border-radius: 2px;
}

.input-form input:focus,
.input-form textarea:focus {
    box-shadow: 0 0 0 0;
    border: 2px solid var(--red);
    background-color: transparent;
}

.contact-form .reach-btn:hover {
    border: 2px solid var(--red);
    background-color: transparent;
    color: var(--text);
}



.careers {
    height: 100vh;
    display: flex;
    align-items: center;
}

.careers h3 {
    color: var(--red);
    text-align: center;
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 20px;
}

.careers p {
    text-align: center;
}

.careers .row {
    margin-top: 60px;
    row-gap: 50px;
}

.careers .card {
    border: 0;
    border-radius: 0;
    flex-direction: unset;
    justify-content: space-around;
    background-color: var(--red);
    color: var(--white);
    padding: 50px 20px;
}

.careers .card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
}

.careers .card i {
    color: var(--white);
}

.careers h2 {
    font-weight: 900;
    font-size: 30px;
}

.careers .vacancies {
    margin-top: 50px;
}

.careers .single-vacancy {
    display: flex;
    gap:20px;
    align-items: center;
}

.careers .single-vacancy:not(:last-child) {
    border-bottom: 1px solid var(--grey);
    padding: 30px 0;
}

.careers .single-vacancy:first-child {
    padding-top: 0;
}

.careers .single-vacancy:last-child {
    padding-bottom: 0;
    padding-top: 30px;
}

.careers .single-vacancy p {
    text-align: left;
    margin-bottom: 0;
}

.careers .location-apply,
.careers .location-apply .map {
    display: flex;
    align-items: center;
    gap: 10px;
}

.careers .location-apply {
    gap: 20px;
}

.careers .location-apply .map i {
    color: var(--red);
    font-size: 18px;
}

.careers .reach-btn:hover {
    color: var(--white);
    border: 2px solid var(--red);
}

.careers .reach-btn::before {
    background-color: var(--red) !important;
}

.careers .reach-btn:hover::before {
    height: 450%;
}



.first-hr {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../../images/bg/bgn-quote.jpg') no-repeat;
    background-attachment: fixed;
    background-size: cover;
    text-align: center;
}


.inner-banner .text.contact-breadcrumb {
    align-items: center;
}

.inner-banner .text.contact-breadcrumb h2 {
    margin: 0;
}


.about-stand p {
    width: 100%;
}

.about-stand .row2 p {
    margin-bottom: 0;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp:4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.inner-services {
    background: url(../../images/bg/hexagon.png), linear-gradient(var(--text) 74.4%, var(--white) 50%);
    background-repeat: repeat-y;
}

.inner-services .header-desc {
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}

.inner-services h2 {
    margin-bottom: 50px;
}

.inner-services .card {
    padding: 40px;
    border-radius: 0;
    background-color: transparent;
    border: 1px solid var(--grey);
}

.inner-services img {
    background-color: var(--red);
    padding: 10px;
    width: 70px;
}

.inner-services a {
    margin-top: 50px;
    font-weight: bold;
    font-size: 20px;
    color: var(--white);
    position: relative;
}

/* .inner-services a::after {
    content: '';
        position: absolute;
        width: 0;
        height: 4px;
        background-color: var(--red);
        bottom: 2px;
        left: 0;
        z-index: -1;
        transition: all 0.5s ease-in-out;
}
.inner-services a:hover:after {
    width: 100%;
} */
.inner-services h5 {
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 40px;
}

.inner-services .card-big {
    background: url('../../images/bg/service-bg.webp') #e92e28;
    background-size: cover;
    position: relative;
    z-index: 0;
    padding: 90px;
    color: var(--white);
    border: 0;
    border-right: 1px solid #e92e28db;
}

.inner-services .card-big::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #e92e28db;
    top: 0;
    left: 0;
    border: 0;
    z-index: -1;
    border-right: 1px solid #e92e28db;
}

.inner-services .col-lg-3,
.inner-services .col-lg-6 {
    padding: 0;
}

.inner-services .card-big a {
    display: inline-block;
    background-color: var(--text);
    border: 2px solid var(--text);
    z-index: 0;
    font-size: 16px;
}

.inner-services .card-big a:hover {
    color: var(--white);
}

.inner-services .card-big a:hover::before {
    height: 420%;
    background-color: transparent !important;
}

.inner-services .col-lg-3:nth-child(1) .card,
.inner-services .col-lg-3:nth-child(2) .card,
.inner-services .col-lg-3:nth-child(3) .card {
    border-right: 0;
}

.inner-services .col-lg-3:nth-child(5) .card,
.inner-services .col-lg-3:nth-child(6) .card {
    border-top: 0;
    border-right: 0;
}


.staffing {
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('../../images/bg/hexagon-red2.webp');
}

.staffing .row {
    background: linear-gradient(to right, var(--red) 50%, transparent 50%), url('../../images/inner/staff.webp');
    background-repeat: no-repeat;
    background-position: right;
}

.staffing .text-col {
    padding: 50px;
    color: var(--white);
}

.staffing .text-col .text:not(:last-child) {
    margin-bottom: 30px;
}

.staffing h2 {
    margin-bottom: 50px;
    font-weight: 800;
    font-size: 60px;
    position: relative;
}

.staffing h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: var(--white);
    bottom: -10px;
    left: 0;
}

.staffing .text-col h4 {
    margin-bottom: 10px;
    font-weight: bold;
    border-left: 3px solid;
    padding-left: 10px;
    font-size: 24px;
}



.immigration {
    /* height: 100vh;
        display: flex;
        align-items: center; */
    background-color: var(--grey2);
    padding: 50px 0;
}

.immigration h2 {
    color: var(--red);
    margin-bottom: 50px;
    font-weight: 800;
    font-size: 60px;
    position: relative;
    text-align: center;
}

.immigration h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: var(--red);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.immigration .header-para {
    text-align: center;
    width: 60%;
    margin: auto;
}

.immigration .row {
    margin-top: 50px;
}

.immigration .col-lg-4 {
    padding: 0;
    overflow: hidden;
}

.immigration .figure {
    margin-bottom: 0;
    width: 100%;
}

.immigration .figure-img {
    width: 100%;
    transition: all .5s ease-in-out;
}

.immigration .figure-img:hover {
    transform: scale(1.2);
    opacity: 0.5;
}

.immigration .card {
    border: 0;
    border-radius: 0;
    height: 100%;
    padding: 50px;
    background-color: #fff;
}

.immigration .card h4 {
    color: var(--red);
    position: relative;
    font-weight: 800;
    /* border-left: 2px solid var(--red);
    padding-left: 10px; */
    margin-bottom: 50px;
    font-size: 30px;
}

.immigration .card h4::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--red);
    left: 0;
    bottom: -20px;
}

.immigration .card p {
    margin-bottom: 0;
        z-index: 1;
}

.immigration .card i {
    position: absolute;
    bottom: 10px;
    font-size: 150px;
    color: var(--grey);
    right: 50px;
    opacity: 0.5;
}



.inner-banner.consulting .text p {
    width: 100%;
}

.consultant p {
    width: 95%;
}

.consultant p:not(:last-child) {
    margin-bottom: 20px;
}

.consultant p:last-child {
    margin-bottom: 0;
}



.consulting-img {
    height: 100vh;
    background: linear-gradient(to bottom, var(--white) 30%, transparent 30%), url('../../images/inner/consulting.webp');
    background-repeat: no-repeat;
    background-position: bottom;
}

.consulting-img .card {
    width: 50%;
    border: 0;
    border-radius: 0;
    background-color: var(--text);
    color: var(--white);
    padding: 50px;
    top: 100px;
}

.consulting-img .card h4 {
    font-size: 40px;
    color: var(--red);
    font-weight: bold;
    position: relative;
    margin-bottom: 50px;
}

.consulting-img .card h4::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--red);
    left: 0;
    bottom: -20px;
}


.consulting-img-bg {
    background: linear-gradient(to bottom, var(--white) 30%, transparent 30%), url('../../images/inner/consulting2.webp');
    background-repeat: no-repeat;
    background-position: bottom;
}

.consulting-img-bg .card {
    width: 60%;
    margin-left: auto;
    background-color: var(--red);
}

.consulting-img-bg .card h4 {
    color: var(--white);
}

.consulting-img-bg .card h4::after {
    background-color: var(--white);
}

.consulting-img-bg .card ul {
    padding-left: 20px;
}

.consulting-img-bg .card li {
    padding-left: 10px;
    line-height: 30px;
}

.consulting-img-bg .card li::marker {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    color: var(--white);
}



.types-cloud {
    height: 100vh;
    display: flex;
    align-items: center;
}

.types-cloud h2 {
    color: var(--text);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
    font-size: 60px;
    position: relative;
}

.types-cloud h2 span {
    color: var(--red);
}

.types-cloud h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: var(--text);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.types-cloud .head-para {
    text-align: center;
    width: 90%;
    margin: auto;
}

.types-cloud .row {
    margin-top: 50px;
}

.types-cloud .card {
    border: 1px solid var(--red);
    border-radius: 0;
    text-align: center;
    padding: 20px;
    height: 100%;
}

.types-cloud .card.paas {
    background-color: var(--red);
}

.types-cloud img {
    width: 200px;
    margin-bottom: 10px;
}

.types-cloud .card h4 {
    color: var(--red);
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

.types-cloud .card.paas h4 {
    color: var(--white);
}

.types-cloud .card.paas p {
    color: var(--white);
}


.cloud-benifits {
    height: auto;
    padding: 50px 0;
    background-color: var(--grey2);
}

.cloud-benifits ul {
    padding-left: 20px;
}

.cloud-benifits li {
    padding-left: 10px;
    line-height: 30px;
}

.cloud-benifits li::marker {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    color: var(--red);
}

.cloud-benifits h5 {
    margin-bottom: 0;
    color: var(--white);
    font-weight: bold;
    font-size: 30px;
}

.cloud-benifits .col-lg-3:nth-child(1) .card,
.cloud-benifits .col-lg-3:nth-child(3) .card {
    background-color: var(--red);
}

.cloud-benifits .col-lg-3:nth-child(2) .card,
.cloud-benifits .col-lg-3:nth-child(4) .card {
    background-color: var(--text);
    border: 1px solid var(--text);
}

.cloud-benifits .row {
    margin-top: 80px;
}

.cloud-benifits .card span {
    color: var(--white);
    font-weight: bold;
    font-size: 100px;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cloud-benifits .card {
    height: 120px;
    justify-content: center;
}



.industries {
    height: 100vh;
    display: flex;
    align-items: center;
}

.industries h3 {
    color: var(--red);
    font-weight: bold;
    font-size: 30px;
    position: relative;
    margin-bottom: 50px;
}

.industries h3::after {
    content: '';
    position: absolute;
    background-color: var(--red);
    width: 60px;
    height: 2px;
    left: 0;
    bottom: -20px;
}

.industries ul {
    background-color: var(--grey2);
    padding: 20px;
    border-radius: 6px;
    padding-left: 40px;
}

.industries ul li {
    padding-left: 10px;
    line-height: 30px;
}

.industries ul li::marker {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    color: var(--red);
}

.industries .content-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.industries .image-text {
    position: relative;
}

.industries .image-text .card {
    position: absolute;
    border: 0;
    padding: 30px;
    bottom: -50px;
    left: 120px;
    right: -50px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: var(--red);
}

.industries .image-text .card p {
    margin-bottom: 0;
    color: var(--white);
}

.industries .image-text img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.industries.industries2 {
    background-color: var(--grey2);
}

.industries.industries2 .image-text .card {
    left: -50px;
    right: 120px;
}

.industries.industries2 ul {
    background-color: var(--white);
}



.service-section2 {
    height: 100vh;
    display: flex;
    align-items: center;
}

.service-section2 .row {
    align-items: center;
}

.service-section2 .image-col {
    position: relative;
    margin-bottom: 200px;
}

.service-section2 .image2 {
    position: absolute;
    top: 65%;
    left: 26%;
    /* transform: translate(-50%, -50%); */
}

.service-section2 .image2 img {
    border: 10px solid var(--white);
}

.service-section2 h4 {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 20px;
}

.service-section2 ul {
    padding-left: 20px;
}

.service-section2 ul li {
    padding-left: 10px;
    line-height: 30px;
}

.service-section2 ul li::marker {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    color: var(--red);
}


.service-section1 .row {
    align-items: center;
}

.service-section1 h2 {
    font-size: 40px;
    line-height: 50px;
}

.service-section1 .service_btn {
    margin-top: 30px;
}

.service-section1 .service_btn .reach-btn {
    z-index: 0;
}

.service-section1 .service_btn .reach-btn:hover {
    color: var(--white);
    border: 2px solid var(--red);
}

.service-section1 .service_btn .reach-btn:hover::before {
    background-color: var(--red) !important;
}



.service-section3 {
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('../../images/bg/service-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 0;
    color: var(--white);
}

.service-section3::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--red);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.3;
    z-index: -1;
}

.service-section3 .row {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 50px;
}

.service-section3 h4 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}

.service-section3 img {
    width: 100%;
}



@keyframes scale-before {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    40% {
        opacity: 0.5;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes scale-after {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    40% {
        opacity: 0.5;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes tilt-shaking {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0eg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* 18-03-2023 */
.staff_scnd_img{
    display: none;
}

.coming_soon {
	text-align: center;
}
.coming_soon img {
	width: 60%;
}

/* 13-06-2023 */
#sd_main{
padding:50px 0;
}
#sd_main .row{
align-items:baseline;
}
.mb-3 li{
    list-style-type:disclosure-closed;
}
.col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}
.col-form-label {
    color:var(--red);
}
.choose_list h3{
margin:20px 0;
color:var(--red);
font-weight:bold;
text-decoration: underline;
text-underline-offset:15px;
text-decoration-thickness: 0;
margin-bottom:30px;
}
.card_note{
padding:10px 40px;
background-color:#fff;
box-shadow:1px 1px 15px 1px #ccc; 
}
.card_note h3{
font-size:17px;
color:#000;
}
.card_note span{
color:var(--red);
margin-right:10px;
}
.card_note a{
color:var(--red);
}
.resume{
padding:0;
width:fit-content;
}
.red_flex_date{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.date_red_sec{
    background-color: #e92e28;
    padding: 10px 15px;
    text-align: center;
}
.date_red_sec p{
    color: #fff;
    margin-bottom: 0;
}