@charset "utf-8";
/*CSS Document*/
/*Table of content*/
/*font-family: 'Lato', sans-serif;*/
/*font-weight*/
/*100: extra light
300: light	
400: regular
500: medium
600: semibold
700: bold
800: extrabold
900: black*/
/*common css*/
/*body*/
/*form*/
/*bullet style*/
/*button*/
/*shadow*/
/*gradient*/
/*section padding*/
/*header*/
/*slider*/
/*about sectoin*/
/*product section*/
/*video section*/
/*testimonials section*/
/*blog section*/
/*footer*/
/**/
/*common css start*/
*:focus {
    outline: none;
}
body {
    background-color: #f5f8ff;
    color: #555;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin: 0px;
    padding: 0px;
    line-height: 24px;
    overflow-x: hidden;
}
.body-wrapper {
    width: 100%;
    overflow: hidden;
}
p {
    margin-bottom: 15px;
}
b,strong {
    font-weight: 700;
}
small { 
    color: #999;
    font-size: 13px;
}
a {
    color: #e20914;
    text-decoration: none;
    outline: none;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
a:hover {
    color: #033d78;
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    font-family: 'Fira Sans', sans-serif;
    margin: 0px;
    padding: 0px;
    color: #033d78;
    line-height: 1;
}
h1 {
    font-size: 40px;
    margin-bottom: 35px;
}
h2 {
    font-size: 36px;
    margin-bottom: 35px;
}
h3 {
    font-size: 22px;
    margin-bottom: 20px;
}
h4 {
    font-size: 20px;
    margin-bottom: 20px;
}
h5 {
    font-size: 18px;
    margin-bottom: 20px;
}
h6 {
    font-size: 16px;
    margin-bottom: 20px;
}
input[type="submit"],
input[type="button"],
button[type="submit"],
button[type="button"] {
    outline: none;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
input[type="tel"],
input[type="date"],
select {
    box-shadow: none;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0px;
}
input[type="date"]::-webkit-inner-spin-button {
    display: none;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    background-image: none;
    background: transparent;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number]::-moz-outer-spin-button,
input[type=number]::-moz-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.form-group {
    margin-bottom: 20px;
}
.form-control {
    color: #555;
    display: block;
    font-size: 16px;
    width: 100%;
    height: 50px;
    padding: 0 0 0 2px;
    background-color: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom-color: #ddd;
    border-bottom-width: 2px;
    border-radius: 0;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.form-control:focus {
    background-color: transparent;
    border-bottom-color: #033d78;
    outline: 0;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
.form-control::-webkit-input-placeholder {
    color: #555;
}
.form-control::-moz-placeholder {
    color: #555;
}
.form-control:-ms-input-placeholder {
    color: #555;
}
.form-control::-ms-input-placeholder {
    color: #555;
}
.form-control::placeholder {
    color: #555;
}
textarea.form-control {
    resize: none;
    height: 70px;
}
select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url(../images/select-down-arrow.webp) no-repeat right 0px center;
}
button:focus {
    outline: none;
}
.button-common {
    background-color: transparent;
    padding: 10px 30px;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    outline: 0px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    color: #e20914;
    border: 1px solid #e20914;
    font-weight: 700;
    letter-spacing: 1.3px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    line-height: 1;
}
.button-common:hover {
    background-color: #e20914;
    color: #fff;
}
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
.bullet li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}
.bullet li:last-child {
    margin-bottom: 0px;
}
.bullet li::before {
    background-image: url(../images/bullet.svg);
    content: '';
    background-position: left center;
    height: 8px;
    left: 0px;
    position: absolute;
    top: 10px;
    width: 8px;
}
.titleleftborder, .titlecenterborder {
    position: relative;
    padding-bottom: 25px;
}
.titlecenterborder {
    display: inline-block;
}
.titleleftborder::before {
    border-top: 1px solid #e20914;
    border-bottom: 1px solid #e20914;
    width: 100px;
    height: 4px;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
}
.titlecenterborder::before {
    border-top: 1px solid #e20914;
    border-bottom: 1px solid #e20914;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
}
.titlecenterborder.white::before, .titleleftborder.white::before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
/*common css end*/
/*section padding start*/
.p-y-40{
    padding-top: 40px;
    padding-bottom: 40px;
}
.p-t-100{
    padding-top: 100px;
}
.p-b-100{
    padding-bottom: 100px;
}
.p-y-100{
    padding-top: 100px;
    padding-bottom: 100px;
}
/*section padding end*/
/*section margin start*/
.m-l-24 {
    margin-left: 24px;
}
.m-r-24 {
    margin-right: 24px;
}
.m-x-24 {
    margin-left: 24px;
    margin-right: 24px;
}
.m-b-30 {
    margin-bottom: 30px;
}
.m-b-50 {
    margin-bottom: 50px;
}
.m-t-100 {
    margin-top: 100px;
}
.m-b-100{
    margin-bottom: 100px;
}
.m-y-100{
    margin-top: 100px;
    margin-bottom: 100px;
}
/*section margin end*/
/* animation css start*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}
.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1;
    }
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
        opacity: 0;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
        opacity: 0;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
        opacity: 0;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        opacity: 0;
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}
@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}
@keyframes zoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}
.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}
@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
/* animation css end*/
/*page loader css start*/
#preloader {
    top:0;
    position:fixed;
    width:100%;
    height:100%;
    z-index:9999;
    background:rgba(255,255,255,1);
}
.ploader {
    width:100%;
    text-align:center;
    top:50%;
    position:absolute;
    transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    -o-transform:translateY(-50%);
    -webkit-transform:translateY(-50%);
}
.ploader span {
    position: absolute;
    display: block;
    height: 100%;
    left: 0px;
    right: 0px;
    bottom: 0%;
    background-color: #FFFFFF;
    opacity: 0.7;
    filter: alpha(opacity=70);
    -webkit-animation: logo 2s infinite;
    animation: logo 2s infinite;
}
@-webkit-keyframes logo {
    0% {
        bottom: 0%;
    }
    20% {
        bottom: 25%;
    }
    60% {
        bottom: 50%;
    }
    100% {
        bottom: 100%;
    }
}
@keyframes logo {
    0% {
        bottom: 0%;
    }
    20% {
        bottom: 25%;
    }
    60% {
        bottom: 50%;
    }
    100% {
        bottom: 100%;
    }
}
/*page loader css end*/
/*header start*/
.header{
    position: fixed;
    left: 0px;
    width: 100%;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    z-index: 10;
    top: 0px;
    padding: 10px 20px 10px 195px;
}
.header.stickyheader{
    background-color: #fff;
}
.header .logo{
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease; 
    width: 217px;
}
.header .logo a {
    display: block;
}
.header.stickyheader .logo{
    /*width: 197px;*/
}
.navbar-icon{
    padding-left: 15px;
    /*padding-left: 10px;*/
}
.navbar-wrap > .navbar-icon:first-child{
    padding-left: 20px;
    /*padding-left: 15px;*/
}
.headerclose {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
}
.navigation{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
nav.nav > ul {
    padding:0;
}
nav.nav > ul > li {
    position:relative;
    display:inline-block;
    margin-right:5px;
    list-style:none;
    padding: 12px 0px;
}
nav.nav > ul > li:last-child {
    margin-right:0;
}
nav.nav > ul > li:last-child a{
    padding-right:0;
}
nav.nav > ul > li.current-menu-item > a {
    color: #fff;
    /*opacity: 1;*/
}
nav.nav > ul > li.current-menu-parent > a,
nav.nav > ul > li.current-menu-ancestor > a {
    color: #fff;
    /*opacity: 1;*/
}
.stickyheader nav.nav > ul > li.current-menu-parent > a,
.stickyheader nav.nav > ul > li.current-menu-ancestor > a {
    color: #033d78;
}
nav.nav > ul > li.current-menu-parent > ul > li.current-menu-item > a,
nav.nav > ul > li.current-menu-ancestor > ul > li.current-menu-parent > a,
nav.nav > ul > li.current-menu-ancestor > ul > li.current-menu-parent > ul > li.current-menu-item > a {
    color: #e20914;
    /*color: #033d78;*/
}
nav.nav > ul > li > a:hover {
    color: #fff;
    /*opacity: 1;*/
}
nav.nav > ul > li > a {
    color:#fff;
    text-decoration:none;
    display:inline-block;
    /*padding:0 20px;*/
    margin:0 15px;
    font-size: 16px;
    letter-spacing: 0.8px;
    position: relative;
    line-height: 1;
    /*opacity: 0.75;*/
    width: auto;
    position: relative;
}

nav.nav > ul > li > ul {
    display:none;
    position:absolute;
    left:-22px;
    top:50px;
    width:240px;
    background-color: #fff;
    margin:0;
    padding:0px 25px;
}
nav.nav > ul > li > ul li {
    list-style:none;
    border-bottom: 1px solid #ddd;
    padding-left: 18px;
    position: relative;
}
nav.nav > ul > li > ul li::before {
    position: absolute;
    /*background-image: url(../images/red-bullet.svg);*/
    background-color: #e20914;
    border-radius: 50%;
    content: '';
    background-position: left center;
    height: 8px;
    width: 8px;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: auto;
    margin-top: 2px;
}
nav.nav > ul > li > a:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #fff;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
    margin: 0 auto 0;
    position: absolute;
    bottom: -11px;
    left: 0;
    right: 0
}
.stickyheader nav.nav > ul > li > a:after {
    /*background: #033d78;*/
    background: #E20914;
}
nav.nav > ul > li.current-menu-item > a:after,
nav.nav > ul > li > a:hover:after,
.stickyheader nav.nav > ul > li.current-menu-item > a:after,
.stickyheader nav.nav > ul > li > a:hover:after, 
nav.nav > ul > li.current-menu-parent > a:after,
nav.nav > ul > li.current-menu-ancestor > a:after,
.stickyheader nav.nav > ul > li.current-menu-parent > a:after,
.stickyheader nav.nav > ul > li.current-menu-ancestor > a:after
{
    width: 100%
}
/*nav.nav > ul > li > ul li::after {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    bottom: auto;
    font-size: 10px;
    font-weight: 600;
    position: absolute;
    vertical-align: middle;
    color: #023782;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    opacity: 0;
    margin-right: 10px;
}
nav.nav > ul > li > ul li:hover::after {
    opacity: 1;
    margin-right: 0px;
}*/
nav.nav > ul > li > ul li:last-child {
    border: none;
}
nav.nav > ul > li > ul li a {
    display: inline-block;
    color: #555;
    text-decoration: none;
    letter-spacing: 0.8px;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
    line-height: 1.3;
    margin-top: 1px;
}
nav.nav > ul > li > ul li a:hover {
    /*color: #033d78;*/
    color: #e20914;
    /*opacity: 1;*/
}
nav.nav > ul > li:hover ul {
    display:block;
}
nav.nav > ul > li > ul li:hover,nav.nav > ul > li > ul li.current-menu-item {
    background-color: #fff;
}
/*nav.nav > ul > li.menu-item-has-children::after {
    font-family: "Font Awesome 5 Free";
    content: "\f063";
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    bottom: auto;
    font-size: 10px;
    font-weight: 600;
    position: absolute;
    vertical-align: middle;
    margin-top: -1px;
    color: #023782;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    opacity: 0;
}
nav.nav > ul > li.menu-item-has-children:hover::after {
    opacity: 1;
}*/
a.mobile-menu-icon,.headerclose {
    display:none;
}
button.close span {
    line-height: 24px;
}
button.close:hover {
    color: #fff;
    opacity: 1;
}
.sub-menu-arrow {
    display: none;
}
nav.nav > ul > li > ul.sub-menu > li.menu-item-has-children,
nav.nav > ul > li > ul.sub-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children{
    position: relative;
}
nav.nav > ul > li > ul > li.menu-item-has-children > ul,
nav.nav > ul > li > ul > li.menu-item-has-children > ul > li.menu-item-has-children > ul{
    position: absolute;
    top: 0;
    left: 100%;
    width: 280px;
    padding: 0px 25px;
    background: #fff;
    display: none;
    list-style: none;
    margin-left: 25px;
}
nav.nav > ul > li > ul > li.menu-item-has-children:hover > ul,
nav.nav > ul > li > ul > li.menu-item-has-children > ul > li.menu-item-has-children:hover > ul {
    display: block;
}
nav.nav > ul > li > ul li.menu-item-has-children a,
nav.nav > ul > li > ul li.menu-item-has-children > ul li.menu-item-has-children a {
    width: 120%;
}
nav.nav > ul > li > ul > li.menu-item-has-children > ul > li.menu-item-has-children > ul{
    width: 220px;
}
.navbar-icon > a {
    display: block;
    font-size: 14px;
    width: 40px;
    height: 40px;
    line-height: 38px;
    border-radius: 50%;
    border: 1px solid #fff;
    text-align: center;
    color: #fff;
    opacity: .75;
}
.navbar-icon > a:hover {
    color: #fff;
    opacity: 1;
}
.stickyheader .navbar-icon > a:hover, .stickyheader nav.nav > ul > li.current-menu-item > a {
    color: #033d78;
    /*color: #e20914;*/
}
.stickyheader nav.nav > ul > li > a:hover {
    color: #033d78;
    /*color: #e20914;*/
}
.stickyheader nav.nav > ul > li > ul li a:hover {
    color: #e20914;
}
.stickyheader nav.nav > ul > li > a, .stickyheader .navbar-icon > a {
    color: #555;
    opacity: 1;
}
.stickyheader .navbar-icon > a {
    border: 1px solid #999;
    opacity: 1;
}
.stickyheader .navbar-icon > a:hover {
    border: 1px solid #e20914;
}
/*header end*/
/*footer start*/
.footer {
    position: relative;
}
.footerlightrow {
    background-color: #fff;
    border-top: 1px solid #ddd;
}
.footerdarkrow {
    background-color: #033d78;
    position: relative;
}
.footerdarkrow h4 {
    color: #fff;
}
.footerdarkrow a, .footerdarkrow p {
    color: #c1efff;
}
.footerdarkrow a:hover {
    color: #fff;
}
.footer-vector {
    position: absolute;
    right: -30px;
    bottom: 0;
}
.social {
    margin-top: 25px;
}
.social ul li {
    display: inline-block;
    margin-right: 10px;
    text-align: center;
}
.round img {
    border-radius: 10px;
    cursor: pointer;
} 
.copyright-details {
    margin-top: 15px;
}
.copyright-details p {
    margin-bottom: 0;
}
.footerdarkrow .form-control {
    border: 1px solid #c1efff;
    color: #c1efff;
    display: block;
    width: 100%;
    height: auto;
    padding: 7px 20px;
    font-size: 16px;
    background-color: transparent;
    background-image: none;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.footerdarkrow textarea.form-control {
    height: 85px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
}
.footerdarkrow .form-control:focus {
    color: #fff;
    border-color: #fff;
    outline: 0;
    background: transparent;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;  
}
.footerdarkrow .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #9fccff;
}
.footerdarkrow .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #9fccff;
}
.footerdarkrow .form-control:-ms-input-placeholder {
    color: #9fccff;
}
.footerdarkrow .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #9fccff;
}
.footerdarkrow .button-common {
    color: #fff;
    border-color: #fff;
    padding: 12px 30px;
}
.footerdarkrow .button-common:hover {
    color: #033d78;
    background-color: #fff;
    border-color: #fff;
}
.footerlightrow .type-wrap {
    margin-bottom: 15px;
}
.footerlightrow .type-wrap span {
    color: #e20914;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 500;
    font-family: 'Fira Sans', sans-serif;
    margin: 0px;
    padding: 0px;
    line-height: 1;
}
/*footer end*/
/*contact form 7 success and error message*/
.help-block-error {
    color: #c1efff;
    font-size: 13px;
    text-align: left;
    padding-left: 0px;
    display: inline-block;
    width: 100%;
}
.wpcf7 form.sent .wpcf7-response-output {
    background: #d4edda;
    border: 1px solid #d4edda;
    margin: 30px 0 0;
    padding: 7px 20px;
    color: #155724;
    border-radius: 20px;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    background: #f8d7da;
    border: 1px solid #f8d7da;
    margin: 30px 0 0;
    padding: 7px 20px;
    color: #721c24;
    border-radius: 20px;
}
form.invalid span.wpcf7-not-valid-tip {
    color: #c1efff;
    position: relative;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
}
/*contact form 7 success and error message*/
/*homepage start*/
.banner-content {
    padding-top: 380px;
    padding-bottom: 220px;
    /*padding-top: 400px;
    padding-bottom: 250px;*/
}
.banner-text-slider p{
    color: #023782;
    font-size: 48px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 40px;
}
.innerwrap {
    position: absolute;
    top: 0;
    right: -260px;
    width: 100%;
    bottom: 0px;
}
.bannersectionrow .slick-dots {
    bottom: -115px;
}
.glance-content h3 {
    color: #e20914;
    margin-bottom: 10px;
}
.glance-content p {
    margin-bottom: 20px;
}
.capbox {
    margin-bottom: 40px;
}
.capbox a {
    display: block;
    text-align: center;
}
.capbox h3{
    color: #555;
    margin-bottom: 0px;
}
.capbox a:hover h3 {
    color: #e20914;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
.servesectionrow{
    display: inline-block;
    width: 100%;
    position: relative;
}
.servesectionrow .bgblue {
    width: 100%;
    position: relative;
}
.servesectionrow .bgblue::before {
    position: absolute;
    right: -100px;
    top: 0;
    content: '';
    background-color: #033d78;
    border-radius: 70px;
    width: 100%;
    height: 100%;
    transform: skew(13.5deg);
    -webkit-transform: skew(13.5deg);
    -moz-transform: skew(13.5deg);
    -o-transform: skew(13.5deg);
    -ms-transform: skew(13.5deg);
}
.servesectionrow h2, .servesectionrow p {
    color: #fff;
}
.servesectionrow p {
    margin-bottom: 0px;
}
.servesectionrow h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.2;
}
.servesectionrow a {
    display: block;
}
.servesectionrow span {
    display: inline-block;
    font-size: 11px;
    width: 30px;
    height: 30px;
    line-height: 28px;
    border-radius: 50%;
    border: 1px solid #fff;
    text-align: center;
    color: #fff;
    opacity: .60;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    vertical-align: top;
}
.servesectionrow a:hover span{
    color: #fff;
    opacity: 1;
}
.servesectionrow i {
    margin-left: 1px;
}
.titlecenterborder.white, .titleleftborder.white {
    padding-bottom: 15px;
}
.titlecenterborder.white h2, .titleleftborder.white h2 {
    margin-bottom: 25px;
}
.servebox img {
    margin-bottom: 15px;
}
.top-vector {
    position: absolute;
    right: 0;
    top: -250px;
}
.bottom-vector {
    position: absolute;
    left: 0;
    bottom: -150px;
}
.slick-prev, .slick-next {
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
.clients-slider {
    padding: 0 50px; 
}
.clients-slider .client-slide{
    padding: 0 10px; 
}
.client-slide .client-box {
    text-align: center;
   /* border:1px solid #ddd;*/
}
.client-slide .client-box img{
    width: 100%;
}
.clients-slider .slick-prev {
    left: 0;
}
.clients-slider .slick-next {
    right: 0;
}
#counter .counter, #counter span {
    color: #e20914;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 12px;
}
#counter p {
    margin-bottom: 0px;
}
.typed-cursor {
    display: none;
}
/*homepage end*/
/*thankyou start*/
.thankyourow .smile-icon {
    color: #e20914;
    font-size: 90px;
    line-height: 1;
    letter-spacing: 0px;
    text-transform: none;
    margin: 0 0 20px;
}
.thankyourow .button-common {
    margin-top: 10px;
}
.thankyourow h1 {
    margin-bottom: 25px;
}
.page-template-thank-you-page-tpl nav.nav > ul > li > a, .page-template-thank-you-page-tpl .navbar-icon > a {
    color: #555;
    opacity: 1;
}
.page-template-thank-you-page-tpl .navbar-icon > a {
    border: 1px solid #999;
}
.page-template-thank-you-page-tpl nav.nav > ul > li > a:after {
    /* background: #033d78; */
    background: #E20914;
}
.page-template-thank-you-page-tpl .navbar-icon > a:hover {
    color: #033d78;
    /* color: #e20914; */
}
.page-template-thank-you-page-tpl nav.nav > ul > li > a:hover {
    /*color: #033d78;*/
     color: #e20914; 
}
/*thankyou end*/
/*login start*/
.login_main {
    margin-top: 20px;
}
.login-detail {
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
}
.login-header {
    position: relative;
}
.login-head {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.login-head h2 {
    color: #fff;
    margin-bottom: 0;
}
.header-logo {
    margin-bottom: 50px;
}
.login-form {
    padding: 50px;
}
body > p.errr { 
    display:none; 
}
p.log_err {
    font-size: 14px;
    color: #f00;
    line-height: 17px;
}
/*login end*/
/*list page start*/
.table_div .dataTables_wrapper .dataTables_paginate a.paginate_button {
    border: 1px solid #e20914;
    border-radius: 50%;
    display: inline-block;
    height: 35px;
    line-height: 32px;
    margin: 0 10px 0 0;
    padding: 0;
    text-align: center;
    width: 35px;
    background: transparent;
    font-weight: normal;
    font-size: 14px;
    text-decoration: none;
    vertical-align: middle;
}
.table_div .dataTables_wrapper .dataTables_paginate a.paginate_button.previous{
    text-indent: -9999px;
    background-image: url('../images/pagination-prev.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 35% 35%;
}
.table_div .dataTables_wrapper .dataTables_paginate a.paginate_button.previous:hover{
    background-image: url('../images/pagination-prev-white.webp');	
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 35% 35%;
}
.table_div .dataTables_wrapper .dataTables_paginate a.paginate_button.next:hover{
    background-image: url('../images/pagination-next-white.webp');	
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 35% 35%;
}
.table_div .dataTables_wrapper .dataTables_paginate a.paginate_button.next{
    text-indent: -9999px;
    background-image: url('../images/pagination-next.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 35% 35%;
    margin-right: 0px;
}
.table_div .dataTables_wrapper .dataTables_paginate a.paginate_button:hover,
.table_div .dataTables_wrapper .dataTables_paginate a.paginate_button.current{
    color:#fff !important;
    background:#e20914;
    border-color: #e20914;
}
.table_div {
    width: 100%;
    display: inline-block;
    position: relative;
    /*margin-top: 50px;*/
}
.table_main{position: relative;}
.table_div a.btn {
    font-size: 14px;
    line-height: 20px;
    color: #e20914;
    position: relative;
    width: auto;
    display: inline-block;
    margin: 0 auto;
    background: transparent;
    border-radius: 30px;
    padding: 0;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: none;
    cursor: pointer;
}
.table_div a.btn:hover, .table_div a.btn:focus {
    background: transparent;
    color: #033d78;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.table_div .dataTables_length label{
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1;
    color: #555;
    font-weight: 400;
}
.table_div .dataTables_length select::-ms-expand {
    display: none;
}
.table_div .dataTables_length select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url("../images/select-down-arrow.webp") no-repeat right top 7px;
    border: 0px;
    border-bottom: 2px solid #ddd;
    width: 60px;
    padding-bottom: 10px;
    margin-left: 5px;
    margin-right: 5px;
}
.table_div table.dataTable.no-footer {
    /*width: 1525px !important;*/
    margin: 0px 0px 15px 0px;
    display: inline-block;
    border-bottom: 0px none;
    border: 0px none;
}
.table_div .dataTables_info{
    /*width: 88.5%;*/
    display: inline-block;
    float: right;
    text-align: left;
    padding: 20px 0px 0px;
    color: #999999;
    font-size: 16px;
    line-height: 1;
    display: none;
}
.dataTables_wrapper .dataTables_length {
    margin-top: 11px;
}
.table_div .dataTables_paginate {
    width: auto;
    float: left;
    text-align: left;
}
.table_div table.dataTable thead th{
    border-bottom: 0px none;
    border:1px solid #b2d6fb;
    background:#d3e9ff;
    color: #033d78;
    padding: 10px 21px;
	text-transform: uppercase;
}
.table_div table.dataTable tbody td {
    padding: 15px 19px;
    border: 1px solid #ddd;
    border-top: 0px none;
    background:#fff;
    color: #555; 
}
.table_div .form-group, .table_div .dataTables_filter {
    position: relative;
    margin-bottom: 20px;
    padding-top: 16px;
}
.dataTables_filter{
    width:auto;
    display: inline-block;
}
.table_div .form-group .form-control, .table_div .dataTables_filter input {
    padding: 0px 0 10px 2px;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom-color: #ddd;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-radius: 0px;
    background: transparent;
    color: #555;
    text-transform: capitalize;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    display: inline-block;
    width: 300px;
}
.table_div .form-group .form-control ~ label, .table_div .dataTables_filter label {
    font-weight: 400;
    font-size: 16px;
    color: #555;
    font-family: 'Lato', sans-serif;
}
.table_div .form-group .form-control.trans-hover{
    border-bottom-color:#033d78;
}
.table_div .form-group .form-control.trans-hover ~ label{
    -webkit-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
    font-size: 13px;
    color: #999999;
    top: -17px;
}

/*list page end*/

/*login link navbar css start*/
.navbar-icon {
    padding-top: 10px;
    padding-bottom: 10px;
}
.login-icon {
    position: relative;
}
.login-icon ul {
    display: none;
    position: absolute;
    left: 0px;
    top: 60px;
    width: 120px;
    background-color: #fff;
    margin: 0;
    padding: 0px 20px;
}
.login-icon:hover ul {
    display: block;
}
.login-icon ul li a {
    display: inline-block;
    color: #555;
    text-decoration: none;
    letter-spacing: 0.8px;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
    line-height: 1;
    margin-top: 1px;
}
.login-icon ul li a:hover {
    color: #033d78;
    /* color: #e20914; */
    opacity: 1;
}
.login-icon ul li {
    position: relative;
    border-bottom: 1px solid #ddd;
    padding-left: 18px;
}
.login-icon ul li::before {
    position: absolute;
    background-color: #e20914;
    border-radius: 50%;
    content: '';
    background-position: left center;
    height: 8px;
    width: 8px;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: auto;
    margin-top: 2px;
}
.footermenu1 .current-menu-item,
.footermenu2 .current-menu-item {
    display: none;
}
/*login link navbar css end*/
/*breadcumnb css start*/
.breadcrumb-content {
    padding-top: 300px;
    padding-bottom: 225px;
}
.breadcrumb-content ul{
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin: 10px auto 0;
    color:#e20914;
    font-size: 16px;
    padding-left: 0px;
}
.breadcrumb-content ul li{
    display: inline-block;
}
.breadcrumb-content ul li, .breadcrumb-content ul li a{
    color: #555;
}
.breadcrumb-content ul li.active, .breadcrumb-content ul li a:hover, .breadcrumb-content ul li a:focus{
    color: #e20914;
}
.breadcrumb-content .breadcrumbs li::after {
    padding: 0 3px;
    color: #ccc;
    content: "/";
}
.breadcrumb-content .breadcrumbs li.active::after{
    display: none;
}
.breadcrumb-content h2 {
    margin-bottom: 0px;
}
/*breadcumnb css end*/
/*about css start*/
.border-30 {
    border-radius: 30px;
}
.glanceaboutesectionrow .glance-content p:last-child {
    margin-bottom: 0px;
}
.ceo-vector {
    position: absolute;
    bottom: -30px;
    left: -100px;
    z-index: -1;
}
.ceosectionrow h2 {
    margin-bottom: 20px;
}
.ceosectionrow p {
    position: relative;
    margin-bottom: 0px;
}
/*.ceosectionrow p::before, .ceosectionrow p::after {
    background-image: url(../images/quote-vector.svg);
    content: '';
    height: 20px;
    position: absolute;
    width: 32px;
}
.ceosectionrow p::before {
    left: -40px;
    top: 5px;
}
.ceosectionrow p::after {
    right: -35px;
    bottom: 6px;
    -webkit-transform: scale(-1, -1);
    -ms-transform: scale(-1, -1);
    transform: scale(-1, -1);
}*/
.weare-content p {
    margin-bottom: 20px;
}
.weare-content p:last-child {
    margin-bottom: 15px;
}
.grayscale {
    filter: gray;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}
.whowearesectionrow .slick-dots {
    bottom: -90px;
    text-align: center;
}
.whowearesectionrow h3 {
    color: #555;
    text-align: center;
}
.before, .now {
    background-color: #e20914;
    border: 1px solid #e20914;
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    padding: 7px 35px;
    text-transform: capitalize;
    position: absolute;
    bottom: -45px;
}
.before {
    left: 100px;
}
.now {
    right: 100px;
}
.visionsectionrow h2,
.whowearesectionrow h2 {
    margin-bottom: 15px;
}
.visionsectionrow .titleleftborder,
.whowearesectionrow .titleleftborder {
    padding-bottom: 18px;
}
.visionsectionrow .custom-row {
    margin-bottom: 50px;
}
.visionsectionrow .custom-row:last-child, .custom-row p{
    margin-bottom: 0;
}
.page-template-about-us-page-tpl .visionsectionrow .mission-content .titleleftborder::before {
    left: auto;
    right: 0;
}
.vision-vector, .mission-vector {
    position: absolute;
    top: 130px;
    z-index: -1;
}
.vision-vector {
    left: -190px;
}
.mission-vector {
    right: -190px;
}
.serveaboutsectionrow p {
    margin-bottom: 15px; 
}
.serveaboutsectionrow p:last-child {
    margin-bottom: 0; 
}
/*about css end*/
/*our capabilities css end*/
.visionsectionrow .custom-capabilities-row {
    margin-bottom: 80px;
}
.visionsectionrow .custom-capabilities-row:last-child {
    margin-bottom: 0;
}
.custom-capabilities-row .vision-vector, .custom-capabilities-row .mission-vector {
    top: 210px;
}
/*our capabilities css end*/
/*our capabilities detail css start*/
.other-capabilities-box {
    margin-bottom: 45px;
}
.other-capabilities-box a {
    display: block;
    text-align: center;
}
.other-capabilities-box span {
    display: inline-block;
    font-size: 11px;
    width: 30px;
    height: 30px;
    line-height: 28px;
    border-radius: 50%;
    border: 1px solid #e20914;
    text-align: center;
    color: #e20914;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    vertical-align: top;
}
.other-capabilities-box a:hover span{
    color: #033d78;
    border: 1px solid #033d78;
}
.other-capabilities-box h3 {
    margin-bottom: 10px;
}
.other-capabilities-box a:hover h3{
    color: #e20914;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
.other-capabilities-box i {
    margin-left: 1px;
}
.servesectionrow .bullet li {
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
}
.servesectionrow .bullet li::before {
    background-image: url(../images/white-bullet.svg);
    top: 8px;
}
.services-slider .slick-dots {
    text-align: center;
    bottom: -40px;
}
.specification-wrap {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
}
.specification-wrap div {
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 20px;
    color: #e20914;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.3px;
    line-height: 2.769;
    margin-bottom: 10px;
    margin-right: 15px;
    padding: 2px 28px;
}
.specification-wrap div:last-child {
    margin-bottom: 0;
    margin-right: 0;
}
.serviceslidersectionrow .bullet li::before {
    background-image: url(../images/red-bullet.svg);
    top: 8px;
}
.serviceslidersectionrow .bullet li {
    margin-bottom: 20px;
}
.serviceslidersectionrow .surface-bullet li {
    margin-bottom: 10px;
}
.serviceslidersectionrow .bullet li:last-child, .serviceslidersectionrow .surface-bullet li:last-child {
    margin-bottom: 0px;
}
.serviceslidersectionrow .vision-vector {
    top: 290px;
}
.services-content {
    padding-top: 5px;
}
.other-img {
    border-radius: 30px;
    margin-bottom: 20px;
    overflow: hidden;
}
.capbox.other-capabilities-box img {
    border-radius: initial;
    margin-bottom: auto;
}
.other-img img{
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.other-img:hover img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.services-content p:last-child {
    margin-bottom: 0;
}
/*our capabilities detail css end*/
/*404 page start*/
.notfound-title {
    color: #e20914;
    font-size: 150px;
    font-family: "Fira Sans";
    font-weight: 500;
    letter-spacing: 0;
    line-height: 0.85;
    margin-bottom: 15px;
}
.notfound-main h1, .notfound-main p {
    margin-bottom: 20px;
}
/*404 page end*/
/*careers page start*/
.careerssectionrow .m-b-30 {
    margin-bottom: 0;
}
.careers-content h1, .contact-content h1 {
    font-size: 36px;
}
.careers-content p {
    margin-bottom: 25px;
}
.careerssectionrow .bullet li {
    margin-bottom: 8px;
}
.careerssectionrow .bullet li::before {
    background-image: url(../images/red-bullet.svg);
    top: 8px;
}
.uploadbox {
    position: relative
}
.uploadbox input[type="file"] {
    display: none;
}
.uploadbox .custom-file-upload { 
    height: 50px;
    overflow: hidden;
    cursor: pointer;
    padding-top: 10px;
}
.uploadbox .custom-file-upload::after {
    content: 'Choose File';
    background: #f2f2f2;
    color: #000000;
    border: 1px solid #a5a5a5;
    font-size: 15px;
    letter-spacing: 0px;
    padding: 0 5px;
    margin: 0 auto;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    position: absolute;
    right: 1px;
    bottom: 15px;
    opacity: 0.7;
}
.uploadbox .custom-file-upload:focus {
    border-color:#033d78;
}
.uploadbox .custom-file-upload:hover::after {
    opacity: 1;
}
.card {
    background-color: transparent;
    background-clip: border-box;
    border: none;
    margin-bottom: 30px;
}
.card:last-child {
    margin-bottom: 0;
}
.card-header {
    border-bottom: none;
    background-color: transparent;
    padding: 0;
    border: none;
}
.card-header:first-child {
    border-radius: 10px;
}
.card-body {
    padding: 30px 70px 20px;
}
.card-header a {
    color: #fff;
    background-color: #033d78;
    border: 2px solid #033d78;
    border-radius: 10px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
    font-size: 22px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 1.364;
    padding: 15px 30px 15px 70px;
    display: block;
    cursor: pointer;
    position: relative;
}
.card-header a.collapsed {
    color: #033d78;
    background-color: transparent;
    border: 2px solid #85cce6;
    border-radius: 10px;
}
.card-header a::before {
    content: "";
    background: transparent url(../images/accordion-sprite.webp)no-repeat scroll 0% 0%;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 20px;
    z-index: 1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-size: 100% auto;
    background-position: 0px -2px;
}
.card-header a.collapsed::before {
    background-position: 0px -39px;
}
.card-header a:hover {
    color: #fff;
    background-color: #033d78;
    border: 2px solid #033d78;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
.card-body ul {
    margin-bottom: 25px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}
.hr-notice {
    padding-top: 25px;
}
.hr-notice p {
    margin-bottom: 0;
}
/*careers page end*/
/*contact us page start*/
.wrap-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.wrap-div:last-child, .address-box p {
    margin-bottom: 0;
}
.address-box a {
    color: #555;
}
.address-box a:hover, .address-box span, .address-box h3 {
    color: #e20914;
}
.wrap-icon {
    margin-right: 20px;
}
.wrap-text {
    width: calc(100% - 30px);
}
.address-box h4 {
    font-size: 18px;
}
.address-box h3, .address-box h4 {
    margin-bottom: 15px;
}
.contactsectionrow textarea.form-control {
    height: 100px;
}
/*contact us page end*/
/*life at amd page start*/
.lifeatamdsectionrow  h3 {
    color: #e20914;
}
.lifeatamdsectionrow  p {
    margin-bottom: 0;
}
/*life at amd page page end*/
/*industries we serve page start*/
.industries-we-serve-box  {
    text-align: center;
    margin-bottom: 70px;
}
.industries-we-serve-box .other-img {
    margin-bottom: 25px;
}
.industries-we-serve-box  h3 {
    margin-bottom: 15px;
}
.industries-we-serve-box  p {
    margin-bottom: 20px;
}
.industries-we-serve-box  .button-common {
    display: inline-block;
}
.brbox br {
    display: none;
}
/*industries we serve page end*/
.close-popup {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 40px;
    height: 40px;
    color: #fff;
    background-color: transparent;
    border: none;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
}

