/********************************/
/****Initialise page styles*****/
/******************************/
body {
    background: #fff;
    color: #444;
    font-family: "Quicksand", sans-serif;
}

a {
    color: #002e5d;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #0b6bd3;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Quicksand", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/********************************/
/****Initialise page styles*****/
/******************************/

/********************************/
/****Scroll to top button*******/
/******************************/

.scroll-to-top {
    position: fixed;
    display: none;
    background: #002e5d;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.scroll-to-top i {
    padding-top: 12px;
    color: #fff;
}

.scroll-to-top :hover {
    color: #EBBA4D;
}

/********************************/
/****Scroll to top button*******/
/******************************/

/********************************/
/****Page Loader****************/
/******************************/

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#page-loader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #002e5d;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-page-loader 1s linear infinite;
    animation: animate-page-loader 1s linear infinite;
}

@-webkit-keyframes animate-page-loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-page-loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/********************************/
/****Page loader end************/
/******************************/

/********************************/
/****Main header start**********/
/******************************/

#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 4;
    transition: all 0.5s;
    padding: 20px 0;
    background-color: #002e5d;

}

#header.header-scrolled,
#header.header-pages {
    height: 72px;
    padding: 10px 0;
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 1px;

}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #F5FEFF;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin-top: 0 !important;
    max-height: 60px;
}

.main-pages {
    margin-top: 60px;
}

/********************************/
/****Main header title**********/
/******************************/

#header-title {
    width: 100%;
    position: relative;
    background-color: #002e5d;
    background-size: cover;
    padding: 200px 0 120px 0;
}

#header-title .header-title-img {
    width: 50%;
    float: right;
}

#header-title .header-title-info {
    width: 50%;
    float: left;
}

#header-title .header-title-info h2 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 48px;
    font-weight: 700;
}

#header-title .header-title-info h2 span {
    color: #EBBA4D;
}

#header-title .header-title-info .btn-get-started,
#header-title .header-title-info .btn-services {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 0 20px 20px 0;
    color: #fff;
}

#header-title .header-title-info .btn-get-started {
    border: 2px solid #EBBA4D;
    background-color: #002e5d;
    color: #fff;
}

#header-title .header-title-info .btn-get-started:hover {
    background: #EBBA4D;
    border-color: #002e5d;
    color: #002e5d;
}

#header-title .header-title-info .btn-services {
    border: 2px solid #EBBA4D;
    background-color: #002e5d;
    color: #fff;
}

#header-title .header-title-info .btn-services:hover {
    background: #EBBA4D;
    border-color: #002e5d;
    color: #002e5d;
}

/********************************/
/****Main header end************/
/******************************/

/********************************/
/****Navigation start************/
/******************************/

.custom-nav {

}

.custom-nav,
.custom-nav * {
    margin: 0;
    padding: 0;
    list-style: none;

}

.custom-nav > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.custom-nav a {
    display: block;
    position: relative;
    color: #FFF;
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.custom-nav a:hover,
.custom-nav .active > a,
.custom-nav li:hover > a {
    color: #EBBA4D;
    text-decoration: none;
}

.custom-nav .custom-drop ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
    border-radius: 2%;
}

.custom-nav .custom-drop:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.custom-nav .custom-drop li {
    min-width: 180px;
    position: relative;
}

.custom-nav .custom-drop ul a {
    padding: 10px 20px;
    font-size: 13px;
    color: #004289;
}

.custom-nav .custom-drop ul a:hover,
.custom-nav .custom-drop ul .active > a,
.custom-nav .custom-drop ul li:hover > a {
    color: #002e5d;
}

.custom-nav .custom-drop > a:after {
    content: "\f107";
    font-family: FontAwesome;
    padding-left: 10px;
}

.custom-nav .custom-drop .custom-drop ul {
    top: 0;
    left: calc(100% - 30px);
}

.custom-nav .custom-drop .custom-drop:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.custom-nav .custom-drop .custom-drop > a {
    padding-right: 35px;
}

.custom-nav .custom-drop .custom-drop > a:after {
    content: "\f105";
    position: absolute;
    right: 15px;
}

/********************************/
/****Mobile Navigation************/
/******************************/

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 4;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: #002e5d;
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: #EBBA4D;
    text-decoration: none;
}

.mobile-nav .custom-drop > a:after {
    content: "\f078";
    font-family: FontAwesome;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.custom-drop > a:after {
    content: "\f077";
}

.mobile-nav .custom-drop > a {
    padding-right: 35px;
}

.mobile-nav .custom-drop ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .custom-drop li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    margin: 18px 18px 0 0;
    color: #F5FEFF;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 3;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(19, 39, 57, 0.8);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/********************************/
/****Navigation end************/
/******************************/

/*********************************************/
/****Main sections default styles************/
/*******************************************/

/********************************/
/****Main sections headings************/
/******************************/

.section-heading h3 {
    font-size: 36px;
    color: #191919;
    text-align: center;
    font-weight: 500;
    position: relative;
}

.section-heading p {
    text-align: center;
    margin: auto;
    font-size: 15px;
    padding-bottom: 40px;
    color: #191919;
    width: 50%;
}

/********************************/
/****Main sections bg colour*********/
/******************************/

.section-bg {
    background: #F5FEFF;
}

/********************************/
/****Deck cards    ************/
/******************************/
@media (min-width: 576px) {
	.card-deck .card {
		min-width: 50.1%; /* 1 Column */
		margin-bottom: 12px;
	}
}

@media (min-width: 768px) {
	.card-deck .card {
		min-width: 33.4%;  /* 2 Columns */
		max-width: calc(50% - 30px);
	}
}

@media (min-width: 992px) {
	.card-deck .card {
		min-width: 25.1%;  /* 3 Columns */
		max-width: calc(33.3% - 30px);
	}
}

/********************************/
/****About coverpoint section************/
/******************************/

#about {
    background: #F5FEFF;
    padding: 60px 0;
}

#about .about-container .background {
    margin: 0 auto;

}

#about .about-container .content {
    background: #fff;
    padding-right: 5%;
}

#about .about-container .title {
    color: #333;
    font-weight: 700;
    font-size: 32px;
}

#about .about-container p {
    line-height: 26px;
}

#about .about-container p:last-child {
    margin-bottom: 0;
}

#about .about-container .icon-box {
    background: #fff;
    background-size: cover;
    padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
    float: left;
    background: #fff;
    width: 64px;
    height: 64px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #002e5d;
    transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
    color: #002e5d;
    font-size: 24px;
}

#about .about-container .icon-box:hover .icon {
    background: #002e5d;
}

#about .about-container .icon-box:hover .icon i {
    color: #fff;
}

#about .about-container .icon-box .title {
    margin-left: 80px;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px;
}

#about .about-container .icon-box .title a {
    color: #283d50;
}

#about .about-container .icon-box .description {
    margin-left: 80px;
    line-height: 24px;
    font-size: 14px;
}

.desc-image {
    margin-left: 8%;
}

#about .about-extra {
    padding-top: 60px;
}

#about .about-extra h4 {
    font-weight: 600;
    font-size: 24px;
}

img .bg-image {
    width: 50%;
    height: 50%;

}

/********************************/
/****About coverpoint section************/
/******************************/

/********************************/
/****Meet the team section************/
/******************************/
.btn-primary:hover,
.btn-primary:focus {
    background-color: #EBBA4D;
    border-color: #002e5d;
    box-shadow: none;
    outline: none;
}

.btn-primary {
    color: #fff;
    background-color: #002e5d;
    border-color: #002e5d;
}

.team-front-icon {
    color: white;
    font-style: normal !important;
    font-weight: 600;
}

section {
    padding: 60px 0;
}

section .section-title {
    text-align: center;
    color: #002e5d;
    margin-bottom: 50px;
    text-transform: uppercase;
}

#team .card {
    border: none;
    background: #ffffff;
}

.image-flip:hover .backside,
.image-flip.hover .backside {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-radius: .25rem;
}

.image-flip:hover .frontside,
.image-flip.hover .frontside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.mainflip {
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 1s;
    -moz-transition: 1s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
    position: relative;
}

.frontside {
    position: relative;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    z-index: -1;
    margin-bottom: 30px;
}

.backside {
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.frontside,
.backside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -moz-transform-style: preserve-3d;
    -o-transition: 1s;
    -o-transform-style: preserve-3d;
    -ms-transition: 1s;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
}

.frontside .card,
.backside .card {
    min-height: 312px;
}

.backside .card a {
    font-size: 18px;
    color: #002e5d !important;
}

.frontside .card .card-title,
.backside .card .card-title {
    color: #002e5d !important;
}

.frontside .card .card-body img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.card-text {
    text-align: left;
}

/********************************/
/****Meet the team section************/
/******************************/

/********************************/
/****All services section************/
/******************************/

#services {
    padding: 60px 0 40px 0;
    box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#services .box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 2%;
    margin: 0 10px 40px 10px;
    background: #fff;
    box-shadow: 0 10px 29px 0 rgba(70, 90, 146, 0.1);
    transition: all 0.3s ease-in-out;
}

#services .box:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

#services .icon {
    position: absolute;
    left: 10px;
    top: calc(50% - 32px);
}

#services .icon i {
    font-size: 32px;
    line-height: 1;
    transition: 0.5s;
}

#services .title {
    margin-left: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

#services .title a {
    color: #111;
}

#services .box:hover .title a {
    color: #002e5d;
}

#services .description {
    font-size: 14px;
    margin-left: 40px;
    line-height: 24px;
    margin-bottom: 0;
}

/********************************/
/****All services section************/
/******************************/

/********************************/
/**** our projects ************/
/******************************/
#our-projects {
    padding: 60px 0;
    background: #002e5d;

}

#our-projects .section-heading h3,
#our-projects .section-heading p {
    color: #fff;
}

#our-projects .card {
    background: #19426D;
    border-color: #19426D;
    border-radius: 1%;
    margin: 0 15px;
    padding: 15px 0;
    text-align: center;
    color: #fff;
    transition: 0.3s ease-in-out;
    height: 100%;
}

#our-projects .card:hover {

    background: #32577D;
    border-color: #32577D;
}

#our-projects span {
    color: #EBBA4D;
}

#our-projects .card i {
    font-size: 48px;
    padding-top: 15px;
    color: #EBBA4D;
}

#our-projects .card h5 {
    font-size: 22px;
    font-weight: 600;
}

#our-projects .card p {
    font-size: 15px;
    color: #d8eafe;
}

#our-projects .card .readmore {
    color: #fff;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease-in-out;
    border-bottom: #EBBA4D solid 2px;
}

#our-projects .card .readmore:hover {
    border-bottom: #002e5d solid 2px;
}



/********************************/
/****Why coverpoint section************/
/******************************/

#why-us {
    padding: 60px 0;
    background: #002e5d;

}

#why-us .section-heading h3,
#why-us .section-heading p {
    color: #fff;
}

#why-us .card {
    background: #19426D;
    border-color: #19426D;
    border-radius: 1%;
    margin: 0 15px;
    padding: 15px 0;
    text-align: center;
    color: #fff;
    transition: 0.3s ease-in-out;
    height: 100%;
}

#why-us .card:hover {

    background: #32577D;
    border-color: #32577D;
}

#why-us span {
    color: #EBBA4D;
}

#why-us .card i {
    font-size: 48px;
    padding-top: 15px;
    color: #EBBA4D;
}

#why-us .card h5 {
    font-size: 22px;
    font-weight: 600;
}

#why-us .card p {
    font-size: 15px;
    color: #d8eafe;
}

#why-us .card .readmore {
    color: #fff;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease-in-out;
    border-bottom: #EBBA4D solid 2px;
}

#why-us .card .readmore:hover {
    border-bottom: #002e5d solid 2px;
}

#why-us .counters {
    padding-top: 40px;
}

#why-us .counters span {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 48px;
    display: block;
    color: #fff;
}

#why-us .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #cce5ff;
}



/********************************/
/****Why coverpoint section************/
/******************************/

/********************************/
/****Contact section************/
/******************************/

#contact {
    box-shadow: 0px 0px 12px 0px black;
    padding: 60px 0;
    overflow: hidden;
    background: #F5FEFF;
}

#contact .section-heading {
    padding-bottom: 30px;
}

#contact .contact-about h3 {
    font-size: 36px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #002e5d;
}

#contact .contact-about p {
    font-size: 14px;
    line-height: 24px;
    font-family: "Montserrat", sans-serif;
    color: #888;
}

#contact .social-links {
    padding-bottom: 20px;
}

#contact .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #fff;
    color: #002e5d;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    border: 1px solid #002e5d;
}

#contact .social-links a:hover {
    background: #002e5d;
    color: #fff;
}

.map {
    -moz-box-shadow: 0px 1px 5px 0px #676767;
    -webkit-box-shadow: 0px 1px 5px 0px #676767;
    box-shadow: 0px 1px 5px 0px #676767;
    border-top-left-radius: 1%;
    border-top-right-radius: 1%;
}

.map iframe {
    border-top-left-radius: 1%;
    border-top-right-radius: 1%;
}

#contact .info {
    color: #191919;
}

#contact .info i {
    font-size: 26px;
    color: #EBBA4D;
    float: left;
    line-height: 1;
}

#contact .info p {
    padding: 0 0 5px 23px;
    line-height: 26px;
    font-size: 14px;
}

#contact .form #sendmessage {
    color: #002e5d;
    border: 1px solid #002e5d;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;

}

#contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
    display: block;
}

#contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

#contact .form input,
#contact .form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

#contact .form button[type="submit"] {
    background: #002e5d;
    border: 2px solid #EBBA4D;
    border-radius: 20px;
    padding: 8px 30px;
    color: #F5FEFF;
    transition: 0.3s;
}

#contact .form button[type="submit"]:hover {
    background: #EBBA4D;
    border-color: #002e5d;
    color: #002e5d;
    cursor: pointer;
}

/********************************/
/****Contact section section************/
/******************************/

/********************************/
/****Main Footer ************/
/******************************/

#footer {
    background: #002e5d;
    padding: 0 0 30px 0;
    color: #eee;
    font-size: 14px;
}

#footer .footer-top {
    background: #002e5d;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 34px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-family: "Quicksand", sans-serif;
    color: #EBBA4D;
    font-weight: 300;
    letter-spacing: 1px;
}

#footer .footer-top .footer-info p {
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
    color: #ecf5ff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #EBBA4D;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #002e5d;
    color: #EBBA4D;
}

#footer .footer-top h4 {
    font-size: 14px;
    font-weight: 300;
    color: #EBBA4D;
    position: relative;
    padding-bottom: 10px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul li {
    padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #ecf5ff;
}

#footer .footer-top .footer-links ul a:hover {
    color: #EBBA4D;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
    line-height: 26px;
}

#footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
    border: 0;
    padding: 6px 8px;
    width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
    background: #002e5d;
    border: 0;
    width: 35%;
    padding: 6px 0;
    text-align: center;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
    background: #0062cc;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    text-align: center;
    font-size: 13px;
    color: #f1f7ff;
}

#footer .credits a {
    color: #bfddfe;
}

#footer .credits a:hover {
    color: #f1f7ff;
}

/********************************/
/****Main footer************/
/******************************/

/********************************/
/****Media queries for devices************/
/******************************/

@media (min-width: 992px) {
    #testimonials .testimonial-item p {
        width: 80%;
    }
}

@media (max-width: 991px) {
    #header {
        height: 60px;
        padding: 10px 0;
    }

    #header .logo h1 {
        font-size: 28px;
        padding: 8px 0;
    }

    #header-title {
        padding: 140px 0 60px 0;
    }

    #header-title .header-title-img {
        display: none;
    }

    #header-title .header-title-info {
        width: 80%;
        float: none;
        margin: auto;
        text-align: center;
    }

    #why-us .card {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 15px;
    }
}

@media (max-width: 767px) {
    #header-title .header-title-info {
        width: 100%;
    }

    #header-title .header-title-info .header-button-mob {
        margin-left: 3%;
    }

    #header-title .header-title-info h2 {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .section-heading p {
        width: 100%;
    }

    #testimonials .testimonial-item {
        text-align: center;
    }

    #testimonials .testimonial-item .testimonial-img {
        float: none;
        margin: auto;
    }

    #testimonials .testimonial-item h3,
    #testimonials .testimonial-item h4,
    #testimonials .testimonial-item p {
        margin-left: 0;
    }
}

@media (max-width: 574px) {
    #header-title {
        padding: 100px 0 20px 0;
    }
}

/********************************/
/****Media queries for devices************/
/******************************/

/********************************/
/****Static page banner*********/
/******************************/
.selection-banner {
    text-align: center;
    width: 100%;
    background-color: #EBBA4D;
    box-shadow: 0px 0px 3px 0px #002e5d;
}

.banner-title {
    font-family: Quicksand, sans-serif;
    font-weight: 100;
    font-size: 24px;
    color: #F5FEFF;
    display: inline-block;
    margin: 0 !important;
}

.banner-form {
    margin: 0 auto !important;
}

.banner-text1 {
    text-transform: uppercase;
}

.input-group {
    margin: 20px auto;
    width: 60%;
}

input.banner-btn.btn-lg,
input.banner-btn.btn-lg:focus {
    outline: none;
    width: 60%;
    height: 60px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    text-align: center;

}

button.btn-submit {
    width: 40%;
    height: 60px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #002e5d;
}

button.btn-submit:hover {
    background-color: #EBBA4D;
    border: 1px solid #002e5d;
    color: #002e5d;
}

.button-text2 {
    color: #191919;
}

.btn-success {
    background-color: #FF5F6E;
    color: #F5FEFF;
}

.btn-success:hover {
    background-color: #5ECAEF;
}

.btn-secondary {
    background-color: #EBBA4D;
    color: #F5FEFF;
}

.btn-secondary:hover {
    background-color: #002e5d;

}

@media (max-width: 768px) {
    .btn-mobi {
        width: 100%;
    }
}

/********************************/
/****Static page banner************/
/******************************/

/********************************/
/****Partners update************/
/******************************/

/* card details start  */
.details-card {
    background: #ecf0f1;
}

.card-content {
    background: #ffffff;
    border: 4px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}

.card-img {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    z-index: 1;
}

.card-img img {
    display: block;
    width: 100%;
    height: 280px;
	object-fit: cover;
}

.card-img span {
    position: absolute;
    top: 15%;
    left: 12%;
    background: #EBBA4D;
    padding: 6px;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transform: translate(-50%,-50%);
}
.card-img span h4{
    font-size: 12px;
    margin:0;
    padding:10px 5px;
    line-height: 0;
}
.card-desc {
    padding: 1.25rem;
}

.card-desc h3 {
    color: #000000;
    font-weight: 600;
    font-size: 1.5em;
    line-height: 1.3em;
    margin-top: 0;
    margin-bottom: 5px;
    padding: 0;
}

.card-desc p {
    color: #747373;
    font-size: 14px;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.5;
    margin: 0px;
    margin-bottom: 20px;
    padding: 0;
    font-family: 'Raleway', sans-serif;
}
.btn-card{
    background-color: #002e5d;
    color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    padding: .84rem 2.14rem;
    font-size: .81rem;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    margin: 0;
    border: 0;
    -webkit-border-radius: .125rem;
    border-radius: .125rem;
    cursor: pointer;
    text-transform: uppercase;
    white-space: normal;
    word-wrap: break-word;
    color: #fff;
}
.btn-card:hover {
    background: #EBBA4D;
}
a.btn-card {
    text-decoration: none;
    color: #fff;
}


.logo-img {
	display: block;
    width: 256px;
    height: 100px;
}

/********************************/
/****Partners Update************/
/******************************/
