@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Raleway:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext);
@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);

:root {
    --orange: #E35F25;
    --white: #ffffff;
    --blue: #262B68;
    --darkgrey: #5c5c5c;
    --lightgrey: #f2f2f2;
    --ltegrey: #bcbcbc
}

body {
    font-family: Roboto, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #212112;
    background-position: center;
    background-repeat: repeat;
    background-size: 7%;
    background-color: #fff;
    overflow-x: hidden;
    transition: all .2s linear
}

::selection {
    color: #fff;
    background-color: #8167a9
}

::-moz-selection {
    color: #fff;
    background-color: #8167a9
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #212112;
    text-align: center
}

.h2.heading,
h2 {
    font-family: Roboto, sans-serif;
    font-weight: 300;
    color: var(--blue)
}

.bg-white {
    background: #fff
}

.btn-defualt {
    background: var(--orange);
    color: #fff
}

.btn-white {
    background: #fff;
    color: #000 !important;
    text-decoration: none !important
}

span {
    color: var(--orange);
    font-weight: 600
}

p {
    color: var(--darkgrey);
    font-family: Lato
}

.start-header {
    opacity: 1;
    transform: translateY(0);
    padding: 5px 0;
    box-shadow: 0 10px 30px 0 rgba(138, 155, 165, .15);
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.start-header.scroll-on {
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, .15);
    padding: 10px 0;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.start-header.scroll-on .custom-logo-link img,
.start-header.scroll-on .navbar-brand img {
    height: 45px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.navigation-wrap {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.navbar {
    padding: 0
}

.custom-logo-link img,
.navbar-brand img {
    height: 60px;
    width: auto;
    display: block;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
    position: absolute;
    right: 40px;
    top: 20px;
}
 s
.navigation-wrap.scroll-on .navbar-toggler {
    top: 13px;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: 0
}

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #000;
    transition: all .3s linear
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #000;
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all .3s linear
}

.navbar-light .navbar-toggler-icon:after {
    top: 8px
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:after {
    transform: rotate(45deg)
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg)
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
    border-color: transparent
}

.nav-link {
    color: var(--blue) !important;
    font-size: 13px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    position: relative;
    padding: 5px 0 !important;
    display: inline-block;
    text-transform: uppercase;
    transition: all .2s linear
}

.nav-item:hover .nav-link {
    color: var(--orange) !important
}

.nav-item.active .nav-link {
    color: var(--orange) !important
}

.nav-item:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
    background-color: var(--orange);
    opacity: 0;
    transition: all .2s linear
}

.nav-item.active:after {
    bottom: 0;
    opacity: 1
}

.nav-item:hover:after {
    bottom: 0;
    opacity: 1
}

.nav-item.active:hover:after {
    opacity: 0
}

.nav-item {
    position: relative;
    transition: all .2s linear
}

.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    display: block;
    padding: 0;
    margin: 0;
    transition: all .2s linear
}

.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 999px;
    transform: translate3d(0, 0, 0)
}

.dropdown-menu {
    padding: 10px !important;
    margin: 0;
    font-size: 13px;
    letter-spacing: 1px;
    color: #212121;
    background-color: #fff;
    border: none;
    border-radius: 3px;
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, .15);
    transition: all .2s linear
}

.dropdown-toggle::after {
    display: none
}

.dropdown-item {
    padding: 3px 15px;
    color: #212121;
    border-radius: 2px;
    transition: all .2s linear
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #fff;
    background-color: var(--blue)
}

.rqest-btn {
    background: var(--orange);
    color: var(--white) !important;
    padding: 5px 15px;
    border-radius: 20px;
    margin-left: 1.5rem;
    font-size: 14px
}

.country-box {
    margin-left: 15px;
    position: relative
}

.country-box .header-global {
    width: 90px;
    height: 34px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid silver;
    font-size: 14px;
    padding: 0 10px;
    text-align: left;
    display: flex;
    align-items: center
}

.country-box .header-global:focus,
.country-box .header-global:hover {
    border-color: var(--orange);
    outline: 0
}

.country-box .dropdown-menu li span.flag,
.header-global .flag {
    margin-right: 10px
}

.country-box .dropdown-menu li span,
.header-global .mobile-hide {
    margin-top: 1px;
    font-weight: 400;
    color: var(--darkgrey)
}

.header-global .caret {
    color: var(--darkgrey);
    margin-left: auto;
    border-top: 4px dashed;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.country-box .dropdown-menu {
    min-width: 100%;
    background-color: #fff;
    padding: 0 !important
}

.country-box .dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    display: block;
    max-height: 999px;
    transform: translate3d(0, 0, 0)
}

.country-box .dropdown-menu li {
    display: flex
}

.country-box .dropdown-menu li a {
    flex: 0 0 100%;
    width: 100%;
    padding: 5px 10px
}

.country-box .dropdown-menu li a:focus,
.country-box .dropdown-menu li a:hover {
    text-decoration: none;
    background-color: #f8f9fa
}

.logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: block;
    z-index: 100;
    transition: all 250ms linear
}

.logo img {
    height: 26px;
    width: auto;
    display: block;
    filter: brightness(10%);
    transition: all 250ms linear
}

.hero-section {
    padding-top: 49px
}

.big-image {
    width: 100vw;
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
    background-image: url(../img/banner.png)
}

.index-hero .big-image:before {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(240, 97, 19, .05), rgba(0, 12, 78, .05))
}

.big-image-2 {
    height: 100%
}

.overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .5));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 0 70px
}

.big-image-2 .overlay {
    background: rgba(0, 0, 0, .5);
    position: relative;
    padding: 50px 0
}

.index-hero.no-overlay .big-image:before,
.index-hero.no-overlay .overlay {
    background: 0 0
}

.overlay h1 {
    font-size: 65px;
    letter-spacing: 0;
    margin: 0 0 5px
}

.big-image-2 .overlay h1 {
    font-size: 40px;
    font-style: normal;
    line-height: 40px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: left;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 1.5rem
}

.big-image-2 .overlay h1 span {
    color: var(--white)
}

.overlay h3 {
    margin: 0;
    font-size: 45px;
    padding: 25px 0 10px;
    color: #000;
    font-weight: 400
}

.overlay .hero--title,
.overlay h3 span {
    font-weight: 800;
    color: #f06113;
    display: block;
    text-align: left
}

.overlay h3.cd-headline {
    padding-bottom: 0
}

.overlay .hero--title {
    margin: 0;
    font-size: 45px;
    padding-bottom: 10px
}

.overlay h6 {
    margin: 0;
    font-size: 19px;
    letter-spacing: 2px;
    font-weight: 200;
    text-transform: uppercase
}

.overlay p {
    color: var(--white);
    font-family: Lato;
    font-size: 20px;
    line-height: 30px;
    color: #000
}

.index-hero .overlay h3 {
    margin-top: 40px
}

.index-hero .overlay p {
    width: 90%
}

.big-image-2 .overlay p {
    letter-spacing: normal;
    line-height: 24px;
    font-size: 16px;
    color: rgba(255, 255, 255, .85);
    padding-right: 90px
}

.overlay a {
    margin-top: 5px;
    padding: 5px 25px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500
}

.big-image-2 .overlay a {
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 3rem
}

.big-image-2 .overlay a:focus,
.big-image-2 .overlay a:hover {
    outline: 0;
    box-shadow: none;
    background: var(--blue);
    color: var(--white)
}

.big-image-2 .overlay a svg {
    margin-left: 10px;
    transition: .5s
}

.big-image-2 .overlay a:focus svg,
.big-image-2 .overlay a:hover svg {
    transform: translateX(5px)
}

.cd-headline.clip .cd-words-wrapper {
    font-weight: 400;
    color: #000;
    display: inline-block;
    vertical-align: middle;
    margin-top: 0
}

.cd-headline.clip .typed-cursor {
    display: inline;
    color: rgba(0, 0, 0, .1);
    vertical-align: middle
}

.cd-words-wrapper:not(.slick-initialized) div+div {
    display: none
}

.after-hero {
    padding: 70px 0
}

.after-hero a {
    color: var(--blue);
    font-weight: 600
}

.first-box {
    border-right: 1px solid #ccc
}

.first-box .h6,
.first-box h6 {
    font-size: 20px;
    font-weight: 300
}

.first-box .h6 span,
.first-box h6 span {
    font-weight: 800
}

.after-hero .box01 .h5,
.after-hero .box01 h5 {
    padding-top: 20px;
    padding-bottom: 4px;
    color: var(--blue);
    font-weight: 700;
    font-size: 16px
}

.after-hero .box01 p {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 25px
}

.after-hero .box01 img {
    max-width: 80px
}

.info-graph {
    padding-bottom: 70px
}

.info-graph .info-heading .h2,
.info-graph .info-heading h2 {
    font-weight: 600;
    font-family: Roboto, sans-serif;
    color: var(--blue)
}

.info-table-layout table tr td {
    padding: .5rem 0
}

.info-table-layout table tr td,
.info-table-layout table tr th {
    position: relative
}

.info-table-layout table tr td:not(.table-content),
.info-table-layout table tr th:not(.table-content) {
    padding: 0 10px;
    text-align: center
}

.info-table-layout table tbody tr td {
    height: 50px
}

.info-table-layout table tbody tr td:first-child {
    width: 45%;
    vertical-align: middle
}

.info-table-layout table tbody tr td:nth-child(2),
.info-table-layout table tbody tr td:nth-child(3) {
    width: calc(55% / 2)
}

.info-table-layout table tbody tr td:nth-child(2)>div,
.info-table-layout table tbody tr td:nth-child(3)>div {
    background: #fdfdfd;
    padding: .5rem 0;
    position: absolute;
    right: 10px;
    left: 10px;
    top: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.info-table-layout table tbody tr:nth-child(2) td {
    height: 10px;
    padding: 0
}

.info-table-layout table tbody tr td.table-content {
    font-weight: 700;
    color: #828282
}

.info-table-layout table tbody tr td.table-content .table-heading {
    font-size: 20px;
    color: #000;
    letter-spacing: 2px
}

.info-table-layout table tbody tr td div.info-price {
    background-color: var(--orange);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 18px;
    font-family: Montserrat, sans-serif
}

.info-table-layout table tbody tr td div.price {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    color: var(--blue)
}

.info-table-layout table thead tr th p {
    margin-bottom: 10px;
    letter-spacing: 8px;
    color: var(--blue);
    line-height: 20px;
    font-weight: 700;
    font-family: Roboto
}

.info-table-layout table thead tr th {
    vertical-align: middle
}

.info-table-layout .table-heading .arrow {
    width: 130px;
    height: 1px;
    display: inline-block;
    position: relative;
    border-top: 4.5px dotted #000;
    vertical-align: middle;
    margin-left: 20px
}

.info-table-layout .table-heading .arrow::after {
    content: "";
    color: var(--darkgrey);
    margin-left: auto;
    border-left: 8px dashed;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    right: -11px;
    position: absolute;
    top: -11px;
    border-radius: 4px
}

.info-table-layout .available,
.info-table-layout .unavailable {
    height: 34px
}

.info-table-layout .available {
    color: var(--blue)
}

.info-table-layout .unavailable {
    color: var(--orange)
}

.info-table-layout .svg-inline--fa.fa-w-11,
.info-table-layout .svg-inline--fa.fa-w-16 {
    width: 1.5em;
    height: 1.5em
}

.testi {
    padding: 50px 0;
    background: var(--lightgrey)
}

.testi video {
    width: 500px !important;
    height: 300px !important;
    margin-top: 15px;
    border-radius: 8px
}

.testi a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: underline;
    font-size: 14px
}

.testi p {
    color: var(--darkgrey)
}

.testi a svg {
    text-decoration: none
}

.testi .carousel-inner {
    margin: 0 auto;
    text-align: center
}

.testi .carousel-item .one {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
    background: var(--white)
}

.testi .contrl {
    font-size: 30px;
    color: var(--orange)
}

.testi img {
    width: 70px;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 0 3px #b9b9b9
}

.inside-testi h4 {
    font-size: 16px;
    padding-top: 10px;
    font-weight: 600;
    text-align: left
}

.inside-testi h6 {
    font-size: 14px;
    color: var(--darkgrey)
}

.testi .carousel-control-prev {
    left: -40px
}

.testi .carousel-control-next {
    right: -40px
}

.after-testi a {
    color: var(--blue);
    font-weight: 600
}

.after-testi>.container>.row {
    padding-top: 40px
}

.after-testi .paragraph {
    width: 90%;
    margin-left: auto;
    margin-right: auto
}

.myaccordion {
    box-shadow: 0 0 1px rgba(0, 0, 0, .1)
}

.myaccordion .card,
.myaccordion .card:last-child .card-header {
    border: none
}

.myaccordion .card-header {
    border-bottom-color: #edeff0;
    background: 0 0
}

.myaccordion .fa-stack {
    font-size: 18px
}

.myaccordion .btn {
    font-weight: 700;
    color: var(--blue);
    padding: 0
}

.myaccordion .btn-link:focus,
.myaccordion .btn-link:hover {
    text-decoration: none
}

.myaccordion li+li {
    margin-top: 10px
}

.who-we {
    background: var(--lightgrey);
    padding: 50px 10px 0 10px
}

.who-we .overlay01 {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.who-we h2 {
    font-size: 35px;
    font-weight: 300;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 1px
}

.who-we .h5,
.who-we h5 {
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 1px;
    line-height: 25px;
    color: var(--darkgrey)
}

.who01 {
    padding: 180px 10px 150px 10px;
    text-align: center;
    color: var(--white)
}

.who-we .left {
    background: url(../img/Layer114.jpg)
}

.who-we .right {
    background: url(../img/Layer114copy.jpg)
}

.who-we .OW01 {
    width: 60%;
    margin: 0 auto;
    padding: 50px
}

.who-we .h4,
.who-we h4 {
    padding: 10px 0;
    color: var(--white)
}

.who-we p {
    color: var(--white)
}

.who-we a {
    color: var(--white);
    font-weight: 600
}

.what-we {
    padding: 70px 0
}

.what-we h2 {
    font-size: 35px;
    font-weight: 300;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 1px
}

.what-we .h5,
.what-we h5 {
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 1px;
    line-height: 25px;
    color: var(--darkgrey)
}

.what-we .row div {
    box-shadow: 0 0 3px #d9d8d8;
    padding: 20px;
    border-radius: 3px;
    margin: 10px;
    max-width: 23%
}

.what-we .h4,
.what-we h4 {
    padding: 10px 0;
    color: var(--blue);
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize
}

.what-we p {
    color: var(--darkgrey)
}

.what-we a {
    color: var(--orange);
    font-weight: 600
}

.bod {
    background: var(--lightgrey);
    padding: 50px 0;
    text-align: center
}

.bod h5 {
    font-size: 14px
}

.bod .row div {
    background: var(--white);
    margin: 10px;
    padding: 20px
}

.bod .row div:first-child {
    background: 0 0
}

.bod img {
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 0 3px #b9b9b9
}

.bod .h4:not(.heading),
.bod h4:not(.heading) {
    padding-top: 10px;
    font-size: 16px
}

.bod .h6,
.bod h6 {
    font-size: 14px;
    color: var(--ltegrey)
}

.bod a {
    color: var(--orange);
    font-weight: 600
}

.brand-logo {
    padding-top: 50px;
    padding-bottom: 40px
}

.brand-logo .h4,
.brand-logo h4 {
    padding-top: 20px
}

.brand-logo p {
    color: var(--ltegrey)
}

.slick-next,
.slick-prev {
    position: absolute;
    top: 135%;
    font-size: 1.8rem;
    cursor: pointer;
    outline: 0;
    border: 0
}

.slick-arrow .fa-angle-left:before {
    content: none
}

.slick-prev {
    left: 0
}

.slick-next {
    right: 0
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    margin-top: 40px
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block
}

.slick-track:after,
.slick-track:before {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block;
    border-right: 1px solid var(--ltegrey)
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slide {
    transition: filter .4s;
    margin: 0 40px
}

.brand-logo .slide {
    margin: 0
}

.brand-logo .slick-slide img {
    max-height: 60px;
    margin: auto;
    object-fit: contain
}

.fas {
    color: #96bd0b
}

.slick-prev {
    left: 0
}

.slick-next,
.slick-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    z-index: 10;
    border: 0;
    background-color: transparent
}

.slick-arrow:focus {
    outline: 0
}

.support {
    background: var(--blue);
    color: var(--white);
    text-align: center
}

.support .row {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 0 40px 0
}

.support p {
    color: var(--white)
}

.support a {
    text-decoration: underline;
    color: var(--white)
}

.blog {
    padding: 70px 0
}

.blog .h2,
.blog h2 {
    font-size: 35px;
    font-weight: 300;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 1px
}

.blog .h5,
.blog h5 {
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 1px;
    line-height: 25px;
    color: var(--darkgrey)
}

.blog .row div {
    box-shadow: 0 0 3px #d9d8d8;
    padding: 20px;
    border-radius: 8px;
    margin: 10px;
    max-width: 30%
}

.blog .h4,
.blog h4 {
    padding: 10px 0;
    color: var(--blue);
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize
}

.blog p {
    color: var(--darkgrey)
}

.blog a {
    color: var(--orange);
    font-weight: 600
}

.content-section,
.section-box {
    padding-top: 60px;
    padding-bottom: 60px
}

.content-section+.content-section {
    padding-top: 0
}

.content-title span {
    display: block;
    font-size: 20px;
    line-height: 34px;
    font-weight: 300
}

.content-title,
.section-box h3:not(.h2) {
    border-left: 0;
    padding-left: 0;
    line-height: 40px;
    margin-bottom: 0;
    font-size: 30px;
    font-weight: 600;
    color: #212112
}

.section-box h3:not(.h2) {
    margin-bottom: 15px
}

.content-description {
    padding-left: 30px
}

.content-description ul,
.section-box ul {
    color: var(--darkgrey);
    font-family: Lato;
    line-height: 30px;
    list-style-position: inside;
    padding: 0
}

.desk-column-count-2 {
    column-count: 2
}

.content-section ul li a {
    color: inherit;
    position: relative;
    padding-left: 30px
}

.content-section ul li a:focus,
.content-section ul li a:hover {
    text-decoration: none;
    color: var(--orange)
}

.content-section ul li a::before {
    left: 2px;
    position: absolute;
    color: #c99e67;
    content: '';
    width: 18px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23E35F25' d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    top: 3px;
    -webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -ms-transition: all .1s ease-out;
    transition: all .1s ease-out
}

.content-section ul li a:hover::before {
    left: 10px
}

.section-box .section-content {
    padding-top: 0
}

.section-box .myaccordion,
.section-box .myaccordion .card {
    border: 0;
    box-shadow: none
}

.section-box .myaccordion .card:not(:last-child) {
    margin-bottom: 1rem
}

.section-box .myaccordion .card-header {
    background-color: #f9f9f9;
    padding: 15px;
    border-style: solid;
    border-width: 0;
    border-radius: 5px 5px 5px 5px
}

.section-box .myaccordion .btn {
    font-size: 22px
}

.section-box .myaccordion .fa-stack {
    background-color: #e35f28;
    border-radius: 5px 5px 5px 5px;
    margin: 0 15px 0 0;
    padding: 10px;
    font-family: Roboto;
    color: #fff;
    line-height: 18px;
    width: 2em
}

.what-we-do-image {
    position: relative;
    margin-right: 15px;
    text-align: center;
    z-index: 1
}

.what-we-do-image .action {
    background: var(--white);
    padding: 20px 25px;
    position: absolute;
    left: 40px;
    top: 50px;
    display: inline-block;
    border-radius: 5px;
    max-width: 250px;
    text-align: left
}

.what-we-do-image .action:after {
    content: "";
    position: absolute;
    border: 10px solid transparent;
    border-top-color: #fff;
    width: 10px;
    height: 10px;
    bottom: -20px;
    left: 50px
}

.what-we-do-image .action a,
.what-we-do-image .action h4 {
    color: #252425;
    font-family: Roboto
}

.what-we-do-image .action h4 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px
}

.what-we-do-image .action a {
    color: var(--orange);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px
}

.what-we-do-image img {
    box-shadow: 0 0 1px #b7b7b7;
    padding: 15px
}

.what-we-do-image .action a:hover {
    text-decoration: none
}

.what-we-do-image .action a svg {
    margin-left: 10px;
    transition: .5s
}

.what-we-do-image .action a:hover svg {
    transform: translateX(5px)
}

.contact-form {
    padding-bottom: 60px
}

.contact-form .form-area {
    margin-top: -60px;
    position: relative;
    background: #fff;
    -webkit-box-shadow: 0 2px 20px 0 rgb(12 0 46 / 4%);
    box-shadow: 0 2px 20px 0 rgb(12 0 46 / 4%)
}

.contact-form.contact-page .form-area {
    margin-top: 0;
    margin-bottom: 0;
    bottom: 0;
    z-index: 2
}

.contact-area {
    padding-top: 60px;
    background: #f8f9fa;
    padding-bottom: 100px
}

.contact-form.contact-page .contact-area {
    padding-bottom: 60px
}

.contact-area .h3,
.contact-area h3 {
    color: var(--blue)
}

.contact-area .content-description {
    padding-left: 20px
}

.contact-area p a {
    font-weight: 700;
    color: var(--blue)
}

.contact-area p a:hover {
    color: var(--orange);
    text-decoration: none
}

.contact-area .check-item li {
    position: relative;
    padding-left: 25px;
    padding-right: 10px
}

.contact-area .check-item li::before {
    content: "";
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23E35F25' d='M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z'%3E%3C/path%3E%3C/svg%3E");
    width: 16px;
    height: 16px;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

.quote-here-img {
    background-image: url(../img/quote-here-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%
}

.quote-content {
    width: 100%;
    height: 100%;
    padding: 30px 30px 0 0
}

.contact-form.contact-page .quote-content {
    padding-top: 0
}

.quote-here-form {
    background-color: #fff;
    padding: 40px
}

.contact-form .quote-here-form,
.contact-page .quote-here-form {
    background-color: var(--light);
    box-shadow: 0 0 3px #d9d8d8
}

.contact-form .quote-here-form label,
.contact-page .quote-here-form label {
    background-color: var(--light)
}

.box-shadow {
    box-shadow: 0 0 3px #d9d8d8;
    border-radius: 3px;
    padding: 20px;
    height: 100%
}

.box-shadow .h4,
.box-shadow h4 {
    padding: 0;
    color: var(--blue);
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize
}

.box-shadow p,
.box-shadow ul li {
    color: var(--darkgrey);
    font-family: Lato
}

.box-shadow ul li {
    margin-bottom: 5px;
    line-height: 30px
}

.box-shadow ul li a {
    color: var(--darkgrey)
}

.box-shadow ul li a:hover {
    text-decoration: underline;
    color: var(--orange)
}

.box-shadow .icon {
    margin-right: 15px;
    color: var(--orange)
}

.max-mb-50 {
    margin-bottom: 50px
}

.service-card .h5,
.service-card h5 {
    position: relative;
    padding-top: 12px;
    font-weight: 700;
    margin-bottom: 10px
}

.section-box .service-card .h5 {
    font-size: 1.25rem;
    margin-bottom: .5rem;
    font-weight: 700;
    line-height: 1.2
}

.service-card .h5::before,
.service-card h5::before {
    width: 40px;
    background-color: var(--orange);
    height: 3px;
    content: "";
    position: absolute;
    top: 0;
    left: 0
}

.service-card ul {
    margin-bottom: 0;
    list-style-position: outside;
    margin-left: 20px
}

.service-card ul li {
    line-height: 24px;
    font-size: 16px;
    color: var(--darkgrey)
}

.stm_contact_job {
    font-weight: 400;
    font-style: italic;
    font-size: 13px;
    margin: 0 0 13px;
    color: #777
}

form .form-group {
    margin-bottom: 25px;
    padding-top: 7px;
    position: relative
}

form .form-group label {
    left: 13px;
    top: 0;
    display: block;
    position: absolute;
    color: var(--blue);
    line-height: 1;
    padding: 0 6px;
    background-color: var(--white);
    font-size: 15px;
    font-weight: 700;
    z-index: 1
}

form .form-control {
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-top: 10px;
    color: #495057;
    height: 45px
}

form textarea.form-control {
    height: auto
}

form .form-control:focus {
    box-shadow: none;
    outline: 0;
    border-color: #7b7b7b;
    background-color: transparent
}

form .default-btn {
    color: var(--white);
    background-color: var(--orange);
    padding: 12px 65px 12px 30px;
    position: relative
}

form .default-btn:hover {
    color: var(--white)
}

.default-btn span {
    position: absolute;
    right: 25px;
    color: var(--white);
    -webkit-transition: .5s;
    transition: .5s;
    font-size: 17px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

footer {
    background-color: #060e4e;
    padding: 60px 0 0;
    color: var(--white);
    background-image: url(../img/footer-pattern-03.jpg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain
}

footer h4 {
    padding-bottom: 20px;
    position: relative;
    font-size: 22px
}

footer h4::after {
    content: "";
    height: 2px;
    background-color: var(--orange);
    width: 60px;
    position: absolute;
    bottom: 7px;
    left: 0
}

footer ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0
}

footer ul li {
    padding: 5px 0 0;
    font-size: 15px
}

footer p,
footer ul li a {
    color: rgba(255, 255, 255, .7);
    line-height: 30px;
    text-transform: capitalize
}

footer ul li a:hover {
    text-decoration: none;
    color: #fff
}

.copyright {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 10px 0
}

.copyright p {
    color: rgba(255, 255, 255, .7);
    font-family: Roboto;
    font-size: 14px
}

.copyright ul li {
    font-size: 14px;
    padding: 0;
    font-family: Roboto;
    padding-right: 14px
}

.copyright ul li:after {
    position: absolute;
    content: "|";
    padding-left: 11px;
    top: 50%;
    transform: translateY(-50%)
}

.copyright ul li:last-child::after {
    content: none
}

.inputbox {
    width: 100%;
    position: relative;
    margin: 0 auto
}

.inputbox input[type=email] {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: 14px;
    width: 100%;
    padding: 12px 15px;
    padding-right: 80px;
    height: 60px;
    outline: 0;
    color: #fff;
    border-radius: 3px
}

.inputbox input[type=email]:focus {
    border-color: rgba(255, 255, 255, .7)
}

.inputbox button[type=submit] {
    position: absolute;
    top: 10px;
    height: 40px;
    width: 40px;
    z-index: 21;
    padding: 0;
    right: 10px;
    box-shadow: 0 0;
    font-weight: 600;
    background-color: var(--orange);
    font-size: 18px;
    border-radius: 3px;
    color: #fff;
    border-left: 1px solid transparent
}

.inputbox button[type=submit]:focus,
.inputbox button[type=submit]:hover {
    color: var(--orange);
    background-color: var(--white)
}

footer img {
    max-height: 50px
}

.newsletter {
    margin-top: 30px
}

.social-icon {
    margin-top: 1em
}

.social-icon a {
    display: block;
    border-radius: 2em;
    background: rgb(255 255 255);
    height: 35px;
    width: 35px;
    color: #070f4e;
    text-align: center;
    line-height: 43px
}

.social-icon a:hover {
    background-color: var(--orange)
}

.social-icon svg {
    width: 19px !important;
    height: 19px
}

footer img {
    width: auto
}

.map-section {
    margin-top: 0
}

.map-section .embed-responsive-16by9::before {
    padding-top: 40%
}

.blog-main {
    padding: 60px 0
}

.blog-classic {
    margin-bottom: 50px;
    position: relative
}

.blog-classic .blog-classic-inner {
    padding: 0 0 40px 0;
    border-bottom: 1px solid #e5e8ef
}

.blog-classic .featured-wrapper {
    margin-bottom: 30px
}

.blog-grid .blog-classic .featured-wrapper {
    margin-bottom: 15px
}

.blog-grid .blog-classic .featured-wrapper a img {
    height: 260px;
    width: 100%;
    object-fit: cover
}

.blog-classic .meta-cat {
    display: inline-block;
    padding: 8px 15px;
    color: #fff;
    position: absolute;
    top: 20px;
    right: 20px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
    background: #222
}

.blog-classic .meta-cat a {
    color: #fff;
    padding: 0 5px
}

.blog-classic .post-title {
    font-size: 28px;
    line-height: 42px;
    font-weight: 700;
    margin-bottom: 15px
}

.blog-grid .blog-classic .post-title {
    font-size: 18px;
    line-height: 24px
}

.blog-classic .post-title a {
    color: var(--blue)
}

.blog-classic a:hover {
    text-decoration: none;
    color: var(--orange)
}

.blog-meta,
.blog-meta a {
    color: #a3acb9
}

.blog-meta.blog-meta-top {
    position: relative;
    font-size: 14px;
    margin-bottom: 15px
}

.blog-classic .blog-meta-top span {
    font-weight: 400;
    color: inherit
}

.blog-classic .blog-meta-top>span {
    margin-right: 15px;
    font-weight: 400
}

.blog-classic .blog-meta-top span svg {
    margin-right: 5px
}

.blog-classic .entry-content {
    font-size: 16px
}

.blog-classic-inner .read-more-link {
    padding-top: 10px
}

.blog-classic-inner .read-more-link .rqest-btn {
    margin-left: 0
}

.blog-classic-inner .read-more-link .rqest-btn:focus,
.blog-classic-inner .read-more-link .rqest-btn:hover {
    outline: 0;
    box-shadow: none;
    background: var(--blue)
}

.paging {
    padding: 10px 0 40px
}

.pagination>li>a,
.pagination>li>span {
    margin-right: 8px;
    width: 40px;
    height: 40px;
    display: block;
    padding: 6px 12px;
    line-height: 28px;
    color: #7c7c7c;
    border: 1px solid #f1f1f1;
    text-align: center
}

.pagination>.active>a,
.pagination>.active>a:hover,
.pagination>li>a:hover {
    color: #fff;
    background: var(--orange);
    border: 1px solid transparent;
    text-decoration: none
}

.blog-main .widget {
    height: auto;
    margin-bottom: 2rem
}

.blog-main .widget .widget-title {
    font-size: 24px;
    font-weight: 700;
    position: relative;
    margin: 0 0 30px;
    padding-left: 15px;
    border-left: 3px solid;
    border-color: var(--orange)
}

.search-widget .inputbox input[type=email] {
    border-color: #d9d8d8;
    color: #000
}

.search-widget .inputbox input[type=email]:focus {
    border-color: #999
}

.search-widget .inputbox button[type=submit]:focus,
.search-widget .inputbox button[type=submit]:hover {
    color: var(--white);
    background-color: var(--blue)
}

.blog-main .widget ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.blog-main .widget.widget_categories li,
.blog-main .widget_recent_entries li {
    position: relative;
    border-bottom: 1px dashed #f1f1f1;
    position: relative;
    margin: 5px 0;
    padding-bottom: 3px
}

.blog-main .widget.widget_categories li a {
    display: inline-block;
    position: relative;
    padding-left: 15px
}

.blog-main .widget.widget_categories li a:focus,
.blog-main .widget.widget_categories li a:hover,
.blog-main .widget_recent_entries li a:focus,
.blog-main .widget_recent_entries li a:hover {
    text-decoration: none
}

.widget .recent-post-thumb {
    display: table-cell;
    vertical-align: middle;
    height: auto;
    width: 75px;
    border-radius: 7px;
    overflow: hidden
}

.widget .recent-post-desc {
    display: table-cell;
    vertical-align: middle;
    padding-left: 15px;
    line-height: 21px
}

.widget .recent-post-desc span {
    color: #999;
    font-weight: 400;
    display: block;
    margin-bottom: 5px
}

.widget .recent-post-desc {
    color: var(--blue);
    font-weight: 600
}

.blog-main .widget.widget_categories li span {
    color: #999;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400
}

.tagcloud>.tag-cloud-link {
    display: inline-block;
    padding: 6px 19px;
    margin: 0 4px 10px;
    border: 1px solid #e3e3e3;
    font-size: 14px !important;
    background-color: #fff;
    font-weight: 500;
    color: #1b1b1b
}

.tagcloud>.tag-cloud-link:focus,
.tagcloud>.tag-cloud-link:hover {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    text-decoration: none
}

.inner-blog .big-image-2 .overlay h1.post-title {
    font-size: 35px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: normal;
    margin: 15px 0
}

.inner-blog .big-image-2 .overlay a,
.inner-blog .big-image-2 .overlay span {
    margin: 0;
    text-transform: capitalize;
    padding: 0;
    font-weight: 400;
    color: var(--white);
    font-size: 13px;
    line-height: 26px
}

.inner-blog .big-image-2 .overlay .blog-meta.blog-meta-top {
    margin-bottom: 0
}

.inner-blog .big-image-2 .overlay .blog-meta-top svg {
    margin-right: 5px;
    margin-left: 0
}

.inner-blog .big-image-2 .overlay .blog-meta-top span+span {
    margin-left: 15px
}

.inner-blog .big-image-2 .overlay .meta.meta-cat a {
    background-color: var(--orange);
    display: inline-block;
    margin-right: 1px;
    border-radius: 3px;
    padding: 0 10px
}

.inner-blog .big-image-2 .overlay a:focus,
.inner-blog .big-image-2 .overlay a:hover {
    text-decoration: none;
    background-color: transparent
}

.inner-blog .big-image-2 .overlay a:focus svg,
.inner-blog .big-image-2 .overlay a:hover svg {
    transform: translate(0, 0)
}

.single-post .post-prev-next-buttons {
    padding-top: 30px;
    margin: 10px 0 10px;
    position: relative;
    border-top: 1px solid #e5e5e5;
    padding-bottom: 10px
}

.single-post .entry-content {
    font-size: 16px
}

.single-post ul {
    list-style-position: inside;
    margin-left: 0;
    padding-left: 0
}

.single-post p {
    text-align: justify;
    line-height: 30px
}

.single-post ul:not(.navbar-nav) li {
    color: var(--darkgrey);
    font-family: Lato;
    line-height: 30px
}

blockquote {
    color: #222;
    font-size: 19px;
    line-height: 30px;
    padding: 30px;
    margin: 60px 0 60px 0;
    padding-left: 80px;
    padding-top: 0;
    margin-bottom: 20px;
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-style: normal;
    position: relative
}

blockquote:after {
    position: absolute;
    content: "“";
    font-size: 140px;
    line-height: 110px;
    top: 0;
    left: 0;
    text-align: center;
    color: var(--orange);
    font-family: Poppins
}

blockquote .authorOrTitle {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    line-height: 15px;
    color: var(--darkgrey)
}

.single-post .blog-meta-bottom {
    padding-top: 30px;
    padding-bottom: 10px
}

.single-post .featured-wrapper {
    margin-bottom: 30px
}

.blog-meta-bottom .meta-tags {
    color: #8b90a0
}

.blog-meta-bottom .meta-tags a {
    color: #8b90a0;
    font-weight: 400;
    padding: 5px 10px;
    background-color: #eee;
    border-radius: 5px;
    font-size: 13px
}

.blog-meta-bottom .meta-tags a:focus,
.blog-meta-bottom .meta-tags a:hover {
    background-color: var(--orange);
    color: var(--white)
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px
}

.single-post h4 {
    font-size: 28px;
    line-height: 36px;
    color: #fff;
    text-transform: none;
    font-style: normal
}

.single-post a:focus,
.single-post a:hover {
    text-decoration: none
}

.pagination-item.prev {
    position: relative
}

.post-prev-next-buttons .pagination-img {
    display: table-cell;
    vertical-align: middle;
    max-width: 168px;
    overflow: hidden
}

.post-prev-next-buttons .pagination-img img {
    width: 80px;
    height: 80px;
    border-radius: 3px;
    object-fit: cover
}

.post-prev-next-buttons .pagination-content {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    font-size: 18px;
    line-height: 24px;
    text-transform: capitalize
}

.pagination-item.prev .pagination-content {
    padding-left: 15px
}

.post-prev-next-buttons .tm-nav-sub {
    display: block;
    font-size: 15px
}

.post-prev-next-buttons span.tm-nav-title {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    font-family: Roboto;
    color: var(--blue)
}

.post-single-top {
    position: relative;
    margin-top: 91px;
    z-index: 1
}

.post-single-header {
    padding: 50px;
    padding-bottom: 0
}

.post-single-header .desc .h4,
.post-single-header .desc h4 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 35px;
    line-height: 50px;
    color: #222;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.post-single-header .desc .info li {
    margin-bottom: 0;
    font-size: 14px;
    color: #6b6768;
    text-transform: capitalize;
    font-weight: 400;
    vertical-align: middle
}

.dot {
    width: 4px;
    height: 4px;
    background-color: #6b6768;
    border-radius: 50%
}

.post-single-header .desc .info li.dot {
    background-color: #6b6768 !important
}

.post-single-header .desc .info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 7px
}

.fbt-shape-container {
    position: relative
}

.fbt-shape-container:before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    width: 350px;
    height: 350px;
    border-radius: 2000px;
    background: #ff5722;
    opacity: .03;
    left: -70px;
    top: -80px
}

.fbt-shape-container .fbt-item-thumbnail {
    background: #fff;
    border-radius: 15px
}

.post-thumbnail {
    width: 100%;
    height: 100%;
    max-height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 15px
}

.fbt-shape-container:after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    width: 600px;
    height: 600px;
    border-radius: 2000px;
    background: linear-gradient(135deg, rgba(210, 229, 255, 0) 45%, rgba(187, 222, 251, .25) 100%);
    right: -150px;
    bottom: -50px
}

.post-share li a {
    position: relative;
    margin: 0 0 0 1px;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    display: inline-block;
    border-radius: 2px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-size: 16px;
    position: relative;
    height: 35px;
    width: 35px;
    line-height: 35px
}

a.facebook.fbt-share {
    background-color: #516eab
}

a.twitter.fbt-share {
    background-color: #29c5f6
}

a.linkedin.fbt-linkedin {
    background-color: #0077b5
}

a.pinterest.fbt-pinterest {
    background-color: #ca212a
}

.post-share li a:hover {
    color: #fff;
    opacity: .8
}

.section-content {
    padding: 60px 0
}

.section-content .entry-content p {
    line-height: 30px
}

.section-content .entry-content .h3:not(.no-style),
.section-content .entry-content .h5:not(.no-style),
.section-content .entry-content h3:not(.no-style),
.section-content .entry-content h5:not(.no-style) {
    position: relative;
    color: var(--blue);
    font-weight: 700
}

.section-content .entry-content h3.content-title {
    color: #212112
}

.section-content .entry-content .h3:not(.no-style)::before,
.section-content .entry-content .h5:not(.no-style)::before,
.section-content .entry-content h3:not(.no-style)::before,
.section-content .entry-content h5:not(.no-style)::before {
    content: '';
    display: block;
    width: 35px;
    height: 3px;
    background: var(--orange);
    margin: 0 0 10px
}

.download-card h3::before {
    content: none !important
}

.a-link {
    margin-bottom: 15px;
    line-height: 2.5rem;
    padding: 5px 25px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block
}

.a-link:focus,
.a-link:hover {
    outline: 0;
    box-shadow: none;
    text-decoration: none;
    background: var(--blue);
    color: var(--white)
}

.a-link svg {
    margin-left: 10px;
    transition: .5s
}

.a-link:focus svg,
.a-link:hover svg {
    transform: translateX(5px)
}

.about-bottom {
    margin-top: 40px;
    padding-top: 40px
}

.bottom-0 {
    bottom: 0 !important
}

form .form-control[type=file] {
    font-size: 14px
}

::-webkit-file-upload-button {
    font-size: 12px
}

.director-tab .tab-content p {
    font-size: 18px;
    line-height: 30px
}

.director-tab .card a:hover {
    text-decoration: none
}

.director-tab .card a.active h4 {
    color: var(--orange) !important
}

.director-tab .btn-primary,
.download-card .btn-primary {
    padding: 6px 15px;
    background-color: var(--orange);
    border: var(--orange);
    color: #fff !important
}

.director-tab .btn-primary:active,
.director-tab .btn-primary:focus,
.director-tab .btn-primary:hover,
.download-card .btn-primary:active,
.download-card .btn-primary:focus,
.download-card .btn-primary:hover {
    background-color: var(--blue);
    border: var(--blue);
    box-shadow: none
}