
/*=============================================
     General CSS
==============================================*/

/* 1.1: Default CSS */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
::-moz-selection {
    background: #31333e;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #31333e;
    color: #fff;
    text-shadow: none;
}
::-webkit-input-placeholder {
    color: #8287a7 !important;
    opacity: 1 !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
::-moz-placeholder {
    color: #8287a7 !important;
    opacity: 1 !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
input:focus,
select:focus,
textarea:focus {
    outline: none !important;
}
button[type=submit] { cursor: pointer; }
textarea { resize: none; }
img {
    max-width: 100%;
    height: auto; 
}

a {
    color: #31333e;
    -webkit-transition: all .2s;
    transition: all .2s;
}
a:hover { color: #fcc52d; }
a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6 { 
    font-family: 'PT Sans', sans-serif;
    font-weight: normal;
    color: #202e39;
    line-height: 1.4;
}
h1, .h1 { font-size: 36px; }
h2, .h2 { font-size: 30px; }
h3, .h3 { font-size: 24px; }
h4, .h4 { font-size: 18px; }
h5, .h5 { font-size: 16px; } 
h6, .h6 { font-size: 14px; }

p {
    line-height: 1.8;
    margin-bottom: 25px;
}
body {
    font-family: "Roboto", Sans-serif;
    font-size: 14px;
    color: #8287a7;
    background: #fff;
    overflow-x: hidden !important;
}

.select-wrapper select {
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
}
.select-wrapper select::-ms-expand {
    display: none;
}
.select-wrapper {
    position: relative;
}
.select-wrapper:after {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 20px;
    height: 30px;
    pointer-events: none;
}
.width-expend{
    width : 170px;
}
/* 1.2: Buttons */
.btn {
    font-family: 'PT Sans', sans-serif;
    color: #fff;
    position: relative;
    text-transform: capitalize;
    border: 1px solid #fcc52d;
    border-radius: 0;
    padding: 8px 30px;
    overflow: hidden;
    z-index: 0;
}
.btn-transparent {
    border-color: #31333e;
    color: #31333e;
}
.btn-icon {
    padding: 8px 20px;
}
.btn-icon i {
    margin-right: 10px;
}
.btn.active,
.btn:hover,
.btn:focus {
    color: #fff;
    border-color: #31333e;
}

.btn-transparent:before {
    background-color: transparent;
}


.btn.active:after,
.btn:hover:after,
.btn:focus:after {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
}
.btn:focus,
.form-control:focus {
    box-shadow: none !important;
}
.btn-icon {
    padding: 8px 15px;
}

/* 1.3: Default Classes */
.theme-bg-overlay {
    position: relative;
}
.theme-bg-overlay:before {
    content: '';
    position: absolute;
    background: #fcc52d;
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.disabled { pointer-events: none; }

.primary-bg { background-color: #fcc52d; }
.light-bg { background-color: #ecf7fe; }


.pt-sans { font-family: 'PT Sans', sans-serif; }
.muli { font-family: 'Muli', sans-serif; }
.font-weight-600 { font-weight: 600; }

.list-inline > li { display: inline-block; }

.form-control { font-size: 14px; }
.form-control:focus { border-color: #fcc52d; }

input.parsley-error,
textarea.parsley-error,
select.parsley-error {
    border: 1px solid red !important;
}
.half-gutter {
    margin-right: -7.5px;
    margin-left: -7.5px;
}
.half-gutter > .col,
.half-gutter > [class*="col-"] {
    padding-right: 7.5px;
    padding-left: 7.5px;
}

.theme-border-top { border-top: 1px solid #fcc52d; }
.theme-border-bottom { border-bottom: 1px solid #fcc52d; }

.theme-list-style {
    padding: 0;
    list-style: none;
}
.theme-list-style li {
    font-weight: 600;
    color: #4c4f60;
    padding: 5px 0;
}
.theme-list-style li:before {
    content: '\f05d';
    font-family: 'FontAwesome';
    color: #fcc52d;
    font-size: 12px;
    font-weight: normal;
    margin-right: 10px;
}

.form-field {
    position: relative;
    margin-bottom: 15px;
}
.theme-input-style {
    font-size: 12px;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    -webkit-transition: all .2s;
    transition: all .2s;
}
textarea.theme-input-style {
    padding: 10px;
    min-height: 120px;
    display: block;
}

.theme-input-style:focus { border-color: #fcc52d; }

label input[type=checkbox],
label input[type=radio] {
    position: relative;
    top: 2px;
    margin-right: 5px;
}

.form-group { position: relative; }

.table-bordered,
.table-bordered td, 
.table-bordered th {
    border-color: #e2e6fb;
}

.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}
.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
}
.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 15px;
}
/* 1.4: Padding/Margin */
.pt-120 { padding-top: 120px; }
.pb-120 { padding-bottom: 120px; }
.pt-90 { padding-top: 90px; }
.pb-90 { padding-bottom: 90px; }
.pt-80 { padding-top: 80px; }
.pb-80 { padding-bottom: 80px; }
.pt-70 { padding-top: 70px; }
.pb-70 { padding-bottom: 70px; }
.pt-60 { padding-top: 60px; }
.pb-60 { padding-bottom: 60px; }
.pt-55 { padding-top: 55px; }
.pb-55 { padding-bottom: 55px; }
.pt-50 { padding-top: 50px; }
.pb-50 { padding-bottom: 50px; }
.pt-30 { padding-top: 30px; }
.pb-30 { padding-bottom: 30px; }

.mt-120 { margin-top: 120px; }
.mb-120 { margin-bottom: 120px; }
.mt-60 { margin-top: 60px; }
.mb-60 { margin-bottom: 60px; }
.mt-50 { margin-top: 50px; }
.mb-50 { margin-bottom: 50px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }

/* 1.5: Animations */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translate3d(0,-40px,0);
        transform: translate3d(0,-40px,0)
    }
    to {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translate3d(0,-40px,0);
        transform: translate3d(0,-40px,0)
    }
    to {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translate3d(0,40px,0);
        transform: translate3d(0,40px,0)
    }
    to {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translate3d(0,40px,0);
        transform: translate3d(0,40px,0)
    }
    to {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
    to {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
    to {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
    }
    to {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
    }
    to {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg); 
        transform: rotate(0deg); 
    }
    100% { 
        -webkit-transform: rotate(360deg); 
        transform: rotate(360deg); 
    }
}
@keyframes spin {
    0% { 
        -webkit-transform: rotate(0deg); 
        transform: rotate(0deg); 
    }
    100% { 
        -webkit-transform: rotate(360deg); 
        transform: rotate(360deg); 
    }
}
.spin {
    -webkit-animation: spin 2s linear infinite;
    animation: spin 1s linear infinite;
}

/*=============================================
     Titles
==============================================*/

/* 2.1: Page Title */
.page-title-wrap {
    position: relative;
    background-position: center !important;
}
.page-title-wrap:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}
.page-title-wrap .row {
    height: 200px;
}
.page-title h1 {
    font-weight: bold;
    color: #fff;
    margin-bottom: 0;
}
.page-title li + li:before {
    content: '\f101';
    font-family: 'FontAwesome';
    color: #fff;
    padding: 0 8px;
}
.swiper-button-next.swiper-button-white, 
.swiper-container-rtl .swiper-button-prev.swiper-button-white:active {
    outline: none;
}
.page-title li a {
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
}
.page-title li a:hover,
.page-title li:last-child a {
    color: #fcc52d;
}
.page-title li:last-child a {
    pointer-events: none;
}

/* 2.2: Section Title */
.section-title {
    margin-top: -5px;
    padding-bottom: 30px;
}
.section-title > span {
    font-family: 'PT Sans', sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #fcc52d;
    text-transform: uppercase;
}
.section-title h1 {
    margin-top: 0;
    margin-bottom: 0;
}
.section-title p {
    font-size: 16px;
}

.subtitle {
    display: block;
    font-size: 18px;
    color: #4c4f60;
    margin: 18px 0;
}

/*=============================================
    Header
==============================================*/
.header-top.dark-bg {
    background:#2d3239;
}

/* 3.1: Header top settings*/

.header-topbar-left ul {
    list-style: none;
    padding-left: 0;
}
.header-topbar-left ul li {
    display: inline-block;
    line-height: 0;
    padding: 25px 0;
}
.header-topbar-left ul li a {
    color: #fff;
    padding: 0px 15px;
    border-right: 1px solid #fcc634;
    line-height: 0;
    font-family: "Open Sans", Sans-serif;
    font-weight: 400;
}
.header-topbar-left ul li a:hover, .header-topbar-left ul li:hover  i{
    color:#fcc634;
}
.header-topbar-left ul li:last-child a {
    border: none;
}
.header-topbar-left ul li span i {
    color: #ffffff;
    font-size: 15px;
}
.header-topbar-right {
    text-align: right;
}
a.btn.btn-default.topbtn {
    font-family: "Roboto", Sans-serif;
    font-weight: 500;
    margin:15px 0;
    background: rgba(29,34,56,0.79);
    border:1px solid #fcc634;
    border-radius: 16px;
}
a.btn.btn-default.topbtn:hover{
    color:#fcc634;
    border:1px solid #fff;
}

.logo img {
    width: 35%;
    margin: 0 auto;
    text-align: center;
    display: block;
}
/* 3.2: Header Menu */
.main-header{
    box-shadow: none;
    position: relative;
    z-index: 999;
    background: #fff;
}
.main-header.logo-header.light-bg {
    padding: 25px 0;
}
.navigation-header {
    background: #2d3239;
    padding: 8px 0;
}
.main-header.stuck {
    position: fixed;
    top: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    width: 100%;
}
.navigation-header nav {
    background: transparent !important;
    padding: 0;
    margin: 0 auto;
}
.top-menu , .top-menu  ul, 
.top-menu  ul li, 
.top-menu  ul li a, 
.top-menu  #menu-button {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    font-weight: bold;
}
.top-menu  ul li a {
    color: #fff;
    font-family: "Open Sans", Sans-serif;
    letter-spacing: -0.6px;
    font-size: 17px;
    font-weight: 600;
}
.top-menu  #menu-button {
    display: none;
}
.top-menu  > ul ul {
    text-align: left;
    z-index: 99999;
}
.top-menu  > ul ul li:not(:last-child) {
    border-bottom: 1px solid #e2e6fb;
}
.top-menu  > ul > li {
    display: inline-block;
    float: left;
}
.top-menu  > ul > li.has-sub:hover:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2em;
    bottom: -2em;
    cursor: pointer;
    left: 0;
}
.top-menu  > ul > li {
    padding-left: 15px;
    padding-right:15px; 
}
.top-menu  > ul > li > a {
    padding: 15px 0;
	font-size: 14px;
}
.top-menu  > ul > li:hover > a,
.top-menu  > ul > li.active > a {
    color: #fcc634;
}
.top-menu  > ul > li > a:after,
.top-menu  > ul > li.active > a:after,
.top-menu  > ul > li:hover > a:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 2px;
    background: #fcc634;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.top-menu  > ul > li > a:hover:after,
.top-menu  > ul > li.active > a:after,
.top-menu  > ul > li:hover > a:after {
    width: 100%;
}
.top-menu  > ul > li > a > i {
    font-size: 10px;
}
.top-menu  ul ul {
    position: absolute;
    left: -9999px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: top .2s ease, opacity .2s ease;
    transition: top .2s ease, opacity .2s ease;
}
.top-menu  > ul > li > ul {
    top: 120px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    -webkit-transition: top .2s ease, opacity .2s ease;
    transition: top .2s ease, opacity .2s ease;
}
.top-menu  > ul > li:hover > ul {
    left: auto;
    top: 80px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.top-menu .align-right > ul > li:hover > ul {
    right: 0;
}
.top-menu  ul ul ul {
    top: 32px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.top-menu  ul ul ul:before {
    content: "";
    position: absolute;
    left: -7px;
    top: 7px;
    width: 0;
    height: 0;
    border-right: 7px solid #ecf7fe;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    z-index: 99;
}
.top-menu  ul ul ul:after {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    width: 10px;
    height: 100%;
    z-index: -1;
}
.top-menu  ul ul ul li {
    background: #fff;
}
.top-menu  ul ul > li:hover > ul {
    top: 0;
    left: 188px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.top-menu .align-right ul ul > li:hover > ul {
    left: auto;
    right: 178px;
    padding-left: 0;
    padding-right: 10px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.top-menu  ul ul li a {
    width: 180px;
    padding: 13px 20px;
    font-size: 14px;
    line-height: 1.25;
    position: relative;
    background: #fff;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.top-menu  ul ul li a i {
    position: absolute;
    right: 15px;
    top: 16px;
    font-size: 10px;
}
.top-menu  ul ul li:hover > a, 
.top-menu  ul ul li > a:hover, 
.top-menu  ul ul li.active > a {
    color: #fcc52d;
}

.navbar-light .navbar-toggler-icon {
    color: #fff;
    border-color: #ffffff;
    background-image: url(../img/menu_bar_icon.png) !important;
    background-size: contain;
}.navbar-light .navbar-toggler {
    border-color: #fff !important;
}

/*=============================================
     main title
==============================================*/

section.main-heading p.main{
    color: rgb(252, 198, 52);
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    font-family: "Roboto", Sans-serif;
    line-height: 1;
    background-color: rgb(242, 242, 242);
    margin: 15px 20px;
    padding: 10px 0px;
    width: 100%;
}
section.main-heading p.sub {
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Roboto", Sans-serif;
    line-height: 1;
    text-align: center !important;
    margin: 0 auto;
    padding: 10px 0;
    width: 100%;
}
hr.solid {
    border-top: 3px solid rgb(252, 198, 52);
    width:23%;
  }
  
 /*=============================================
   Content section
==============================================*/ 
.content-section{
    margin:50px 0;
}
.content-section .np{
    padding: 0;
}
.image {
    height: 100%;
}
.content-section .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content-section .text hr.solid {
    text-align: left !important;
    margin: unset;
    margin-bottom: 20px;
}
.content-section .text {
    padding: 0% 12% 0% 12%;
    margin: 20px 0;
}
.content-section h1.title {
    color: #2d3239;
    font-family: "Open Sans", Sans-serif;
    font-size: 18px;
    line-height: 1.4em;
    font-weight: 600;
    margin: 20px 0;
}
.content-section p.desc {
    color: #2d3239;
    font-size: 15px;
    text-align: justify;
    font-family: "Roboto", Sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

.left-list, .right-list {
    padding: 5px 5px 5px 5px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #bcbcbc;
    border-radius: 0px 0px 0px 0px;
    box-shadow: 1px -30px 98px -100px rgba(122,122,122,0.86) inset;
}
.left-list ul, .right-list ul {
    list-style: none;
    padding: 0 !important;
    margin-bottom: 0;
}
.left-list ul li, .right-list ul li {
    font-family: "Open Sans", Sans-serif;
    font-size: 25px;
    line-height: 1.8em;
    letter-spacing: 0.2px;
    font-weight: 400;
    border-bottom: 1px solid #ccc;
}
.left-list ul li:last-child, .right-list ul li:last-child{
    border: 0;
}
.left-list ul li i, .right-list ul li i {
    color: #fcc52d;
    font-size: 25px;
    width: 1.25em;
    padding: 5px;
}
.left-list ul li a, .right-list ul li a{
    color: #2d3239;
    padding-left: 23px;
    font-size: 14px;
    font-family: "Open Sans", Sans-serif;
}
section.content-section hr.solid, section.services-list hr.solid {
    padding: 0;
    margin-top: 40px;
}

section.services-list .list {
    -moz-column-count: 3;
    -moz-column-rule: 1px solid #cecece;
    -ie-column-count: 3;
    -ie-column-rule: 1px solid #cecece;
    -webkit-column-count: 3;
    -webkit-column-rule: 1px solid #cecece;
    column-count: 3;
    column-rule: 1px solid #cecece;
    width: 100%;
}
section.services-list .list a{
    display: block;
}
/*=============================================
   Contacts
==============================================*/

/* 14.1: Contact info */

.contact-info ul li {
    position: relative;
    color: #7a7a7a;
}
.contact-info h1 {
    font-size: 35px;
    letter-spacing: -1px;
    font-family: "Roboto", Sans-serif;
    font-weight: 600;
    color: #000;
}
.contact-info p {
    font-family: "Helvetica", Sans-serif;
    font-size: 16px;
    font-weight: 300;
    color:#7a7a7a;
}
.contact-info ul li h4 {
    font-weight: bold;
}
.contact-info ul li a {
    color: #7a7a7a
}

/* 14.2: Contact form */
.contact-form {
    padding: 18px 30px 30px;

}
p.text-center.top-title {
    width: 100%;
    color: #fcc634;
    font-size: 44px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding:50px 0 0 0;
    position: relative;
}
p.text-center.top-title:after {
    content: "";
    position: absolute;
    height: 4px;
    background: #2d3239;
    width: 23%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -20px;
}
.row.form-bg {
    background: url(../img/how-we-support-roofing-contractors-hero.jpg) no-repeat;
    background-size: 100% 100%;
    background-position: center;
    margin-top: 20px;
}
.contact-form form{
    padding: 50px;
    text-align: center;
    width: 50%;
    margin: 0 auto;
}
.contact-form h1 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Roboto", Sans-serif;
    color: #000;
}
.contact-form > span {
    display: block;
    font-size: 12px;
    color: #8287a7;
    margin-bottom: 20px;
}
.contact-form label {
    font-family: 'PT Sans', sans-serif;
    color: #4c4f60;
    margin-bottom: 4px;
}
.contact-form input, .contact-form textarea, .contact-form select {
    background: #fff;
    color: #919ca7;
    border: 2px solid #818a91;
    min-height: 59px;
    border-radius: 5px;
    font-size: 18px;
}
.contact-form input:focus,
.contact-form textarea:focus {
    background: #fff;
}
.contact-form button {
    margin-top: 14px;
}

.form-response {
    background: #fcc52d;
}
.form-response span {
    color: #fff;
    display: block;
    margin-bottom: 30px;
    padding: 10px 15px;
}
button.btn.form-submit-btn {
    font-family: "Open Sans", Sans-serif;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.9em;
    color: #fff;
    border: 0;
    background: #fcc634;
    text-align: center;
    width: 100%;
    min-height: 40px;
}
button.btn.form-submit-btn:hover{
    color: #000;
}
p.list-title {
    color: #000;
    font-weight: bold;
    font-size: 18px;
    font-family: "Open Sans", Sans-serif;
}
/*=============================================
   Footer
==============================================*/

footer.footer.contact-footer {
    background: #2d3239;
    border: 2px solid #fcc634;
    padding-top: 20px;
}
.footer-widget a:hover {
    color: #fcc634;
}
.footer-widget.text-center p i {
    color: #fcc634;
    font-size: 50px;
}
.footer-widget h3 {
    margin-bottom: 15px;
    margin-top: -6px;
    font-weight: 600;
    color:#fff;
    font-family: "Open Sans", Sans-serif;
    font-size: 22px;
}
.footer-widget.text-center p.desc {
    color: #fff;
    text-align: center;
    font-family: "Roboto", Sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    padding: 0 30px;
}

.bottom-footer.light-bg {
    background: #2d3239;
    color: rgba(255,255,255,0.95);
    border: 2px solid #fcc634;
    font-family: "Open Sans", Sans-serif;
    font-size: 15px;
    font-weight: 300;
    padding: 15px 0;
    margin-top:50px;
}
.copyright.text-center.text-lg-left span {
    color: #fcc634;
}
.footer-arrow .arrow {
    font-size: 50px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    top: 85px;
    color:#fcc634;
}
.accepted-payments li:not(:last-child) {
    margin-right: 15px;
}
.footer-links{
    text-align: center;
}
.footer-links ul {
    list-style: none;
    padding-left: 0;
}
.footer-links ul li a, .footer-links ul li i {
    color: #fff;
}
.footer-links ul li i {
   padding-right: 10px;
}
/*=================================
  start map section
 =================================*/
.xs-map-sec {
  overflow: hidden;
  position: relative; }

.xs-maps-wraper .map {
  height: 500px;
  width: 100%; }
  .xs-maps-wraper .map iframe {
    width: 100%;
    height: 100%; }
.agenceweblocale a{
	text-align: center;
    color: #fff!important;
	}


section.main-heading H1.main{
    color: rgb(252, 198, 52);
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    font-family: "Roboto", Sans-serif;
    line-height: 1;
    background-color: rgb(242, 242, 242);
    margin: 15px 20px;
    padding: 10px 0px;
    width: 100%;
}
.content-section h2.title {
    color: #2d3239;
    font-family: "Open Sans", Sans-serif;
    font-size: 18px;
    line-height: 1.4em;
    font-weight: 600;
    margin: 20px 0;
}
.list {
    margin-bottom: 20px;
}
