@import '../css/ie7.css';
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@font-face {
  font-family: 'Arial Rounded MT';
  src: url('../fonts/ArialRoundedMTBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

.headerSec h1 {
  font-size: 20px;
}

/****************************************************************************************
@
@	Global Style and Reset
@
****************************************************************************************/
/* Global Styles */
::-moz-selection {
  background: #000;
  color: #fff;
}
::selection {
  background: #000;
  color: #fff;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
}

p {
  line-height: 24px;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  color: #000;
  cursor: pointer;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a img {
  border: none;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 4px #F43410;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #4c4c4c;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000;
}

@media (min-width: 1023px) and (max-width: 3000px) {
  .darkHeader {
    background-color: #fff;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 5px 8px 0 rgba(0, 0, 0, 0.14), 0 1px 14px 0 rgba(0, 0, 0, 0.12);
    padding-top: 0px !important;
    padding-bottom: 0px;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    position: fixed !important;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 99;
  }
  .darkHeader .headerTop {
    display: none !important;
  }
  .darkHeader .navbar-brand img {
    max-width: 47px !important;
    max-height: 62px !important;
  }
  @keyframes smoothScroll {
    0% {
      transform: translateY(-20px);
    }
    100% {
      transform: translateY(0px);
    }
  }
}
/* 
  ---------------------------------------------
  preloader
  --------------------------------------------- 
  */
#preloader {
  overflow: hidden;
  background-image: linear-gradient(127deg, #F43410 0%, #fff 91%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  animation-delay: 0.66666s;
}
@keyframes jumper {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes dyinglight {
  15% {
    transform: scale(1.6);
  }
  50% {
    transform: rotate(-89deg);
  }
  100% {
    transform: rotate(-90deg);
  }
}
button:focus {
  outline: 0px dotted !important;
  outline: 0px auto -webkit-focus-ring-color !important;
}

#back2Top {
  position: fixed;
  bottom: 2px;
  right: 2px;
  z-index: 999;
}

/*----------------------*/
.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
}

/*==================================css reset==================================*/
/****************************************************************************************
@
@	Styles
@
****************************************************************************************/
.headerSec .sub-menu.dropdown-menu a {
  color: #fff !important;
  font-size: 20px;
  cursor: pointer;
}

.headerSec .sub-menu.dropdown-menu a:hover {
  color: #c6c889 !important;
  border-left: 1px solid #c6c889;
  padding-left: 5px;
}

.headerSec .dropdown-menu {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #000000;
}

.headerSec {
  position: relative;
  min-height: 50px;
}
.headerSec .dropdown-submenu {
  position: relative;
}
.headerSec .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: 0.8em;
}
.headerSec .dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}
.headerSec .btn1 {
  margin-top: 0;
}
.headerSec .navbar-brand img {
  max-width: 57px;
  max-height: 72px;
}

/*####################### MENU ########################*/
#cssmenu > ul > li:hover > a,
#cssmenu > ul > li.active > a {
  color: red;
  border-bottom: none !important;
}

#cssmenu > ul > li:hover > a::before,
#cssmenu > ul > li.active > a::before {
  opacity: 1;
}

#cssmenu > ul > li > a {
  padding: 11px 20px;
  text-transform: none;
  font-size: 16px;
  color: #000;
  font-weight: 500;
  transition: color 0.2s ease;
  margin: 0 10px 0 0;
}

#cssmenu ul ul {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  box-shadow: 1px 0 12px rgba(0, 0, 0, 0.22);
}

#cssmenu ul ul li a {
  padding: 10px 15px;
  width: 200px;
  font-size: 14px;
  background: #02aef1;
  text-decoration: none;
  color: #fff;
  transition: color 0.2s ease;
  border-bottom: 1px solid #e64850;
}

#cssmenu > ul > li.has-sub > a::after {
  display: none;
}

#cssmenu > ul > li.has-sub > a {
  padding-right: 6px;
}

#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: #222;
}

/*####################### ENd MENU ########################*/
.headerTop {
  background-color: #002237;
}

.innerTop {
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.innerTop ul {
  margin-bottom: 0;
}
.innerTop i {
  font-size: 22px;
}
.innerTop a {
  color: #fff;
}
.innerTop .top-scl-icn li {
  display: inline-block;
}
.innerTop .top-scl-icn li a {
  display: inline-block;
  position: relative;
  margin: 0 auto 0 auto;
  border-radius: 50%;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
}
.innerTop .top-scl-icn li i {
  transition: all 0.8s;
}
.innerTop .top-scl-icn li:hover i {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -ms--transform: rotate(360deg);
  transform: rotate(360deg);
  transition: all 0.2s;
}

.navbar-nav .nav-link.active, .navbar-nav .show > .nav-link {
  color: rgb(244, 52, 16);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1rem;
  padding-left: 1rem;
}

.adressSec {
  display: flex;
  gap: 10px;
  align-items: center;
}
.adressSec li {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border-right: 2px solid #034974;
  padding-right: 15px;
}
.adressSec li:last-child {
  border-right: none;
  padding-right: 0;
}
.adressSec i {
  color: #f2b31b;
}

.ourMision {
  background-color: #042D46;
  color: #fff;
  padding: 50px 0;
  margin-bottom: 50px;
}

.donateSec {
  color: #fff;
  background: url(../images/contact-bg.jpg);
  background-size: cover;
  padding: 50px 0;
}

.donateInner {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  padding: 15px 0;
}
.donateInner h3 {
  color: #fff;
}
.donateInner h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 38px;
}

.progress-bar {
  background-color: #F2B31B;
}

.top-scl-icn li {
  display: inline-block;
}
.top-scl-icn li a {
  display: inline-block;
  position: relative;
  margin: 0 auto 0 auto;
  border-radius: 50%;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
}
.top-scl-icn li i {
  transition: all 0.8s;
}
.top-scl-icn li:hover i {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -ms--transform: rotate(360deg);
  transform: rotate(360deg);
  transition: all 0.2s;
}

.testimonialSec {
  padding-top: 50px;
}
.testimonialSec .headerTitle {
  text-align: center;
  margin-bottom: 50px;
}
.testimonialSec .headerTitle h6 {
  color: #F09123;
  text-transform: uppercase;
  font-weight: 600;
}
.testimonialSec .headerTitle h2 {
  font-size: 36px;
  font-weight: 700;
}
.testimonialSec .tstimonialBx {
  padding: 20px;
  margin: 30px 0;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.testimonialSec .tstimonialBx .user {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.testimonialSec .tstimonialBx .left {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.testimonialSec .tstimonialBx h5 {
  color: #F09123;
}
.testimonialSec .tstimonialBx p {
  color: #6B788E;
  font-size: 14px;
}

.contactUsHome {
  margin-bottom: 100px;
  margin-top: 100px;
}
.contactUsHome .rightTxt {
  background-color: #FAFAFA;
  min-height: 80vh;
  margin-left: -50px;
  padding-left: 70px;
  position: relative;
  z-index: 0;
  padding-top: 100px;
}
.contactUsHome .rightTxt h2 {
  font-size: 36px;
  font-weight: 600;
  color: #042D46;
  margin-bottom: 20px;
}
.contactUsHome .rightTxt p {
  color: #676767;
}
.contactUsHome img {
  position: relative;
  z-index: 1;
}
.contactUsHome .adreslist {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.contactUsHome .adreslist h6 {
  color: #F43410;
  margin-bottom: 0;
}
.contactUsHome .adreslist a {
  color: #042D46;
  font-size: 18px;
  font-weight: 600;
}

.footerSec {
  background: #002237;
  color: #DFDFDF;
  padding-top: 50px;
}
.footerSec h4 {
  color: #F2B31B;
  font-size: 20px;
  margin-bottom: 30px;
}
.footerSec a {
  color: #DFDFDF;
}
.footerSec ul li {
  margin-bottom: 10px;
}
.footerSec .foterLogo {
  margin-bottom: 10px;
}
.footerSec .copyRight {
  color: #DFDFDF;
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid #DFDFDF;
  margin-top: 40px;
}
.footerSec .foterCntact li {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.footerSec .foterCntact li i {
  font-size: 20px;
  color: #f2b31b;
}
.footerSec p {
  margin-bottom: -5px;
}

.owl-carousel .owl-item img {
  display: block;
  width: auto;
}

.upcomingEvent {
  padding: 50px 0;
}
.upcomingEvent .headerTxt {
  text-align: center;
  max-width: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.upcomingEvent .headerTxt h2 {
  font-size: 36px;
  color: #042D46;
  font-weight: 600;
}
.upcomingEvent .headerTxt p {
  color: #676767;
}
.upcomingEvent .eventBx {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin-bottom: 10px;
}
.upcomingEvent .eventBx .txt {
  padding: 15px;
}
.upcomingEvent .eventBx .txt h6 {
  font-size: 14px;
  color: #F2B31B;
}
.upcomingEvent .eventBx .txt p {
  color: #042D46;
  font-weight: 600;
}
.upcomingEvent .eventBx img {
  height: 314px;
  -o-object-fit: cover;
     object-fit: cover;
}
.upcomingEvent .knowmr {
  color: #F43410;
}

.eventsSec {
  padding-top: 90px;
  background-repeat: no-repeat !important;
}
.eventsSec h5 {
  color: #000;
  font-size: 40px;
}
.eventsSec p {
  color: #fff;
}
.eventsSec h6 {
  margin-top: -30px;
  color: #fff;
  text-align: center;
  padding: 5px;
  text-shadow: 2px 2px #000000;
}

.bannerSec {
  position: relative;
  font-family: 'Arial Rounded MT';
}
.bannerSec .item {
  position: relative;
}

.bannerTxt {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  width: 1170px;
  margin: 0 auto;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 1;
}
.bannerTxt h2 {
  font-size: 40px;
  font-family: 'Arial Rounded MT';
}
.innerBanner h2 {
  font-family: 'Arial Rounded MT';
  text-shadow: 4px 2px 6px #ff0000;
}
.bannerTxt h6 {
  color: #e64850;
  font-family: 'Arial Rounded MT';
}

.aboutSec {
  padding-top: 30px;
  padding-bottom: 50px;
}
.aboutSec h6 {
  color: #e64850;
  font-weight: 600;
  font-size: 18px;
}
.aboutSec h2 {
  font-size: 36px;
}

.ourVsn {
  padding: 150px 0;
  background-attachment: fixed !important;
  font-family: 'Arial Rounded MT';
}
.ourVsn p {
  color: #fff;
  font-family: 'Arial Rounded MT';
}

.womensgather {
  padding: 50px 0;
  border-radius: 10px;
  margin-top: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  position: relative;
}
.womensgather .date {
  background: #F2B31B;
  text-align: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 74px;
  height: 74px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: -36px;
  border: 2px solid #fff;
}
.womensgather .date h6 {
  margin-bottom: 0;
  font-size: 20px;
  color: #002237;
  font-weight: bold;
}
.womensgather .date p {
  margin-bottom: 0;
  color: #fff;
  font-size: 14px;
}
.womensgather h2 {
  color: #042D46;
  font-size: 32px;
  font-weight: 600;
  border-radius: 10px;
  padding-left: 10px;
}
.womensgather p {
  margin-bottom: 0;
  color: #fff;
  font-size: 18px;
}

.eventVideo img {
  width: 100% !important;
  height: 255px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.btn1 {
  background-color: #F43410;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-top: 20px;
  display: inline-flex;
}

.carrierSec {
  padding: 130px 0;
  background-color: #fff;
}

.carrierSec .innerBg {
  background: url(../images/innerBg.png);
  background-size: cover;
  padding-bottom: 15px;
  background-repeat: no-repeat;
}

.carrierSec h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 75px;
}

.carrierSec .secOne {
  padding: 30px;
  position: relative;
}

.carrierSec .number {
  display: flex;
  align-items: center;
  padding-left: 15px;
  justify-content: space-around;
}

.carrierSec .number h3 {
  font-size: 181px;
  font-weight: 900;
}

.carrierSec .number ul li {
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: #000;
}

.carrierSec .border-img {
  position: relative;
}

.carrierSec .secTwo {
  padding: 30px;
  border-top-right-radius: 0;
  position: relative;
}

.carrierSec .secTwo .border-img {
  position: relative;
}

.carrierSec .secTwo .number {
  border-right: 0;
}

.carrierSec .img-pading {
  padding-left: 200px;
}

.carrierSec .img-pading p {
  margin-bottom: 0;
  color: #000;
}

.carrierSec h6 {
  font-weight: 700;
  font-size: 24px;
}

.galleryWrap {
  position: relative;
  border: 1px solid #fff;
  padding: 2px;
  text-align: center;
  height: 100%;
  background-color: #0e2d42;
  border-radius: 5px;
  display: block;
  max-height: 250px;
}

.galleryWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: contain;
}

.galleryWrap .playBtn {
  position: absolute;
  top: 27px;
  left: 36px;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.galleryWrap .playBtn i {
  font-size: 36px;
  color: #9b8f8f;
}

.gallerySec {
  margin: 30px 0;
  margin-bottom: 0;
}

.ourVsn h3 {
  font-size: 38px;
}
.ourVsn p {
  font-size: 20px;
}

.owl-prev {
  position: absolute;
  left: -30px;
}

.owl-next {
  position: absolute;
  right: -30px;
}

.owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  width: 100%;
  top: 25%;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
}

.leftAdd {
  position: relative;
  height: 100%;
}

.leftAdd img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.leftAdd .addTxt {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  padding: 50px;
  background-color: rgba(61, 77, 87, 0.12);
}

.leftAdd .addTxt h2 {
  font-family: 'Arial Rounded MT';
  /* text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff; */
  font-size: 24px;
  text-transform: uppercase;
  max-width: 484px;
  letter-spacing: 3px;
  color:#fff;
}

.leftAdd .addTxt h6 {
  color: #e1472d;
  font-size: 20px;
  text-transform: uppercase;
}

.orngBx {
  position: relative;
  background: url(../images/orange-bg.jpg);
  background-size: cover;
  height: 100%;
  padding: 20px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 40px;
  font-family: 'Arial Rounded MT';
}

.orngBx h2 {
  text-transform: uppercase;
  font-family: 'Arial Rounded MT';
}

.btn2 {
  background-color: #ca432c !important;
  border-radius: 20px;
  color: #fff !important;
  padding: 5px 10px;
}

.upcomingAlbum {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  background-image: url(../images/body-bg.jpg);
  background-size: cover;
  padding: 100px 0;
}

.headerLetest h2 {
  text-shadow: 2px 2px #E50000;
  position: relative;
  color: #fff;
  position: relative;
  display: inline-block;
}

.headerLetest h2:after {
  content: "";
  border-bottom: 1px solid #E50000;
  width: 79px;
  height: 2px;
  top: 50%;
  right: -100px;
  position: absolute;
  transform: translateY(-50%);
}

.upcmngAlbmWrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0D0D13;
  color: #fff;
  padding: 15px;
  margin-bottom: 20px;
}

.upcmngAlbmWrp .textWrp {
  display: flex;
  align-items: center;
}

.upcmngAlbmWrp .textWrp img {
  width: 116px;
  height: 116px;
  -o-object-fit: cover;
     object-fit: cover;
}

.upcmngAlbmWrp .textWrp h5 {
  font-size: 22px;
}

.upcmngAlbmWrp .textWrp h6 {
  font-size: 16px;
  color: #EBC853;
  font-weight: 300;
}

.upcmngAlbmWrp .textWrp p {
  color: #979797;
  font-weight: 300;
}

.upcmngAlbmWrp .textWrp img {
  margin-right: 10px;
}

.upcmngAlbmWrp .btn2 {
  border: 1px solid #E50000;
  text-transform: uppercase;
  color: #E50000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  min-width: 145px;
}/*# sourceMappingURL=main.css.map */

.bg-light {
  background-color: #fff !important;
}
.blacktxt {
  color: #1d4586;
}



/* Service Style 4 Css */
.style-4 .single-service {
  border: 1px solid #ddd;
  padding: 25px 40px;
  margin-bottom: 70px;
  box-shadow: 0 5px 30px -5px #ccc;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  text-align: center;
  min-height: 360px; }

.style-4 .single-service i.fa {
  color: #ca432c;
  font-size: 30px;
  margin: 25px 0px;
  border: 1px solid #ca432c;
  text-align: center;
  border-radius: 50%;
  position: relative;
  width: 60px;
  height: 60px;
  line-height: 60px;
  -webkit-transition: .5s;
  transition: 0.5s; }

.style-4 .single-service:after, .single-team:after {
  position: absolute;
  content: "";
  width: 0%;
  border-top: 3px solid #ca432c;
  left: 0;
  top: 0;
  border-left: 3px solid #ca432c;
  height: 0%;
  z-index: 2;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transition: .5s;
  transition: 0.5s; }

.style-4 .single-service:before, .single-team:before {
  position: absolute;
  content: "";
  width: 0%;
  border-bottom: 3px solid #ca432c;
  right: 0;
  bottom: 0;
  border-right: 3px solid #ca432c;
  height: 0%;
  z-index: 2;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  -webkit-transition: .5s;
  transition: 0.5s; }

.style-4 .single-service:hover:before, .single-service:hover:after {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  height: 50%;
  width: 50%; }

.style-4 .single-service:hover i.fa {
  background-color: #ca432c;
  border-color: #ca432c;
  color: #fff; }

.style-4 .single-service h3 {
  position: relative;
  font-weight: 400;
  margin-top: 0px;
  padding-top: 20px;
  font-size: 22px; }

.style-4 .single-service p {
  font-weight: 300; }

.style-4 .single-service h3:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 12px;
  background-color: #ca432c;
  top: -25px;
  left: 50%;
  margin-left: -1.5px; }

.style-4 .single-service h3:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 3px;
  background-color: #ca432c;
  left: 50%;
  margin-left: -15px;
  top: -13px; }

a.border-btn {
  color: #fff;
  background-color: #ca432c;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 3px;
  margin-top: 20px;
  font-weight: 500;
  -webkit-transition: .4s;
  transition: .4s;
  position: relative;
  overflow: hidden;
  z-index: 10; }

.serviceSec a.border-btn:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #333;
  left: 0;
  top: -100%;
  border-radius: 3px;
  -webkit-transition: .4s;
  transition: .4s;
  visibility: hidden;
  z-index: -1; }

.serviceSec a.border-btn:hover:before {
  visibility: visible;
  top: 0; }
