html, body{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body{
    position:relative;
    font-family: 'Poppins', sans-serif;
    color:#000;
}
a {
    text-decoration: none;
    transition: .5s ease;
}
a:hover {
    color: #3ab7fb;
}
a:focus, a:focus-visible {
    outline: none;
}
p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.color_secondary {
    color: #3ab7fb;
}
input:focus, select:focus {
    box-shadow: none !important;
    outline: none;
}
img {
    max-width: 100%;
}
.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}
.btn.custom_btn {
    border: none;
    color: #fff;
    border-radius: 0;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .3px;
    text-transform: uppercase;
    padding: 14px 26px;
    position: relative;
    overflow: unset;
    z-index: 1;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;
    background: #072c42;
}
.btn.custom_btn::before {
    -webkit-transition-duration: .8s;
    -o-transition-duration: .8s;
    transition-duration: .8s;
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background: #3ab7fb;
    z-index: -2;
}
.btn.custom_btn:focus, .btn.custom_btn:hover {
    background-color: #072c42;
    color: #ffffff!important;
    -webkit-box-shadow: 0 0 20px 2px rgb(15 15 15 / 15%);
    box-shadow: 0 0 20px 2px rgb(15 15 15 / 15%)
}
.btn.custom_btn:focus::before, .btn.custom_btn:hover::before {
    width: calc(100% - 5px);
}
.custom_btn span {
    position: relative;
    z-index: 2;
}
.custom_btn:hover:after {
    content: "";
    animation: topBubbles ease-in-out .75s forwards;
    background-image: radial-gradient(circle, CurrentColor 20%, transparent 20%), radial-gradient(circle, transparent 20%, CurrentColor 20%, transparent 30%), radial-gradient(circle, CurrentColor 20%, transparent 20%), radial-gradient(circle, CurrentColor 20%, transparent 20%), radial-gradient(circle, transparent 10%, CurrentColor 15%, transparent 20%), radial-gradient(circle, CurrentColor 20%, transparent 20%), radial-gradient(circle, CurrentColor 20%, transparent 20%), radial-gradient(circle, CurrentColor 20%, transparent 20%), radial-gradient(circle, CurrentColor 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
    top: -75%;
    display: block;
    opacity: 1;
    pointer-events: none;
    visibility: visible;
    color: #3eb7f8;
    background-repeat: no-repeat;
    height: 100%;
    left: -20%;
    position: absolute;
    transition: all ease-in-out .5s;
    width: 140%;
    z-index: -1000;
}

@keyframes topBubbles
{
    0%
    {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
    }
    50%
    {
        background-position: 0 80%, 0 20%, 10% 40%, 20% 0, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
    }
    100%
    {
        background-position: 0 70%, 0 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
        background-size: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    }
}
nav.navbar .nav-item.header_con_btn:hover {
    color: #fff;
    background-color: #3ab7fb;
    border: 2px solid #3ab7fb;
}
nav.navbar.sticky_navbar {
    position: fixed;
    box-shadow: 0px 0px 12px #0000004f;
}
/* nav.navbar.nav-up {
    position: fixed;
    top: -92px;
} */
.navbar_spacer {
    min-height: 110px;
    display: none;
    width: 100%;
    background: #000;
}
nav.navbar {
    background-color: rgb(255 255 255);
    padding: 20px 8px;
    width: 100%;
    z-index: 1002;
    top: 0;
    transition: .5s ease;
}
nav.navbar .navbar-brand {
    padding: 0;
    margin: 0;
}
.navbar-expand-lg .navbar-collapse .navbar-brand {
    display: none;
}
nav.navbar .navbar-brand img {
    max-width: 220px;
}
nav.navbar .nav-item {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
nav.navbar li.nav-item .nav-link {
    color: inherit;
    padding: 12px 20px;
}
nav.navbar .nav-item.header_con_btn {
    /* background-color: #2075a4; */
    border: 2px solid #000;
    /* color: #fff; */
    margin-left: 26px;
}
nav.navbar .close_navbar.btn {
    display: none;
    position: absolute;
    color: #fff;
    font-size: 30px;
    font-weight: 100;
    right: 20px;
    top: 20px;
    border: none;
    padding: 2px 13px;
}
nav.navbar .nav-item.dropdown .dropdown-menu {
    width: 273px;
    -webkit-box-shadow: 0 2px 40px 8px rgb(15 15 15 / 15%);
    box-shadow: 0 2px 40px 8px rgb(15 15 15 / 15%);
    border-radius: 4px;
    position: absolute;
    background-color: #fff;
    border: none;
    top: 120%;
    left: 0;
    z-index: 100;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    opacity: 0;
    visibility: hidden;
    padding: 8px 0;
    margin-top: 20px;
    display: block;
}
nav.navbar .nav-item.dropdown .dropdown-menu.show, nav.navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
nav.navbar .nav-item.dropdown .dropdown-menu .dropdown-item {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    background: transparent;
}
nav.navbar .nav-item.dropdown .dropdown-menu .dropdown-item:hover, nav.navbar li.nav-item .nav-link:hover {
    color: #3ab7fb;
}
nav.navbar .nav-item.header_con_btn:hover .custom_btn.nav-link {
    color: #fff;
}
.top_call_sec {
    display: flex;
    align-items: center;
    margin-left: 20px;
}
.top_call_sec i {
    font-size: 25px;
    color: #3ab7fb;
    margin-right: 15px;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.top_call_sec div {
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
}
.top_call_sec p {
    margin-bottom: 2px;
    font-size: inherit;
    line-height: inherit;
    color: #072c42;
}
.top_call_sec span {
    display: block;
}
.top_call_sec a {
    color: #3ab7fb;
}
.icon-scroll {
    position: absolute;
    z-index: 1;
    width: 36px;
    height: 60px;
    bottom: 20px;
    margin-left: -18px;
    left: 50%;
    border: 1px solid #fff;
    /* background: #0000002e; */
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 0 18px 3px #8b8b8b61;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    color: #fff;
    overflow: hidden;
}
.icon-scroll:hover {
    color:#fff;
}
.icon-scroll:before {
    content: "\f103";
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    border-radius: 4px;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: scroll;
    animation-name: scroll;
}
@-webkit-keyframes scroll {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      top: 44px;
    }
  }

  .bar {
    height: 3px;
    width: 55px;
    background: -webkit-linear-gradient(to right ,#3ab7fb,#2177a6,#2177a6,#2177a6,#3ab7fb);
    background: linear-gradient(to right ,#3ab7fb,#2177a6,#2177a6,#2177a6,#3ab7fb);
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    top: -8px;
}
.text-center .bar {
    margin: auto;
}
.bar:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 7px;
    background: #fff;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: move-bg;
    animation-name: move-bg;
}
@keyframes move-bg {
    0% {
      left: 0;
    }
    100% {
      left: 100%;
    }
  }
.tob-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background-color: #2177a6;
}
.tob-bar p {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
}
.tob-bar p span {
    margin-right: 35px;
}
.tob-bar p a {
    color: inherit;
    font-weight: 500;
}
.home-slider-section {
    position: relative;
}
.home-slider-section .home-carousel-slide-image {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
}
.home-slider-section .home-carousel-slide-image img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 700px;
    object-fit: cover;
}
.home-slider-section .home-carousel-slide-image .container {
    position: relative;
}
.home-carousel-slide h2 {
    font-size: 80px;
    line-height: 80px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
}
.home-carousel-slide h2 span {
    color: #3ab7fb;
    display: block;
}
.home-carousel-slide p {
    font-size: 22px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 35px;
}
.home-carousel-slide .content.left-content p {
    max-width: 600px;
}
.home-carousel-slide .content.center-content h2 {
    color:#fff;
}
.home-carousel-slide .content.center-content h2 span {
    display: inline;
    color:#fff;
}
.home-carousel-slide .content.center-content p {
    font-size: 40px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0;
    color:#fff;
}
.owl-carousel.home-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    background-color: transparent !important;
    box-shadow: 0 0 5px 2px #ffffff85;
    border: 2px solid #ffffff;
    border-radius: 50%;
    z-index: 10000000;
    transform: translateY(-50%);
    color: #fff !important;
    font-size: 25px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.owl-carousel.home-carousel .owl-nav button span {
    line-height: 45px;
}
.owl-carousel.home-carousel .owl-nav button.owl-next {
    right: 0;
    margin-right: 40px;
}
.owl-carousel.home-carousel .owl-nav button.owl-prev {
    margin-left: 40px;
}










.about-us-section {
    padding: 85px 0;
}
.about-us-section p {
    margin-bottom: 35px;
}














.services-section {
    padding: 85px 0;
    background-image: url(../images/services_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.service_box:hover {
    background-color: #fff;
}
.service_box {
    background-color: #ffffffe3;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease-in-out;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 8%);
    position: relative;
    overflow: hidden;
}
/* .service_box::after {
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    border-radius: 50%;
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: #c63fa4;
    background-image: -moz-linear-gradient(120deg,#df42b1 0,#505add 100%);
    background-image: -webkit-linear-gradient(120deg,#df42b1 0,#505add 100%);
    background-image: -ms-linear-gradient(120deg,#df42b1 0,#505add 100%);
    z-index: -10;
}
.service_box:hover::after {
    width: 800%;
    height: 800%;
} */
.service_box img {
    max-width: 60px;
    
}
.service_box:hover img.tada {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.service_box .service_box_right {
    padding-left: 25px;
}
.service_box h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
}
.service_box p {
    font-size: 14px;
    line-height: 25px;
    color: #6e6e6e;
    margin-bottom: 0;
}
.service_box a:hover {
    color: #3ab7fb;
}
.service_box a {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    display: none;
}
.brands-section {
    padding: 85px 0;
    background-color: #def3ffc7;
    display:none;
}
.section_subheading {
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #3ab7fb;
}
.section_mainheading {
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
    margin-bottom: 55px;
    color: #072c42;
}
.services-section .btn.custom_btn {
    margin-top: 25px;
}

.owl-carousel.brand-carousel .owl-stage {
    display: flex;
    align-items: center;
}
.brand-carousel .brand-slide {
    text-align: center;
}
.brand-carousel .brand-slide img {
    width: 90%;
    margin: 0 auto;
    transition: .5s ease;
    max-height: 60px;
    object-fit: contain;
}
.brand-carousel .brand-slide img:hover {
    filter: none;
}
.testimonial-section {
    padding: 85px 0;
    background-color: #def3ffc7;
    display: none;
}
.testimonial-slide {
    background-color: #fff;
    padding: 35px;
    border-radius: 5px;
    width: 100%;
}
.testimonial-slide .testimonial-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.testimonial-slide .testimonial-content .left {
    display: flex;
    align-items: center;
}
.testimonial-slide .testimonial-content .right img {
    width: 65px;
}
.testimonial-slide .testimonial-content .left img {
    width: 80px;
    height: 80px;
    background: #ccc;
    border-radius: 50%;
}
.testimonial-slide .author-name {
    font-size: 18px;
    font-weight: 500;
    padding-left: 25px;
    color: #000;
}
.testimonial-slide .author-name span {
    display: block;
    font-weight: 400;
    font-size: 15px;
    color: #6e6e6e;
    margin-top: 4px;
}
.testimonial-slide p {
    color: #6e6e6e;
    margin: 30px 0 0;
}
.testimonial-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    background-color: #3ab7fb !important;
    z-index: 10000000;
    transform: translateY(-50%);
    color: #fff !important;
    font-size: 25px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease;
}
.testimonial-carousel .owl-nav button:hover {
    background-color: #072c42 !important;
}
.testimonial-carousel .owl-nav button.owl-next {
    right: 0;
    margin-right: -25px;
}
.testimonial-carousel .owl-nav button.owl-prev {
    margin-left: -25px;
}




.common-page-header-section {
    padding: 85px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    align-items: center;
    display: flex;
    position: relative;
}
.common-page-header-section.about-us-page {
    background-image: url(../images/about-us-bg.jpg);
}
.common-page-header-section.contact-us-page {
    background-image: url(../images/contact-us-bg.jpg);
}
.common-page-header-section.services-page {
    background-image: url(../images/services-page-bg.jpg);
}
.common-page-header-section.privacy-page {
    background-image: url(../images/privacy-page-bg.jpg);
}
.common-page-header-section.terms-condition-page {
    background-image: url(../images/terms-condition-page-bg.jpg);
}
.common-page-header-section.web-design-ser-det-page {
    background-image: url(../images/web-design-ser-det-page-bg.jpg);
    min-height: 600px;
    background-color: #e2f4ff;
}
.common-page-header-section.career-page {
    background-image: url(../images/career-bg.jpg);
    background-color: #0f0f0f;
    background-size: contain;
    background-position: bottom;
}
.common-page-header-section.terms-condition-page .content {
    text-align: left;
}
.common-page-header-section .content {
    text-align: center;
}
.common-page-header-section h1 {
    color: #fff;
    font-size: 65px;
    line-height: 55px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    display: inline;
    position: relative;
}
.common-page-header-section h1:after {
    content: '';
    position: absolute;
    width: 90px;
    background: #3ab7fb;
    height: 2px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.skills-section {
    position: relative;
    display: flex;
}
.skill_box_outer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.skill_box_outer .skill_box {
    width: 33.33%;
    height: 100%;
}
.skill_box_outer .skill_box:nth-child(1) {
    background-color: #002c42;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.skill_box_outer .skill_box:nth-child(1) h2 {
    font-size: 55px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
}
.skill_box_outer .skill_box:nth-child(2) {
    background: #fff;
    padding: 120px 40px;
}
.skill_box_outer .skill_box .progress {
    height: 6px;
    margin-bottom: 30px;
    overflow: inherit;
    position: relative;
}
.skill_box_outer .skill_box .progress .progress-bar {
    height: 12px;
    margin-top: -3px;
    border-radius: 0;
}
.skill_box_outer .skill_box .progress-bar-info {
    display: flex;
    justify-content: space-between;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.why-choose-box-outer {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
}
.why-choose-box-outer .left {
    width: 50%;
}
.why-choose-box-outer .left img {
    width: 100%;
    height: 900px;
    object-fit: cover;
}
.why-choose-box-outer .right {
    width: 50%;
    padding: 0 25px;
}
.why-choose-box-outer .right .section_mainheading, .why-choose-box-outer .right .section_subheading {
    padding-left: 12px;
    padding-right: 12px;
}
.why-choose-box-outer .bar {
    left: 12px;
}
.why-choose-right-box-outer {
    display: flex;
    flex-wrap: wrap;
}
.why-choose-right-box-outer .why-choose-box {
    width: 50%;
    padding: 0 12px;
    margin-bottom: 25px;
}
.why-choose-right-box-outer .why-choose-box .img-outer {
    background: #072c42;
    width: 85px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-left: 5px solid #3ab7fb;
    padding: 10px;
}
.why-choose-right-box-outer .why-choose-box img {
    max-width: 55px;
}
.why-choose-right-box-outer .why-choose-box h5 {
    font-size: 18px;
    margin: 20px 0 15px;
    color: #000;
    text-transform: uppercase;
}
.why-choose-right-box-outer .why-choose-box p {
    font-size: 14px;
    line-height: 25px;
    color: #6e6e6e;
    margin: 0;
}


.team-section {
    padding: 85px 0;
}
.team-slide {
    position: relative;
}
.team-slide img {
    border-radius: 10px;
    filter: grayscale(1);
    transition: 0.5s ease;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: 100;
    position: relative;
    height: 365px;
}
.team-slide:hover img {
    filter: grayscale(0);
}
.team-slide .member-info {
    padding: 0 15px;
    margin-top: -20px;
    text-align: center;
    z-index: 100;
    position: relative;
}
.team-slide .member-info strong {
    background: #3ab7fb;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    font-size: 18px;
    font-weight: 300;
    border-radius: 8px;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
}
.team-slide .member-info span {
    display: block;
    color: #072c42;
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
}
.team-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}
.team-carousel .owl-dots button.owl-dot.active {
    background: #3ab7fb;
    width: 60px;
}
.team-carousel .owl-dots button.owl-dot {
    width: 20px;
    height: 6px;
    border-radius: 5px;
    background: #072c42;
    border: none;
    margin: 0 5px;
    transition: 0.5s ease;
    opacity: .8;
}
.team-carousel .owl-dots button.owl-dot span {
    display: none;
}


.facts-section {
    padding: 85px 0;
    background: url(../images/facts-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.facts-box-outer {
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    padding: 80px 0;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 19%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.facts-box-outer:after {
    content: '';
    position: absolute;
    bottom: -124px;
    left: -55px;
    height: 185px;
    width: 185px;
    background-color: #fff;
    border-radius: 50%;
}
.facts-box-outer .facts-box {
    width: 25%;
    text-align: center;
    /* border-right: 1px solid #fff; */
    padding: 0 20px;
    position: relative;
}
.facts-box-outer .facts-box:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 0;
    width: 1px;
    background: #fff;
    transition: 0.5s ease;
}
.facts-box-outer:hover .facts-box:after {
    height:100%;
}
.facts-box-outer .facts-box:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.facts-box-outer .facts-box img {
    max-width: 64px;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.facts-box-outer .facts-box h3 {
    font-size: 39px;
    font-weight: 600;
    margin: 25px 0 10px;
}
.facts-box-outer .facts-box p {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}
.facts-box-outer .facts-box:last-child {
    border: none;
}
.facts-box-outer .facts-box:last-child:after {
    content: none;
}


.skill_box_outer .skill_box:nth-child(3) {
    background: #e9e9e9d9;
    padding: 40px;
    display: flex;
    align-items: center;
}
.skill_box_outer .skill_box:nth-child(3) h3 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.skill_box_outer .skill_box:nth-child(3) p {
    font-size: 16px;
    line-height: 32px;
    color: #565656;
    margin: 0;
}
.contact-us-section {
    padding: 85px 0;
}
.contact-form-outer {
    position: relative;
}
.contact-us-form {
    position: relative;
}
.contact-us-form:after {
    content: "\f27a";
    font-family: "Font Awesome 6 Free";
    font-weight: 100;
    opacity: .1;
    font-size: 200px;
    color: #3ab7fb;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: rotate(-12deg);
    z-index: -1;
}
.contact-us-form .form-group {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.contact-us-form .form-group:after, .contact-us-form .form-group:before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: #072c42;
    transition: 0.5s ease;
}
.contact-us-form .form-group:before {
    background: #3ab7fb !important;
    left: -100%;
    right: 0;
}
.contact-us-form .form-group:hover:before {
    left: 0;
}
.contact-us-form .form-group:hover:after {
    right: -100%;
}
.contact-us-form .form-group:hover label {
    color: #3ab7fb;
}
.contact-us-form label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    font-size: 18px;
    color: #072c42;
    cursor: pointer;
    transition: 0.5s ease;
}
.contact-us-form .form-control {
    height: 65px;
    width: 100%;
    border: none;
    background: transparent;
    padding: 30px 40px 30px 0;
    margin: 0;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    color: #000;
}
.contact-us-form .form-control[type=tel] {
    letter-spacing: 10px;
}
.contact-us-form .form-control[type=tel]:placeholder-shown {
    letter-spacing: normal;
}
.contact-us-form textarea.form-control {
    height: auto;
}
.contact-us-form .form-group.textarea-form-group label {
    transform: none;
    top: 27px;
}
.contact-form-outer .success-msg {
    width: 100%;
    background: #3ab7fb;
    border-radius: 5px;
    margin-top: 30px;
    padding: 15px;
    text-align: center;
}
.contact-form-outer .success-msg p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}
.contact-form-outer .success-msg a {
    color: #3ab7fb;
    font-size: 18px;
    font-weight: 500;
    margin-left: 5px;
    display: none;
}
.contact-box-right {
    background-position: center;
    background: url(../images/contact-box-bg.jpg);
    color: #fff;
    border-radius: 10px;
    padding: 40px;
    position: relative;
    background-size: cover;
    box-shadow: 0 0 14px 0px #00000036;
}
.contact-box-right h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #fff;
}
.contact-box-right a {
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 35px;
}
.contact-box-right a i {
    background-color: #00000036;
    min-width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .5s ease;
}
.contact-box-right a:hover i{
    background: #3ab7fb;
}
.contact-box-right a span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: .5;
    margin-bottom: 2px;
}
.contact-box-right a strong {
    font-size: 17px;
    font-weight: 600;
}
.contact-box-right a[href]:hover strong {
    color: #3ab7fb;
}
.map-section {
    display: flex;
}
.map-section iframe {
    width: 100%;
    height: 450px;
}


    /*new services section start*/

.all-services-new-section {
    position: relative;
    padding-bottom: 85px;
}
.all-services-new-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:url(../images/services_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: right;
    opacity: 0.2;
}
.all-services-new-outer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 85px;
}
.all-services-new-outer .left {
    width: 50%;
}
.all-services-new-outer .right {
    width: 50%;
}
.all-services-new-outer .content {
    max-width: 420px;
    padding-right: 50px;
}
.all-services-new-outer>div:nth-child(2).left>.content {
    margin: 0 0 0 auto;
    padding-right: 0;
    padding-left: 50px;
}
.all-services-new-outer h3 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}
.all-services-new-outer h3 strong {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}
.all-services-new-outer h3 span {
    color: #ffffff;
    font-size: 35px;
    display: inline-flex;
    border-radius: 7px;
    padding: 0 15px;
    position: relative;
    background: linear-gradient(to top, #3ab7fb, #2476bd, #3ab7fb);
    overflow: hidden;
    z-index: 39;
}
.all-services-new-outer p {
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    color: #000000;
}


    /*new services section end*/







.all-services-section {
    padding: 85px 0;
}
.all-services-outer {
    display: flex;
    position: relative;
}
.all-services-outer .left {
    width: 55%;
    padding: 50px 50px;
    background: -webkit-linear-gradient(120deg,#3ab7fb 0,#072c42 100%);
    position: relative;
    z-index: 1;
}
.all-services-outer .left:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-image: url(../images/services-content-bg.jpg);
    width: 100%;
    height: 100%;
    background-blend-mode: multiply;
}
.all-services-outer .left:before {
    content: attr(data-content);
    position: absolute;
    top: 50%;
    left: -90px;
    transform: translateY(-50%);
    font-size: 390px;
    font-weight: bold;
    color: #818181;
    opacity: .1;
    z-index: 10;
}
.all-services-outer.right-side-services .left::before {
    left: auto;
    right: -90px;
}
.all-services-outer:after {
    content: '';
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: calc(60% - 85px);
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    margin-bottom: -85px;
}
.development-services .all-services-outer:after {
    background-image: url(../images/web-developement.jpg);
}
.designing-services .all-services-outer:after {
    background-image: url(../images/web-designing.jpg);
    background-position: right;
}
.mobile-app-services .all-services-outer:after {
    background-image: url(../images/mobile-app.jpg);
}
.dotnet-services .all-services-outer:after {
    background-image: url(../images/dot-net.jpg);
}
.vba-services .all-services-outer:after {
    background-image: url(../images/vba-app.jpg);
}
.seo-services .all-services-outer:after {
    background-image: url(../images/seo.jpg);
    background-position: left;
}
.all-services-outer h3 {
    font-size: 50px;
    line-height: 55px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}
.all-services-outer h3 span {
    color: #3ab7fb;
    display: block;
}
.all-services-outer p {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}
.all-services-outer.right-side-services {
    justify-content: flex-end;
}
.all-services-outer.right-side-services:after {
    right: auto;
    left: 0;
}


.our-brands {
    display: flex;
    margin-top: 85px;
    background-color: #FFFFFF;
}
.our-brands .left {
    width: 50%;
    display: flex;
    justify-content: center;
    background-color: #002c42;
    padding: 120px 0;
}
.our-brands .left .content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    max-width: 750px;
}
.our-brands .left img {
    max-width: 90px;
}
.our-brands .left h3 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    padding-left: 30px;
}
.our-brands .right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
}
.our-brands .our-brands-logo-box-outer {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.our-brands .our-brands-logo-box-outer .our-brands-logo-box {
    width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0;
}
.our-brands .our-brands-logo-box-outer .our-brands-logo-box img {
    max-width: 80%;
}


.request-callback {
    padding: 85px 0;
    background-color: #072c42;
    margin-top: 85px;
    position: relative;
}
.request-callback .section_mainheading {
    color: #fff;
    margin-bottom: 25px;
}
.request-callback p {
    font-size: 17px;
    line-height: 32px;
    color: #fff;
    margin: 0;
}
.request-callback .success-msg p {
    margin-top: 20px;
    font-size: 14px;
    color: #3ab7fb;
    line-height: normal;
}
.request-callback form {
    display: flex;
    align-items: center;
    margin: 35px -10px 0;
    justify-content: center;
}
.request-callback form:after {
    content: "\f879";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    color: #fff;
    font-size: 250px;
    line-height: 200px;
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: .1;
}
.request-callback form .form-group {
    padding: 0 10px;
    position: relative;
    z-index: 1;
}
.request-callback form .form-group .form-control {
    border: 2px solid #fff !important;
    border-radius: 0;
    background: transparent;
    font-size: 16px;
    line-height: normal;
    color: #fff;
    padding: 15px 20px;
    height: 58px;
    cursor: pointer;
    transition: 0.5s ease;
}
.request-callback form .form-group .form-control:hover, .request-callback form .form-group .form-control:focus {
    border: 2px solid #3ab7fb !important;
}
.request-callback form .form-group select.form-control {
    min-width: 180px;
    position: relative;
    z-index: 1;
}
.request-callback form .form-group select.form-control option {
    color:#000;
}
.request-callback form .form-group .fa-angle-down {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #fff;
    z-index: 0;
}
.request-callback form .form-group .form-control:-webkit-autofill {
    -webkit-box-shadow:0 0 0 50px #072c42 inset;
    -webkit-text-fill-color: #fff;
}
.request-callback form .form-group .form-control:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px #072c42 inset;
    -webkit-text-fill-color: #000;
    background-color: transparent;
} 
.request-callback form .form-group .form-control::placeholder{
    color: #fff;
    opacity: 1; /* Firefox */
}
.request-callback form .form-group [type=submit] {
    border: 2px solid #3ab7fb !important;
    border-radius: 0;
    background: #3ab7fb;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    padding: 15px 20px;
    min-width: 150px;
    text-transform: uppercase;
    height: 58px;
}
.request-callback form .form-group [type=submit]:hover {
    border: 2px solid #ffffff !important;
    color: #3ab7fb;
    background: #3ab7fb26;
}
.optimization-marketing {
    padding: 85px 0;
    background-color: #3ab7fb;
    margin-top: 85px;
    color: #fff;
}
.optimization-marketing-outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.optimization-marketing-outer .left {
    width: 50%;
    text-align: right;
}
.optimization-marketing .content {
    max-width: 530px;
    margin: 0 0 0 auto;
    padding-right: 50px;
}
.optimization-marketing .section_mainheading {
    margin: 0;
    color: #fff;
    font-weight: 500;
}
.optimization-marketing-outer .right {
    width: 50%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}
.optimization-marketing-outer .right .img-outer {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.optimization-marketing-outer .right .img-outer span {
    font-size: 18px;
    margin-top: 15px;
    font-weight: 400;
}

.timeline-section {
    padding: 85px 0;
    position: relative;
    background-color: #3089d3;
}
.timeline-section:before {
    content: '';
    background-image: url(../images/timeline-bg.png);
    background-repeat: repeat;
    background-size: contain;
    background-position: bottom;
    width: 200%;
    height: 85px;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: timeline-left-right;
    animation-name: timeline-left-right;
}
@keyframes timeline-left-right {
0% {
  left: -100%;
}
100% {
  left: 0;
}
}
.owl-carousel.timeline-carousel {
    border-bottom: 1px solid #fff;
}
.owl-carousel.timeline-carousel .owl-stage {
    display: flex;
    align-items: flex-end;
}
.timeline-section .timeline-box {
    display: flex;
    align-items: flex-end;
}
.timeline-section .timeline-box .timeline-time {
    cursor: vertical-text;
    writing-mode: tb-rl;
    font-weight: 400;
    font-size: 70px;
    transform: rotate(180deg);
    position: relative;
    text-align: center;
    color: #ffffff;
}
.timeline-section .timeline-box .timeline-time:before {
    content: "";
    width: 1px;
    height: 50px;
    background: #ffffff;
    display: inline-block;
    margin: 0 auto 30px auto;
}
.timeline-section .timeline-box .timeline-content {
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    margin: 0;
    padding: 0 20px 30px 20px;
    width: 100%;
    max-width: 280px;
}
.owl-carousel.timeline-carousel button.owl-next {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 19px;
    background: #072c42 !important;
    cursor: pointer;
    z-index: 100;
    transition: 0.5s ease;
    box-shadow: 0 0 14px 2px #0000001c;
    border-radius: 50%;
}
.owl-carousel.timeline-carousel button.owl-next:hover {
    background: #3ab7fb !important;
}
.owl-carousel.timeline-carousel button.owl-prev {
    display: none !important;
}

.common-page-section {
    padding: 85px 0;
}

.common-page-section p {
    font-size: 15px;
    line-height: 32px;
    color: #6e6e6e;
    margin-bottom: 20px;
}
.common-page-section h2 {
    font-size: 30px;
    line-height: normal;
    font-weight: 600;
    color: #072c42;
    margin-bottom: 10px;
}
.common-page-section h3 {
    font-size: 22px;
    line-height: normal;
    font-weight: 600;
    color: #3ab7fb;
    margin-bottom: 10px;
}
.common-page-section p a {
    color: #3ab7fb;
    font-weight: 600;
}
.common-page-section strong {
    font-weight: 600;
}
.common-page-section ul {
    list-style: unset;
    padding-left: 40px;
    margin-bottom: 20px;
}
.common-page-section ol {
    padding-left: 40px;
    margin-bottom: 20px;
}
.common-page-section ul li, .common-page-section ol li {
    font-size: 15px;
    line-height: 32px;
    color: #072c42;
    margin-bottom: 5px;
}

.common-page-header-section.web-design-ser-det-page .content {
    text-align: left;
}
.common-page-header-section.web-design-ser-det-page .content h1 {
    font-size: 45px;
    line-height: 35px;
    color: #072c42;
    margin-bottom: 40px;
    display: block;
}
.common-page-header-section.web-design-ser-det-page .content h1::after {
    left: 0;
    transform: none;
    bottom: -15px;
}
.common-page-header-section.web-design-ser-det-page .content p {
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 30px;
}









.our-projects {
    padding: 85px 0;
    background-image: url(../images/portfolio-shape-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position:relative;
    overflow: hidden;
}
.our-projects:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 100%;
    opacity: .5;
    background: linear-gradient(to right, #ffffff03, #b4b4b4);
}
#particles-js{
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left:0;
}
.our-projects .container {
    position: relative;
}
.our-projects .head_p {
    font-size: 14px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 35px;
}
.our-projects p {
    font-size: 14px;
    line-height: 28px;
    font-weight: 500;
    margin: 0;
}
.our-projects .project-slide.slide_1 {
    position: relative;
    /*background-image: url(../images/portfolio-bg.png);*/
}
.our-projects .project-slide {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 550px;
    display: flex;
    align-items: center;
}
.our-projects .project-slide:before {
    content: "Portfolio";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #6e6e6e;
    z-index: 100000000;
    font-size: 120px;
    line-height: 120px;
    opacity: .1;
    font-weight: 600;
    writing-mode: tb;
}
.our-projects .project-slide .left {
    width: 45%;
}
.our-projects .project-slide .left .content {
    padding: 55px 45px;
    max-width: 450px;
    background: linear-gradient(to bottom, #e7e9edc7, #ffffff);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px 0px #0000001a;
}
.our-projects .project-slide .left h2 {
    color: #072c42;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 35px;
}
.our-projects .project-slide .left h2 img {
    max-width: 100%;
    width: auto;
    max-height: 70px;
}
.our-projects .project-slide .left .content ul {
    margin-bottom: 35px;
}
.our-projects .project-slide .left .content ul li {
    font-size: 16px;
    line-height: 35px;
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    font-weight: 400;
}
.our-projects .project-slide .left .content ul li:last-child {
    margin: 0;
}
.our-projects .project-slide .left .content ul li i {
    margin-right: 15px;
    font-size: 16px;
    position: relative;
    top: 1px;
    color: #3ab7fb;
}

.our-projects .project-slide .right {
    width: 55%;
    z-index: 10;
}
.our-projects .project-slide .right .img-outer {
    padding-right: 70px;
}
.owl-carousel.projects-carousel .owl-dots {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
.owl-carousel.projects-carousel .owl-dots button.owl-dot {
    width: 20px;
    height: 6px;
    border-radius: 5px;
    background: #072c42;
    border: none;
    margin: 0 5px;
    transition: 0.5s ease;
    opacity: .8;
}
.owl-carousel.projects-carousel .owl-dots button.owl-dot.active {
    background: #3ab7fb;
    width: 60px;
}
.used-technologies {
    padding: 85px 0;
}
.used-technologies-box {
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 20px 20px;
    margin-bottom: 15px;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.used-technologies-box.used-technologies-box-two {
    min-height: 200px;
}
.used-technologies-box:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0%;
    height: 0%;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    background: #fff;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 0;
}
.used-technologies-box:hover:before {
    width: 200%;
    height: 200%;
    opacity: 1;
    visibility: visible;
}
.used-technologies-box .img-outer {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.used-technologies-box:hover img {
    transform: scale(1.2);
}
.used-technologies-box img {
    max-width: 90px;
    margin: 0 auto;
    transition: 0.5s ease;
}
.used-technologies-box h5 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}
.work-process {
    background: url(../images/work-progress-bg.jpg) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding-top: 120px;
    margin-bottom: 200px;
    position: relative;
}
.work-process:before {
    content: '';
    background: linear-gradient(to right, #072c42, #000000, #072c42);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .5;
}
.work-process .container{
    position: relative;
}
.work-process .section_mainheading {
    margin-bottom: 120px;
    color:#fff;
}
.work-process .section_subheading {
    color:#fff;
}
.work-process .work-process-box {
    background: #fff;
    box-shadow: 0 0 13px 0px rgb(0 0 0 / 13%);
    margin-bottom: -115px;
    padding: 40px 40px;
    transition: .5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.work-process .work-process-box:hover {
    color: #fff;
}
.work-process .work-process-box:hover:before {
    left: 0;
}
.work-process .work-process-box:before {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    top: 0;
    background: #072c42;
    transition: 0.5s ease;
    z-index: 0;
}
.work-process .work-process-box:hover h5, .work-process .work-process-box:hover p{
    color:inherit !important;
}
.work-process .work-process-box h5 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #000;
    text-transform: uppercase;
    position: relative;
}
.work-process .work-process-box p {
    font-size: 13px;
    line-height: 23px;
    color: #6e6e6e;
    margin: 0;
    position: relative;
}
.work-process .work-process-box .img-outer {
    background: #072c42;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-left: 5px solid #3ab7fb;
    padding: 15px;
    position: relative;
}
.work-process .work-process-box .img-outer img {
    max-width: 50px;
}

.looking_job_sec {
    display: flex;
    color: #ffffff;
}
.looking_job_sec .looking_job_box {
    padding: 110px 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    width: 50%;
    position: relative;
}
.looking_job_sec .looking_job_box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #141216, #ce0365);
    /* opacity: .3; */
}
.looking_job_sec .looking_job_box .content {
    max-width: 400px;
    position: relative;
    z-index: 1;
}
.looking_job_sec .hiring_box.looking_job_box:before {
    background: #000000;
    opacity: .15;
}
.looking_job_sec .hiring_box.looking_job_box .content {
    margin: 0 0 0 auto;
    text-align: right;
}

.looking_job_sec h2 {
    color: inherit;
    font-size: 38px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 25px;
}
.looking_job_sec .hiring_box.looking_job_box h2 span {
    color: #fb3a4c;
    border: none;
}
.looking_job_sec h2 span {
    border-bottom: 2px solid;
}
.looking_job_sec p {
    color: inherit;
    font-size: 15px;
    line-height: 27px;
    font-weight: 300;
    margin-bottom: 20px;
}
.looking_job_sec a {
    color: inherit;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase;
    padding: 8px 0;
    overflow: hidden;
    display: inline-block;
}
.current-openings {
    padding: 85px 0;
    background: #efe8fa;
}
.current-openings-table {
    display: flex;
    flex-direction: column;
}
.current-openings-table .current-openings-head {
    display: flex;
    justify-content: space-between;
}
.current-openings-table .current-openings-head .th {
    width: 30%;
    font-weight: 600;
    padding: 15px 25px;
    color: #072c42;
    font-size: 15px;
}
.current-openings-table .current-openings-body .td {
    width: 30%;
    font-size: 15px;
    color: #6e6e6e;
    padding: 0 25px;
    position: relative;
}
.current-openings-table .current-openings-body .td:nth-child(1), .current-openings-table .current-openings-head .th:nth-child(1) {
    width: 40%;
}
.current-openings-table .current-openings-row-box .btn {
    border: none;
    color: #072c42;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    padding: 0;
    display: flex;
    align-items: center;
}
.current-openings-row-box:hover .btn {
    color: #3ab7fb;
}
.current-openings-table .btn i {
    padding-left: 7px;
}
.current-openings-table .current-openings-body .current-openings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-direction: column;
    margin-bottom: 15px;
}
.current-openings-table .current-openings-body .current-openings-row:last-child {
    margin-bottom: 0;
}
.current-openings-row-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 25px 0;
    flex-direction: row;
    border-bottom: 1px solid #072c42;
    background: linear-gradient(to bottom, #def3ffc7, #f5f5f5);
}
.current-openings-table .current-openings-body .content {
    display: none;
    overflow: hidden;
    width: 100%;
    padding: 30px 15px 20px;
    /*box-shadow: 0px 0px 12px 0px #072c4224;
    margin-top: -1px;
    background-color: #fff;*/
}
.current-openings-table .current-openings-body .content h5 {
    font-size: 18px;
    margin: 0 0 15px;
    color: #000;
    font-weight: 600;
}
.current-openings-table .current-openings-body .content h5 strong {
    font-weight: 700;
    color: #3ab7fb;
}
.current-openings-table .current-openings-body .content p {
    font-size: 14px;
    line-height: 26px;
    color: #6e6e6e;
    margin-bottom: 15px;
}
.current-openings-table .current-openings-body .content ul {
    padding-left: 30px;
    list-style: decimal-leading-zero;
    margin-bottom: 30px;
}
.current-openings-table .current-openings-body .content li {
    font-size: 14px;
    line-height: 26px;
    color: #6e6e6e;
    margin-bottom: 10px;
}
body h2.career_subheading {
    margin: 45px 0;
    display: none;
}
.career_form {
    position: sticky;
    top: 10px;
    padding: 20px;
    background-image: url(../images/form-bg.jpg);
    box-shadow: 0 0 12px 0px #072c4224;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: 1px solid #47bbd90f;
}
.career_form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #873535;
    opacity: .4;
}

.career_form .form-title {
    color: #fff;
    text-align: center;
    font-weight: 100;
    opacity: 1;
    position: relative;
    font-size: 26px;
    text-transform: uppercase;
    margin: 5px auto 15px;
    max-width: 250px;
}
.career_form .form-group {
    margin-bottom: 15px;
    position: relative;
}
.career_form .form-group i {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #fff;
    z-index: 0;
    margin-top: 13px;
}
.career_form .form-group label {
    display: block;
    font-weight: 500;
    color: #ffffff;
    font-size: 15px;
    line-height: 15px;
    margin-bottom: 10px;
    cursor: pointer;
}
.career_form .form-group input#career_phone {
    letter-spacing: 10px;
}
.career_form .form-group .form-control {
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
    line-height: normal;
    border-radius: 0;
    border: 1px solid #ffffff;
    padding: 10px 15px;
    background: #0000001f;
}
.career_form .form-group textarea.form-control {
    min-height: 64px;
    max-height: 150px;
}
.career_form .form-group .form-control option {
    color: #000000;
}
.career_form .form-group .form-control::placeholder {
    color: #ffffff;
}
.career_form .form-group .form-control:hover, .career_form .form-group .form-control:focus {
    border: 1px solid #fff;
    outline: none;
    box-shadow: none;
}
.career_form .form-group:last-child {
    margin: 0;
}
.career_form .form-group input[type=submit] {
    border: 2px solid #ffffff;
    color: #420a5a;
    border-radius: 0;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .3px;
    text-transform: uppercase;
    padding: 7px 26px;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;
    background: #fff;
}
.career_form .form-group input[type=submit]:hover {
    color: #fff;
    background: #5a194b;
}
.job-benefits {
    background: url(../images/job-benefits-bg.jpg) no-repeat;
    padding: 85px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
}
.job-benefit-box-outer {
    display: flex;
    padding-top: 40px;
}
.job-benefit-box-outer .job-benefit-col {
    width: 25%;
    padding: 0 15px;
}
.job-benefits .job-benefit-box {
    background: #ffffff;
    padding: 0 20px 25px;
    height: 100%;
    box-shadow: 0 0 12px 0px #47bbd938;
    transition: .5s ease;
    position: relative;
}
.job-benefits .job-benefit-box:hover {
    background: #f0f9ff;
}
.job-benefits .job-benefit-box .img-outer {
    background: #072c42;
    width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top: -40px;
    border-radius: 50%;
}
.job-benefits .job-benefit-box .img-outer img {
    max-width: 50px;
    filter: invert(1);
}
.job-benefits .job-benefit-box:hover img {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
@-webkit-keyframes tada {
    0% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  
    10%, 20% {
      -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
      transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
  
    30%, 50%, 70%, 90% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
  
    40%, 60%, 80% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
  
    100% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }
  
  @keyframes tada {
    0% {
      -webkit-transform: scale3d(1, 1, 1);
      -ms-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  
    10%, 20% {
      -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
      -ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
      transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
  
    30%, 50%, 70%, 90% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
      -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
  
    40%, 60%, 80% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
      -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
  
    100% {
      -webkit-transform: scale3d(1, 1, 1);
      -ms-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }
 
  
.job-benefits .job-benefit-box h5 {
    font-size: 18px;
    margin: 30px 0 20px;
    color: #000;
    font-weight: 500;
}
.job-benefits .job-benefit-box p {
    font-size: 15px;
    line-height: 28px;
    color: #6e6e6e;
    margin: 0;
}

.office_life {
    padding: 85px 0;
}
.office_life_outer {
    display: flex;
    margin-left: -5px;
    margin-right: -5px;
    height: 600px;
}
.office_life_outer .office_life_col {
    width: 25%;
    padding: 0 5px;
}
.office_life_outer .office_life_col .office_life_box:first-child {
    padding-bottom: 10px;
}
.office_life_outer .office_life_col .office_life_box:nth-child(3) {
    padding-top: 10px;
}
.office_life_outer .office_life_col .office_life_box {
    position: relative;
    overflow: hidden;
}
.office_life_outer .office_life_col .content {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: -50px;
    color: #fff;
    transition: 0.5s ease;
    font-size: 18px;
    font-weight: 500;
    opacity: 0;
    display: none;
}
.office_life_outer .office_life_col .office_life_box:hover .content {
    opacity: 1;
    bottom: 50px;
}
.office_life_outer .office_life_col .office_life_box.h_60 {
    height: 55%;
}
.office_life_outer .office_life_col .office_life_box.h_40 {
    height: 45%;
}
.office_life_outer .office_life_col .office_life_box.h_33 {
    height: 33.33%;
}
.office_life_outer .office_life_col .img-outer {
    height: 100%;
}
.office_life_outer .office_life_col .img-outer img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.not-found-header-section{
    padding:0;
    min-height:91px;
}
.not-found-section {
    padding: 85px 0;
    background: url(../images/404-bg.png);
    background-position: center;
    background-repeat: repeat;
    overflow:hidden;
}
.not-found-section .img-outer{
    position: relative;
}
.not-found-section .main-img{
    position: relative;
    z-index: 1;
    margin-bottom: 85px;
}
.not-found-section .stars-bg{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: move-up-bg;
    animation-name: move-up-bg;
}
@keyframes move-up-bg {
    0% {
      bottom: 0;
    }
    100% {
      bottom: 80px;
    }
}
.not-found-section .astronaut-bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    -webkit-animation-duration: 15s;
    animation-duration: 15s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: move-left-bg;
    animation-name: move-left-bg;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    z-index: 2;
}
@keyframes move-left-bg {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}
.not-found-section .section_subheading {
    color: #fff;
}
.not-found-section .bar::before {
    background: #abddf5;
}
.not-found-section .btn.custom_btn {
    z-index: 3;
}
#to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 19px;
    background: #3ab7fb;
    cursor: pointer;
    z-index: 1000;
    transition: 0.5s ease;
    overflow: hidden;
    box-shadow: 0 0 14px 2px #0000001c;
}
#to-top i {
    line-height: 40px;
    display: block;
}
#to-top:hover {
    background: #072c42;
}
#to-top i:before {
    position: absolute;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: to-top-icon;
    animation-name: to-top-icon;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
@keyframes to-top-icon {
    0% {
       
    }
    10% {
        top:1px;
        content: "\f102";
    }
}
.qualified-employees {
    margin-top: 85px;
    margin-bottom: 85px;
}
.qualified-employees .qualified-employees-outer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0 -12px;
}
.qualified-employees .qualified-employees-col {
    width: 25%;
    padding: 0 12px;
    margin-bottom: 24px;
}
.qualified-employees .qualified-employees-col.width-40 {
    width: 40%;
}
.qualified-employees .qualified-employees-col.width-35 {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.width-35 .qualified-employees-box {
    background: #3ab7fb;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.width-35 .qualified-employees-box h3 {
    display: flex;
    align-items: center;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 25px;
}
.width-35 .qualified-employees-box h3 span {
    font-size: 20px;
    font-weight: 500;
    margin-left: 35px;
    display: inline-flex;
}
.qualified-employees-box {
    transition: all 0.4s ease-in-out;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 8%);
    position: relative;
    background-color: #ffffffe3;
    padding: 30px 25px;
    border-radius: 6px;
    height: 270px;
    position: relative;
    overflow: hidden;
}
.qualified-employees-box.working_emp_bg {
    padding: 0;
}
.qualified-employees-box.working_emp_bg img {
    height: 270px;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
    width: 100%;
}
.qualified-employees-box.working_emp_bg div {
    color: #ffffff;
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 25px;
    line-height: 25px;
    font-weight: 400;
    text-shadow: 3px 1px #000000;
    text-transform: capitalize;
}
.owl-carousel.employees-carousel .owl-dots {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
}
.owl-carousel.employees-carousel .owl-dots .owl-dot {
    height: 8px;
    width: 8px;
    border-radius: 5px;
    background: #ffffff;
    border: none;
    margin: 5px 0;
    transition: 0.5s ease;
}
.owl-carousel.employees-carousel .owl-dots .owl-dot.active {
    background: #3ab7fb;
    height: 60px;
}
.qualified-employees-box h2 {
    margin: 0;
    color: #3ab7fb;
    font-size: 55px;
}
.qualified-employees-box h2 span {
    font-size: 24px;
    display: block;
    text-transform: capitalize;
    font-weight: 600;
    color: #ffffff;
    margin-top: 30px;
}
.qualified-employees-box.employees-rating-box {
    padding: 0;
}
/* .qualified-employees-box.employees-rating-box:before {
    content: '';
    background: linear-gradient(to bottom, #3ab7fb12, #072c42);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
} */
.qualified-employees-box.employees-rating-box img {
    height: 270px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    width: 100%;
    transition: 0.5s ease;
}
.qualified-employees-box.employees-rating-box:hover img {
    transform: scale(1.11);
}
.qualified-employees-box.employees-rating-box div {
    color: #ffffff;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    padding: 0 35px;
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    z-index: 2;
}
.qualified-employees-box.employees-rating-box div strong {
    color: #ffd333;
    font-weight: 100;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    font-size: 15px;
}
.qualified-employees-box.employees-rating-box div strong i {
    margin: 0 1px;
}
.qualified-employees-box.employees-rating-box div span {
    color: #3ab7fb;
}
.global-clients.qualified-employees-box {
    background-color: #fff;
    text-align: center;
}
.global-clients.qualified-employees-box h2 span {
    color: #072c42;
    font-size: 17px;
    text-transform: none;
    margin-top: 20px;
}
.global-clients.qualified-employees-box .global-clients-logo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -10px;
    margin-right: -10px;
    width: 100%;
    margin-top: 30px;
}
.global-clients.qualified-employees-box .global-clients-logo .img-outer {
    padding: 0 10px;
    width: 25%;
}
.global-clients.qualified-employees-box .global-clients-logo img {
    max-width: 58px;
    width: 100%;
}
.qualified-employees-box.epic-since {
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: linear-gradient(to bottom, #abdbf700, #abdbf769, #abdbf733, #ffffff);
}
.qualified-employees-box.epic-since:before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    background: url(../images/flag.png);
    background-size: contain;
    background-position: center;
    width: 60px;
    height: 60px;
    opacity: .3;
    filter: grayscale(1);
}
.qualified-employees-box h4 {
    font-size: 20px;
    line-height: 27px;
    font-weight: 700;
    color: #072c42;
    margin: 0;
}
.qualified-employees-box h4 span {
    display: block;
    margin-top: 30px;
    font-size: 80px;
    line-height: 80px;
    color: #fff;
    -webkit-text-fill-color: #ffffff;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: #ff0101;
    -webkit-animation-duration: 15s;
    animation-duration: 15s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: since-stroke;
    animation-name: since-stroke;
}
@keyframes since-stroke {
    0% {
        -webkit-text-stroke-color: #ff0101;
    }
    25% {
        -webkit-text-stroke-color: #3ab7fb;
    }
    75% {
        -webkit-text-stroke-color: #ff0101;
    }
    100% {
        -webkit-text-stroke-color: #3ab7fb;
    }
  }
.qualified-employees-box.winning-awards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #def3ffc7, #f5f5f5);
    border: 1px solid #e3f4ff;
}
.qualified-employees-box.winning-awards h6 {
    margin: 0;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #072c42;
}
.qualified-employees-box.winning-awards .img-outer {
    height: 95px;
    display: flex;
    align-items: center;
}
.qualified-employees-box.winning-awards:hover img {
    transform: scale(.9);
}
.qualified-employees-box.winning-awards img {
    max-width: 80px;
    transition: .3s ease;
}
.qualified-employees-box.winning-awards p {
    font-size: 13px;
    line-height: 22px;
    color: #565656;
    margin: 0;
}






footer {
    background-color: #002c42;
    padding: 55px 0;
    position: relative;
}
footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/footer-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    opacity: .15;
}
footer .container {
    position: relative;
    z-index: 1;
}
footer .footer_title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}
footer li a {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 300;
    line-height: 40px;
}
footer p {
    font-size: 15px;
    line-height:normal;
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px;
}
footer h6 {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
footer h6:last-child {
    margin: 0;
}
footer h6 span {
    background-color: #00000036;
    min-width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .5s ease;
}
footer h6:hover span, .form_newsletter .form-group .btn:hover {
    background-color: #3ab7fb;
}
footer h6 a {
    color: #ffffff;
}
.form_newsletter {
    margin-bottom: 20px;
}
.form_newsletter .form-group {
    display: flex;
    position: relative;
    border: 1px solid #ffffff7d;
    border-radius: 70px;
    padding: 7px;
    transition: .5s ease;
    overflow: hidden;
}
.form_newsletter .form-group:hover {
    border: 1px solid #ffffff;
}
.form_newsletter .form-group .form-control {
    background-color: transparent;
    color:#fff;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    padding: 0 50px 0 15px;
    min-height: 45px;
}
.form_newsletter .form-group .form-control::placeholder {
    color: #fff;
}
input:-internal-autofill-selected {
    /* appearance: menulist-button;
    background-image: none !important;
    background-color: -internal-light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important;
    color: fieldtext !important; */
    appearance: menulist-button;
    background-color: -internal-light-dark(rgba(232, 240, 254, 0), rgba(70, 90, 126, 0)) !important;
    color: fieldtext !important;
}
.form_newsletter .form-group .btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: #00000036;
    color: #fff;
    width: 40px;
    height: 40px;
    padding: 0;
}
footer .social-icons {
    display: flex;
    margin-top: 20px;
    flex-direction: column;
}
footer .social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #00000036;
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 16px;
    position: relative;
}
footer .social-icons a:hover {
    background: #3ab7fb;
    color: #fff;
}
footer .social-icons a:after {
    content: attr(socialname);
    position: absolute;
    left: 50px;
    font-size: 13px;
    text-transform: lowercase;
    letter-spacing: .5px;
    opacity: .7;
    white-space: nowrap;
}
footer .social-icons a:hover:after {
    color: #3ab7fb;
    opacity: 1;
}
.footer-copyright {
    background-color: #041824;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 20px 12px;
    box-shadow: -2px 3px 13px 5px #00000021;
}
.footer-copyright a {
    color: inherit;
}
.footer-copyright a:hover {
    color: #3ab7fb;
}