@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@300;500;600;700;800&display=swap');

/*--- Reset Css ---*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a,
a:focus,
a:hover {
    text-decoration: none;
    outline: none;
    transition: all .3s;
}

input:focus {
    outline: none;
    box-shadow: none;
}

:root {
    --white: #FFF;
    --primaryColor: #cf2920;
    --btnHover: #ebebeb;
    --primaryTextColor: #121415;
    --secondaryTextColor: #ebebeb;
    --secondaryBgColor: #ebebeb;
    --secondaryBgColorRGB: 9, 39, 72;
    --contentColor: #121415;
    --navLinkColor: #cf2920;
    --inputBorderColor: #d0d7dd;
    --inputBgColor: #FFF;
    --copyRight: #537a38;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.4rem;
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
    -webkit-font-smoothing: antialiased;
}
p{
    color:#666 ;
}
a {
    color: var(--primaryColor);
}

.header-top {
    border-bottom: 1px solid #ccc;
}

.wrapper {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 1.3rem;
}

.social-app {
    display: flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif !important;
    color: #666;
}

.soc-icons {
    margin-right: 10px;
    padding-right: 10px;
    padding-left: 2rem;
}

.soc-icons a {
    display: inline-block;
    font-size: 1.4rem;
    color: #666;
    transition: all .3s;
    padding: 1.5rem;
    border-right: 1px solid #666;
    font-family: 'Open Sans', sans-serif !important;
}

.soc-icons a:hover {
    color: var(--primaryColor);
    transition: all .3s;
}

header .soc-links {
    padding: 4.5rem 1.5rem;
}

.soc-links {
    padding: 1.5rem 0;
}

.soc-links a {
    display: inline-block;
    color: #585958;
    font-size: 2rem;
    padding: 0 0.5rem;
    text-decoration: none;
}

.bg-light {
    background: #ebebeb;
}

.app {
    width: 90px;
    margin-left: 8px;
}

.navbar-brand {
    width: 250px;
    margin: auto;
}

.navbar .nav-item {
    padding: 4.5rem 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
}

.navbar .nav-link {
    padding: 1.2rem 0 !important;
    font-size: 1.5rem;
    font-weight: 500;
    color: #212121;
    position: relative;
}

.navbar .nav-item .nav-link::before {
    content: '';
    height: 3px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    background: var(--primaryColor);
    opacity: 0;
    border-radius: 4px;
    transition: all .3s;
}

.navbar .nav-link:hover::before {
    opacity: 1;
    width: 100%;
    left: 0;
}

.navbar .nav-item.active .nav-link::before {
    width: 100%;
    opacity: 1;
    left: 0;
}

.navbar .nav-item:last-child {
    margin-left: 10px;
}

.navbar .btn {
    font-size: 1.4rem;
    font-weight: 600;
    padding: 8px 20px !important;
    text-transform: uppercase;
    border-radius: .4rem;
}

.btn {
    font-size: 1.5rem !important;
    font-weight: 600;
    padding: 1.2rem 2rem !important;
    text-transform: capitalize;
    letter-spacing: 0.1rem;
    border-radius: 0;
}

.btn-primary {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
    color: #fff !important;
    background-size: 210% 100% !important;
    transition: background-position .4s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease !important;
    background-image: linear-gradient(to right, transparent 50%, var(--primaryColor) 50%) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-image: linear-gradient(to right, transparent 50%, var(--btnHover) 50%) !important;
    border-color: var(--navLinkColor);
    background: var(--btnHover);
    background-position: -100% 100% !important;
    box-shadow: none;
    outline: none;
    color: #041e42 !important;
}

.btn-secondary {
    background: var(--white);
    border-color: var(--primaryColor);
    color: var(--primaryColor);
    background-size: 210% 100% !important;
    transition: background-position .4s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease !important;
    background-image: linear-gradient(to right, transparent 50%, var(--primaryColor) 50%) !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-image: linear-gradient(to right, transparent 50%, var(--primaryColor) 50%) !important;
    background-position: -100% 100% !important;
    background: var(--primaryColor);
    border-color: var(--primaryColor);
    color: var(--white);
    box-shadow: none;
    outline: none;
}

.form-wrap {
    background: #FFF;
    border-radius: .5rem;
    position: absolute;
    top: -480px;
    width: 100%;
    padding: 3rem 2.5rem;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.27);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.27);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.27);
}

.form-wrap h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-floating>.form-control,
.form-floating>.form-select {
    height: calc(3.5rem + 18px);
}

.form-floating>label {
    padding: 1.9rem 1em;
}

.form-control,
.form-select {
    font-size: 1.4rem;
    color: var(--primaryTextColor);
    border-radius: .4rem;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--primaryColor);
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    padding: 1rem .75rem;
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 2rem;
}

.form-check-input[type=checkbox] {
    border-radius: 0.2em;
    margin-top: -1px;
}

.form-check-input:checked {
    background-color: var(--primaryColor) !important;
    border-color: var(--primaryColor) !important;
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
}

.form-check-label {
    margin-left: .5rem;
}

.help-text {
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    opacity: .7;
}

.req {
    color: #FF0000;
}

.carousel-caption {
    top: -13%;
    margin: auto;
    width: 60%;
  
    height: 300px;
    padding: 1.5rem;
}

.carousel-caption h2 {
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--inputBgColor);
    align-items: center;
    text-transform: uppercase;
    line-height: 1.5;
}

.carousel-caption p {
    font-size: 3.2rem;
    color: var(--white);
    line-height: 1.5;
    padding-bottom: 1.5rem;
}

.bg-light {
    background: #fbfdf7;
    overflow: hidden;
}

.banner-footer {
    position: relative;
    margin-top: -4%;
}
.banner-footer img {
    -webkit-box-shadow: 0px 0px 5px 8px rgba(0,0,0,0.08);
    -moz-box-shadow: 0px 0px 5px 8px rgba(0,0,0,0.08);
    box-shadow: 0px 0px 5px 8px rgba(0,0,0,0.08);
    }
.abt-sec {
    padding: 4.5rem 0;
}

.abt-sec h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #212121;
    align-items: center;
    text-transform: uppercase;
    line-height: 1.3;
    padding-bottom: 1.5rem;
}

.fea {
    padding: 0.5rem;
}

.fea h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212121;
    line-height: 1.3;
}

.fea p {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.5;
    padding-bottom: 1.5rem;
}

.title h2 {
    font-size: 4.5rem;
    line-height: 4rem;
    font-weight: 700;
    color: #121415;
    margin: 2rem 0;
    text-align: center;
    padding: 1.5rem 0;
    text-transform: uppercase;
}

.work-process {
    background: url(../img/blue-dark_02.jpg) no-repeat top;
    text-align: center;
    padding: 5rem 0;
}

.process {
    padding: 2.5rem;
    margin-top: 3rem;
}
.process img {
    
}

.process h5 {
    font-size: 2rem;
    font-weight: 700;
    color: #212121;
    line-height: 1.3;
    padding-bottom: 1rem;
}

.process p {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.5;
    padding-bottom: 1.5rem;
}

.services {
    background: url(../img/service-bg.jpg) no-repeat center;
    background-size: cover;
    overflow: hidden;
    padding: 5rem 0.5rem;
}

.services h5 {
    text-align: center;
}
.services h5 a {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #212121;
    line-height: 1.3;
    padding: 0.5rem 0 2.5rem;
    text-decoration: none;
    display: inline-block;
}

.tilte-border {
    margin: auto;
    border-bottom: 1px solid #ccc;
    width: 70%;
    margin-bottom: 3rem;
}

.tilte-border hr {
    height: 0.5rem;
    color: #cf2920;
    opacity: 1;
    width: 35%;
    margin: auto;
}

.testi {
    background: #d0d7dd;
    padding: 4rem 1.5rem;
    text-align: center;
    min-height: 245px;
}

.testi h5 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #212121;
    line-height: 1.3;
    padding: 0.5rem 0;
}

.testi h6 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #666;
    line-height: 1.3;
    padding-bottom: 1.5rem;
}

.testi p {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.5;
    padding-bottom: 1.5rem;
    font-weight: 500;
}

.bg-blue {
    background: #041e42;
    padding: 5.5rem 0;
    text-align: center;
}

.bg-blue h4 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
}

.bg-blue p {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    padding: 0.5rem 0;
}

.blog {
    padding: 0.5rem;
    border-bottom: 1px solid #ccc;
}

.blog img {
    padding-bottom: 1.5rem;
}

.blog h4 a {
    font-size: 1.8rem;
    font-weight: 600;
    color: #212121;
    line-height: 1.3;
    padding-bottom: 1.5rem;
    text-decoration: none;
    display: inline-block;
}
.blog h4 a:hover {
    color: #121415;
}

.blog span i {
    color: #cf2920;
    font-size: 1.5rem;
    padding: 0.5rem;
}

.soft {
    padding: 0.5rem;

    margin: 1rem;
}

footer {
    background: #0d2648;
    padding: 5.5rem 0;
    color: #fff;
}

.footer-text {
    font-size: 1.4rem;
    line-height: 2.5rem;
    padding-right: 2.5rem;
    color: #fff;
}

footer h4 {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 500;
    margin: 2rem 0;
}

footer ul li {
    display: block;
    padding: 1rem 0;
    color: #fff;
}

footer ul li a {
    color: #fff;
    font-family: 'Open Sans', sans-serif !important;
}

footer ul li a:hover {
    color: #ccc;
}

.soc-links a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    text-align: center;
    display: inline-block;
    background: #d0d7dd;
    margin-right: 0.5rem;
    transition: all .3s;
    color: #041e42;
}

.soc-links a:hover {
    color: var(--contentColor);
    background: var(--secondaryTextColor);
    transition: all .3s;
}

.copyright {
    background: #041e42;
    padding: 1rem;
    color: var(--white);
}

.copyright .f-app {
    display: flex;
    align-items: center;
}

.copyright p {
    font-size: 1.3rem;
    color:#fff !important;
}

.copyright .f-app img {
    width: 100px;
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 37% !important;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: rgb(173 181 189 / 50%) !important;
    border: 0;
    opacity: 1 !important;
    transition: opacity .15s ease;
    height: 20% !important;
}

.blog span {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.5;
    padding-bottom: 1.5rem;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif !important;
}

.short-banner {
    background: url(../img/short-banner.jpg) no-repeat;
    background-size: cover;
    min-height: 450px;
    padding: 3rem;
}
.short-banner h3 {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 600;
    padding-top: 12rem;
    text-transform: uppercase;
    padding-bottom: 1.5rem;
}
.short-banner p a{
    font-size: 1.8rem;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #fff;
    padding: 1.5rem;
}
.short-banner p {
    color: #fff;
}
.short-banner p a:hover{
    color: #fff;
}
.quote {
    background: url(../img/quote.png) no-repeat;  
}
.quote h6 {
    font-size: 2.5rem;
    color: #212121;
    font-weight: 600;
    text-transform: capitalize;
    padding: 3rem 0 1.5rem;
    line-height: 1.4;
}
.quote p{
    font-size: 1.5rem;
    color: #666;
    line-height: 1.5;
    padding-bottom: 1.5rem;
    font-weight: 500;
}
.abt p{
    font-size: 1.5rem;
    color: #000;
    line-height: 1.5;
    padding-bottom: 1.5rem;
    font-weight: 500;
}
.core-value {
    text-align: left;
    padding: 3rem;
    margin: 3.5rem 0;
}
.core-value ul li{
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.5;
    padding-bottom: 1.5rem;
    font-weight: 500;
}
.vi-mi h2{
    text-align: left !important;
    text-transform: capitalize;
    font-size: 3.5rem;
    line-height: 4rem;
    font-weight: 700;
    color: #121415;
    margin: 0;
    padding: 1.5rem 0;
}
.vi-mi .tilte-border hr{
    text-align: left !important;
    margin: unset;
}
.vi-mi .tilte-border {
    width: 100%;
}
.vi-mi ul {
    padding-left: 2rem;
}
.vi-mi ul li{
    font-size: 1.5rem;
    color: #666;
    line-height: 1.5;
    padding-bottom: 1.5rem;
    font-weight: 500;
    list-style-type: disc;
}
.vi-mi h5{
    text-align: left !important;
    text-transform: capitalize;
    font-size: 1.8rem;
    font-weight: 700;
    color: #121415;
    margin: 0;
    padding: 1.5rem 0;
}


/* -----------------------------------
      Gallery Section
--------------------------------------*/
.portfolio-section {
    padding: 50px 0;

  }
  .portfolio-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #212212;
    text-transform: uppercase;
  }
  .portfolio-menu {
    text-align: center;
  }
  .control {
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border: 1px solid #343a40;
    border-radius: 3px;
    margin: 5px;
    cursor: pointer;
    -webkit-transition: all 05s ease;
    -moz-transition: all 05s ease;
    -ms-transition: all 05s ease;
    -o-transition: all 05s ease;
    transition: all 0.5s ease;
  }
  .control:hover {
    background: #343a40;
  }
  .mixitup-control-active {
    color: #fff;
    background: #343a40;
    padding: 1.5rem 2.5rem;
  }
  .mixitup-control-active:hover {
    color: #fff;
    font-weight: 700;
  }

  .fancybox-container button:focus {
    outline: 0;
    box-shadow: none;
  }
  .portfolio-item {
    padding-top: 30px;
  }
  .pd {
   position: relative;
   padding: 1.5rem;
  }
  .pd img {
  
    transition: all 0.5s;
  }
  .portfolio-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    text-align: center;
    visibility: hidden;
    transition: all 0.5s;
    transform: scale(0);
  }
  .portfolio-overlay p,
  .portfolio-overlay a {
    position: relative;
    z-index: 4;
  }
  .portfolio-overlay::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 0;
    position: absolute;
    left: 10%;
    top: 10%;
    transition: 50ms height ease 150ms;
    z-index: 3;
  }
  .portfolio-overlay::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 0;
    position: absolute;
    right: 10%;
    bottom: 10%;
    transition: 100ms width ease 200ms;
    z-index: 3;
  }
  .portfolio-item:hover .portfolio-overlay::before {
    width: 80%;
    height: 80%;
    border-top: 1px solid #50977f;
    border-right: 1px solid #50977f;
    transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
  }
  .portfolio-item:hover .portfolio-overlay::after {
    width: 80%;
    height: 80%;
    border-bottom: 1px solid #50977f;
    border-left: 1px solid #50977f;
    transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
  }
  .portfolio-item li:hover .portfolio-overlay {
    visibility: visible;
    transform: scale(1);
  }
  .portfolio-overlay .category {
    margin-top: 30%;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
  }
  .portfolio-overlay .magnify-icon {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background: #50977f;
    margin: 0 5px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.25s;
  }
  .portfolio-overlay .magnify-icon:hover {
    background: #000;
  }
  .portfolio-overlay .magnify-icon p span i {
    font-size: 15px;
    color: #fff;
    line-height: 40px;
    cursor: pointer;
  }
  .blog-list {
    padding: 1rem;
  }
  .blog-list h1 a{
    font-size: 2.5rem;
    font-weight: 700;
    color: #121415;
    margin: 0;
    padding: 1.5rem 0;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: inline-block;
  }
  .blog-list h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #121415;
    margin: 0;
    padding: 1.5rem 0;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: inline-block;
  }
  .blog-list span {
    font-size: 1.5rem;
    color: #212121;
    line-height: 1.5;
    padding-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif !important;
    margin-right: 1rem;
    display: inline-block;
}
.blog-list img {
    margin-bottom: 3.5rem;
}
.blog-list p{
    font-size: 1.4rem;
    font-weight: 400;
    color: #6c757db8;
    line-height: 1.6;
    padding-bottom: 1.5rem;
    letter-spacing: 0.5px;
}
.blog-list ul {
    padding-left: 3rem;
}
.blog-list ul li{
    font-size: 1.4rem;
    font-weight: 400;
    color: #6c757db8;
    line-height: 1.6;
    padding-bottom: 1.5rem;
    letter-spacing: 0.5px;
    list-style-type: disc;
}
.blog-list h3{
    display: inline-block;
    padding-bottom: 1rem;
    font-weight: 600;
    color: #212121 !important;
    font-size: 2.5rem !important;
    text-transform: capitalize;
}
.categoery {
    padding: 1.5rem;
    background: #e9ecef73;
    margin-bottom: 1.5rem;
}
.categoery h3 {
    padding: 2rem 0;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
.categoery h6 {
    padding-left: 0px;
    padding-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
}
.categoery h6 a {
    display: inline-block;
    padding-bottom: 1rem;
    font-weight: 600;
    color: #212121 !important;
    font-size: 1.5rem !important;
}
.categoery h4 {
    padding-left: 0px;
    padding-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: #212121;
    line-height: 1.3;
}
.categoery a {
    display: inline-block;
    padding-bottom: 2.2rem;
    font-weight: 500;
    color: #cf2920;
    font-size: 1.3rem;
}
.comment h4 {
    color: #212121;
    line-height: 1.3;
    font-weight: 600;
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 0.5rem;
}
.comment h5 {
    color: #666;
    line-height: 1.5;
    font-weight: 400;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 1rem;
}
.quote-form {
    background: #f5f6f8;
    padding: 2.5rem;
}
.quote-form .form-control {
    padding: 1.5rem;
    border: none;
    font-size: 1.5rem;
    font-weight: 300;
}

.contact {
    padding: 2rem 1.5rem;

    -webkit-box-shadow: 0px 0px 9px 4px rgba(92,92,92,0.18);
-moz-box-shadow: 0px 0px 9px 4px rgba(92,92,92,0.18);
box-shadow: 0px 0px 9px 4px rgba(92,92,92,0.18);
margin: 1rem;
}
.contact p{
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #666;
    padding: 1.2rem 0;

}
.contact p a{
    text-decoration: none;
    color: #666;
}
.contact .contact-i {
    font-size: 3.5rem;
    color: #dc3545;
    padding-bottom: 1.2rem;
}
.contact h5{
    font-size: 2.5rem;
    color: #212121;
    font-weight: 500;
    padding: 0.5rem 0
}
.quote-form form {
    margin-top: 0rem;
}
.quote-form .form-control {
    padding: 2rem 1.5rem;
    border: none;
    font-size: 1.5rem;
    font-weight: 300;
    background: #e9ecef;
}
.quote-form h2 {
    font-size: 2.5rem;
    font-weight: 600;
    padding: 1.5rem 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}
.quote-form p {
    font-size: 1.6rem;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    letter-spacing: 0.5px;
    padding: 1rem 0;
}
.quote-form p a{
    text-decoration: none;
    color: #212121;
}
.modal-content {
    display: block !important;
}
.btn-close {
    padding: 0.5rem 0.5rem;
    margin: -1.8rem -1.8rem -0.5rem auto;
    background: #fff;
    opacity: 1;
    float: right;
}
.modal-body .quote-form {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
}
.modal-body .quote-form h2 {
    font-size: 2.5rem;
    font-weight: 600;
    padding: 1.5rem 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}
.modal-body .btn-green {
    padding: 0.8rem 2.5rem;
}
.quote-form .title {
    text-align: left !important;
}
.quote-form .tilte-border {
    text-align: left !important;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 1.5rem 1rem !important;
    clear: both;
    font-weight: 400;
    color: #666 !important;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 1.5rem !important;
}
.soft h3 a{
    text-decoration: none;
    display: inline-block;
    color: #212121;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 1.5rem 0;
}
.pagination {
    display: inline-block;
    margin: 0;
    border-radius: 0;
}
.pagination strong {
    width: 50px;
    height: 50px;
    line-height: 50px;
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    border-radius: 0.25rem !important;
    box-shadow: none;
    background: #212121;
    color: #ffffff;
    border-color: #212121;
    margin-left: 10px;
}
.pagination a {
    text-decoration: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    border-radius: 0.25rem !important;
    box-shadow: none;
    color: #212121;
    border-color: #212121;
    border: 1px solid #212121;
    margin-left: 10px;
}
.service-detail h3 {
    font-size: 2.5rem;
    font-weight: 600;
    padding: 1.5rem 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}
.service-detail h4 {
    font-size: 2rem;
    font-weight: 600;
    padding: 1.5rem 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}
.service-detail h5{
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1.5rem 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}
.blog-detail h3 {
    font-size: 2.5rem;
    font-weight: 600;
    padding: 1.5rem 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}
.blog-detail h4 {
    font-size: 2rem;
    font-weight: 600;
    padding: 1.5rem 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}
.blog-detail h5{
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1.5rem 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}
.form-error {
    color: #cf2920;
    padding-top: 0.5rem;
    display: inline-block;
    font-size: 1.2rem;
}
.copyright p a{
    text-decoration: none;
    color: #fff;
}
#home_slider.carousel-control-next {
    right: 0;
}

#home_slider.carousel-control-prev {
    left: 0;
}
.carousel-control-next {
    right: 12%;
}
.carousel-control-prev {
    left: 12%;
}
.error {
    
}
@media only screen and (max-width: 1399px) {
    html {
        font-size: 56%;
    }
}


@media only screen and (max-width: 767px) {
.navbar-toggler {
    background: #212529;
    padding: 1rem;
    border: 1px solid #212529;
    margin-top: 1.8rem;
}
.navbar-toggler i {
    font-size: 2rem;
    color: #fff;
    
}
.navbar-brand {
    width: 55%;
    padding-left: 1.5rem;
    margin: inherit;
}
.abt-sec h3 {
    font-size: 2rem;
}
.process {
    padding: 0.5rem;
    margin-top: 6rem;
}
.work-process {
    background: url(../img/blue-dark_02.jpg) no-repeat center;
    text-align: center;
    padding: 2.5rem 0.5rem;
    background-size: cover;
    margin-bottom: 1.5rem;
}
.process h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.testi {
    background: #d0d7dd;
    padding: 4rem 3.5rem;
    text-align: center;
    min-height: 245px;
}
.bg-blue h4 {
    font-size: 2.5rem;
}
.title h2 {
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    padding: 1.8rem 0;
}
.copyright{
    text-align: center;
}
.copyright p {
    font-size: 1.3rem;
    line-height: 1.5;
}
footer{
    text-align: center;
}
.abt-sec {
    text-align: center;
}
.carousel-caption {
    top: 98%;
    margin: auto;
    width: 85%;
    border: none;
    height: 250px;
    padding: 1.5rem;
    right: 0;
    left: 0;
}
.carousel-caption h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--inputBgColor);
    align-items: center;
    text-transform: uppercase;
    line-height: 1.3;
}
.carousel-caption p {
    font-size: 1.5rem;
    padding-bottom: 0.5rem
}
.banner-footer {
    position: relative;
    margin-top: 6%;
}
.navbar-nav {
    background: #d0d7dd;
}

.navbar .nav-item {
    padding: 0.5rem 1.5rem;
    display: block;
}
.navbar .nav-link {
    padding: 1.2rem 0 !important;
    font-size: 1.6rem;
    font-weight: 600;
    color: #212121;
    position: relative;
}
.navbar .nav-item:last-child {
    margin-left: 0px;
}
.short-banner {
    min-height: 300px;
}
.quote, .abt {
    text-align: center;
}

.core-value h4{
    text-align: center;
}
.vi-mi {
    text-align: center !important;
}
.short-banner h3 {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 600;
    padding-top: 4rem;
    text-transform: capitalize;
    padding-bottom: 2rem;
    line-height: 1.3;
}
.title {
    text-align: center;
}
.banner-footer img {
    margin-bottom: 2rem;
}
.banner-footer .abt{
    text-align: left !important;
}
.vi-mi h5 {
    text-align: center !important;
}
.soft{
    border: none !important;
}
.control {
    padding: 10px 20px;
}

.pd {
    position: relative;
    padding: 0.5rem;
}
.blog-list img {
    padding-bottom: 0;
}
.blog-list h1 a {
    font-size: 2.2rem;
}
.categoery h3 {
    padding: 10px 0px;
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 2.5rem;
}

.quote-form {
    text-align: center;
    padding: 1.5rem;
}

.serv-ul {
    text-align: left !important;
}
.form-error {
    color: #cf2920 !important;
    float: left;
    font-size: 1.2rem !important;
}


}