html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    color: #0c0c0c;
    background-color: #f8f8f8;
    overflow-x: hidden;
}

.separate {
    background-color: red;
    height: .1rem;
    width: 14rem;
    margin-top: .7rem;
}

/* read more modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* Enable scroll if content overflows */
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fff;
    color: black;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 1000px;
    max-height: 70%;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 30% auto;
        width: 90%;
        max-width: none;
    }

    .foot_logo {
        width: 25% !important;
    }
}

@keyframes modalopen {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}


.close_about {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close_host {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close_cour {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

/* css for the read more button of the message container
 */
button.dark {
    --background: #2f3545;
    --shadow: 0 2px 8px -1px rgba(21, 25, 36, .32);
    --shadow-hover: 0 4px 20px -2px rgba(21, 25, 36, .5);
}



button.fast {
    --duration: 0.32s;
}

button {
    --background: #e3e3e300;
    --text: #EB004E;
    --font-size: 16px;
    --duration: 0.44s;
    /* --move-hover: -4px; */
    --shadow: 0 2px 8px -1px rgba(39, 94, 254, .32);
    --shadow-hover: 0 4px 20px -2px rgba(39, 94, 254, .5);
    --font-shadow: var(--font-size);
    padding: 6px 10px;
    font-family: 'Roboto';
    font-weight: 500;
    line-height: var(--font-size);
    border-radius: 24px;
    /* display: block; */
    outline: none;
    appearance: none;
    border: 1px solid #EB004E;
    text-decoration: none;
    font-size: var(--font-size);
    /* letter-spacing: 0.5px; */
    background: var(--background);
    color: var(--text);
    box-shadow: var(--shadow);
    transform: translateY(var(--y)) translateZ(0);
    transition: transform var(--duration) ease, box-shadow var(--duration) ease;
    cursor: pointer;
}

button div {
    display: flex;
    overflow: hidden;
    text-shadow: 0 var(--font-shadow) 0 var(--text);
}

button div span {
    display: block;
    backface-visibility: hidden;
    font-style: normal;
    transition: transform var(--duration) ease;
    transform: translateY(var(--m)) translateZ(0);
}

button div span:nth-child(1) {
    transition-delay: 0.05s;
}

button div span:nth-child(2) {
    transition-delay: 0.1s;
}

button div span:nth-child(3) {
    transition-delay: 0.15s;
}

button div span:nth-child(4) {
    transition-delay: 0.2s;
}

button div span:nth-child(5) {
    transition-delay: 0.25s;
}

button div span:nth-child(6) {
    transition-delay: 0.3s;
}

button div span:nth-child(7) {
    transition-delay: 0.35s;
}

button div span:nth-child(8) {
    transition-delay: 0.4s;
}

button div span:nth-child(9) {
    transition-delay: 0.45s;
}

button div span:nth-child(10) {
    transition-delay: 0.5s;
}

button div span:nth-child(11) {
    transition-delay: 0.55s;
}

button:hover {
    --y: var(--move-hover);
    --shadow: var(--shadow-hover);
}

button:hover span {
    --m: calc(var(--font-size) * -1);
}

.layout_padding {
    padding: 90px 0;
}

.layout_padding2 {
    padding: 75px 0;
}

.layout_padding2-top {
    padding-top: 75px;
}

.layout_padding2-bottom {
    padding-bottom: 75px;
}

.layout_padding-top {
    padding-top: 90px;
}

.layout_padding-bottom {
    padding-bottom: 90px;
}

/* end for read more button of the message box */

.heading_container {
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.heading_container h2 {
    position: relative;
    font-weight: bold;
    margin: 0;
}

.heading_container.heading_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.heading_container p {
    margin-top: 50px;
    margin-bottom: 0;
}

.container_border_style {
    position: relative;
    padding: 20px;
}

.container_border_style::before,
.container_border_style::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 3px;
    height: 90px;
    background-color: #03a7d3;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.container_border_style::before {
    left: 0;
}

.container_border_style::after {
    right: 0;
}

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;
}


.server_section .detail-box button {
    display: inline-block;
    padding: 10px 45px;
    background-color: #ff4646;
    color: #ffffff;
    border-radius: 5px;
    border: 1px solid #ff4646;
    -webkit-transition: all .3s;
    transition: all .3s;

}

/*header section*/
.hero_area {
    position: relative;
    background-color: #020230;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.sub_page .hero_area {
    min-height: auto;
}

.header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
}

/* .navbar-brand span {
    font-weight: bold;
    color: #ffffff;
    font-size: 24px;
    text-transform: uppercase;
}

.custom_nav-container {
    padding: 10px 0;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 3px 15px;
    margin: 10px 15px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

.custom_nav-container .nav_search-btn {
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    color: #ffffff;
    margin: 0 20px;
}

.custom_nav-container .navbar-toggler {
    outline: none;
}

.custom_nav-container .navbar-toggler {
    padding: 0;
    width: 37px;
    height: 42px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
    display: block;
    width: 35px;
    height: 4px;
    background-color: #ffffff;
    margin: 7px 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    border-radius: 5px;
    transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    top: -10px;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
    top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 0;
    margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
    display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: 0;
    margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
    -webkit-transform: none;
    transform: none;
} */

.quote_btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.quote_btn-container a {
    color: #ffffff;
    text-transform: uppercase;
}

.quote_btn-container a span {
    margin-left: 5px;
}

/*end header section*/
/* slider section */
.slider_section {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 45px;
    padding-bottom: 90px;
}

.slider_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slider_section #customCarousel1 {
    width: 100%;
    position: unset;
}

.slider_section .detail-box {
    color: #ffffff;
}

.slider_section .detail-box h1 {
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 2rem;
}

.slider_section .detail-box h1 span {
    font-size: 3rem;
    color: #03a7d3;
}

.slider_section .detail-box .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -5px;
}

.slider_section .detail-box a {
    margin: 5px;
    width: 195px;
    text-align: center;
}

.slider_section .detail-box .btn-1 {
    display: inline-block;
    padding: 10px 15px;
    background-color: #03a7d3;
    color: #ffffff;
    border-radius: 5px;
    border: 1px solid #03a7d3;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.slider_section .detail-box .btn-1:hover {
    background-color: transparent;
    color: #03a7d3;
}

.slider_section .detail-box .btn-2 {
    display: inline-block;
    padding: 10px 15px;
    background-color: #ff4646;
    color: #ffffff;
    border-radius: 5px;
    border: 1px solid #ff4646;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.slider_section .detail-box .btn-2:hover {
    background-color: transparent;
    color: #ff4646;
}

.slider_section .img-box img {
    width: 100%;
}

.slider_section .carousel_btn-box {
    position: absolute;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    z-index: 3;
    font-size: 22px;
}

.slider_section .carousel_btn-box .carousel-control-prev,
.slider_section .carousel_btn-box .carousel-control-next {
    position: unset;
    width: 50px;
    height: 50px;
    background-color: #03a7d3;
    opacity: 1;
    font-size: 28px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.slider_section .carousel_btn-box .carousel-control-prev:hover,
.slider_section .carousel_btn-box .carousel-control-next:hover {
    background-color: #ffffff;
    color: #000000;
}

.about_section .container {
    margin-top: .1rem !important;
}

.about_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about_section .img-box img {
    border-radius: 15px 50px 30px 5px;
    transition: transform .2s;
    max-width: 100%;
}

.about_section .img-box img:hover {
    transform: scale(1.03);
}

.about_section .detail-box p {
    color: #525252;
    font-size: 1.1rem;
    margin-top: 5px;
}

.about_section .detail-box button {
    display: inline-block;
    padding: 10px 45px;
    background-color: #ff4646;
    color: #ffffff;
    border-radius: 5px;
    border: 1px solid #ff4646;
    -webkit-transition: all .3s;
    transition: all .3s;
    /* margin-top: 15px; */
}

.about_section .detail-box button:hover {
    background-color: transparent;
    color: #ff4646;
}

.service_section {
    position: relative;
}

.service_section .box {
    margin-top: 45px;
    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;
    padding: 25px;
    background-color: #fafafa;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

.service_section .box .img-box {
    width: 75px;
    height: 75px;
    background-color: #03a7d3;
    border-radius: 100%;
    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;
    -webkit-transition: all .2s;
    transition: all .2s;
    padding: 10px;
}

.service_section .box .img-box img {
    width: 100%;
    max-width: 45px;
    max-height: 45px;
}

.service_section .box .detail-box {
    margin-top: 15px;
}

.service_section .box .detail-box h4 {
    font-weight: bold;
    font-size: 22px;
}

.service_section .box .detail-box a {
    color: #03a7d3;
}

.service_section .box .detail-box a:hover {
    color: #ff4646;
}

.service_section .box:hover .img-box {
    background-color: #ff4646;
}

.server_section {
    background: linear-gradient(110deg, #e6e6e6 25%, #13133d 25%);
    padding: 55px 0;
    color: #ffffff;
}






.server_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.server_section .img-box {
    position: relative;
}

.server_section .img-box img {
    width: 100%;
    transition: transform .2s;
    border-radius: 10px 40px 10px;
}

.server_section .img-box img:hover {
    transform: scale(1.05);
}

.server_section .img-box .play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    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;
    width: 65px;
    height: 65px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: none;
}

.server_section .img-box .play_btn button {
    background-color: transparent;
    border: none;
    background-color: #03a7d3;
    color: #ffffff;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: relative;
    z-index: 3;
    outline: none;
}

.server_section .img-box .play_btn:before,
.server_section .img-box .play_btn:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #03a7d3;
    opacity: 1;
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.server_section .img-box .play_btn:before {
    z-index: 2;
    -webkit-animation: before-animation 1500ms infinite;
    animation: before-animation 1500ms infinite;
}

.server_section .img-box .play_btn:after {
    z-index: 1;
    -webkit-animation: after-animation 1500ms infinite;
    animation: after-animation 1500ms infinite;
}

@-webkit-keyframes before-animation {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes before-animation {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes after-animation {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

@keyframes after-animation {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.server_section .detail-box a {
    display: inline-block;
    padding: 10px 45px;
    background-color: #ff4646;
    color: #ffffff;
    border-radius: 5px;
    border: 1px solid #ff4646;
    -webkit-transition: all .3s;
    transition: all .3s;
    margin-top: 25px;
}

.server_section .detail-box a:hover {
    background-color: transparent;
    color: #ff4646;
}

.price_section .price_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.price_section .price_container .box {
    margin: 45px 15px 0 15px;
}

.price_section .price_container .box .detail-box {
    width: 300px;
    padding: 40px 20px 15px 20px;
    background-color: #fff;
    border-radius: 25px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}

.price_section .price_container .box .detail-box h2 {
    font-weight: bold;
}

.price_section .price_container .box .detail-box h2 span {
    font-size: 3rem;
}

.price_section .price_container .box .detail-box h6 {
    text-transform: uppercase;
    color: #03a7d3;
    font-size: 20px;
    margin-bottom: 10px;
}

.price_section .price_container .box .price_features {
    padding: 0;
    list-style-type: none;
}

.price_section .price_container .box .price_features li {
    margin: 10px 0;
}

.price_section .price_container .box .btn-box {
    margin-top: 25px;
}

.price_section .price_container .box .btn-box a {
    display: inline-block;
    padding: 10px 35px;
    background-color: #ff4646;
    color: #ffffff;
    border-radius: 5px;
    border: 1px solid #ff4646;
    -webkit-transition: all .3s;
    transition: all .3s;
    border: none;
}

.price_section .price_container .box .btn-box a:hover {
    background-color: transparent;
    color: #ff4646;
}

.price_section .price_container .box .btn-box a:hover {
    background-color: #03a7d3;
    color: #ffffff;
}

.price_section .price_container .box:hover {
    color: #ffffff;
}

.price_section .price_container .box:hover .detail-box {
    background-color: #03a7d3;
}

.price_section .price_container .box:hover h6 {
    color: #ffffff;
}

.price_section .price_container .box:hover a {
    background-color: #03a7d3;
    color: #ffffff;
}

.client_section {
    padding-bottom: 45px;
}

.client_section .heading_container {
    margin-bottom: 35px;
}

.client_section .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 45px 0;
}

.client_section .box .img-box {
    width: 155px;
    height: 155px;
    min-width: 145px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: -65px;
    position: relative;
}

.client_section .box .img-box img {
    width: 100%;
}

.client_section .box .client_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.client_section .box .client_info .client_name h4 {
    font-weight: bold;
    color: #03a7d3;
    margin-bottom: .5rem;
    text-transform: uppercase;
}

.client_section .box .client_info .client_name h6 {
    margin-bottom: 0;
    color: #ff4646;
    font-weight: normal;
    font-size: 14px;
    text-transform: uppercase;
}

.client_section .box .client_info i {
    font-size: 24px;
    color: #03a7d3;
}

.client_section .box p {
    margin-top: 25px;
}

.client_section .box .detail-box {
    background-color: #ffffff;
    padding: 45px 45px 45px 85px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: #03a7d3;
    opacity: 1;
    font-size: 28px;
    font-weight: bold;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.client_section .carousel-control-prev {
    left: 0;
}

.client_section .carousel-control-next {
    right: 0;
}

.contact_section {
    position: relative;
}

.contact_section .heading_container {
    margin-bottom: 45px;
}

.contact_section .form_container input {
    width: 100%;
    border: 1px solid #b0b0b0;
    height: 50px;
    margin-bottom: 25px;
    padding-left: 15px;
    background-color: transparent;
    outline: none;
    color: #101010;
}

.contact_section .form_container input::-webkit-input-placeholder {
    color: #b0b0b0;
}

.contact_section .form_container input:-ms-input-placeholder {
    color: #b0b0b0;
}

.contact_section .form_container input::-ms-input-placeholder {
    color: #b0b0b0;
}

.contact_section .form_container input::placeholder {
    color: #b0b0b0;
}

.contact_section .form_container input.message-box {
    height: 120px;
}

.contact_section .form_container .btn_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contact_section .form_container button {
    border: none;
    text-transform: uppercase;
    display: inline-block;
    padding: 15px 65px;
    background-color: #ff4646;
    color: #ffffff;
    border-radius: 0;
    border: 1px solid #ff4646;
    -webkit-transition: all .3s;
    transition: all .3s;
    font-weight: bold;
}

.contact_section .form_container button:hover {
    background-color: transparent;
    color: #ff4646;
}

/* info section */
.info_section {
    background-color: #020230;
    color: #ffffff;
}

.info_section h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

.info_section .info_contact .contact_link_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
    margin: 5px 0;
    color: #ffffff;
}

.info_section .info_contact .contact_link_box a i {
    margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
    color: #ff4646;
}

.info_section .info_social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
}

.info_section .info_social 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;
    color: #ffffff;
    border-radius: 100%;
    margin-right: 10px;
    font-size: 24px;
}

.info_section .info_social a:hover {
    color: #ff4646;
}

.info_section .info_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.info_section .info_links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    color: #ffffff;
}

.info_section .info_links a img {
    margin-right: 10px;
}

.info_section .info_links a:hover,
.info_section .info_links a.active {
    color: #ff4646;
}

.info_section form input {
    border: none;
    border-bottom: 1px solid #ffffff;
    background-color: transparent;
    width: 100%;
    height: 45px;
    color: #ffffff;
    outline: none;
}

.info_section form input::-webkit-input-placeholder {
    color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
    color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
    color: #ffffff;
}

.info_section form input::placeholder {
    color: #ffffff;
}

.info_section form button {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 10px 55px;
    background-color: #ff4646;
    color: #ffffff;
    border-radius: 0;
    border: 1px solid #ff4646;
    -webkit-transition: all .3s;
    transition: all .3s;
    margin-top: 15px;
}

.info_section form button:hover {
    background-color: transparent;
    color: #ff4646;
}



/*# sourceMappingURL=style.css.map */
@media (max-width: 1300px) {}

@media (max-width: 1120px) {}

@media (max-width: 992px) {
    .hero_area {
        min-height: auto;
    }

    #navbarSupportedContent {
        padding: 15px 0 25px 0;
    }

    .quote_btn-container {
        flex-direction: column;
        align-items: center;
    }

    .quote_btn-container a {
        margin-right: 0;
        margin-top: 10px;
    }

    .slider_section {
        padding: 45px 0 90px 0;
    }


    .client_section .box {
        margin: 15px;
    }

    .client_section .carousel_btn-box {
        display: flex;
        justify-content: center;
        margin-top: 45px;
    }

    .client_section .carousel-control-prev,
    .client_section .carousel-control-next {
        position: unset;
        margin: 0 2.5px;
        width: 45px;
        height: 45px;
    }

    .info_section .info_main_row>div {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .slider_section .detail-box {
        margin-bottom: 45px;
        text-align: center;
    }

    .slider_section .detail-box .btn-box {
        justify-content: center;
    }

    .about_section .detail-box {
        margin-bottom: 45px;
    }


    .service_section .row .service_col_middle {
        order: 2;
    }

    .service_section .service_col_middle .box {
        margin-bottom: 45px;
    }

    .server_section {
        background: none;
        background-color: #020230;
    }

    .server_section .img-box {
        margin-bottom: 25px;
    }

    .contact_section .form_container {
        margin-right: 0;
        margin-bottom: 45px;
    }

    .info_section .row>div {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 35px;
    }

    .info_section .info_links {
        align-items: center;
    }
}

@media (max-width: 576px) {


    .client_section .box {
        flex-direction: column;
        align-items: center;
    }

    .client_section .box .detail-box {
        padding: 85px 45px 45px 45px;

    }

    .client_section .box .img-box {
        margin-right: 0;
        margin-bottom: -65px;
    }
}

@media (max-width: 480px) {}

@media (max-width: 420px) {}

@media (max-width: 376px) {
    .slider_section .detail_box h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

/* css for advisory panel  */

.main_page {
    margin-top: 8rem;
}

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #acacac;
    border-radius: .25rem;
    max-width: 100%;
    height: auto;
}

.social-link {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 0.9rem;
    text-decoration: none;
}

.social-link:hover {
    transition: 90ms;
    font-size: large;
    box-shadow: 0 6px 18px 0 rgba(0, 0, 0, 0.2), 0 16px 20px 0 rgba(0, 0, 0, 0.19) !important;
    color: #0B65C2;

}

.new_pic:hover {
    transition: 90ms;
    box-shadow: 0 6px 18px 0 rgba(0, 0, 0, 0.2), 0 16px 20px 0 rgba(0, 0, 0, 0.19) !important;
}





/* css for gallery */






.desktop_7 * {
    font-family: Nunito, sans-serif;
}

.desktop_7 .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    line-height: 25px;
}

.desktop_7 .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
}

.desktop_7 .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
}

.desktop_7 .responsive-container-block.Container {
    max-width: 980px;
    flex-direction: column;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
}

.desktop_7 .text-blk.headingText {
    font-size: 36px;
    line-height: 50px;
    font-weight: 900;
}

.desktop_7 .text-blk.active {
    font-size: 20px;
    line-height: 34px;
    font-weight: 400;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #03a9f4;
}

.desktop_7 .text-blk.list {
    font-size: 20px;
    line-height: 34px;
    cursor: pointer;
}

.desktop_7 .text-blk.all {
    margin-right: 20px;
    margin-left: 0px;
}

.desktop_7 .text-blk.list {
    margin-left: 0px;
    margin-right: 20px;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
}

.desktop_7 .text-blk.list.active {
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
}

.desktop_7 .squareImg {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    width: 225px;
    height: 225px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
}

.desktop_7 .responsive-container-block.imageContainer {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
}

.desktop_7 .responsive-container-block.optionsContainer {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    min-height: auto;
}

.desktop_7 .project {
    display: inline-block;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}

.desktop_7 button {
    cursor: pointer;
}

.desktop_7 img {
    cursor: pointer;
}

.desktop_7 img:hover {
    transform: scale(1.02);
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    transition-property: all;
}

.desktop_7 .hdImg {
    display: none;
}

.desktop_7 .btn-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.desktop_7 .project:hover .btn-box {
    display: block;
}

.desktop_7 .imageContainer {
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: white;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.desktop_7 .project {
    position: relative;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
}

.desktop_7 .overlay {
    position: fixed;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgba(71, 69, 69, 0.7);
    height: 100%;
    width: 100%;
    max-height: 100%;
    top: 0px;
    left: 0px;
    z-index: 100;
    display: none;
}

.desktop_7 .overlay-inner {
    top: 50%;
    right: 0px;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: white;
    padding-top: 25px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    position: relative;
    opacity: 1;
    width: fit-content;
    max-width: 50%;
    max-height: 85%;
}

.desktop_7 .close {
    position: absolute;
    top: 3px;
    right: 10px;
    background-image: none;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
    outline-color: initial;
    outline-style: initial;
    outline-width: 0px;
    color: #474545;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: initial;
    border-right-style: initial;
    border-bottom-style: initial;
    border-left-style: initial;
    border-top-color: initial;
    border-right-color: initial;
    border-bottom-color: initial;
    border-left-color: initial;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    text-transform: uppercase;
    font-size: small;
    /* letter-spacing: 2px; */
}

.desktop_7 .overlay-inner .hdImgs {
    width: fit-content;
    height: calc(85% - 55px);
    display: flex;
}

.desktop_7 .overlay-inner img {
    max-height: 100%;
    max-width: 100%;
    transform: none;
}

.desktop_7 .squareImg.one {
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.desktop_7 .squareImg.two {
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.desktop_7 .squareImg.three {
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.desktop_7 .squareImg.four {
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.desktop_7 .squareImg.five {
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

@media (max-width: 1024px) {
    .desktop_7 .Container {
        width: 690px;
    }

    .desktop_7 .squareImg {
        width: 170px;
        height: 170px;
    }

    .desktop_7 .squareImg.one {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }

    .desktop_7 .squareImg.two {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }

    .desktop_7 .squareImg.three {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }

    .desktop_7 .squareImg.four {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }

    .desktop_7 .squareImg.five {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }

    .desktop_7 .overlay-inner {
        margin-top: 20px;
        margin-right: 20px;
        margin-bottom: 20px;
        margin-left: 20px;
        padding-top: 25px;
        padding-right: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
        width: 80%;
    }

    .desktop_7 .close {
        font-size: 14px;
        top: 2px;
        right: 5px;
    }

    .desktop_7 .overlay {
        padding-top: 10px;
        padding-right: 30px;
        padding-bottom: 10px;
        padding-left: 30px;
    }
}

@media (max-width: 768px) {
    .desktop_7 .squareImg {
        width: 225px;
        height: 225px;
    }

    .desktop_7 .responsive-container-block.Container {
        max-width: 450px;
    }

    .desktop_7 .responsive-container-block.optionsContainer {
        max-width: 380px;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 10px;
        margin-left: auto;
    }

    .desktop_7 .text-blk.list {
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
    }

    .desktop_7 .text-blk.list.all.active {
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
    }

    .desktop_7 .text-blk.headingText {
        text-align: center;
    }

    .desktop_7 .text-blk.list {
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 10px;
        margin-left: auto;
    }

    .desktop_7 .text-blk.list.all.active {
        margin-top: 0px;
        margin-right: 14.4219px;
        margin-bottom: 10px;
        margin-left: 14.4219px;
    }

    .desktop_7 .responsive-container-block.bigContainer {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }
}

@media (max-width: 500px) {
    .desktop_7 .text-blk.list.all.active {
        font-size: 14px;
        padding-top: 10px;
        padding-right: 15px;
        padding-bottom: 0px;
        padding-left: 15px;
        line-height: 34px;
    }

    .desktop_7 .text-blk.list {
        font-size: 14px;
    }

    .desktop_7 .responsive-container-block.optionsContainer {
        min-height: auto;
    }

    .desktop_7 .responsive-container-block.imageContainer {
        padding-top: 10px;
        padding-right: 5px;
        padding-bottom: 10px;
        padding-left: 5px;
    }

    .desktop_7 .responsive-container-block.optionsContainer {
        max-width: 330px;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 10px;
        margin-left: auto;
    }

    .desktop_7 .text-blk.list.all.active {
        font-size: 17px;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 10px;
        margin-left: auto;
    }

    .desktop_7 .text-blk.list {
        font-size: 17px;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 10px;
        margin-left: auto;
    }

    .desktop_7 .squareImg {
        width: 100%;
        height: 25%;
    }

    .desktop_7 .project {
        padding-top: 0px;
        padding-right: 10px;
        padding-bottom: 0px;
        padding-left: 10px;
        width: 100%;
        height: 25%;
    }

    .desktop_7 .overlay-inner {
        margin-top: 20px;
        margin-right: auto;
        margin-bottom: 20px;
        margin-left: auto;
        padding-top: 25px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
        width: 100%;
    }

    .desktop_7 .overlay {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }

    .desktop_7 .responsive-container-block.bigContainer {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }

    .desktop_7 .overlay-inner hdImgs {
        width: 90%;
    }
}