body, html {
    -moz-osx-font-smoothing: grayscale;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    overflow-x: hidden;
}
a {
    color: #6f6f6f;
    outline: 0;
    text-decoration: none;
}
a:focus, a:hover {
    text-decoration: none;
    outline: 0;
}
a:active, a:hover, p a {
    color: #333333;
}
img {
    border-style: none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}
hr {
    clear: both;
}
h1, h2, h3, h4, h5, h6 {
    color: #000000;
    font-family: Roboto, sans-serif;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: #000000;
}
h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}
h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}
h3 {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 20px;
    font-weight: 700;
}
h4 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}
h5 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}
h6 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}
p {
    font-size: 16px;
    line-height: 24px;
}

/*========================= Header ========================*/
 
.sticky-header {
    background: #ffffff;
    width: 100%; 
    z-index: 99999;
    position: fixed; 
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
}
.logo-header {
    width: 245px;
    margin: 0;
    float: left;
}
.header-nav {
    position: relative;
    padding: 0;
}
.header-nav .nav {
    float: right;
}
.header-nav .nav>li {
    margin: 0; 
    position: relative;
}
.header-nav .nav>li>a {
    border-radius: 0;
    color: #000000;
    font-size: 18px;
    padding: 26px 12px;
    cursor: pointer;
    font-weight: 500;
    display: inline-block;
}
.header-nav .nav>li>a:hover { 
    color: #db3535;
}
.navbar-toggler { 
    margin: 33px 15px 33px 15px;
    padding: 0;
    float: right; 
}
.navicon {
    width: 18px;
    height: 14px;
    position: relative;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.navicon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 1px;
    opacity: 1;
    left: 0; 
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    background: #000000;
}
.navicon span:nth-child(1) {
    top: 0;
}
.navicon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.navicon span:nth-child(3) {
    bottom: 0;
}
button:focus {
    outline: none;
}

/*=================================================*/

.pageContent {
    padding: 0;
}
.sectionHead {
    margin-bottom: 50px;
}
.sectionHead p {
    font-size: 16px; 
    font-weight: 400;
    line-height: 28px;
}
.sectionHead h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    line-height: 28px;
}
.sectionHead h2 {
    font-size: 40px;
    line-height: 65px;
    margin-bottom: 10px;
}

/*=================================================*/

.servicesSection {
    padding: 150px 0 150px 0; 
}
.serviceBox {
    padding: 30px 20px;
    border: 1px solid #dddddd;
    border-radius: 5px; 
    height: 175px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center; 
    margin-bottom: 30px;
    text-align: center;
}
.serviceBox h5 {
    font-size: 18px;
    font-weight: 400; 
}

/*=================================================*/

.whyChoosesSection {
    padding: 150px 0 150px 0; 
    background: #000000;
}
.whyChoosesList {
    padding: 0;
    list-style: none;
    margin: auto;
    text-align: center;
}
.whyChoosesList li {
    font-size: 24px;
    color: #ffffff;
    line-height: 55px;
    padding-left: 45px;
    position: relative;
    display: inline-block;
    padding-right: 20px;
}
.whyChoosesList li:after {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(../images/star1.png);
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 12px;
    background-repeat: no-repeat;
}
.whyChoosesSection .sectionHead h2, .whyChoosesSection .sectionHead p {
    color: #ffffff;
}   
.whyChoosesSection .sectionHead p {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}
 
/*=================================================*/

.contactUsSection {
    padding: 150px 0 130px 0; 
}
.supportBox {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .1);
    border-bottom: 3px solid #db3535;
    text-align: center;
    margin-bottom: 30px;
}
.supportBox .supportIcon {
    width: 80px;
    display: inline-block; 
    margin-bottom: 10px;
} 
.supportBox .supportContent h4 {
    margin-top: 0;
    text-transform: uppercase;
}
.supportBox .supportContent p {
    margin: 0;
}
 
/*=================================================*/

.contactInfo {
    padding-top: 50px;
}
.contactInfo h2, .contactInfo p {
    margin-bottom: 25px;
}
.authorInfo {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: -2px 9px 20px 0 rgba(0, 16, 147, .2);
    padding: 40px 20px 40px !important;
    text-align: center;

}
.authorInfo p {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 10px;
    color: #424242;
}
.authorInfo ul {
    margin-bottom: 0;
    padding: 0;
}
.authorInfo ul li {
    display: inline-block;
}
.authorInfo ul li a {
    width: 40px;
    height: 40px; 
    border-radius: 40px;
    line-height: 40px;
    background: #db3535; 
    color: #fff; 
    font-size: 14px;
    cursor: pointer;  
    display: block;
}
.GetInTouch {
    margin-bottom: 20px;
}
.GetInTouch ul {
    padding: 0;
}
.GetInTouch ul li {
    margin-bottom: 30px;
    width: 50%;
    float: left;
    position: relative;
    z-index: 2;
    font-weight: 700;
    font-size: 18px;
    list-style: none;
} 
.GetInTouch strong {
    font-weight: 600;
    font-size: 46px;
    opacity: .1;
    position: absolute;
    bottom: -22px;
    z-index: -1;
    color: #000;
}
.GetInTouch li a {
    color: #db3535;
}

/*=================================================*/

.bannerSection{
    padding: 230px 0 150px 0; 
    background: #000000;
}
.bannerText {
    max-width: 755px;
    margin: auto;
}
.bannerText h2 {
    font-size: 40px;
    line-height: 65px;
    color: #ffffff;
    margin-bottom: 10px;
}
.bannerText span {
    color: #db3535;
    font-size: 55px;
    line-height: 70px;
}
.bannerText p {
    font-size: 16px;
    color: #ffffff;
    line-height: 30px;
    display: block;
    margin-bottom: 30px;
}
.bannerText a {
    font-size: 16px;
    border-radius: 2px;
    font-weight: 400;
    margin-right: 10px;
    padding: 10px 40px;
    background: #db3535; 
    color: #ffffff; 
    cursor: pointer; 
}
.bannerText a:focus, .bannerText a:hover {
    background-color: #db3535;
    color: #ffffff;
}

/*=================================================*/

.footer-inner {
    padding-bottom: 30px;
}
.footer-link {
    margin-bottom: 10px;
}
.footer-link ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-link ul li {
    display: inline-block;
    position: relative;
}
footer li, footer p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 0;
}
.footer-link ul li a {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    padding: 0 15px;
}
.footer-link ul li:after {
    content: "";
    width: 5px;
    height: 5px;
    background: #db3535;
    display: block;
    border-radius: 5px;
    position: absolute;
    right: -5px;
    top: 8px;
}
.footer-link ul li a:hover { 
    color: #db3535;
}

/*======================== Mobile Responsive =========================*/

@media (max-width:991px){
    .header-nav {position: fixed;width: 100%;  z-index: -1; }
    .header-nav .nav {width: 100%; float: none; display: block; margin-top: 80px;  text-align: center; background: #333333;}
    .header-nav .nav>li>a {padding: 15px 30px; display: block; color: #ffffff; font-size: 20px;} 
}
@media (max-width:767px){
    .footer-inner {text-align: center;}
    .footer-inner .text-right {text-align: center !important;} 
    .sectionHead h2 {font-size: 40px;line-height: 44px;}  
}
@media (min-width: 481px) and (max-width:767px){
    .whyChoosesList li { padding-right: 30px;}
    .bannerText span {font-size: 36px;}
}
@media (max-width:480px){
    .GetInTouch ul li {width: 100%;}
    .whyChoosesList {text-align: left;}
    .whyChoosesList li {font-size: 20px;padding-left: 35px;padding-right: 0; width: 100%;}
    .bannerText a {margin-bottom: 20px; display: inline-block;}
    .bannerText h2 {font-size: 36px; line-height: 48px;}
    .bannerText span {line-height: 60px;}
}
@media (min-width: 381px) and (max-width:480px){
    .bannerText span {font-size: 28px;}
}
@media (min-width: 320px) and (max-width:380px){
    .bannerText span {font-size: 24px;}
}


