:root {
  --theme-color-light: #ffffff;
  --theme-color-dark: #000000;
  --theme-color1: #ee212b;
  --theme-color1-dark: #b5090d;
  --theme-color2: #f3f4f7;
  --bg-theme-color1: var(--theme-color1);
  --bg-theme-color2: var(--theme-color2);
  --text-color: #707173;
  --headings-color: #000000;
  --link-color: var(--theme-color-dark);
  --link-hover-color: var(--theme-color-dark);
  --text-font: "Roboto", sans-serif;
  --title-font: "Outfit", sans-serif;
  --style-font: "Caveat", sans-serif;
  --body-font-size: 16px;
  --body-line-height: 1.9;
  --body-font-weight: 400;
  --line-height-heading-h1: 1.2em;
  --line-height-heading-h2: 1.3;
  --line-height-heading: 1.4;
  --line-height-heading-small: 1.4em;
  --h1-font-size: 75px;
  --h2-font-size: 3rem;
  --h3-font-size: 1.75rem;
  --h4-font-size: 1.35rem;
  --h5-font-size: 1.1rem;
  --h6-font-size: 0.875rem;
  --h1-font-weight: 700;
  --h2-font-weight: 700;
  --h3-font-weight: 700;
  --h4-font-weight: 700;
  --h5-font-weight: 700;
  --h6-font-weight: 700;
  --sec-title-subtitle-color: #11499b;
  --sec-title-subtitle-font-size: 12px;
  --sec-title-subtitle-font-family: var(--title-font);
  --sec-title-subtitle-font-weight: 800;
  --sec-title-subtitle-line-height: 30px;
  --sec-title-color: #932422;
  --sec-title-font-size: 50px;
  --sec-title-font-family: var(--title-font);
  --sec-title-font-weight: 700;
  --theme-light-background: #f8f6f1;
  --theme-light-background-text-color: var(--headings-color);
  --theme-black: #000000;
  --container-width: 1230px;
  --small-container-width: 1000px;
  --large-container-width: 1310px;
  --container-pt: 120px;
  --container-pb: 120px;
}










.topbar li {
    color: #fff !important;
    font-size: 16px !important;
}
#topbar:after {
    content: '';
    position: absolute;
    left: 0;
}
#topbar::before {
    background: var(--sec-title-color);
}
#topbar:after {
    border-top: 22px solid var(--sec-title-color);
    border-left: 26px solid var(--sec-title-color);
}
.topbar, #copyright {
    background: var(--sec-title-color);
}
/*---------------------------------------------------------- Menu ----------------------------------------------------------*/
/*.navbar-nav li.active > a{
    color: #f99f1b !important;
}*/
.navbar-nav li.active > a {
    color: var(--sec-title-color) !important;

}
.navbar-nav > li > a:hover {
     color: var(--sec-title-color) !important;
  
  
}

.services-section {
  position: relative;
  padding: 50px 0 60px;
  margin-bottom: 10px;
  z-index: 2;
}
.services-section .owl-dots {
  bottom: -10px;
}

.service-block {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.service-block .inner-box {
  position: relative;
  padding-bottom: 112px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.service-block .inner-box:hover .image-box .read-more {
  color: var(--theme-color-light);
  background: var(--theme-color-dark);
}
.service-block .inner-box:hover .image-box .read-more:before {
  height: 100%;
}
.service-block .inner-box:hover .content-box .inner {
  height: auto;
}
.service-block .inner-box .image-box .image {
  position: relative;
  margin-bottom: 0px;
  margin-right: 42px;
  overflow: hidden;
}
.service-block .inner-box .image-box .image img {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block .inner-box .image-box .read-more {
  position: absolute;
  top: 0;
  left: 100%;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  padding: 11px 37px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--theme-color-dark);
  background: #f3f4f7;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  text-transform: uppercase;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 3;
}
@media (max-width: 767.98px) {
  .service-block .inner-box .image-box .read-more {
    padding: 11px 114px;
  }
}
@media (max-width: 575.98px) {
  .service-block .inner-box .image-box .read-more {
    padding: 11px 32px;
  }
}
.service-block .inner-box .image-box .read-more:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  left: auto;
  right: 0;
  height: 0;
  background-color: var(--theme-color-dark);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: -1;
}
.service-block .inner-box .image-box .read-more:hover {
  color: var(--theme-color1);
}
.service-block .inner-box .image-box .read-more i {
  font-size: 14px;
  margin-left: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  color: var(--theme-color1);
}
.service-block .inner-box .content-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px 28px 20px;
    background-color: var(--theme-color-light);
    border: 1px solid #eee9e3;
    transition: .7s;
    transform: translateY(29px);
}
.service-block .inner-box .content-box::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -15px;
  width: 44px;
  height: 64px;
  background-image: url(https://html.kodesolution.com/2024/rooftin-html/images/icons/icon-arrow.png);
  -webkit-transform: translate(-33px, -35px);
          transform: translate(-33px, -35px);
}
.service-block .inner-box .content-box .info-box {
  position: relative;
  padding-left: 105px;
  margin-bottom: 15px;
}
.service-block .inner-box .content-box .icon {
  position: absolute;
  left: 0;
  bottom: 8px;
  height: 80px;
  width: 80px;
  line-height: 80px;
  font-size: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--theme-color-light);
  background-color: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 2;
}
/*.service-block .inner-box .content-box .icon::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 93px;
  height: 58px;
  background-image: url(../images/icons/icon-border.png);
}*/
.service-block .inner-box .content-box .title {
    position: relative;
    margin-bottom: 0;
    z-index: 2;
    line-height: 1.3;
    font-family: var(--sec-title-font-family);
}
.service-block .inner-box .content-box .title:hover {
  color: var(--theme-color1);
}
.service-block .inner-box .content-box .inner {
  position: relative;
  display: none;
  overflow: hidden;
  padding-right: 46px;
}
.service-block .inner-box .content-box .inner .text {
    position: relative;
    margin-bottom: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    z-index: 2;
    line-height: 1.5;
}
.service-block:hover .content-box {
    display: block !important;
    transform: translateY(0px);
}
/*----------sec-title---------*/
.sec-title {
  position: relative;
  margin-bottom: 49px;
}
@media (max-width: 991.98px) {
  .sec-title br {
    display: none;
  }
}
.sec-title .sub-title {
  position: relative;
  display: inline-block;
  font-size: var(--sec-title-subtitle-font-size);
  line-height: var(--sec-title-subtitle-line-height);
  font-weight: var(--sec-title-subtitle-font-weight);
  font-family: var(--sec-title-subtitle-font-family);
  color: var(--sec-title-subtitle-color);
  border: 3px solid #eee9e3;
  letter-spacing: 0.2em;
  top: -5px;
  margin-bottom: 9px;
  margin-top: 7px;
  padding: 2px 24px;
  text-align: center;
  text-transform: uppercase;
}
/*.sec-title .sub-title::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 19px;
  height: 14px;
  background-image: url(../images/icons/subtitle-before.png);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sec-title .sub-title.v2::before {
  background-image: url(../images/icons/subtitle-before-2.png);
}*/
.sec-title h1 {
  position: relative;
  font-size: var(--h1-font-size);
  font-weight: 900;
  line-height: 1em;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .sec-title h1 {
    font-size: 84px;
  }
}
@media (max-width: 991.98px) {
  .sec-title h1 {
    font-size: 72px;
  }
}
@media (max-width: 767.98px) {
  .sec-title h1 {
    font-size: 68px;
  }
}
@media (max-width: 575.98px) {
  .sec-title h1 {
    font-size: 54px;
  }
}
.sec-title h2 {
  position: relative;
  font-size: var(--sec-title-font-size);
  color: var(--sec-title-color);
  font-family: var(--sec-title-font-family);
  font-weight: var(--sec-title-font-weight);
  line-height: 1.2em;
  letter-spacing: 0.18px;
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .sec-title h2 {
    font-size: 36px;
  }
}
.sec-title .text {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.5;
}
.sec-title.light .sub-title,
.sec-title.light .text,
.sec-title.light h2,
.sec-title.light h1 {
  color: #fff;
}
.service-block:hover .inner-box .content-box .inner {
    display: block;
    font-size: 16px;
    height: 70px;
}




.about-section {
    position: relative;
    padding: 30px 0 54px;
    z-index: 2;
}
/*.about-section::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 999px;
  height: 695px;
  background-image: url(../images/icons/pattern-bg-1.png);
  content: "";
  opacity: 0.35;
  pointer-events: none;
}*/
.about-section .sec-title {
  margin-bottom: 27px;
}
.about-section .image-column {
  position: relative;
  margin-bottom: 50px;
}
.about-section .image-column .image-box {
  position: relative;
  text-align: right;
}
.about-section .image-column .image-box .image {
  position: relative;
}
@media (max-width: 575.98px) {
  .about-section .image-column .image-box .image {
    text-align: left;
    margin-left: 50px;
  }
}
.about-section .image-column .image-box .image:before {
  background-color: var(--sec-title-color);
  border-radius: 50%;
  content: "";
  position: absolute;
  top: calc(50% - 149px);
  left: -30px;
  width: 430px;
  height: 430px;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .about-section .image-column .image-box .image:before {
    display: none;
  }
}
.about-section .image-column .image-box .image:after {
    background-color: var(--sec-title-color);
    content: "";
    position: absolute;
    top: 0;
    left: -5px;
    width: 20px;
    height: 105px;
}
@media (max-width: 575.98px) {
  .about-section .image-column .image-box .image:after {
    left: -50px;
  }
}
.about-section .image-column .image-box .image-2 {
  margin-bottom: 0;
}
.about-section .image-column .image-box .image-2 img {
  border: 10px solid var(--theme-color-light);
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  position: absolute;
  right: 170px;
  bottom: 0px;
}
@media (max-width: 1199.98px) {
  .about-section .image-column .image-box .image-2 img {
    right: 50px;
    bottom: -50px;
  }
}
@media (max-width: 991.98px) {
  .about-section .image-column .image-box .image-2 img {
    right: -50px;
    bottom: 50px;
  }
}
@media (max-width: 575.98px) {
  .about-section .image-column .image-box .image-2 img {
    right: auto;
    left: -15px;
    bottom: 15px;
  }
}
.about-section .content-column {
  margin-bottom: 50px;
  z-index: 1;
}
.about-section .content-column .inner-column {
  position: relative;
  padding-right: 10px;
}
@media (max-width: 1199.98px) {
  .about-section .content-column .inner-column {
    padding-right: 0;
  }
}
.about-section .content-column .inner-column .bottom-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 34px;
}
@media (max-width: 575.98px) {
  .about-section .content-column .inner-column .bottom-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.about-section .content-column .inner-column .author-box {
  position: relative;
  display: inline-block;
  margin-right: 80px;
}
@media (max-width: 1199.98px) {
  .about-section .content-column .inner-column .author-box {
    padding: 15px 15px;
  }
}
@media (max-width: 575.98px) {
  .about-section .content-column .inner-column .author-box {
    margin-bottom: 10px;
    padding-left: 0;
  }
}
.about-section .content-column .inner-column .author-box .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1199.98px) {
  .about-section .content-column .inner-column .author-box .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-section .content-column .inner-column .author-box .inner .author-info {
  margin-top: 4px;
}
.about-section .content-column .inner-column .author-box .inner .image {
  margin-bottom: 0;
  margin-right: 20px;
  width: 68px;
}
.about-section .content-column .inner-column .author-box .inner .image img {
  border-radius: 50%;
}
.about-section .content-column .inner-column .author-box .inner .name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.about-section .content-column .inner-column .author-box .inner .designation {
  color: #6a6a6a;
  display: block;
  margin-bottom: 0;
}
.about-section .content-column .inner-column .list-styele-two li {
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  font-family: 600;
  font-size: 18px;
}
.list-style-two {
    list-style-type: none;
}
.list-style-two li {
    font-size: 16px;
    line-height: 2;
}
.btn-style-two {
  background: var(--sec-title-color);
  border-radius: 0;
  color: var(--theme-color-light);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--text-font);
  line-height: 1.5;
  letter-spacing: 0.7px;
  padding: 19px 51.2px 18px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}
.btn-style-two:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--theme-color-dark);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
          transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.btn-style-two i {
  position: relative;
  display: block;
  margin-left: 7.48px;
  font-weight: 300;
  top: 2px;
}
.btn-style-two:hover {
  color: var(--theme-color-light);
}
.btn-style-two:hover:before {
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.btn-style-two.dark-bg {
  background-color: var(--theme-color-dark);
}
.btn-style-two.dark-bg:before {
  background-color: var(--bg-theme-color2);
}
.btn-style-two.dark-bg:hover {
  color: var(--text-color-bg-theme-color2);
}
.btn-style-two.theme2-bg {
  background-color: var(--bg-theme-color2);
}
.btn-style-two.theme2-bg:before {
  background-color: var(--bg-theme-color1);
}
.btn-style-two.hover-light:before {
  background-color: var(--theme-color-light);
}
.btn-style-two.hover-light:hover {
  color: var(--theme-color-dark);
}
.btn-style-two.hover-theme1:before {
  background-color: var(--bg-theme-color1);
}
.btn-style-two.btn-lg {
  font-size: 14px;
  padding: 14px 23px 16px;
}
.btn-title {
    position: relative;
}

/*----------------------Count------*/
.fun-fact-section {
    position: relative;
    padding: 80px 0 20px;
    background-color: #f3f4f7;
}
.fun-fact-section .bg {
  top: 26px;
  background-position: left;
  height: calc(100%   334px);
}
.fun-fact-section .bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--theme-color2);
  opacity: 0.97;
}

.counter-block {
  position: relative;
  margin-bottom: 50px;
}
.counter-block .inner-box {
  position: relative;
  border: 3px solid #e1e1e1;
  padding: 70px 20px 40px;
  max-width: 225px;
  margin: 50px auto 0;
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 1399.98px) {
  .counter-block .inner-box {
    max-width: 100%;
  }
}
.counter-block .inner-box:hover .icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  color: var(--theme-color-light);
}
.counter-block .icon {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  width: 125px;
  height: 125px;
  line-height: 125px;
  font-size: 46px;
  color: var(--theme-color1);
  -webkit-box-shadow: 0 0px 43px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0px 43px rgba(0, 0, 0, 0.06);
  background-color: var(--theme-color-light);
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.counter-block .count-box {
  color: var(--theme-color-dark);
  position: relative;
  font-size: 48px;
  font-weight: 700;
  font-family: var(--title-font);
  line-height: 1em;
  margin-bottom: 7px;
}
.counter-block .count-box .count-text {
  font-weight: 700;
  font-size: 48px;
  line-height: 1em;
  color: var(--theme-color-dark);
}
.counter-block .counter-title {
  position: relative;
  margin-bottom: 0;
  color: #7a7a7a;
}
/*---------------Why-choose-us--------*/
.why-choose-us {
  position: relative;
  padding: 120px 0 70px;
  z-index: 1;
  overflow: hidden;
}
.why-choose-us::before {
  content: "";
  position: absolute;
  top: 120px;
  right: 0;
  width: 974px;
  height: 773px;
  background-color: var(--theme-color-light);
  z-index: -1;
}
/*.why-choose-us .bg-shape {
  background-image: url(../images/icons/bg-shape1.png);
  position: absolute;
  right: -524px;
  bottom: 56px;
  z-index: 3;
  width: 828px;
  height: 457px;
}*/
@media only screen and (max-width: 1699px) {
  .why-choose-us .bg-shape {
    display: none;
  }
}
@media (max-width: 1399.98px) {
  .why-choose-us .bg-shape {
    opacity: 0.2;
  }
}
/*.why-choose-us .icon-dots-4 {
  position: absolute;
  top: 120px;
  right: 0;
}*/
.why-choose-us .outer-box {
  position: relative;
}

.why-choose-us .features-column {
  position: relative;
}
.why-choose-us .features-column .bg::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--sec-title-color);
  opacity: 0.9;
  content: "";
}
.why-choose-us .features-column .inner-column {
  position: relative;
  padding: 90px 70px 95px;
  padding-right: 100px;
  margin-right: 6px;
}
@media (max-width: 1399.98px) {
  .why-choose-us .features-column .inner-column {
    padding: 70px 70px 75px;
  }
}
@media (max-width: 991.98px) {
  .why-choose-us .features-column .inner-column {
    padding: 70px 30px;
  }
}
.why-choose-us .features-column .inner-column .title-box .title {
    position: relative;
    color: var(--theme-color-light);
    letter-spacing: -0.01em;
    margin-bottom: 0px;
    margin-top: 75px;
}
@media (max-width: 767.98px) {
  .why-choose-us .features-column .inner-column .title-box .title {
    font-size: 36px;
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  .why-choose-us .content-column {
    margin-bottom: 50px;
  }
}
.why-choose-us .content-column .inner-column {
  position: relative;
  padding-top: 120px;
  padding-bottom: 99px;
  padding-left: 103px;
  background-color: var(--theme-color-light);
}
@media only screen and (max-width: 1699px) {
  .why-choose-us .content-column .inner-column {
    padding-left: 30px;
  }
}
@media (max-width: 1399.98px) {
  .why-choose-us .content-column .inner-column {
    padding-top: 0px;
  }
}
.why-choose-us .content-column .inner-column .sec-title {
  margin-bottom: 20px;
}
.why-choose-us .content-column .inner-column .sec-title .sub-title {
  margin-bottom: 0;
}
.why-choose-us .content-column .inner-column .sec-title .text {
  margin-top: 30px;
}
.why-choose-us .content-column .inner-column .skills {
  margin-bottom: 43px;
}

.feature-block-five {
  margin-bottom: 35px;
}
.feature-block-five .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575.98px) {
  .feature-block-five .inner-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.feature-block-five .inner-box:hover .icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.feature-block-five .inner-box .icon {
  position: relative;
  display: inline-block;
  font-size: 50px;
  line-height: 1em;
  color: var(--theme-color-light);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

@media (max-width: 575.98px) {
  .feature-block-five .inner-box .content-box {
    margin-left: 0;
  }
}
.feature-block-five .inner-box .content-box .title {
    position: relative;
    color: var(--theme-color-light);
    font-weight: 700;
    margin-bottom: 0px;
    font-family: var(--sec-title-font-family);
    font-size: 18px;
}
.feature-block-five .inner-box .content-box .text {
    position: relative;
    color: var(--theme-color-light);
    line-height: 1.4em;
    z-index: 1;
    font-size: 16px;
}

/*** 

====================================================================
    Why Choose Us Two
====================================================================

***/
.why-choose-us-two {
  position: relative;
  padding: 120px 0 50px;
  z-index: 2;
}
/*.why-choose-us-two::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 481px;
  height: 598px;
  background-image: url(../images/icons/roofing-bg-1.png);
  content: "";
  opacity: 0.63;
  pointer-events: none;
}*/
.why-choose-us-two .content-column {
  position: relative;
  margin-bottom: 50px;
}
.why-choose-us-two .content-column .inner-column {
  position: relative;
}
@media (max-width: 767.98px) {
  .why-choose-us-two .content-column .inner-column {
    text-align: center;
  }
}
.why-choose-us-two .content-column .inner-column .sec-title {
  margin-bottom: 36px;
}
.why-choose-us-two .content-column .inner-column .sec-title .sub-title {
  margin-bottom: 15px;
}
.why-choose-us-two .content-column .inner-column .exp-box {
  margin-top: 19px;
}
@media (max-width: 767.98px) {
  .why-choose-us-two .content-column .inner-column .exp-box {
    margin-bottom: 20px;
  }
}
.why-choose-us-two .content-column .inner-column .exp-box .inner {
  position: relative;
  width: 169px;
  height: 199px;
  border: 3px solid #ebebeb;
  padding: 5px 10px 1px 19px;
}
@media (max-width: 1199.98px) {
  .why-choose-us-two .content-column .inner-column .exp-box .inner {
    padding: 2px 10px 1px;
    width: 160px;
  }
}
@media (max-width: 767.98px) {
  .why-choose-us-two .content-column .inner-column .exp-box .inner {
    margin: 0 auto;
    padding: 10px 10px;
  }
}
/*.why-choose-us-two .content-column .inner-column .exp-box .count {
  font-size: 110px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: url(../images/resource/about3-1.jpg);
  background-size: cover;
  margin-bottom: 0;
  line-height: 1em;
  letter-spacing: -0.01em;
}*/
.why-choose-us-two .content-column .inner-column .exp-box .title {
  font-family: var(--text-font);
  font-size: 23px;
  padding-left: 5px;
  line-height: 1.3;
}
.why-choose-us-two .tabs-column {
  position: relative;
  margin-bottom: 50px;
}
.why-choose-us-two .tabs-column .inner-column {
  position: relative;
}
.why-choose-us-two .tabs-column .inner-column .image {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .why-choose-us-two .tabs-column .inner-column .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.choose-block {
  margin-bottom: 27px;
}
.choose-block:last-child {
  margin-bottom: 0;
}
.choose-block .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 7px;
}
@media (max-width: 767.98px) {
  .choose-block .inner-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.choose-block .inner-box:hover .icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.choose-block .inner-box .content {
  padding: 1px 15px 0px 15px;
}
.choose-block .inner-box .icon {
  position: relative;
  color: var(--theme-color1);
  font-size: 42px;
  line-height: 1em;
  padding-top: 13px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 767.98px) {
  .choose-block .inner-box .icon {
    margin-bottom: 10px;
  }
}
.choose-block .inner-box .title {
    margin-bottom: 6px;
    font-family: var(--sec-title-font-family);
    font-size: 20px;
    color: var(--sec-title-color);
}
.choose-block .inner-box .text {
    color: #7a7a7a;
    font-size: 16px;
    line-height: 1.5;
}

.why-us-tabs {
  position: relative;
  counter-reset: count;
}
.why-us-tabs .btn-box {
  position: relative;
  margin-top: -47px;
}
@media (max-width: 575.98px) {
  .why-us-tabs .btn-box {
    margin-top: 0;
  }
}
.why-us-tabs .tab-btns {
  position: relative;
}
.why-us-tabs .tab-btns .tab-btn {
  position: relative;
  margin-top: 0;
  padding: 12px 0 22px;
  width: 169px;
  height: 47px;
  margin-right: 7px;
  font-size: 18px;
  text-align: center;
  line-height: 24px;
  font-weight: 500;
  font-family: var(--text-font);
  display: inline-block;
  cursor: pointer;
  color: var(--theme-color-dark);
  background-color: var(--theme-color2);
  letter-spacing: -0.01em;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 3;
}
@media (max-width: 1199.98px) {
  .why-us-tabs .tab-btns .tab-btn {
    width: 150px;
  }
}
@media (max-width: 767.98px) {
  .why-us-tabs .tab-btns .tab-btn {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .why-us-tabs .tab-btns .tab-btn {
    margin-top: 15px;
  }
}
.why-us-tabs .tab-btns .tab-btn:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 0;
  height: 0;
  opacity: 0;
  border-left: 20px solid transparent;
  border-top: 10px solid var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 767.98px) {
  .why-us-tabs .tab-btns .tab-btn:before {
    display: none;
  }
}
.why-us-tabs .tab-btns .tab-btn:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: var(--theme-color1);
  content: "";
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: -1;
}
.why-us-tabs .tab-btns .tab-btn:hover {
  color: var(--theme-color1);
}
.why-us-tabs .tab-btns .tab-btn.active-btn {
  color: var(--theme-color-light);
}
.why-us-tabs .tab-btns .tab-btn.active-btn:before {
  opacity: 1;
}
.why-us-tabs .tab-btns .tab-btn.active-btn:after {
  width: 100%;
}
.why-us-tabs .tabs-content {
  position: relative;
  padding-top: 40px;
}
.why-us-tabs .tabs-content .text {
  margin-bottom: 34px;
  color: #7a7a7a;
}
@media (max-width: 767.98px) {
  .why-us-tabs .tabs-content .text {
    margin-bottom: 30px;
  }
}
.why-us-tabs .tabs-content .list-style-two li {
  color: var(--text-color);
}
.why-us-tabs .tabs-content .list-style-two .icon {
  top: 8px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 14px;
  border-radius: 50%;
  color: var(--theme-color-light);
  background-color: var(--theme-color1);
  text-align: center;
}


#gallery_section {
    display: none;
}
.bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.info-btn {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 15px;
    padding-left: 70px;
    text-align: left;
    font-weight: 700;
    line-height: 20px;
    min-height: 62px;
    font-family: var(--title-font);
}
.info-btn .icon {
    position: absolute;
    left: 0;
    top: 5px;
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    font-size: 24px;
    color: #ffffff;
    background-color: var(--sec-title-color);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.info-btn small {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color-dark);
    margin-bottom: 8px;
}
.info-btn strong {
    font-size: 24px;
    font-weight: 700;
    color: var(--sec-title-color);
}
/*-----gallery---*/
.project-section {
  position: relative;
  padding: 120px 0 120px;
}
.project-section .sec-title {
  margin-bottom: 60px;
}
.project-section .sec-title .sub-title {
  border-color: rgba(255, 255, 255, 0.2);
}
.project-section.style-two {
  padding: 120px 0;
}
.project-section.style-two .sub-title {
  border-color: #eee9e3;
}

.project-block {
    position: relative;
    margin-bottom: 40px;
    padding: 0 10px;
}
.project-block .inner-box {
  position: relative;
  overflow: hidden;
}
.project-block .inner-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 155px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: translateX(-150px);
          transform: translateX(-150px);
  z-index: 3;
}
.project-block .inner-box .overlay-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 1;
}
.project-block .inner-box:hover .overlay-1 {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.project-block .inner-box:hover:before {
  -webkit-transform: none;
          transform: none;
}
.project-block .inner-box:hover .image-box .image:before {
  height: 100%;
}
.project-block .inner-box:hover .image-box .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.project-block .inner-box:hover .icon {
  background-color: var(--bg-theme-color-light);
  color: var(--theme-color-dark);
}
.project-block .inner-box:hover .content-box .read-more {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
.project-block .inner-box:hover .content-box .title {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
.project-block .inner-box:hover .content-box .cat {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.project-block .image-box {
  position: relative;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.project-block .image-box .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.project-block .image-box .image::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(80%, #0f1b24), color-stop(80%, #0f1b24));
  background: linear-gradient(transparent, #0f1b24 80%, #0f1b24 80%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 2;
}
.project-block .image-box .image img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.project-block .content-box {
  position: absolute;
  left: 29px;
  bottom: 26px;
  z-index: 3;
}
.project-block .content-box .read-more {
  position: relative;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  margin-bottom: 18px;
  opacity: 0;
  display: inline-block;
  color: var(--theme-color-light);
  background-color: var(--theme-color-dark);
  text-align: center;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.project-block .content-box .read-more i {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 16px;
}
.project-block .content-box .title {
  position: relative;
  margin-bottom: 0;
  padding: 6px 18px;
  margin-bottom: 1px;
  opacity: 0;
  background-color: var(--theme-color-light);
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.project-block .content-box .cat {
  position: relative;
  padding: 3px 18px;
  font-weight: 400;
  opacity: 0;
  display: inline-block;
  background-color: var(--theme-color-light);
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
/*-------icon-blk------*/
.features-section {
  position: relative;
  padding: 120px 0 90px;
}
/*.features-section::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 999px;
  height: 695px;
  background-image: url(../images/icons/pattern-bg-1.png);
  content: "";
  opacity: 0.7;
  pointer-events: none;
}*/
.inner-box:hover .content .title a {
    color: #fff;
}
.feature-block {
  margin-bottom: 30px;
}
.feature-block .inner-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 45px 20px 35px;
  overflow: hidden;
  background-color: var(--theme-color-light);
  -webkit-box-shadow: 0 0px 76px rgba(0, 0, 0, 0.28);
  box-shadow: 0 0px 76px rgba(0, 0, 0, 0.28);
}
@media (max-width: 1199.98px) {
  .feature-block .inner-box {
    padding: 20px 10px 35px 20px;
  }
}
@media (max-width: 767.98px) {
  .feature-block .inner-box {
    margin-left: 0;
  }
}
@media (max-width: 575.98px) {
  .feature-block .inner-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.feature-block .inner-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 127px;
  height: 100%;
  background-color: var(--sec-title-color);
  -webkit-transform: skewX(-30deg);
          transform: skewX(-30deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  z-index: 1;
}
@media (max-width: 575.98px) {
  .feature-block .inner-box:before {
    width: 0;
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: none;
            transform-origin: none;
  }
}
.feature-block .inner-box:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--theme-color1-dark);
  -webkit-transform: skewX(-30deg);
          transform: skewX(-30deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  z-index: 2;
}
@media (max-width: 575.98px) {
  .feature-block .inner-box:after {
    width: 0;
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: none;
            transform-origin: none;
  }
}
.feature-block .inner-box:hover::before {
  width: 180%;
}
@media (max-width: 575.98px) {
  .feature-block .inner-box:hover::before {
    width: 200%;
  }
}
.feature-block .inner-box:hover::after {
  width: 127px;
}
.feature-block .inner-box:hover .content:after {
  width: 200px;
}
.feature-block .inner-box:hover .content .title,
.feature-block .inner-box:hover .content .text {
  color: var(--theme-color-light);
}
.feature-block .inner-box:hover .icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.feature-block .inner-box .content:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200px;
  height: 100%;
  background-color: #f5f5f5;
  -webkit-transform: skewX(50deg);
          transform: skewX(50deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
@media (max-width: 575.98px) {
  .feature-block .inner-box .content:before {
    width: 0;
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: none;
            transform-origin: none;
  }
}
.feature-block .inner-box .content:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: var(--theme-color1-dark);
  opacity: 0.3;
  -webkit-transform: skewX(50deg);
          transform: skewX(50deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  z-index: 2;
}
@media (max-width: 575.98px) {
  .feature-block .inner-box .content:after {
    width: 0;
    -webkit-transform: none;
            transform: none;
    -webkit-transform-origin: none;
            transform-origin: none;
  }
}
.feature-block .inner-box .title {
    position: relative;
    font-size: 20px;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    z-index: 3;
    font-family: var(--sec-title-font-family);
}
.feature-block .inner-box .text {
  position: relative;
  z-index: 3;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.feature-block .inner-box .icon {
  position: relative;
  width: 96px;
  height: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 40px;
  border-radius: 50%;
  margin-right: 25px;
  color: var(--theme-color1);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 3;
}
@media (max-width: 575.98px) {
  .feature-block .inner-box .icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.feature-block .inner-box .icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px dashed var(--theme-color1);
  background-color: var(--theme-color-light);
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
/*-----Form----*/
.contact-section {
  background-color: #0f1b24;
  position: relative;
  padding: 0 0 53px;
  z-index: 2;
}
/*.contact-section::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 548px;
  height: 432px;
  background-image: url(../images/icons/house3.png);
  content: "";
  opacity: 0.4;
  pointer-events: none;
}*/
.contact-section .content-column .inner-column {
  position: relative;
  padding: 120px 0 120px 62px;
}
@media (max-width: 1399.98px) {
  .contact-section .content-column .inner-column {
    padding-left: 0;
  }
}
.contact-section .content-column .inner-column .sec-title .sub-title {
  border-color: #3f4950;
}
.contact-section .form-column {
  position: relative;
}
/*.contact-section .form-column .bg-image {
  background-position: left top;
  right: 70px;
  left: auto;
  width: auto;
  left: -375px;
  height: auto;
  bottom: 67px;
}*/
@media (max-width: 991.98px) {
  .contact-section .form-column .bg-image {
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.contact-section .form-column .inner-column {
  padding: 120px 0 0;
}
@media (max-width: 991.98px) {
  .contact-section .form-column .inner-column {
    padding: 60px 0;
  }
}

.feature-block-two:last-child .inner-box {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.feature-block-two .inner-box {
  position: relative;
  padding-left: 90px;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid #27323a;
}
@media (max-width: 575.98px) {
  .feature-block-two .inner-box {
    padding-left: 0;
    text-align: center;
  }
}
.feature-block-two .inner-box:hover .icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.feature-block-two .inner-box .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 51px;
  height: 51px;
  line-height: 51px;
  font-size: 26px;
  margin-right: 35px;
  border-radius: 3px;
  color: var(--theme-color-light);
  background-color:var(--sec-title-color);
  text-align: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (max-width: 575.98px) {
  .feature-block-two .inner-box .icon {
    position: relative;
    display: block;
    margin: 0 auto 20px;
    text-align: center;
  }
}
.feature-block-two .inner-box .icon:after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 3px;
  border: 1px dashed var(--theme-color1);
}
.feature-block-two .inner-box .content .title {
    margin-bottom: 0;
    color: var(--theme-color-light);
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: -0.01em;
    font-family: var(--sec-title-font-family);
}
.feature-block-two .inner-box .content .text {
    color: var(--theme-color-light);
    font-size: 16px;
    line-height: 1.5;
}

.contact-form {
  position: relative;
  background-color: var(--sec-title-color);
  padding: 50px 40px 60px;
}
@media (max-width: 575.98px) {
  .contact-form {
    padding: 30px 20px;
  }
}
.contact-form::before {
  content: "";
  position: absolute;
  top: -48px;
  right: -1px;
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-left: 60px solid var(--theme-color1-dark);
  z-index: 3;
}
@media (max-width: 991.98px) {
  .contact-form::before {
    display: none;
  }
}
.contact-form .title {
    color: var(--theme-color-light);
    margin-bottom: 29px;
    text-align: center;
    font-family: var(--sec-title-font-family);
    font-size: 35px;
}
@media (max-width: 575.98px) {
  .contact-form .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.contact-form .form-group {
  position: relative;
  margin-bottom: 30px;
}
.contact-form .form-group:last-child {
  margin-bottom: 0;
}
.contact-form .select2-container--default .select2-selection--single,
.contact-form input:not([type=submit]),
.contact-form textarea,
.contact-form select {
  position: relative;
  display: block;
  height: 60px;
  width: 100%;
  padding: 20px 30px;
  font-size: var(--body-font-size);
  color: var(--theme-color-dark);
  line-height: 32px;
  font-weight: 400;
  background-color: var(--theme-color-light);
  border: 1px solid transparent;
  border-radius: 7px;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.contact-form ::-webkit-input-placeholder {
  color: #393939;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--theme-color-dark);
}
.contact-form textarea {
  height: auto;
  max-height: 131px;
}
.contact-form .theme-btn {
  background-color: var(--theme-color-dark);
  width: 100%;
}

.map {
  height: 450px;
}

.contact-form-two {
  position: relative;
  background-color: var(--theme-color1);
  overflow: hidden;
  padding: 56px 40px 90px;
}
@media (max-width: 1199.98px) {
  .contact-form-two {
    padding: 50px 20px;
  }
}
.contact-form-two .title {
  color: var(--theme-color-light);
  margin-bottom: 45px;
  text-align: center;
}
.contact-form-two .form-group {
  position: relative;
  margin-bottom: 30px;
}
.contact-form-two .form-group:last-child {
  margin-bottom: 0;
}
.contact-form-two .select2-container--default .select2-selection--single,
.contact-form-two input:not([type=submit]),
.contact-form-two textarea,
.contact-form-two select {
  position: relative;
  display: block;
  height: 60px;
  width: 100%;
  padding: 20px 20px;
  font-size: var(--body-font-size);
  color: var(--theme-color-dark);
  line-height: 32px;
  font-weight: 400;
  background-color: var(--theme-color-light);
  border: 1px solid transparent;
  border-radius: 7px;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.contact-form-two ::-webkit-input-placeholder {
  color: #393939;
}
.contact-form-two input:focus,
.contact-form-two select:focus,
.contact-form-two textarea:focus {
  border-color: var(--theme-color-dark);
}
.contact-form-two .theme-btn {
  background-color: var(--theme-color-dark);
  width: 100%;
}

.contact-form-three {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding: 39px 40px 40px;
}
@media (max-width: 1199.98px) {
  .contact-form-three {
    padding: 30px 20px;
  }
}
.contact-form-three .title {
  margin-bottom: 28px;
  text-align: center;
}
.contact-form-three .form-group {
  position: relative;
  margin-bottom: 16px;
}
.contact-form-three .form-group:last-child {
  margin-bottom: 0;
}
.contact-form-three .select2-container--default .select2-selection--single,
.contact-form-three input:not([type=submit]),
.contact-form-three textarea,
.contact-form-three select {
  position: relative;
  display: block;
  height: 60.8px;
  width: 100%;
  padding: 20px 20px;
  font-size: var(--body-font-size);
  color: var(--theme-color-dark);
  line-height: 32px;
  font-weight: 400;
  background-color: var(--theme-color-light);
  border: 1px solid #E9E9E9;
  border-radius: 4px;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.contact-form-three ::-webkit-input-placeholder {
  color: #393939;
}
.contact-form-three input:focus,
.contact-form-three select:focus,
.contact-form-three textarea:focus {
  border-color: var(--theme-color-dark);
}
.contact-form-three textarea {
  height: auto;
  max-height: 130px;
}
/*------____Video---------*/
.video-section-two {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.video-section-two.alt {
  padding-bottom: 140px;
}
.video-section-two .bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--theme-color-dark);
  opacity: 0.7;
}
.video-section-two .overlay-4 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: auto;
  background-size: cover;
}
/*@media (max-width: 1199.98px) {
  .video-section-two .overlay-4 {
    display: none;
  }
}*/
.video-section-two .outer-box {
  position: relative;
}
@media (max-width: 1399.98px) {
  .video-section-two .outer-box {
    text-align: center;
  }
}
.video-section-two .outer-box .title {
    position: relative;
    color: var(--theme-color-light);
    font-size: 50px;
    line-height: 60px;
    letter-spacing: 0.18px;
    margin-bottom: 0;
    font-family: var(--sec-title-font-family);
}
@media (max-width: 767.98px) {
  .video-section-two .outer-box .title {
    font-size: 40px;
  }
}
@media (max-width: 575.98px) {
  .video-section-two .outer-box .title {
    font-size: 32px;
    line-height: 1.2em;
  }
  .video-section-two .outer-box .title br {
    display: none;
  }
}
.video-section-two .outer-box .play-now-two {
  position: relative;
  display: inline-block;
  height: 113px;
  width: 113px;
  line-height: 113px;
  font-size: 20px;
  margin-bottom: 35px;
  border-radius: 50%;
  color: var(--theme-color1);
  background-color: var(--theme-color-light);
  text-align: center;
}
.video-section-two .outer-box .play-now-two::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 1px solid var(--theme-color-light);
}
.video-section-two .outer-box .play-now-two:hover {
  background-color: var(--theme-color1);
  border-color: var(--theme-color1);
  color: var(--theme-color-light);
}
.video-section-two .overlay-4 {
    width: 1078px;
    height: 621px;
    background-image: url(../../images/images/video/2.png);
}

/*--------About-Page-----*/
.why-choose-us-three {
  position: relative;
  padding: 120px 0 63px;
  z-index: 2;
}
.why-choose-us-three::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 481px;
  height: 598px;
  background-image: url(https://html.kodesolution.com/2024/rooftin-html/images/icons/roofing-bg-1.png);
  content: "";
  opacity: 0.63;
  pointer-events: none;
}
.why-choose-us-three .icon-plane-4 {
  position: absolute;
  right: 75px;
  bottom: 35px;
}
.why-choose-us-three .content-column {
  position: relative;
  margin-bottom: 50px;
}
.why-choose-us-three .content-column .inner-column {
  position: relative;
  margin-left: -21px;
}
@media (max-width: 1199.98px) {
  .why-choose-us-three .content-column .inner-column {
    margin-left: 0;
  }
}
.why-choose-us-three .content-column .inner-column .sec-title {
  margin-bottom: 23px;
}
.why-choose-us-three .content-column .inner-column .sec-title .sub-title {
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .why-choose-us-three .content-column .inner-column .exp-box {
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .why-choose-us-three .content-column .inner-column .exp-box {
    margin-top: 40px;
  }
}
.why-choose-us-three .content-column .inner-column .exp-box .inner {
  position: relative;
  width: 169px;
  height: 199px;
  border: 3px solid #ebebeb;
  padding: 2px 10px 1px 19px;
  margin-top: 16px;
}
@media (max-width: 575.98px) {
  .why-choose-us-three .content-column .inner-column .exp-box .inner {
    margin: 0 auto;
  }
}
.why-choose-us-three .content-column .inner-column .exp-box .count {
  font-size: 110px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: url(https://html.kodesolution.com/2024/rooftin-html/images/resource/about3-1.jpg);
  background-size: cover;
  margin-bottom: 0;
  line-height: 1em;
  letter-spacing: -0.01em;
}
.why-choose-us-three .content-column .inner-column .exp-box .title {
    font-size: 23px;
    line-height: 1.3;
    padding-left: 5px;
    font-family: var(--sec-title-font-family);
    text-align: center;
}
.why-choose-us-three .content-column .inner-column .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 7px;
}
.why-choose-us-three .content-column .inner-column .info-box .contant {
  padding: 1px 15px 0px 11px;
}
.why-choose-us-three .content-column .inner-column .info-box .icon-box {
  padding-top: 7px;
}
.why-choose-us-three .content-column .inner-column .info-box .icon-box .icon {
  font-size: 36px;
  color: var(--theme-color1);
}
.why-choose-us-three .image-column {
  position: relative;
  margin-bottom: 50px;
}
.why-choose-us-three .image-column .inner-column {
  position: relative;
  padding-right: 60px;
}
@media (max-width: 1199.98px) {
  .why-choose-us-three .image-column .inner-column {
    padding-right: 0;
  }
}
.why-choose-us-three .image-column .inner-column .image-box {
  position: relative;
}
.why-choose-us-three .image-column .inner-column .image-box .image {
  position: relative;
  margin-bottom: 0;
}
.overlay-anim:after {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}
@media (max-width: 991.98px) {
  .why-choose-us-three .image-column .inner-column .image-box .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.why-choose-us-three .image-column .inner-column .image-box .image-2 {
  position: absolute;
  top: 44px;
  right: 0;
  margin-bottom: 0;
  border: 3px solid var(--theme-color-light);
}
.why-choose-us-three .image-column .inner-column .info-box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 187px;
  height: 210px;
  padding: 37px 35px 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--theme-color1);
}
.why-choose-us-three .image-column .inner-column .info-box .title {
    position: relative;
    color: var(--theme-color2);
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 0;
    z-index: 3;
    font-family: var(--sec-title-font-family);
    font-size: 23px;
    text-align: center;
}
.why-choose-us-three .image-column .inner-column .info-box .icon-box {
  margin-bottom: 8px;
}
.why-choose-us-three .image-column .inner-column .info-box .icon-box .icon {
  font-size: 40px;
  line-height: 1.2;
  color: var(--theme-color-light);
  display: inline-block;
  position: relative;
  z-index: 3;
}
#clients_section {
    display: none;
}
/*QC FOOTER STYLE START*/
#qcfooter-block {
    padding: 40px 0px;
    background: url(../../images/images/footer/bg.png);
    color: #fff;
}
#qcfooter-block h3 {font-size: 16px;}
.footer-content {margin: 5px 0px;}
.footer-content .qc-brand {height: 60px; display: block; margin: 10px 0;}
.footer-content .qc-brand img {
    height: auto;
    width: 100%;
}
.footer-content p {
    font-size: 16px;
    line-height: 25px;
}
.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;
    font-size: 16px;
    line-height: 32px;
}
.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: ' 0';
    background: #1b2221;
    border-top: 1px solid #ddd;
}
#qcfooter-block h3 {
    color: #fff;
    font-family: var(--sec-title-font-family);
    font-size: 20px;
}
#qcfooter-copyrights .copyright {font-size: 14px; color: #fff;}
#qcfooter-copyrights .developer {color: #fff; text-decoration: underline;}
footer {
    background: #0f1b24;
}
/*QC FOOTER STYLE END*/
/*---------___product----------*/
.pr_img_part img, .pr_part_section img {
    width: 100%;
}
.pr_part_section p {
    font-size: 16px;
    
}
.pr_part_section .title {
    font-family: var(--sec-title-font-family);
    font-size: 20px;
    color: #000000;
    position: unset;
}
.pr_ul_list {
    list-style-type: none;
}
.pr_list {
    line-height: 1.5;
    font-size: 16px;
}
.cmpny{
    color: var(--sec-title-color) !important;
}
/*-------Table---*/

table > tbody > tr > td {
    background: #39648E;
    color: #fff;
}
.sub_article_td {
    font-size: 16px;
    text-align: left;
}
table {
    width: 100%;
}
td, th {
    border-left: 1px solid #dedede;
    padding: 10px 16px;
    border-bottom: 1px solid #dedede;
}
.sub_article_img {
    width: 100%;
    height: 250px;
}
.rib table > tbody > tr > td {
    background: #5c7957;

}
.tile table > tbody > tr > td {
    background: #d15146;
}
.col-sect {
    text-align: center;
}
.subdiv {
    padding: 0 15px;
}
.pr_part_section {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    padding: 20px;
    margin-bottom: 30px;
}

/*-------------Gallery-----*/

.portfolio-filter.text-center {
    display: none;
}
.gal_content {
    display: none;
}

/*----Contact-Page-----*/
.con-head {
    text-align: center;
    margin-top: 40px;
    color: var(--sec-title-color);
    font-family: var(--sec-title-font-family);
    font-size: 30px;
}
.contact_details.pad_tb40 {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 1px 1px 5px 1px;
    height: 450px;
}
#contact .con-content {
    line-height: 1.6;
    padding: 20px;
    box-shadow: 0 0 10px 13px rgba(43,52,59,.1);
    background: #ddd;
}
.contact_pg .con-content .bltrcss {
    font-size: 25px;
    color: var(--sec-title-subtitle-color);
    font-family: var(--sec-title-font-family);
    line-height: 1.5;
}
.contact_pg .bltrcss .fa {
    color: var(--sec-title-color);
}

.con-content.sec-title .adcont1, .con-content.sec-title .adcont {
    font-size: 16px;
    line-height: 2;
}
.con-content.sec-title {
    margin-bottom: 0 !important;
}
.cont-para {
    font-size: 20px;
    text-align: center;
}
/*------------Breadcrmb----------*/
.pageheader{
    background: url(../../images/images/contct/kovai-color-brdcrm.png)
}
.breadcrumb.text-right {
    display: none;
}
.about_page_title {
    color: #000000;
    font-size: 35px;
    font-family: var(--sec-title-font-family);
}

@media (max-width: 767px){
    
    img {
    width: 100%;
}
.header_logo {
    width: 100%;
    height: auto;
}
.video-section-two .overlay-4 {
    width:100%;
}
}
