@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    margin: 0;
    background-color: #000;
    color: #eee;
    font-family: "Candara", Candara;
    font-size: 12px;
}
a{
    text-decoration: none;
}
header{
    width: 1140px;
    max-width: 80%;
    margin: auto;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}
header a{
    color: #eee;
    margin-right: 40px;
}
/* carousel */
.carousel{
    height: 100vh;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}
.carousel .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.carousel .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel .list .item .content{
    position: absolute;
    top: 3%;
    width: 1140px;
    max-width: 80%;
    left: 45%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .author{
    font-weight: bold;
    letter-spacing: 10px;
}
.carousel .list .item .title,
.carousel .list .item .topic{
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
}
.carousel .list .item .topic{
    color: #28abe3;
}
.carousel .list .item .buttons{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.carousel .list .item .buttons button{
    border: none;
    background-color: #eee;
    font-family: "Candara", Candara;
    font-weight: 500;
}
.carousel .list .item .buttons button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}

/* Media queries for responsiveness */

.prod-features {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.prod-features li {
  width: 50%; /* Display two items per row on mobile */
  box-sizing: border-box; /* Ensure padding and borders are included in the width */
  padding: 10px;
  font-size: medium;
}

@media only screen and (min-width: 768px) {
  .prod-features li {
      width: calc(50% - 20px); /* Adjust for spacing between items */
      margin-right: 20px; /* Add some horizontal spacing between items */
      margin-bottom: 20px; /* Add some vertical spacing between rows */
  }
}

@media only screen and (max-width: 768px) {
.col-lg-8,
.col-lg-4 {
  width: 100%; 
  margin-bottom: 20px; 
}


.prod-features li i {
margin-right: 5px;
}

.gems-btn,
.watch-demo-btn {
display: block;
margin: 10px auto; 
}
.hope-btn,.phase-btn,.prism-btn.boardhub-btn .synergy-btn ,
.watch-demo-btn {
display: block;
margin: 10px auto; 
}

.text-center {
  text-align: center !important; 
}
}

@media only screen and (max-width: 600px) {
  .industry-page-title-area {
      height: auto; /* Change height to auto for mobile devices */
      background-position: center; /* Adjust background position for mobile devices */
      background-size: cover; 
      padding-bottom: 18px;
  padding-top: 18px;
  }

  .industry-page-title-area.government {
      background-image: url(../../images/industry/government.png);
  }
}

/* thumbail */
.thumbnail{
    position: absolute;
    bottom: 100px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.thumbnail .item .content{
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.thumbnail .item .content .title{
    font-weight: 500;
}
.thumbnail .item .content .description{
    font-weight: 300;
}
/* arrows */
.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.arrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: "Candara", Candara;
    font-weight: bold;
    transition: .5s;
}
.arrows button:hover{
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.carousel .list .item:nth-child(1) .content .title{
    animation-delay: 1.2s!important;
}
.carousel .list .item:nth-child(1) .content .topic{
    animation-delay: 1.4s!important;
}
.carousel .list .item:nth-child(1) .content .des{
    max-width: 80%;
    animation-delay: 1.6s!important;
}
.carousel .list .item:nth-child(1) .content .buttons{
    animation-delay: 1.8s!important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
    z-index: 100;
}
@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}
.carousel.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #f1683a;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time{
    animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime{
    from{ width: 100%}
    to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button{
    pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
@media screen and (max-width: 678px) {
    .carousel .list .item .content{
        padding-right: 0;
    }
    .carousel .list .item .content .title{
        font-size: 30px;
    }
}
.us_section {
    background-color: #0080c0;
    color: #ffffff;
  }
  
  .us_section .us_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .us_section .us_container .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin: 25px 10px 0 10px;
  }
  
  .us_section .us_container .box .img-box {
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .us_section .us_container .box .img-box img {
    max-width: 100%;
  }
  
  .us_section .us_container .box .detail-box h5 {
    font-weight: bold;
  }
  body {
    font-family: "Candara", Candara;
    color: #040000;
    background-color: #ffffff;
  }
  
  .layout_padding {
    padding: 90px 0;
  }
  
  .layout_padding2 {
    padding: 45px 0;
  }
  
  .layout_padding2-top {
    padding-top: 45px;
  }
  
  .layout_padding2-bottom {
    padding-bottom: 45px;
  }
  
  .layout_padding-top {
    padding-top: 90px;
  }
  
  .layout_padding-bottom {
    padding-bottom: 90px;
  }
  
  .heading_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    margin-bottom: 45px;
  }
  
  .heading_container h2 {
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-bottom: 10px;
    margin: 0;
  }
  
  .heading_container h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 7px;
    border-radius: 10px;
    background-color: #f8bc1a;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  
  /*header section*/
  .hero_area {
    height: 100vh;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0))), url(../images/hero-bg.jpg);
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(../images/hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
  }
  
  .sub_page .hero_area {
    height: auto;
  }
  
  .sub_page .slider_section {
    background: none;
  }
  
  .sub_page.about_page .slider_section {
    background-color: #f8f8f8;
  }
  
  .header_section {
    background-color: #f4f3f3;
  }
  
  .header_section .nav_container {
    margin: 0 auto;
  }
  
  .custom_nav-container .contact_nav {
    width: 95%;
    margin-right: auto;
  }
  
  .custom_nav-container .contact_nav .nav-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  
  .custom_nav-container .contact_nav .nav-item .nav-link {
    padding: 0px 25px;
    color: #000000;
    text-align: center;
  }
  
  .custom_nav-container .contact_nav .nav-item .nav-link img {
    width: 22px;
    margin-right: 15px;
  }
  
  .custom_nav2 {
    padding: 0 45px;
  }
  
  .custom_nav2 .custom_nav-container {
    padding: 5px 0;
    background-color: #f8bc1a;
    -webkit-clip-path: polygon(0 0, 100% 0%, 95% 100%, 5% 100%);
            clip-path: polygon(0 0, 100% 0%, 95% 100%, 5% 100%);
  }
  
  .custom_nav2 .navbar-expand-lg .navbar-nav .nav-item .nav-link {
    padding: 10px 30px;
    color: #070101;
    text-align: center;
    position: relative;
  }
  
  .custom_nav2 .navbar-expand-lg .navbar-nav .nav-item.active .nav-link, .custom_nav2 .navbar-expand-lg .navbar-nav .nav-item:hover .nav-link {
    color: #ffffff;
  }
  
  .custom_nav2 #navbarSupportedContent {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  a,
  a:hover,
  a:focus {
    text-decoration: none;
  }
  
  a:hover,
  a:focus {
    color: initial;
  }
  
  .btn,
  .btn:focus {
    outline: none !important;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  .custom_nav-container .nav_search-btn {
    background-image: url(../images/search-icon-black.png);
    background-size: 18px;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    margin: 0 40px 0 15px;
    background-position: center;
  }
  
  .custom_nav-container .nav_search-btn:hover {
    background-image: url(../images/search-icon.png);
  }
  
  .navbar-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .navbar-brand img {
    width: 35px;
    margin-right: 5px;
  }
  
  .navbar-brand span {
    font-size: 20px;
    font-weight: bold;
    color: #0c0900;
    text-transform: uppercase;
  }
  
  .custom_nav-container {
    z-index: 99999;
    padding: 15px 0;
  }
  
  .custom_nav-container .navbar-toggler {
    outline: none;
  }
  
  .custom_nav-container .navbar-toggler .navbar-toggler-icon {
    background-image: url(../images/menu.png);
    background-size: 42px;
  }
  
  .custom_nav-container .nav_search-btn {
    margin: auto;
  }
  
  /*end header section*/
  /* slider section */
  .slider_section {
    height: calc(100% - 80px);
    background-image: url(../images/slider-bg.jpg);
    background-size: cover;
  }
  
  .slider_section .slider_container {
    height: calc(100% - 60px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .slider_section #carouselExampleIndicators {
    width: 100%;
  }
  
  .slider_section .detail-box h2 {
    color: #f8bc1a;
  }
  
  .slider_section .detail-box h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #f4f3f3;
    text-transform: uppercase;
  }
  
  .slider_section .detail-box p {
    color: #ffffff;
  }
  
  .slider_section .detail-box .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 35px;
    margin: 35px -5px 0 -5px;
  }
  
  .slider_section .detail-box .btn-box a {
    width: 165px;
    text-align: center;
    margin: 5px;
  }
  
  .slider_section .detail-box .btn-box .btn-1 {
    display: inline-block;
    padding: 7px 0;
    background-color: #f8bc1a;
    border: 1px solid #f8bc1a;
    color: #ffffff;
  }
  
  .slider_section .detail-box .btn-box .btn-1:hover {
    background-color: transparent;
    color: #f8bc1a;
  }
  
  .slider_section .detail-box .btn-box .btn-2 {
    display: inline-block;
    padding: 7px 0;
    background-color: #f4f3f3;
    border: 1px solid #f4f3f3;
    color: #020000;
  }
  
  .slider_section .detail-box .btn-box .btn-2:hover {
    background-color: transparent;
    color: #f4f3f3;
  }
  
  .slider_section .carousel-indicators {
    bottom: 50%;
    margin: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    left: 25px;
  }
  
  .slider_section .carousel-indicators li {
    width: 14px;
    height: 14px;
    opacity: 1;
    background-color: transparent;
    border: 2px solid #f8bc1a;
    border-radius: 100%;
  }
  
  .slider_section .carousel-indicators li.active {
    width: 18px;
    height: 18px;
    border: 3px solid #f8bc1a;
  }
  
  .slider_section .number_box {
    width: 50px;
    position: absolute;
    left: 25px;
    top: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #f8bc1a;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  
  .slider_section .number_box hr {
    border: none;
    width: 1px;
    height: 200px;
    background-color: #f8bc1a;
    margin: 2rem 0;
  }
  
  /* end slider section */
  .about_section {
    background-color: #f8f8f8;
  }
  
  .about_section .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    width: 85%;
    margin: 0 auto;
  }
  
  .about_section .box .img-box img {
    max-width: 100%;
  }
  
  .about_section .box .detail-box {
    margin-top: 25px;
  }
  
  .about_section .box .detail-box a {
    display: inline-block;
    padding: 10px 40px;
    background-color: #151615;
    border: 1px solid #151615;
    color: #ffffff;
    margin-top: 15px;
  }
  
  .about_section .box .detail-box a:hover {
    background-color: transparent;
    color: #151615;
  }
  
  .service_section .service_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  
  .service_section .service_container .box {
    position: relative;
    color: #ffffff;
    margin: 1%;
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
  
  .service_section .service_container .box h6 {
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .service_section .service_container .box img {
    width: 100%;
  }
  
  .service_section .service_container .box .visible_heading {
    position: absolute;
    bottom: 15px;
    left: 15px;
  }
  
  .service_section .service_container .box .link_box {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  
  .service_section .service_container .box .link_box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background-color: #f8bc1a;
  }
  
  .service_section .service_container .box .link_box a img {
    width: 20px;
  }
  
  .service_section .service_container .box .link_box a:hover {
    opacity: .9;
  }
  
  .service_section .service_container .box .link_box h6 {
    margin-top: 15px;
  }
  
  .service_section .service_container .box::before {
    display: none;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(67, 17, 125, 0.9);
  }
  
  .service_section .service_container .box:hover .link_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .service_section .service_container .box:hover::before {
    display: block;
  }
  
  .service_section .service_container .box:hover .visible_heading {
    display: none;
  }
  
  .us_section {
    background-color: #0080c0;
    color: #ffffff;
  }
  
  .us_section .us_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .us_section .us_container .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin: 25px 10px 0 10px;
  }
  
  .us_section .us_container .box .img-box {
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .us_section .us_container .box .img-box img {
    max-width: 100%;
  }
  
  .us_section .us_container .box .detail-box h5 {
    font-weight: bold;
  }
  
  .client_section .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    width: 600px;
    margin: 0 auto;
    margin-bottom: 45px;
  }
  
  .client_section .box .img-box {
    width: 200px;
  }
  
  .client_section .box .img-box img {
    width: 100%;
  }
  
  .client_section .box .detail-box {
    margin-top: 25px;
  }
  
  .client_section .box .detail-box h5 {
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
  }
  
  .client_section .box .detail-box h5::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 40px;
    height: 4px;
    border-radius: 10px;
    background-color: #f8bc1a;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  
  .client_section .carousel-indicators {
    margin: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    bottom: 0;
  }
  
  .client_section .carousel-indicators li {
    opacity: 1;
    background-color: #000000;
    width: 40px;
    height: 10px;
    border-radius: 10px;
    background-clip: unset;
    border: none;
  }
  
  .client_section .carousel-indicators li.active {
    background-color: #f8bc1a;
  }
  
  .result_section {
    color: #ffffff;
    background-color: #3c0e78;
  }
  
  .result_section .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .result_section .img-box img {
    width: 100%;
  }
  
  .result_section .detail-box {
    padding-left: 15px;
  }
  
  .result_section .detail-box h2 {
    font-weight: bold;
    font-size: 2.5rem;
    position: relative;
    padding-top: 10px;
  }
  
  .result_section .detail-box h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 7px;
    border-radius: 10px;
    background-color: #f8bc1a;
  }
  
  .result_section .detail-box p {
    margin-top: 15px;
  }
  
  .result_section .detail-box a {
    display: inline-block;
    padding: 10px 45px;
    background-color: #f8bc1a;
    border: 1px solid #f8bc1a;
    color: #ffffff;
    margin-top: 25px;
  }
  
  .result_section .detail-box a:hover {
    background-color: transparent;
    color: #f8bc1a;
  }
  
  /* contact section */
  .contact_section {
    position: relative;
  }
  
  .contact_section .bg-img {
    position: absolute;
    width: 100px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  
  .contact_section .bg-img img {
    width: 100%;
  }
  
  .contact_section .heading_container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .contact_section .heading_container h2 {
    text-transform: unset;
  }
  
  .contact_section input::-webkit-input-placeholder {
    color: #000;
  }
  
  .contact_section input:-ms-input-placeholder {
    color: #000;
  }
  
  .contact_section input::-ms-input-placeholder {
    color: #000;
  }
  
  .contact_section input::placeholder {
    color: #000;
  }
  
  .contact_section input {
    border: none;
    outline: none;
    border-bottom: 0.8px solid #ac9784;
    width: 90%;
    margin: 10px 0;
  }
  
  .contact_section input::-webkit-input-placeholder {
    color: #ac9784;
  }
  
  .contact_section input:-ms-input-placeholder {
    color: #ac9784;
  }
  
  .contact_section input::-ms-input-placeholder {
    color: #ac9784;
  }
  
  .contact_section input::placeholder {
    color: #ac9784;
  }
  
  .contact_form-container {
    padding: 15px 0 15px 0;
  }
  
  .contact_form-container button {
    border: none;
    background-color: #fd9e2e;
    color: #fff;
    padding: 14px 55px;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  .map_container {
    height: 350px;
  }
  
  .map_container .map-responsive {
    height: 100%;
  }
  
  /* contact section */
  /* info section */
  .info_section {
    background-color: #161616;
    color: #ffffff;
  }
  
  .info_section h6 {
    font-weight: bold;
  }
  
  .info_section .info_form {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 45px;
  }
  
  .info_section .info_form h4 {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .info_section .info_form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .info_section .info_form form input {
    background-color: #ffffff;
    border: none;
    width: calc(100% - 139px);
    outline: none;
    color: #000000;
    height: 42.4px;
    padding-left: 15px;
  }
  
  .info_section .info_form form input ::-webkit-input-placeholder {
    color: #ffffff;
    opacity: 0.2;
  }
  
  .info_section .info_form form input :-ms-input-placeholder {
    color: #ffffff;
    opacity: 0.2;
  }
  
  .info_section .info_form form input ::-ms-input-placeholder {
    color: #ffffff;
    opacity: 0.2;
  }
  
  .info_section .info_form form input ::placeholder {
    color: #ffffff;
    opacity: 0.2;
  }
  
  .info_section .info_form form button {
    background-color: #f8bc1a;
    display: inline-block;
    padding: 9px 30px;
    background-color: #f8bc1a;
    border: 1px solid #f8bc1a;
    color: #000000;
    font-size: 15px;
    text-transform: uppercase;
  }
  
  .info_section .info_form form button:hover {
    background-color: transparent;
    color: #f8bc1a;
  }
  
  .info_section h6 {
    margin-bottom: 12px;
    font-size: 18px;
  }
  
  .info_section p {
    color: #cbc9c9;
  }
  
  .info_section ul {
    padding: 0;
  }
  
  .info_section ul li {
    list-style-type: none;
    margin: 3px 0;
  }
  
  .info_section ul li a {
    color: #cbc9c9;
  }
  
  .info_section ul li a:hover {
    color: #ffffff;
  }
  
  .info_section .info_link-box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 15px 0;
  }
  
  .info_section .info_link-box a:hover {
    color: #ffffff;
  }
  
  .info_section .info_link-box a img {
    margin-right: 15px;
  }
  
  .info_section .info_link-box a span {
    color: #cbc9c9;
  }
  
  .info_section .info_link-box a:hover span {
    color: #ffffff;
  }
  
  .info_section .info_social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 45px auto 15px auto;
  }
  
  .info_section .info_social img {
    width: 35px;
    margin-right: 8px;
  }
  
  /* end info section */
  /* footer section*/
  .footer_section {
    background-color: #161616;
    padding: 20px 0;
  }
  
  .footer_section p {
    margin: 0;
    text-align: center;
    color: #ffffff;
  }
  
  .footer_section a {
    color: #ffffff;
  }
  
  /* end footer section*/
  /*# sourceMappingURL=style.css.map */