:root {
    --primary: #ffae01;
    --light: #F5F5F5;
    --dark: #353535;
    --danger: #f8281e;
}

::selection {
    background-color: var(--primary);
    color: white;
}

* {
    scroll-behavior: smooth;
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}
body,html{
      overflow-x: clip;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Hedvig Letters Serif', serif;
}

body,
p,
input {
    font-family: 'Raleway', sans-serif;

}

p {
    text-align: justify;
}

img {
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 10px;
    bottom: 10px;
    z-index: 99;
    animation: action 1s infinite alternate;
}

.top_butt:focus,
.top_butt:hover {
    background-color: var(--danger);
    border-color: var(--danger);
    box-shadow: 0 0 0 .25rem #fc443557;
}

@keyframes action {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-15px)
    }
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#spinner .spinner-grow {
    width: 3rem;
    height: 3rem;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    border-radius: 5px;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 40px;
    height: 40px;
}

.top_butt {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar {
    background-color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\F282";
    font-family: 'Bootstrap-icons';
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    font-size: 8px;
}


.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 20px;
    position: relative;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #dd0008 !important;
}

.nav-link::before {
    transition: 300ms;
    height: 3px;
    content: "";
    position: absolute;
    border-radius: 20px;
    background-color: #000000;
}

.nav-link-ltr::before {
    width: 0%;
    bottom: 15px;
}

.nav-link-ltr.active::before,
.nav-link-ltr:hover::before {
    width: 100%;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media screen and (max-width: 991px) {
    .nav-link::before {
        transition: 300ms;
        content: "";
        position: absolute;
        border-radius: 20px;
        background-color: transparent;
    }

    .nav-link-ltr::before {
        width: 0%;
    }

    .nav-link-ltr.active::before,
    .nav-link-ltr:hover::before {
        width: 0%;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
    font-size: 13px;
    text-transform: uppercase;
}

.navbar-light a.btn {
    background-color: var(--primary);
    color: black;
}

.navbar-light a.btn:hover {
    background-color: var(--danger);
    color: white;
}

.navbar-light a.btn:hover i {
    animation: navaction 0.7s infinite alternate;
}

@keyframes navaction {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-10px)
    }
}

.navbar-light .navbar-nav .nav-link {
    color: white;
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        margin-top: 3px;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: transparent;
    border: 1px solid #FFFFFF;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.959), rgba(0, 0, 0, 0.747), rgba(0, 0, 0, 0.178)),
        url(../img/top_sectionbg.jpg) no-repeat;
    background-size: 100% 300px;
    object-fit: cover;
    text-align: center;
    height: 250px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

/*** Section Title ***/

.navigate_butt {
    background-color: whitesmoke;
    color: black;
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 12px;
}

.navigate_butt:hover {
    color: white;
    background-color: var(--danger);
    border: 1px solid var(--danger);
}

.section-title h1,
.section-title h2 {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.section-title.text-start h1,
.section-title.text-start h2 {
    padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 15px;
    background: var(--primary);
}

.section-title h2::before,
.section-title h2::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 15px;
    background: var(--primary);
}

.section-title h1::before,
.section-title h2::before {
    left: 0;
}

.section-title h1::after,
.section-title h2::after {
    right: 0;
}

.section-title.text-start h1::before,
.section-title.text-start h2::before {
    display: none;
}

/* marquee brand */

.marq_body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 0px 7px 1px var(--danger);
    background-color: white;
    padding: 10px 0px;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-content img {
    height: 60px;
    margin-right: 60px;
    display: inline-block;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*** About ***/
.home_abt,
.home_service,
.home_quote {
    min-height: 400px;
}

.abt_num {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
}

.home_abt img,
.home_quote img {
    object-fit: contain;
}

.about_number h2 {
    font-size: 30px;
    color: #000000;
    padding-left: 20px;
}

.abt_content h4 {
    font-size: 28px;
    background-color: #cc0007;
    color: white;
    padding: 0px 30px 0px 10px;
    width: fit-content;
    font-weight: 500;
}

.abt_content p.one {
    color: #cc0007;
    font-style: italic;
    font-size: 22px;
    line-height: 35px;
}

/*** Service ***/

.service_img {
    /* margin-top: 20px; */
    /* border: 3px solid var(--primary); */
    /* border-radius: 50%; */
    overflow: hidden;
    height: 240px;
    width: 100%;
    /* margin-top: 20px;
    background-color: var(--primary);
    padding: 15px;
    border-radius: 50%;
    overflow: hidden; */
}

.img_decoration img,
.servDet_imgdecor img {
    box-shadow: 3px 5px 11px 3px #00000040;
    border-radius: 10px;
    position: relative;
    width: 100%;
}

.img_decoration,
.servDet_imgdecor {
    margin-top: 10px;
}

.img_decoration::before,
.img_decoration.about_imgdecor::before,
.img_decoration.service_imgdecor::before,
.servDet_imgdecor::before {
    content: '';
    position: absolute;
    background-color: var(--primary);
    width: 100%;
    bottom: 20px;
    border-radius: 10px;
    top: -20px;
}

.img_decoration::before,
.img_decoration.about_imgdecor::before,
.img_decoration.service_imgdecor::before {
    left: 20px;
}

.img_decoration::before {
    height: 330px;
}

.img_decoration.about_imgdecor::before {
    height: 290px;
}

.img_decoration.service_imgdecor::before,
.servDet_imgdecor::before {
    height: 100%;
}

.servDet_imgdecor::before {
    right: 20px !important;
}

.home_service .service-item {
    padding: 7px;
    background-color: white;
    height: 100%;
    box-shadow: 4px 6px 10px 0px #0000003d;
}

.home_service .service-item .read_more{
    color: #fead08;
    text-align: center;
}

.service_div {
    background-color: #f5f5f5;
}

.service-item img {
    transition: .5s;
    height: 100%;
}

.service-item:hover img {
    transform: scale(1.1);
}

.service-item p {
    color: #000000;
}

.service-item:hover h4 {
    color: var(--primary);
}

.service_detImg {
    border-radius: 10px;
    box-shadow: 5px 5px 10px 2px #00000057;
}

.service_carousel .owl-nav {
    position: absolute;
    width: 530px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.service_carousel:hover .owl-nav {
    width: 530px;
    opacity: 1;
}

.service_carousel .owl-nav .owl-prev,
.service_carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.service_benefits h4 {
    color: var(--primary);
}

/* .service_cont {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service_cont .benefits {
    position: relative;
    max-width: 900px;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.service_cont .benefits .image {
    height: 170px;
    width: 170px;
    object-fit: cover;
    border-radius: 50%;
}

.service_cont .benefits .slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
    height: 100%;
    width: 100%;
}

.service_cont .slide p {
    text-align: justify;
    padding: 0 75px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.service_cont .slide .quote-icon {
    font-size: 30px;
    color: #4070f4;
}

.service_cont .slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service_cont .details .name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.service_cont .details .job {
    font-size: 12px;
    font-weight: 400;
    color: #333;
}

.service_cont .nav-btn {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transform: translateY(30px);
    background-color: rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

.service_cont .nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.service_cont .nav-btn::after,
.nav-btn::before {
    font-size: 20px;
    color: #fff;
}

.service_cont .swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.8);
}

.service_cont .swiper-pagination-bullet-active {
    background-color: var(--primary);
}

@media screen and (max-width: 768px) {
    .service_cont .slide p {
        padding: 0 20px;
    }

    .service_cont .nav-btn {
        top: 100px;
    }
} */

.service_carousel .owl-nav .owl-prev:hover,
.service_carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.service_carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #ffffff 0%, #ffffff00 100%);
    z-index: 1;
}

.service_carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, #ffffff 0%, #ffffff00 100%);
    z-index: 1;
}

/*** Project project ***/

.project_icon {
    animation: actionproject 1s infinite alternate;
}

.project_icon i {
    font-size: 18px;
}

table.page_table,
.page_table th,
.page_table td {
    border: 1px solid black;
}

.page_table th {
    padding: 15px 0px;
    background-color: var(--primary);
    color: #ffffff;
}

.page_table td {
    padding: 10px 5px;
    background-color: white;
}
@media (max-width: 374px) {
.laser-screed-table{
    font-size: 13px !important;
}
}
.infrastructure_img {
    width: 100px;
}

@keyframes actionproject {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(15px)
    }
}

#project-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#project-flters li:hover,
#project-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.project-item img {
    transition: .5s;
    height: 281px;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-item .project-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    background: #353535b3;
    transition: .5s;
}

.project-item:hover .project-overlay {
    width: 100%;
    height: 100%;
    left: 0;
}

.project-item .project-overlay .btn {
    opacity: 0;
}

.project-item:hover .project-overlay .btn {
    opacity: 1;
}

#projectCarousel .carousel-caption {
    position: relative;
    width: 100%;
    background-color: #000000;
    left: 0;
    border-radius: 0px 0px 10px 10px;
    padding: 10px;
}

#projectCarousel .carousel-caption p {
    margin-bottom: 0;
    text-align: center;
}

#projectCarousel .carousel-item img {
    height: 298px;
    border-radius: 10px;
}

/*** Quote ***/

.quote-text input.form-control,
.quote-text select,
.quote-text textarea {
    border: 1px solid #dddddd;
    font-size: 14px;
}

::placeholder {
    font-size: 14px;
}

/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 38px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover .team-social {
    left: 0;
}

/*** benefits ***/

.service_cont img {
    height: 150px;
    width: 150px;
}

.benefits-carousel img {
    height: 150px;
    width: 150px;
}

.benefits-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #ffffff 0%, #ffffff00 100%);
    z-index: 1;
}

.benefits-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, #ffffff 0%, #ffffff00 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .benefits-carousel::before,
    .benefits-carousel::after,
    .service_carousel::before,
    .service_carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .benefits-carousel::before,
    .benefits-carousel::after,
    .service_carousel::before,
    .service_carousel::after {
        width: 300px;
    }
}

.benefits-carousel .owl-item .benefits-text,
.service_carousel .owl-item .benefits-text {
    border: 5px solid var(--light);
    transform: scale(.8);
    transition: .5s;
}

.benefits-carousel .owl-item.center .benefits-text,
.service_carousel .owl-item.center .benefits-text {
    transform: scale(1);
}

.benefits-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.benefits-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.benefits-carousel .owl-nav .owl-prev,
.benefits-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.benefits-carousel .owl-nav .owl-prev:hover,
.benefits-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

/*** Contact ***/

.contact_name span {
    font-size: 15px;
}

.contact_details p,
.contact_details span,
.contact_details a {
    color: #000000;
}

.contact_details a:hover {
    color: #cc0007;
}

.contact_icon {
    color: #cc0007;
}

/*** Footer ***/

.footer {
    background: linear-gradient(#353535f5, #353535f2), url(../img/svkt-footer-bg.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer_link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: normal;
    transition: .3s;
}

.footer_link a {
    color: white;
}

.footer_link:hover,
.footer_link a:hover {
    color: var(--primary);
    margin-left: 1px;
}

.footer_add p {
    margin-bottom: 0;
}

.footer_div {
    line-height: 25px;
}

.footer .copyright {
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    font-size: 13px;
    color: white;
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* logo */

.svkt-logo {
    height: 100%;
}

/* slider */

.home_slider img {
    height: 650px;
    width: 100%;
    object-fit: cover;
}

.home_slider .carousel-caption {
    top: 350px;
}

.heading_banner {
    background-color: #000000b7;
    color: white;
    margin-top: -100px;
    padding: 20px 10px 20px 10px;
}

.heading_h3 {
    color: rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 25px;
    font-size: 17px;
}

.heading_h1 {
    color: rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    font-family: 'Hedvig Letters Serif', serif;
    font-weight: 400;
    line-height: 50px;
    font-size: 35px;
}

/* welcome box */

.home_icon,
.about_icon {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #f5f5f5;
    border-radius: 50%;
}

.home_icon::before,
.about_icon::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px dashed var(--primary);
    border-radius: 50%;
    box-sizing: border-box;
    animation: borderRotate 15s linear infinite;
}

@keyframes borderRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.err_msg {
    font-size: 13px;
}

.welcome_box h2 {
    font-size: 30px;
    font-weight: normal;
    text-align: left;
    padding: 10px 0px 3px 0px;
    margin: 0px 0px 10px 0px;
    color: #333;
    text-transform: uppercase;
    background: #fff;
    font-family: 'Hedvig Letters Serif', serif;
}

.call_box img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.welcome_box p {
    font-family: 'Raleway', sans-serif;
    text-align: justify;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
}

.company_name {
    font-family: 'Hedvig Letters Serif', serif;
    background-color: #cc0007;
    color: white;
    padding: 0px 10px 0px 10px;
    font-weight: 400;
}

.welcome_box strong {
    font-family: 'Hedvig Letters Serif', serif;
    color: #cc0007;
    font-weight: 400;
}

.whats-app {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: bootstrap-icons;
    width: 40px;
    height: 40px;
    bottom: 10px;
    left: 10px;
    background-color: #23b73c;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 20px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1;
}

.whats-app:hover {
    color: #23b73c;
    background-color: white;
}

.quote_div {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top:48%;
    right: 10px;
    padding: 20px;
    box-shadow: 2px 2px 3px var(--primary);
    box-shadow: 1px 2px 8px 1px var(--primary);
    z-index: 1;
}


.quote_div:hover {
    cursor: pointer;
    transition: transform 0.3s;
    transform: scale(1.05);
}

/* disclaimer */

.disclaimer_heading {
    font-size: 22px;
}

/* sitemap */

.flow {
    position: relative;
}

.flow li {
    list-style: none;
    line-height: 70px;
}

.flow li.line:before {
    margin-top: 42px;
    margin-left: 20px;
    content: "";
    height: 17px;
    width: 2px;
    background-color: var(--primary);
    position: absolute;
}

.flow li a {
    color: #000000;
}

.flow li a:hover {
    color: #cc0007;
}

.sitemap_list {
    display: flex;
}

.sitemap_list .sitemap_a {
    padding-left: 20px;
    margin-top: -10px;
}

.sitemap_icon {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sitemap_icon::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px dashed var(--primary);
    border-radius: 50%;
    box-sizing: border-box;
    animation: borderRotatesitemap 15s linear infinite;
}

@keyframes borderRotatesitemap {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* media query */
@media screen and (max-width:820px) {
    .heading_banner {
        margin-top: -130px;
    }

    .heading_h3 {
        font-size: 16px;
    }

    .heading_h1 {
        font-size: 30px;
    }
}

@media screen and (max-width:600px) {
    .heading_banner {
        margin-top: -160px;
    }

    .heading_h3 {
        font-size: 15px;
    }

    .heading_h1 {
        font-size: 25px;
    }
}

@media screen and (max-width:535px) {
    .heading_banner {
        margin-top: -160px;
    }

    .heading_h3 {
        font-size: 12px;
    }

    .heading_h1 {
        font-size: 30px;
    }
}

@media screen and (max-width:430px) {
    .heading_banner {
        margin-top: -180px;
    }

    .heading_h3 {
        font-size: 14px;
    }

    .heading_h1 {
        line-height: 36px;
        font-size: 20px;
    }

    .welcome_box h2.wel_h2,
    .welcome_box .company_name {
        font-size: 25px;
    }
}

@media screen and (max-width:390px) {
    .heading_banner {
        margin-top: -150px;
    }

    .heading_h3 {
        font-size: 14px;
    }

    .heading_h1 {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .svkt-logo {
        height: 75%;
    }

    .img_decoration.about_imgdecor::before {
        height: 290px;
        width: 100%;
        top: -10px;
        left: 10px;
    }
}

@media screen and (max-width: 390px) {
    .svkt-logo {
        height: 65%;
    }
}
