:root {
    --thm-font: 'Barlow', sans-serif;
    --thm-font-2: 'Roboto', sans-serif;
    --thm-base: #d90528;
    --thm-base-rgb: 217, 5, 40;
    --thm-primary: #4287e3;
    --thm-primary-rgb: 66, 135, 227;
    --thm-gray: #444444;
    --thm-gray-rgb: 68, 68, 68;
    --thm-blue: #0b2360;
    --thm-black-rgb: 5, 32, 73;
    --thm-gray-bg: #e8f0f7;
    --thm-gray-bg-2: #f4f5f9;
    --thm-main-bg: #0e2753;
}

#topbar {
    display: none;
}
.header_logo {
    width: 450px;
    height: auto;
}
.sec-title .sub-title h4 {
    color: var(--thm-base);
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    letter-spacing: 0.1em;
    z-index: 1;
}
.sec-title h2 {
    color: var(--thm-blue);
    font-size: 45px;
    line-height: 1.2em;
    font-weight: 900;
    text-transform: capitalize;
    font-family: var(--thm-font-2);
}

.sec-title p {
    font-size: 18px;
    line-height: 28px;
    margin: 21px 0 0;
}

/*** 
=============================================
    About Style1 Css d   
=============================================
***/

.sec-title .sub-title .border-line {
    position: relative;
    display: block;
    width: 35px;
    height: 2px;
    background-color: var(--thm-base);
    margin-right: 10px;
    top: -6px;
}
.sec-title .sub-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
}

.about-style1 {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}


.about-style1__content {
    position: relative;
    display: block;
    padding-right: 20px;
}

.about-style1__content .sec-title {
    padding-bottom: 20px;
}

.about-style1__content-text-box {
    position: relative;
    display: block;
}

.about-style1__content-text-box ul {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 0px;
    padding-bottom: 45px;
}



.about-style1__content-text-box ul li li {
    margin-top: 13px;
}

.about-style1__content-text-box ul li .icon,  .wrk-list .icon {
    position: absolute;
    top: 10px;
    left: 1px;
    color: var(--thm-base);
    font-size: 20px;
    line-height: 0;
}

.about-style1__content-text-box ul li .icon span {
    font-weight: 700;
}

.about-style1__img {
    position: relative;
    display: block;
    padding-top: 30px;
    padding-left: 3px;
}

.about-style1__img ul.row li:last-child {
    position: relative;
    top: -30px;
}

.about-style1__img .single-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.about-style1__img .single-box img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.about-style1__img .single-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-base);
    opacity: 0.20;
    -webkit-mask-image: linear-gradient(to left, transparent 47.5%, #fff 52.5%);
    -webkit-mask-size: 210%;
    -webkit-mask-position: right;
    z-index: 1;
    display: none;
}
.img1 {
    top: 50px;
}
.about-style1__img .single-box:hover:before {
    -webkit-mask-position: left;
    transition: -webkit-mask-position 1s linear;
}
.about-style1__content-text-box p {
    font-size: 16px;
}

.about-style1__content-text-box ul li, .wrk-list li  {
    position: relative;
    display: block;
    padding-left: 35px;
    color: #2a2a2a;
    font-size: 20px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    line-height: 2;
}
/*== Btn One Css ======*/
.btn-box {
    position: relative;
    display: block;
}

.btn-one {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    background-color: transparent;
    color: #ffffff;
    font-size: 14px;
    line-height: 44px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    letter-spacing: 0.1em;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-family: var(--thm-font-2);
    z-index: 2;
    padding: 15px;
}

.btn-one:before {
    position: absolute;
    top: 0px;
    left: 100%;
    right: -50px;
    content: "";
    background: var(--thm-blue);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    border-radius: 0%;
    transition-duration: 800ms;
    z-index: 1;
    bottom: 0;
}

.btn-one:hover:before {
    left: 0;
    right: 0px;
}

.btn-one:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 1;
    transform: scaleX(1);
    transition-duration: 800ms;
    background-color: var(--thm-base);
    z-index: -1;
}

.btn-one:hover:after {
    transform: scaleX(0);
    transition-duration: 1500ms;
}

.btn-one .txt {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 1;
}

.btn-one:hover,
.btn-one:focus {
    color: #ffffff;
    -webkit-box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
    -moz-box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
    box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
}

.btn-one i {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
/*------------------------------------------
  Service style1
--------------------------------------------*/
.service-style1 {
    position: relative;
    display: block;
    background-color: #003866;
    padding: 120px 0px 90px;
    z-index: 10;
}

.service-style1 .sec-title.withtext {
    padding-bottom: 54px;
}

.service-style1 .sec-title h2 {
    color: #ffffff;
}

.service-style1 .sec-title p {
    color: rgb(255, 255, 255, 0.70);
    font-size: 20px;
    line-height: 28px;
}

.single-service-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 12px 12.5px 0;
    margin-bottom: 30px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
    margin-right: 20px;
}

.single-service-style1:hover {
    transform: translateY(-5px);
}

.single-service-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.single-service-style1 .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.50;
    background-color: #ffffff;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: 1;
}

.single-service-style1:hover .img-box::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
}

.single-service-style1 .img-box img {
    width: 100%;
}

.single-service-style1 .title-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 12.5px 15px;
}

.single-service-style1 .title-box h3 {
    font-size: 23px;
    line-height: 33px;
    font-weight: 700;
}

.single-service-style1 .title-box h3 a {
    color: #0b1970;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-family: 'roboto';
}

.single-service-style1 .title-box h3 a:hover {
    color: var(--thm-base);
}

.single-service-style1 .title-box .icon {
    position: relative;
    display: block;
}

.single-service-style1 .title-box .icon a {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.pro-div img {
    height: 300px;
}
.single-service-style1 .title-box .icon a span {
    position: relative;
    top: 1px;
    display: inline-block;
    color: var(--thm-black);
    font-size: 25px;
    line-height: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .title-box .icon a {
    background-color: var(--thm-base);
}

.single-service-style1:hover .title-box .icon a span {
    color: #ffffff;
}
/*--------------------------------why-choose-us---------*/
/*** 
=============================================
    Choose Style1 Css
=============================================
***/
.choose-style1 {
    position: relative;
    display: block;
    background-color: #f0f5fc;
    padding: 120px 0px 120px;
    z-index: 10;
}

.choose-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 120px;
    background-color: var(--thm-base);
    width: calc((100% - 680px) / 2);
    z-index: -1;
}

.choose-style1__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #000323;
    opacity: 0.10;
    clip-path: polygon(0 20%, 0% 100%, 80% 100%);
}

.choose-style1__img {
    position: relative;
    display: block;
    margin-left: -40px;
    margin-right: 95px;
}

.choose-style1__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.choose-style1__img .inner img {
    width: 100%;
}

.choose-style1__img .inner:hover img {
    transform: translateX(10px);
}


.choose-style1__content {
    position: relative;
    display: block;
 
}

.choose-style1__content .sec-title.withtext {
    padding-bottom: 8px;
}

.choose-style1__content-inner ul.row li {
    margin-top: 40px;
}


.choose-style1-single-box {
    position: relative;
    display: block;
}

.choose-style1-single-box .top {
    position: relative;
    display: flex;
    align-items: center;
}

.choose-style1-single-box .top .icon {
    position: relative;
    display: block;
    width: 80px;
}

.choose-style1-single-box .top .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 55px;
    line-height: 55px;
    transition: all 100ms ease 100ms;
}


.choose-style1-single-box:hover .top .icon span {
    color: var(--thm-base);
    transform: rotate(2deg);
}
.choose-style1-single-box {
    padding: 22px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.choose-style1-single-box .top h3 {
    color: var(--thm-black);
    font-size: 22px;
    line-height: 26px;
    font-weight: 800;
    font-family: var(--thm-font);
}

.choose-style1-single-box .text {
    position: relative;
    display: block;
    padding-top: 18px;
}
.text p {
    font-size: 16px;
}
.choose-style1__content-inner ul {
    list-style-type: none;
}
/*** 
=============================================
    Fact Counter style1 Css
=============================================
***/
.fact-counter-style1 {
    position: relative;
    display: block;
    padding: 90px 0px 51px;
    background: #f0f5fc;
    z-index: 1;
}

.fact-counter-style1__border-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #c6c7cc;
}

.fact-counter_box {
    position: relative;
    display: block;
}

.fact-counter_box ul {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.single-fact-counter {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 25%;
    width: 100%;
    margin-bottom: 46px;
}

.single-fact-counter .icon {
    position: relative;
    display: block;
    width: 90px;
    top: 3px;
}

.single-fact-counter .icon span {
    position: relative;
    display: block;
    line-height: 0;
}

.single-fact-counter .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 60px;
    line-height: 60px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-fact-counter:hover .icon span::before {
    transform: scale(1.05) rotateY(180deg);
}


.single-fact-counter .outer-box {
    position: relative;
    display: block;
}

.single-fact-counter .count-box {
    position: relative;
    display: flex;
    align-items: center;
    color: #181d4e;
    font-size: 50px;
    line-height: 50px;
    font-weight: 800;
    font-family: var(--thm-font);
}

.single-fact-counter .count-box span {
    position: relative;
    display: block;
    line-height: 50px;
}

.single-fact-counter .count-box i {
    position: relative;
    display: inline-block;
    top: 2px;
    padding-left: 5px;
    font-size: 30px;
    font-weight: 900;
}


.single-fact-counter .title {
    position: relative;
    display: block;
    padding-top: 10px;
}

.single-fact-counter .title h6 {
    color: #181d4e;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--thm-font);
}

/*** 
=============================================
    Video Gallery Style1 Css
=============================================
***/
.video-gallery-style1 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding-top: 120px;
    padding-bottom: 60px;
    z-index: 10;
}

.video-gallery-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 60px;
    right: 0;
    background-color: #fff;
    z-index: -1;
}

.video-gallery-style1__img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: calc((100% - 173px) / 2);
}

.video-gallery-style1__img-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    overflow: hidden;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.video-gallery-style1__img-bg:hover {
    transform: translateY(15px);
}

/*.video-gallery-style1__img-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000000;
    opacity: 0.20;
    -webkit-mask-image: linear-gradient(to left, transparent 47.5%, #fff 52.5%);
    -webkit-mask-size: 210%;
    -webkit-mask-position: right;
    transform: rotate(45deg);
    z-index: 1;
}*/

.video-gallery-style1__img-bg:hover:before {
    -webkit-mask-position: left;
    transition: -webkit-mask-position 0.3s linear;
}

.video-gallery-style1__play-btn {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-gallery-style1__play-btn .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 135px;
    height: 135px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.video-gallery-style1__play-btn .video-popup:hover {
    background-color: var(--thm-base);
}

.video-gallery-style1__play-btn .video-popup:after,
.video-gallery-style1__play-btn .video-popup:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.video-gallery-style1__play-btn .video-popup:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-gallery-style1__play-btn .video-popup .border-round {
    position: absolute;
    top: -12px;
    left: -12px;
    bottom: -12px;
    right: -12px;
    border: 2px solid rgba(255, 255, 255, 0.70);
    border-radius: 50%;
}

.video-gallery-style1__play-btn .video-popup span {
    position: relative;
    color: var(--thm-black);
    font-size: 50px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.video-gallery-style1__play-btn .video-popup:hover span {
    color: #ffffff;
}

.video-gallery-style1__img .overlay-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 300px;
    background-color: var(--thm-base);
    padding: 34px 40px 30px;
    z-index: 10;
}

.video-gallery-style1__img .overlay-content h3 {
    color: #ffffff;
    font-size: 25px;
    line-height: 32px;
    margin: 0 0 12px;
}

.video-gallery-style1__img .overlay-content a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    letter-spacing: 0.1em;
}

.video-gallery-style1__img .overlay-content a span {
    position: relative;
    display: inline-block;
    padding-left: 5px;
}

.video-gallery-style1__content {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
    padding-bottom: 120px;
}

.video-gallery-style1__content .sec-title {
    padding-bottom: 30px;
}

.video-gallery-style1__content .sec-title p {
    margin: 41px 0 0;
}

.video-gallery-style1__content-inner {
    position: relative;
    display: block;
}

.video-gallery-style1__content-inner .text {
    position: relative;
    display: block;
    padding-bottom: 0;
}
/*** 
=============================================
   Video gallery style2 Css
=============================================
***/
.video-gallery-style2 {
    position: relative;
    display: block;
    padding: 150px 0px 130px;
    z-index: 10;
    margin: 60px 0;
}

.video-gallery-style2-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    z-index: -1;
}

.video-gallery-style2__content {
    position: relative;
    text-align: center;
}

.video-gallery-style2__content .title-box {
    position: relative;
    display: block;
    max-width: 1030px;
}

.video-gallery-style2__content .title-box .sec-title {
    padding-bottom: 0;
}

.video-gallery-style2__content .title-box .sec-title .sub-title {
    margin-bottom: 16px;
}

.video-gallery-style2__content .title-box .sec-title .sub-title h4 {
    color: #ffffff;
}

.video-gallery-style2__content .title-box .sec-title .sub-title .border-line.left {
    background-color: #ffffff;
}

.video-gallery-style2__content .title-box .sec-title h2 {
    color: #ffffff;
    font-size: 50px;
    line-height: 1.5;
    font-family: var(--thm-font);
}
.video-gallery-style2__content .btn-box {
    position: relative;
    display: flex;
    align-items: center;
}

.video-gallery-style2__content .play-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 2;
}

.video-gallery-style2__content .play-btn .border-round {
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: -10px;
    right: -10px;
    border: 1px solid rgba(255, 255, 255, 0.27);
    border-radius: 50%;
}

.video-gallery-style2__content .play-btn:hover {
    background-color: var(--thm-black);
}

.video-gallery-style2__content .play-btn:after,
.video-gallery-style2__content .play-btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: -1;
}

.video-gallery-style2__content .play-btn:after {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.video-gallery-style2__content .play-btn .video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.video-gallery-style2__content .play-btn .video-popup span::before {
    position: relative;
    color: var(--thm-base);
    font-size: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.video-gallery-style2__content .play-btn :hover .video-popup span::before {
    color: #ffffff;
}

.video-gallery-style2__content .btn-box h4 {
    color: #ffffff;
    font-size: 15px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: 30px;
}
/*-__Clients-section------*/
.paralbackground {
    background: unset !important;
}



/*QC FOOTER STYLE START*/
#qcfooter-block {
    padding: 40px 0px 0px;
    background: url(../../images/images/footer-bg.png);
}
#qcfooter-block h3 {
    font-size: 16px;
    color: #fff;
}
.footer-content {margin: 5px 0px;}
.footer-content .qc-brand {height: 60px; display: block; margin: 10px 0;}
.footer-content .qc-brand img {
    height: 100%;
    background: white;
    padding: 5px;
    border-radius: 10px;
}
.footer-content p {
    line-height: 2;
    font-size: 16px;
    color: #fff;
}
.footer-content .quicklinks {margin: 0; padding: 0;}
.footer-content .quicklinks li {list-style: none; display: block;}
.footer-content .quicklinks li a {
    padding: 5px 0px;
    display: block;
    color: #fff;
    line-height: 1.5;
    font-size: 16px;
}
.footer-content .quicklinks li i {margin-right: 5px;}
.footer-content .social-links .qc-social-list {margin: 10px 0px; padding: 0; color: #ddd; font-size: 15px;}
.footer-content .social-links .qc-social-list li {display: inline-block; margin-right: 10px;}
.qc-social-list .qc-social .social {width: 40px;height: 40px;line-height: 40px;text-align: center;display: block;font-size: 16px;color: #fff; border: 1px solid #fff; border-radius: 3px;}
.footer-content .mobile-apps {display: flex; padding: 10px 0px;}
.footer-content .mobile-apps .mobApp {padding-right: 5px;}
.qcinput {border: 2px solid #fff; color: #fff; padding: 5px; margin-bottom: 10px;}
.qcEmailSubBtn {padding: 10px; line-height: 0;font-size: 14px; background: #26A69A; color: #fff; border: 2px solid transparent; margin-bottom: 5px; outline: none;}
.qcEmailSubBtn:hover, .qcEmailSubBtn:focus {background: #26A69A; color: #fff; border: 2px solid #fff; outline: none;}
.qcEmailSubBtn i {font-size: 13px;}
#qcfooter-copyrights {
    padding: 10px 0;
    background: var(--thm-blue);
    border-top: 1px solid #ddd;
}
#qcfooter-copyrights .copyright {font-size: 14px; color: #fff;}
#qcfooter-copyrights .developer {color: #fff; text-decoration: underline;}

/*QC FOOTER STYLE END*/
.contact-info-1 {
    position: relative;
    display: block;
}

.contact-info-1 li {
    position: relative;
    display: block;
    padding-left: 55px;
}

.contact-info-1 li li {
    margin-top: 42px;
}

.contact-info-1 li .icon {
    position: absolute;
    top: 1px;
    left: 0;
    width: 55px;
    color: var(--thm-primary);
    font-size: 32px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-info-1 li:hover .icon {
    color: var(--thm-base);
}

.contact-info-1 li .text {
    position: relative;
    display: block;
}

.contact-info-1 li .text h3 {
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-info-1 li .text p a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.contact-info-1 li .text p a:hover {
    color: var(--thm-base);
}

/*--------------------About-page-----------*/
/*** 
=============================================
   About-style3 Css   
=============================================
***/
.about-style3 {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 70px 0px 70px;
    z-index: 10;
}

.about-style3-content {
    position: relative;
    display: block;
    padding-right: 60px;
}

.about-style3-content .sec-title {
    padding-bottom: 27px;
}

.about-style3-content .top-text {
    position: relative;
    display: block;
    margin-bottom: 34px;
}

.about-style3-content .top-text h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--thm-font);
}

.about-style3-content .bottom-text {
    position: relative;
    display: block;
}

.about-style3-content .bottom-text p {
    margin: 0;
    font-size: 16px;
}

.about-style3-content .bottom-text p p {
    margin-top: 30px;
}

.about-style3-content .list-items {
    position: relative;
    display: block;
    margin-top: 41px;
}

.about-style3-content .list-items ul {
    position: relative;
    display: block;
}

.about-style3-content .list-items ul li {
    position: relative;
    display: block;
    color: #242424;
    font-size: 18px;
    line-height: 2;
    font-weight: 500;
    font-family: var(--thm-font-2);
    padding-left: 35px;
}
.about-style3-content .list-items ul li li {
    margin-top: 10px;
}

.about-style3-content .list-items ul li .icon {
    position: absolute;
    top: 8px;
    left: 0;
}
.about-style3-content .list-items ul li .icon span {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 20px;
    line-height: 20px;
}

.about-style3-content .btn-box {
    margin-top: 43px;
}



.about-style3__img {
    position: relative;
    display: block;
}

.about-style3__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.about-style3__img .inner img {
    width: 100%;
}

.about-style3__img .overlay-box {
    position: absolute;
    left: -50px;
    bottom: 95px;
    background-color: var(--thm-base);
    border-radius: 5px;
    padding: 40px 35px 40px;
}

.about-style3__img .overlay-box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -17px;
    width: 20px;
    height: 20px;
    border-left: 20px solid var(--thm-base);
    border-right: 0px solid transparent;
    border-bottom: 20px solid transparent;
}

.about-style3__img .overlay-box .icon {
    position: relative;
    display: block;
    margin-bottom: 14px;
}

.about-style3__img .overlay-box .icon span {
    color: #ffffff;
    font-size: 64px;
    line-height: 64px;
}

.about-style3__img .overlay-box h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--thm-font);
}
.wrk-list h4 {
    font-family: var(--thm-font);
    text-transform: capitalize;
    color: var(--thm-base);
}
.wrk-list li {
    font-family: inherit;
    font-weight: 100;
    font-size: 16px;
}
 .wrk-list .icon {
    top: 5px !important;
}
.pro-cntt {
    font-size: 16px;
    text-align: center;
}
.pro-div .single-service-style1 {
    
    padding: 0;
    margin-right: 0;
}
.header_list {
    list-style-type: none;
}
.pro_image2 {
    width: 100%;
}
.pro_title {
    margin-bottom: 30px;
}
.extra_prodcontent {
    font-size: 16px;
}
.pro_title {
    font-size: 25px !important;
    font-family: var(--thm-font-2);
}
.extra-wrapper {
    margin-bottom: 30px;
    box-shadow: 1px 1px 5px 1px;
    padding: 20px;
}
.contac-cnt .contact-info-1 li .text p a {
    color: #000000;
}
.who-we {
    font-family: 'roboto';
    font-weight: 100 !important;
    font-size: 20px;
    padding: 0 0 10px;
}
.about_page_title {
    font-size: 35px;
    font-family: var(--thm-font);
    color: var(--thm-blue);
}
.pageheader.lighthead.box-shadow.grey {
    background: url(../../images/images/brdcrmb-bgg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.btn-primary, .btn-primary:hover {
    border: 1px solid #f9a825;
    background: var(--thm-base);
    font-family: var(--thm-font-2);
    font-size: 16px;
}
#clients_section {
    text-align: center;
}


@media(max-width:767px){
    .navbar-toggle {
    font-size: 30px;
}
    .header_logo {
    width: 100%!important;
    }
    .sec-title h2 {
    font-size: 26px;
    }
    .about-style1 {
    padding: 40px 0 20px;
}
.img1 {
    top: 0;
    margin-bottom: 60px;
}
.single-service-style1 {
    
    margin-right: 0px;
}
.choose-style1 {
    padding: 60px 0px 60px;
}
.fact-counter_box ul {
    display: block;
}
.single-fact-counter {
    max-width: 100%;
    width: 100%;
}

.fact-counter-style1 {
    padding: 90px 0px 10px;
}
.video-gallery-style1__img {
    display: none;
}
.video-gallery-style1__content {
   
    padding-bottom: 0px;
}
.video-gallery-style1 {
    
    padding-bottom: 0;
   
}
.video-gallery-style1 {
    padding-top: 70px;
}
.pro_title {
  
    margin-top: 30px;
}
.f-cnt.contac-cnt {
    margin-top: 30px;
}
.pageheader {
 
    padding: 0px;
}
}
.portfolio-filter {
    display: none;
}