@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&family=PT+Sans:wght@400;700&family=Titillium+Web:wght@200;300;400;600;700&display=swap');

body {
    font-family: 'Titillium Web', sans-serif;
    color: #444444;
    min-width: 375px;
    overflow-x: hidden;
    padding: 0 50px;
    margin: 0;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}

a:focus-visible {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}
::placeholder {
 opacity: 1;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #4E99DD;
    border-top-color: #e2eefd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* ==========================================
Header
=========================================== */

#toTop {
    background-color: #333;
    border-radius: 4px 4px 0 0;
    bottom: 0;
    color: #fff;
    display: none;
    height: 35px;
    position: fixed;
    right: 50px;
    text-align: center;
    text-transform: uppercase;
    width: 48px;
    opacity: .9;
    z-index: 10000;
    -webkit-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
    padding: 5px 0;
    cursor: pointer;
}

.topOn {
    display: block !important;
}

.topFooterFixing {
    bottom: 50px !important;
}

.header {
    margin: 0;
    padding: 40px 50px 15px 50px;
    transition: all 0.5s;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background: #fff;
    z-index: 888;
}

.header.on {
    padding: 10px 50px 10px 50px;
}

.logo img {
    height: 90px;
    width: auto;
}

nav {
    text-align: left;
    padding: 32px 0px;
}

nav a {
    margin: 10px 15px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    position: relative;
}

nav a::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    border-bottom: 2px solid #ED8205;
    top: 50%;
    margin-top: 16px;
    left: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

nav a:hover::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.right-menu {
    text-align: right;
    padding: 0;
    position: relative;
}

.header-form {
    position: absolute;
    right: 0;
    top: 7px;
    width: 340px;
}

.header-form .btn.btn-primary {
    border-radius: 0;
    border: 0;
    padding: 5px 15px;
    background-color: #1872b7;
}

.header-form a {
    font-size: 14px;
    color: #1872b7;
}

.header-form .col-6 {
    padding-left: 0px;
}

.header-form .form-control {
    border-radius: 0;
    font-size: 14px;
}

.header-form p {
    font-size: 11px;
    margin: 0;
}


.right-menu a {
    padding: 8px 15px 5px 15px;
    transition: all 0.4s;
}

.right-menu a.hover-style {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    color: #fff;
}

.right-menu a.hover-style::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    background: transparent;
    top: 0;
    right: 0;
    z-index: -1;
    transition: all 0.4s;
    background: #ED8205;
}


.right-menu a.hover-style span:first-child {
    font-size: 20px;
    position: relative;
    top: 2px;
    left: -5px;
}

/* .right-menu a:nth-child(2){
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.7px;
    position: relative;
    top: 1px;
} */

.header-left {
    position: relative;
}

.mobile-menu-container {
    display: none;
}

.mobile-menu-container {
    display: none;
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 999;
}

.mobile-menu-container > a {
    display: block;
    width: 50px;
    height: 50px;
    overflow: hidden;
    position: relative;
    z-index: 9999999;
    padding: 0;
}

.m_line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #000;
}

.m_line.line_top {
    top: 15px;
    transition: all 0.4s;
}

.m_line.line_mid {
    top: 50%;
    margin-top: -2px;
    opacity: 1;
    transition: all 0.4s;
}
.m_line.line_bot {
    bottom: 16px;
    transition: all 0.4s;
}
.mobile-menu-container.on > a > .m_line {
    background: #fff;
}
.mobile-menu-container.on .m_line.line_top {
    top: 50%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.4s;
}
.mobile-menu-container.on .m_line.line_mid {
    opacity: 0;
    transition: all 0.4s;
}
.mobile-menu-container.on .m_line.line_bot {
    top: 50%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(-45deg);
    transition: all 0.4s;
}

.mobile-menu {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    text-align: center;
    display: block;
    z-index: 777;
    background: rgba(0,0,0,0.9);
    transition: ease-in 0.3s;
}

.mobile-menu .mobile-download {
    text-align: left;
    padding: 20px 0;
    margin: 0;
}

.mobile-download a:first-child {
    border-right: 1px solid lightgray;
    padding: 0 30px;
}

.mobile-menu a {
    color: #fff;
}

.mobile-nav {
    margin-top: 150px;
}

.mobile-nav p {
    padding: 0 0 40px 0;
    margin: 0;
}

.mobile-nav p a{
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-weight: 300;
}

.mobile-nav .mobile-menu-social a {
    margin-right: 15px !important;
    width: 40px;
    height: 40px;
    overflow: hidden;
    font-size: 20px;
    display: inline-block;
    border: 2px solid gray;
    color: gray;
    border-radius: 10px;
    padding: 3px 10px;
}

/* ========================================================================================
Slider -----------------------------------------------------------------
======================================================================================== */

.slider {
    margin-top: 50px;
    position: relative;
}
.slider-block {
    position: relative;
}
.slider-content {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 24%;
    border: 1px solid #fff;
    max-width: 1024px;
    padding: 100px;
    /* display: none; */
    opacity: 0;
    /* transition: all 2s; */
    background: rgba(36, 48, 72, 0.7);
}
.owl-carousel .owl-item .slider-content img {
    width: 38px;
    display: block;
    margin: 25px auto;
}
.slider-content h1 {
    text-align: center;
    font-size: 50px;
    font-weight: 100;
    color: #fff;
    font-family: 'Titillium Web' !important;
    letter-spacing: 12px;
    line-height: 1.5 !important;
    text-shadow: 0px 0px 3px #000;
}

.slider-content h5 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-indent: 0.2px;
    line-height: 1.5 !important;
    color: #fff;
    text-align: center;
    font-family: "Lato";
    text-shadow: 0px 0px 3px #000;
}

.slider-content p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.1px;
    text-indent: 0.1px;
    text-align: center;
    color: #fff;
    text-shadow: 0px 0px 3px #000;
}

.slider .owl-carousel .owl-nav button {
    font-size: 80px !important;
    padding: 0 20px 5px 20px !important;
    color: #FFF !important;
    line-height: 0 !important;
    position: absolute;
    height: 85px;
    width: 65px;
}

.slider .owl-carousel .owl-nav button:focus-visible {
    outline: none;
}

.slider .owl-carousel .owl-nav button {
    position: absolute;
    z-index: 777;
    top: 0;
    position: absolute;
}
.slider .owl-carousel .owl-nav button.owl-prev {
    left: 0;
}
.slider .owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.slider .owl-carousel .owl-nav button.owl-prev i {
    position: absolute;
    z-index: 888;
    top: 0;
    left: 20px;
    transition: all 0.3s;
}

.slider .owl-carousel .owl-nav button.owl-next i {
    position: absolute;
    z-index: 888;
    top: 0;
    right: 20px;
    transition: all 0.3s;
}

.slider .owl-carousel .owl-nav button::before {
    content: '';
    width: 0;
    background: #fff;
    height: 100%;
    position: absolute;
    z-index: 111;
    top: 0;
    transition: all 0.3s;
}


.slider .owl-carousel .owl-nav button.owl-prev::before {

    left: 0;
}

.slider .owl-carousel .owl-nav button.owl-next::before {

    right: 0;
}

.slider .owl-carousel .owl-nav button:hover::before {
    width: 100%;
    /* transform: rotate(180deg); */
}

.slider .owl-carousel .owl-nav button:hover i{
    color: #333;
}

.slider .owl-carousel .owl-nav button.owl-prev:hover i{
    left: 15px;
}

.slider .owl-carousel .owl-nav button.owl-next:hover i{
    right: 15px;
}

.owl-item.active .slider-content {
    animation: fadeIn 4s;
    -webkit-animation: fadeIn 4s;
    -moz-animation: fadeIn 4s;
    -o-animation: fadeIn 4s;
    -ms-animation: fadeIn 4s;
    opacity: 1;

    /* animation-delay: 1s;
    -webkit-animation-delay:1s;
    -moz-animation-delay:1s;
    -o-animation-delay:1s;
    -ms-animation-delay:1s; */
}

.owl-item .slider-content h1, .owl-item .slider-content h5, .owl-item .slider-content p{
    opacity: 0;
}
.owl-item.active .slider-content h1, .owl-item.active .slider-content h5, .owl-item.active .slider-content p{
    animation: fadeInBottom 2s;
    -webkit-animation: fadeInBottom 2s;
    -moz-animation: fadeInBottom 2s;
    -o-animation: fadeInBottom 2s;
    -ms-animation: fadeInBottom 2s;
    opacity: 1;
}

.owl-carousel .animated {
    animation-duration: 1500ms;
    animation-fill-mode: both;
}


/* .owl-carousel .fadeOut {
    animation: fadeOut ease 0.1s;
    -webkit-animation: fadeOut ease 0.1s;
    -moz-animation: fadeOut ease 0.1s;
    -o-animation: fadeOut ease 0.1s;
    -ms-animation: fadeOut ease 0.1s;
} */

.scrollDown {
    display: block;
    width: 38px;
    height: 19px;
    overflow: hidden;
    text-indent: -999px;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    background: url(../images/scr_down.png) no-repeat;
    cursor: pointer;
    z-index: 100;
    animation-name: updown;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    margin-left: auto;
    margin-right: auto;
}

@keyframes updown{
    0% {
      bottom:40px;
    }
    50% {
      opacity:30px;
    }
    100% {
      opacity:30px;
    }
}

@-moz-keyframes updown{
    0% {
      bottom:40px;
    }
    50% {
      opacity:30px;
    }
    100% {
      opacity:30px;
    }
}

@-webkit-keyframes updown{
    0% {
      bottom:40px;
    }
    50% {
      opacity:30px;
    }
    100% {
      opacity:30px;
    }
}

@-o-keyframes updown{
    0% {
      bottom:40px;
    }
    50% {
      opacity:30px;
    }
    100% {
      opacity:30px;
    }
}

@-ms-keyframes updown{
    0% {
      bottom:40px;
    }
    50% {
      opacity:30px;
    }
    100% {
      opacity:30px;
    }
}

@keyframes fadeIn{
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
}

@-moz-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
}

@-o-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
}

@-ms-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to { opacity: 1 }
}

@-moz-keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to { opacity: 1 }
}

@-webkit-keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to { opacity: 1 }
}

@-o-keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to { opacity: 1 }
}

@-ms-keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to { opacity: 1 }
}

.owl-nav {
    position: absolute;
    top: 48%;
    z-index: 888;
    width: 100%;
}

.owl-dots {
    display: none;
}


/* ========================================================================================
About -----------------------------------------------------------------
======================================================================================== */

.about-1 .about-background {
    height: 100%;
    width: auto;
    background: url(../images/photo-02.jpg) no-repeat center 80%;
    background-size: cover;
    overflow: hidden;
}

.about-1 .about-background-2 {
    height: 100%;
    width: auto;
    background: url(../images/photo-03.jpg) no-repeat center 80%;
    background-size: cover;
    overflow: hidden;
}

.about-1 .about-background-3 {
    height: 100%;
    width: auto;
    background: url(../images/photo-01.jpg) no-repeat center 80%;
    background-size: cover;
    overflow: hidden;
}

.about-1 .about-background-4 {
    height: 100%;
    width: auto;
    background: url(../images/photo-04.jpg) no-repeat center 80%;
    background-size: cover;
    overflow: hidden;
}

.show-sm {
    display: none;
}

.about-content {
    padding: 90px 70px;
}

.about-content span {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.3px;
    font-family: "PT Sans";
}

.about-content h2 {
    font-size: 26px;
    color: #000;
    font-weight: 400;
    line-height: 1;
    margin-left: -3px;
    padding-top: 7px;
    padding-bottom: 11px;
    text-transform: uppercase;
    margin: 0;
}

.about-content p {
    letter-spacing: 0px;
    line-height: 1.4;
    font-size: 15px;
    color: #222;
    font-family: "PT Sans";
    font-weight: 500;
}

.about-content p a{
    color: #222;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 0;
    border-bottom: 1px solid #000;
    position: relative;
    z-index: 1;
    font-family: "Lato";
}

.about-content-2 {
    background: #ED8205;
}


.about-content-2 span, .about-content-2 h2, .about-content-2 p, .about-content-2 ul, .about-content-2ul li {
    color: #fff;;
}

/* ========================================================================================
Portfolio -----------------------------------------------------------------
======================================================================================== */

.portfolio {
    background-color: #f2f2f2;
    padding: 110px 160px;
}

.portfolio-inner {
    padding: 110px 230px;
}

.heading {
    font-size: 36px !important;
    font-family: 'Titillium Web','Noto Sans KR',sans-serif !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.sub-heading {
    font-size: 17px;
    font-weight: 300;
    font-family: 'PT Sans';
    text-align: center;
    color: #666;
    margin-bottom: 150px;
    position: relative;
}
.sub-heading::after {
    content: '';
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    width: 1px;
    height: 70px;
    bottom: -90px;
    background: #666;
}

.porto-content {
    position: relative;
    cursor: pointer;
    margin-bottom: 50px;
}

.porto-content h3 {
    position: absolute;
    font-family: 'Titillium Web';
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    left: 30px;
    transition: all 0.5s;
    z-index: 222;
}

.porto-content p {
    position: absolute;
    font-family: 'Titillium Web';
    font-size: 13px;
    color: #e1e1e1;
    font-weight: 400;
    left: 30px;
    transition: all 0.5s;
    z-index: 222;
}

.porto-content.align-bottom h3 {

    bottom: 60px;
}

.porto-content.align-bottom p {

    bottom: 30px;
}

.porto-content.align-top h3 {

    top: 30px;
}

.porto-content.align-top p {

    top: 60px;
}

.porto-content.c-black h3 {

    color: #000;
}

.porto-content.c-black p {

    color: #444;
}

.porto-content .overlays {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffdc00;
    z-index: 123;
    opacity: 0;
    transition: all 0.5s;
}

.porto-content img{
    width: 100%;
    height: auto;
}

.porto-content:hover .overlays{
    opacity: 1;
}

.porto-content:hover h3, .porto-content:hover p{
    color: #000;
}

.porto-content.align-bottom .port_cross {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 10%;
    right: 10%;
    z-index: 222;
}

.porto-content.align-top .port_cross {
    width: 55px;
    height: 55px;
    position: absolute;
    bottom: 10%;
    right: 10%;
    z-index: 222;
}

.port_cross .verti {
    width: 0px;
    height: 100%;
    display: block;
    border-right: 1px solid transparent;
    margin: 0 auto;
    transition: all 0.4s;
}
.port_cross .horz {
    width: 55px;
    height: 0;
    display: block;
    border-top: 1px solid transparent;
    position: relative;
    top: -50%;
    transition: all 0.4s;
}

.porto-content:hover .port_cross div {
    transform: rotate(180deg);
}

.porto-content:hover .port_line, .porto-content:hover .port_cross div {
    border-color: #333 !important;
    transition: all 0.4s;
}


.more-porto a {
    display: block;
    width: 290px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    padding: 20px 28px;
    transition: all 0.4s;
    background: rgba(0,0,0,1) url(../images/bt_arrow.png) no-repeat 87% center;
    border: none;
    margin: 50px auto 0 auto;
}

.more-porto a:hover {
    background: #fff url(../images/bt_arrow_black.png) no-repeat 87% center;
    color: #000;
    transition: all 0.4s;
}



/* ##################################################################### */
/* Footer ------------------------------------------------------------------*/
/* ##################################################################### */


.footer {
    background: #243048;
    padding: 65px 100px;
    margin-bottom: 50px;
}

.footer-logo {
    width: 160px;
    height: auto;
    display: block;
}

.footer p {
    font-size: 14px;
    font-weight: 100;
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    padding-bottom: 6px;
    line-height: 1.5;
    margin: 0;
}

.footer p a {
    color: #fff;
}

.footer .mobile-menu-social a {
    margin-right: 15px !important;
    width: 40px;
    height: 40px;
    overflow: hidden;
    font-size: 20px;
    display: inline-block;
    border: 2px solid gray;
    color: gray;
    border-radius: 10px;
    padding: 3px 10px;
}





/* ========================================================================================
About page -----------------------------------------------------------------
======================================================================================== */

.page-title {
    background-color: rgba(255,255,255,0);
    background-image: url("../images/railbg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    padding: 127px 10px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: none;
    margin-top: 93px;
}

.page-title h1 {
    text-align: center;
    line-height: 1.5;
    font-size: 51px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 5px;
    text-indent: 5px;
    font-family: 'Lato';
}

.page-title p {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    font-family: 'Lato';
    position: relative;
}

.page-title p::after {
    content: '';
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    width: 1px;
    height: 140px;
    top: 70px;
    background: #ccc;
}

.information-section, .overview-section, .we-do-section, .clients-section, .service-area-section, .work-process-section, .benefit-section, .pricetable-section {
    padding: 100px 0;
}

.overview-section, .clients-section, .work-process-section {
    background: #f9f9f9;
}

.section-title {
    padding:0;
    border: 0;
}

.section-title h2 {
    font-size: 36px;
    font-family: 'Titillium Web';
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    color: #333;
}

.section-title p {
    font-size: 18px;
    font-weight: 300;
    font-family: 'Titillium Web';
    text-align: center;
    color: #666;
    text-transform: none;
}

.section-title img {
    width: 25px;
    height: 25px;
    box-sizing: content-box;
    display: block;
    margin: 25px auto;
}


.pro-download {
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #000;
    position: relative;
    padding: 15px 25px 13px 25px;
    transition: all 0.4s;
    line-height: 40px;
    z-index: 222;
}

.pro-download span:first-child {
    font-size: 20px;
    position: relative;
    top: 2px;
    left: -5px;
    z-index: 222;
}

.pro-download span:last-child {
    position: relative;
    z-index: 222;
}

.pro-download:hover {
    color: #fff;
}

.pro-download::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 1px;
    background: transparent;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.4s;
}

.pro-download:hover::before {
    width: 99%;
    background: #000;
    transition: all 0.4s;
}

.about-infos h3, .about-infos h4 {
    font-size: 25px;
    font-weight: 100;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: 'Lato';
    color: #000;
}

.about-infos h4{
    font-weight: 400;
    padding-bottom: 25px;
}

.about-infos p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    padding-bottom: 35px;
    text-align: center;
    font-family: 'Lato';
    color: #000;
}

.about-infos h5 {
    font-size: 22px;
    letter-spacing: 0.2px;
    text-indent: 0.2px;
    line-height: 1.4;
    padding-bottom: 50px;
    font-family: 'Lato';
    text-align: center;
    color: #000;
    font-weight: inherit;
    margin: 0;
}

.circle-container {
    position: relative;
    display: flex;
    width: 990px;
    margin: 0 auto;
}

.info-circles {
    text-align: center;
    margin: 0 auto;
    width: 330px;
    height: 330px;
    border: 1px solid #cdcdcd;
    border-radius: 50%;
    display: table;
    position: relative;
    padding: 0 15px;
}

.info-circles img {
    width: 25px;
    height: auto;
    margin-bottom: 15px;
    margin-top: 70px;
}

.info-circles h3 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-indent: 1.5px;
    font-family: 'Titillium Web';
    color: #000;
    margin-bottom: 5px;
}

.info-circles h5 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-indent: 0.5px;
    line-height: 1.4;
    color: #7f7f7f;
    padding-bottom: 18px;
    font-family: 'Lato';
    margin-bottom: 0;
}

.info-circles p {
    font-size: 15px;
    color: #000;
    font-family: 'Lato';
}

.info-circles.circle-1 {
    left: 10px;
}

.info-circles.circle-3 {
    right: 10px;
}

.table-1st-column {
    width: 200px;
}

.about-table-left {
    font-family: "Lato";
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.about-table-right {
    font-size: 15px;
    font-weight: 400;
    font-family: 'PT Sans', sans-serif;
    line-height: 1.3;
    color: #000;
}

.about-table  {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    border-top: 2px solid #000;
    border-bottom: 1px solid #d3d3d3;
    color: #000;
}

.about-table tr td {
    padding: 10px 15px;
}

.about-table tr th {
    padding: 30px 15px 10px 15px;
}

.we-dos {
    text-align: center;
    padding: 40px 15px;
    border-top: 2px solid #000;
    border-bottom: 1px solid #ccc;
}

.we-dos h2 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-indent: -0.5px;
    line-height: 1.1;
    font-family: 'Titillium Web';
    color: #000;
    padding: 0;
    margin: 0;
}

.we-dos h4 {
    color: #7c7c7c;
    margin: 0;
    padding: 0;
    font-family: 'Titillium Web';
}

.we-dos h4::after {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    margin: 24px auto;
    border-bottom: 1px solid #ccc;
}

.we-dos p {
    font-size: 17px;
    letter-spacing: -0.2px;
    text-indent: -0.2px;
    color: #000;
    font-family: 'Lato';
}

.we-dos h5 {
    padding-top: 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-indent: 3.5px;
    text-transform: uppercase;
    font-family: 'Titillium Web';
    color: #000;
}

.we-dos .service-list {
    padding-top: 18px;
    font-size: 14px;
    line-height: 1.8;
    word-spacing: 5px;
    color: #000;
    font-family: 'Lato';
}

.client-carousel.owl-carousel .owl-item img {
    width: 95%;
    height: auto;
    margin: 10px auto;
    display: block;
}

.client-carousel .owl-dots {
    display: block;
    text-align: center;
    margin: 50px 0 0 0;
}

.client-carousel .owl-nav {
    display: none;
}

.client-carousel .owl-dots .owl-dot {
    background: #999;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    transition: width 0.6s;
}

.client-carousel .owl-dots .owl-dot:focus-visible {
    outline: none;
}

.client-carousel .owl-dots .owl-dot.active {
    background: #333;
    border-radius: 25px;
    width: 40px;
}

.about-request {
    background-color: rgba(255,255,255,0);
    background-image: url("../images/contact_bg_back.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    padding: 110px 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.about-request h2 {
    font-size: 36px;
    font-family: 'Titillium Web';
    font-weight: 400;
    text-transform: uppercase;
}

.about-request p {
    font-size: 18px;
    font-weight: 300;
    font-family: 'PT Sans';
}

.about-request p img {
    margin-top: 25px;
    margin-bottom: 25px;
    width: 25px;
    height: 25px;
    box-sizing: content-box;
}

.about-request input, .about-request textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #999;
    height: 50px;
    background-color: rgba(0,0,0,0.2);
    color: #fff;
    font-size: 13px;
    margin-bottom: 20px;
    transition: all 0.5s;
}

.about-request textarea {
    height: 200px;
    margin: 0;
}

.about-request input:focus, .about-request textarea:focus {
    border-color: #fff !important;
    background-color: rgba(0,0,0,0.5) !important;
    transition: all .5s ease;
}

.about-request input:focus-visible, .about-request textarea:focus-visible {
    outline: none;
}

.about-request p.form-hint {
    text-align: left;
    font-size: 15px;
    color: #ccc;
    margin-top: 5px;
}

.form-hint a {
    color: #ccc;
    padding: 0;
    margin: 0;
    text-decoration: underline;
}

.form-hint a:hover {
    color: #fff;
}

.custom-inquiry {
    display: block;
    width: 290px;
    color: #000;
    box-sizing: border-box;
    text-align: left;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    margin: 50px auto 0 auto;
    border-radius: 0;
    padding: 16px 32px;
    background: #ffdd00 url(../images/bt_arrow_black.png) no-repeat 87% center;
    transition: all 0.4s;
    border: none;
    filter: none;
}

.custom-inquiry:hover {
    background: #fff url(../images/bt_arrow_black.png) no-repeat 87% center;
    color: #000;
    border: none;
    transition: all 0.4s;
}

/* ========================================================================================
Process / Production Guide Page -----------------------------------------------------------------
======================================================================================== */

.service-area-section, .work-process-section, .benefit-section, .pricetable-section{
    padding-left: 130px;
    padding-right: 130px;
    background-color: #f9f9f9;
}

.service-area-cards {
    border: 1px solid #ccc;
    padding: 50px 35px;
    overflow: hidden;
    position: relative;
    line-height: normal;
    margin-bottom: 40px;
    min-height: 450px;
}

.service-area-cards img {
    width: 59px;
    height: 59px;
    padding-bottom: 3px;
}

.service-area-cards h2 {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    padding-bottom: 7px;
    font-family: 'Lato';
}

.service-area-cards h2::after {
    content: "";
    display: block;
    width: 33px;
    height: 1px;
    background: #b2b2b2;
    margin: 12px auto 8px 0;
}

.service-area-cards h3 {
    font-size: 17px;
    font-weight: 400;
    padding-bottom: 13px;
    font-family: 'Lato';
    color: #000;
}

.service-area-cards p {
    display: block;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #999;
    max-width: 330px;
    letter-spacing: -0.5px;
    min-height: 85px;
    font-family: 'Lato';
}

.service-area-qa {
    padding-top: 30px;
}

.service-area-qa a {
    position: relative;
    padding: 6px 0;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: all 0.4s;
}

.service-area-qa a::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: -10px;
    width: 100%;
    height: 0px;
    padding: 0 10px;
    box-sizing: content-box;
    background: #000;
    z-index: -1;
    transition: all 0.4s;
}

.service-area-qa a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #999;
    transition: 0.4s;
    z-index: -1;
}

.service-area-qa a:hover {
    color: #fff;
    transition: all 0.4s;
}

.service-area-qa a:hover::after {
    background: #000;
    transition: 0.4s;
}

.service-area-qa a:hover::before {
    height: 100%;
    transition: all 0.4s;
}


.process_div {
    width: 16.66%;
    margin-right: 0;
    padding: 0 20px;
}

.fusion-layout-column {
    position: relative;
    float: left;
    margin-bottom: 20px;
}

.fusion-column-first {
    clear: left;
}

.pro_icon_div {
    padding-bottom: 18px;
    position: relative;
    z-index: 333;
}

.pro_icon_div_in {
    display: table;
    width: 100px;
    height: 100px;
    border: 1px solid #000;
    border-radius: 50%;
    text-align: center;
    position: relative;
    margin: 0 auto;
    background: #fff;
    z-index: 333;
}

.pro_icon_center {
    display: table-cell;
    vertical-align: middle;
}

.pro_svg.first {
    width: 38px;
    margin-left: 3px;
}

.svg_in {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -2.5px;
    margin-left: -9px;
}


.pro_icon_div::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -7px;
    margin-left: -32px;
    width: 110px;
    height: 1px;
    background: url(../images/dot_line.png) repeat-x;
    z-index: 1;
}

.pro_icon_div_last::after {
    display: none;
}

.process_tit h3 {
    font-size: 16px;
    font-weight: 500 !important;
    color: #000;
    font-family: 'Lato';
    text-align: center;
}

.process_text {
    line-height: 1.3;
    font-weight: 300;
    color: #000;
    font-size: 13px;
    text-align: center;
}

.bf-line {
    display: block;
    width: 27px;
    height: 4px;
    margin: 27px auto;
    background: #e7bf32;
    transform: rotate(-35deg);
    /* position: absolute;
    right: 0;
    left: 0; */
}

.benefit-container h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Titillium Web';
    margin-bottom: 0;
    text-align: center;
    padding-bottom: 10px;
    text-decoration: underline;
    color: #000;
}

.benefit-container h2 {
    font-size: 18px;
    text-align: center;
    color: #333;
    font-family: 'Lato';
    font-weight: 400;
    line-height: 1.5;
}

.benefit-container p {
    font-size: 15px;
    color: #999;
    min-height: 70px;
    margin: 0;
    font-family: 'Lato';
}

.benefit-container {
    border: 1px solid #ccc;
    padding: 50px 35px 35px 35px;
    margin-bottom: 25px;
}

.pricetable-section {
    background-color: #ffe137;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 300;
    font-family: 'Lato';
    color: #000;
    margin-bottom: 0;
    text-align: center;
    text-transform: initial;
}

.pricetable-container {
    background: #fff;
    padding: 50px 0 45px 0;
    margin-bottom: 20px;
}

.pricetable-container h3 {
    font-size: 17px;
    font-family: 'Titillium Web';
    font-weight: 700;
    padding-bottom: 2px;
    text-decoration: underline;
    color: #000;
    margin: 0;
    text-align: center;
}

.pricetable-container h2 {
    font-size: 21px;
    font-weight: 600;
    font-family: 'Titillium Web';
    padding: 0;
    color: #000;
    margin: 0;
    text-align: center;
}

.pricetable-container p {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Titillium Web';
    padding-bottom: 7px;
    color: #000;
    text-align: center;
    margin: 0;
}

.pricetable-container img {
    width: 15px;
    height: 15px;
    display: block;
    margin: 15px auto;
}

.twelve-benefits  img{

    width: 25px;
    height: 25px;
    box-sizing: content-box;
    margin: 65px auto;
    display: block;

}

.twelve-benefits h2{

    font-size: 30px;
    font-weight: 300;
    font-family: 'PT Sans',sans-serif;
    margin: 0;
    padding: 0;
    color: #000;
    text-align: center;

}

.twelve-benefits h3{

    font-size: 19px;
    padding: 5px 0;
    font-family: 'Lato';
    margin: 0;
    color: #000;
    text-align: center;
    font-weight: inherit;
    text-decoration: underline;
    line-height: 25px;
}

.twelve-benefits p{

    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    font-family: 'PT Sans', sans-serif;
    padding-top: 50px;
    padding-bottom: 55px;
    color: #000;
    text-align: center;

}

/* ========================================================================================
Contact -----------------------------------------------------------------
======================================================================================== */

.select-requirements {
    padding: 30px 15px 25px 15px;
    border-top: 2px solid #000;
    border-bottom: 1px solid #d3d3d3;
}

.contact-section h4 {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    padding-bottom: 26px;
    line-height: 28px;
    font-family: 'Lato';
}

.contact-info input, .contact-info select, .contact-info textarea{
    border: 2px solid #ccc;
    margin-bottom: 30px;
    color: #000;
    font-weight: 600;
    padding: 12px 15px;
    /* height: 46px; */
    border-radius: 0;
    background-color: #ffffff;
    font-size: 13px;
    width: 100%;
    font-family: Arial;
}

.contact-info input:focus-within, .contact-info select:focus-within, .contact-info textarea:focus-within{
    outline: none;
}

.contact-info input::placeholder, .contact-info select::placeholder, .contact-info textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ccc;
    opacity: 1; /* Firefox */
}

.contact-info input:-ms-input-placeholder, .contact-info select:-ms-input-placeholder, .contact-info textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ccc;
}

.contact-info input::-ms-input-placeholder, .contact-info select::-ms-input-placeholder, .contact-info textarea::-ms-input-placeholder { /* Microsoft Edge */
    color: #ccc;
}

.contact-info {
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 10px;
}

.contact-submit {
    width: 320px;
    margin: 23px auto 0 auto;
    position: relative;
    text-align: left;
    padding: 20px 15px 0px 15px;
    visibility: visible;
    height: 168px;
    transition: all 0.4s;
    overflow: visible;
    font-size: 16px;
    font-family: 'Lato';
}

.contact-submit input {
    width: 100%;
    font-size: 20px;
    font-weight: 200;
    color: #fff;
    line-height: 1;
    background: #222 url(../images/bt_arrow.png) no-repeat 87% center;
    padding: 16px 32px;
    text-align: left;
    border: 1px solid #222;
    transition: all 0.4s;
    filter: none;
    font-family: 'Lato';
    text-transform: uppercase;
}

.contact-submit input:hover, .contact-submit input:focus {
    background: #fff url(../images/bt_arrow_black.png) no-repeat 87% center;
    color: #000;
    border: 1px solid #222;
}

.input-alert {
    padding: 0;
    color: #ecbd00;
    font-size: 13px;
}


/* Home Login */

.home-login {
    background: #f9f9f9;
}

.login-main{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}
.login-left{
    width: 50%;
    height: 100vh;
    position: relative;
    background-image: url('../images/login-back.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.login-desc{
    width: 100%;
    padding: 0px 100px;
}
.login-desc h3{
    width: 100%;
    font-family: 'Poppins-Medium';
    font-size: 30px;
    color: #ffffff;
}
.login-desc p{
    width: 100%;
    font-family: 'Poppins-Regular';
    font-size:18px;
    color: #ffffff;
    margin-top: 25px;
}
.l-logo{
    width: auto;
    position: absolute;
    left: 100px;
    top: 150px;
}
.l-logo img{
    width: 150px;
}


.login-right{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.login-right-desc-main{
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
}
.title{
    width: 100%;
    text-align: center;
}
.title h2{
    color: #67666e;
    font-family: 'Poppins-Medium';
    font-size: 32px;
}
.title h6{
    color: #67666e;
    font-family: 'Poppins-Regular';
    font-size:14px;
    margin-top: 15px;
}
.login-form-main{
    width: 100%;
    margin-top: 50px;
}
.login-form{
    width: 100%;
    margin-bottom: 18px;
}
.l-inp{
    width: 100%;
    border:0px;
    padding: 0px 20px;
    height: 50px;
    line-height: 50px;
    color: #67666e;
    font-family: 'Poppins-Regular';
    font-size:14px;
    background-color: #f6f6f6;
    border-radius: 4px !important;
    -webkit-border-radius: 4px !important;
}
.login-check{
    margin-top:10px;
    margin-bottom:32px;
}
.custom-check-label {
    display: block;
    position: relative;
    padding-left: 30px;
    margin: 0px;
    color: #67666e;
    font-family: 'Poppins-Regular';
    font-size: 14px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.custom-check-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f6f6f6;
    border-radius: 4px;
}
.custom-check-label:hover input~.checkmark {
    background-color: #e5e5e5;
}
.custom-check-label input:checked~.checkmark {
    background-color: #5d78ff;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.custom-check-label input:checked~.checkmark:after {
    display: block;
}
.custom-check-label .checkmark:after {
    left: 8px;
    top:4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.for-pass{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.for-pass a{
    color: #67666e;
    font-family: 'Poppins-Regular';
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
}
.submit-btn{
    border:0px;
    width: auto;
    padding: 0px 40px;
    height: 50px;
    line-height: 50px;
    border-radius: 4px !important;
    -webkit-border-radius: 4px !important;
    color: #ffffff;
    font-family: 'Poppins-Medium';
    font-size: 14px;
    background-color: #5d78ff;
    transition: all .5s;
    -webkit-transition: all .5s;
}
.submit-btn:hover{
    background-color: #0343d9;
}






/* Others */

.clearfix {
    clear: both;
}

.text-black {
    color: #000 !important;
}





/* ######################################## Responsive ##############################################*/


/* @media (max-width: 1399px) {
    .about-1 .about-background, .about-1 .about-background-2 {
        height: 475px;
    }
} */

@media (max-width: 1299px) {
    .slider-content {
        max-width: 800px;
        padding: 50px;
    }
    .portfolio-inner {
        padding: 110px 160px;
    }
    .service-area-section, .work-process-section, .benefit-section, .pricetable-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 1199px) {
    /* .about-1 .about-background, .about-1 .about-background-2 {
        height: 496px;
    } */
    .hidden-1199 {
        display: none;
    }
    .right-menu a.hover-style span:first-child {
        left: 0;
    }
    .portfolio {
        padding: 110px 60px;
    }
}

@media (max-width: 1099px) {
    .info-circles {
        width: 235px;
        height: 235px;
    }

    .circle-container {
        width: 725px;
    }

    .info-circles h3 {
        font-size: 17px;
    }

    .info-circles img {
        width: 20px;
        margin-top: 35px;
    }

    .info-circles h5 {
        font-size: 11px;
    }

    .info-circles p {
        font-size: 12px;
    }


}

@media (max-width: 991px) {

    .header-form {
        right: 80px;
    }

    body {
        padding: 0;
    }

    .header {
        padding: 15px;
        margin: 0;
    }

    .header.on {
        padding: 10px 15px;
    }

    .mobile-menu-container {
        display: block;
    }

    .hidden-md {
        display: none;
    }

    .right-menu a:nth-child(2) {
        margin-right: 80px;
    }

    .slider-content {
        max-width: 600px;
        padding: 20px;
    }

    .slider-content h1 {
        font-size: 35px;
    }

    .slider-content h5 {
        font-size: 15px;
    }

    .slider-content p {
        font-size: 13px;
    }

    .about-content {
        padding: 80px 60px;
    }

    .portfolio {
        padding: 110px 20px;
    }

    .footer {
        padding: 50px 20px;
    }

    .footer-logo {
        margin-bottom: 30px;
    }
    .footer .mobile-menu-social {
        margin-top: 30px;
    }

    .login-left{
        display: none;
    }

    .login-right{
        width: 100%;
    }
    .login-main {
        height: 600px;
        padding: 0 15px;
    }
}

@media (max-width: 900px) {
    .about-content {
        padding-bottom: 58px;
    }
}

@media (max-width: 800px) {
    .about-content {
        padding-bottom: 37px;
    }
}

@media (max-width: 767px) {
    .about-content {
        padding-bottom: 58px;
    }

    .show-sm {
        display: block;
    }

    .hide-sm {
        display: none;
    }

    .footer {
        padding: 60px 20px;
        margin-bottom: 0;
    }

    .slider-block {
        height: 600px;
    }

    .owl-carousel .owl-item img {
        display: block;
        width: auto;
        height: 100%;
    }

    .slider-content {
        max-width: 500px;
    }

    .circle-container {
        display: block;
        width: 100%;
    }

    .info-circles.circle-1 {
        top: 10px;
        left: 0;
    }

    .info-circles.circle-3 {
        bottom: 10px;
        right: 0;
    }

    .info-circles {
        display: block;
    }

    .work-process-division {
        overflow: scroll;
    }
    .work-process-container {
        width: 150%;
    }
    .about-1 .about-background, .about-1 .about-background-2, .about-1 .about-background-3, .about-1 .about-background-4 {
        height: 400px;
    }

}

@media (max-width: 680px) {
    .header-form {
        display: none;
    }
    .header-form.header-form-mobile {
        display: block;
        text-align: center;
        position: relative;
        left: 5px;
        margin: 0 auto;
        width: 320px;
    }
}

@media (max-width: 500px) {
    .slider-content {
        max-width: 300px;
    }
    .slider-content h1 {
        font-size: 20px;
    }
    .hidden-500 {
        display: none;
    }

    .slider .owl-carousel .owl-nav button {
        font-size: 50px !important;
        height: 55px;
        width: 40px;
    }

    .slider .owl-carousel .owl-nav button.owl-prev {
        left: -10px;
    }

    .slider .owl-carousel .owl-nav button.owl-next {
        right: -10px;
    }

    .work-process-container {
        width: 300%;
    }
}

@media (max-width: 450px) {
    .client-carousel.owl-carousel .owl-item img {
        width: 100%;
    }
}

.login-main{
    background: #f9f9f9;
}

.page-title{
    background-image: url("../images/railbg.jpg");
}
.page-tilte-headings{
    text-shadow: 0px 0px 3px #000;
}
