@charset "utf-8";





/*****-----*****-----*****-----*****
    General CSS 
*****-----*****-----*****-----*****/
body {
    font-family: 'Heebo', sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #666666;
    background: #ffffff;
    overflow-x: hidden;
    text-align: right;
    direction: rtl;
}

/* Custom Container */
/*@media (min-width: 1366px) {
    .container {
        max-width: 1310px;
    }
}*/



/* Common CSS */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Heebo', sans-serif;
    color: #2b2b2b;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
    text-transform: capitalize;
}
p {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a:focus,
a:hover {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
ul {
    margin: 0;
    padding: 0;
}
ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
/*img {
    width: 100%;
    max-width: 100%;
    height: auto;
}*/


/* Form CSS */
.form-control {
    height: 45px;
    margin-bottom: 30px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}
.form-control:focus {
    border-color: #999999;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
::-webkit-input-placeholder {
    color: #737373 !important;
}
::-moz-placeholder {
    color: #737373 !important;
}
::-o-placeholder {
    color: #737373 !important;
}
:-ms-input-placeholder {
    color: #737373 !important;
}
input:-moz-placeholder {
    color: #737373 !important;
}




/* Default Section CSS */
section {
    position: relative;
}

/* Btn CSS */
.theme-btn {
  min-width: 150px;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  padding: 12px 15px;
  background: #00007C;
  border-radius: 8px;
  border: none;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.theme-btn:hover {
  transform: scale(0.9);
  color: #ffffff !important;
  background: #00007C;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
/* Pulse Shrink */
@-webkit-keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.hvr-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}
.hvr-pulse-shrink:hover, .hvr-pulse-shrink:focus, .hvr-pulse-shrink:active {
  -webkit-animation-name: hvr-pulse-shrink;
  animation-name: hvr-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.scroll-animate {
    opacity: 0;
    transition-property: opacity,transform;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.scroll-animate.aos-animate {
    opacity: 1;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}




/* Back to top */
 #back-to-top {
    position: fixed;
    bottom: 100%;
    right: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    padding-top: 4px;
    text-align: center;
    font-size: 16px;
    line-height: 42px;
    color: #eeeeee;
    cursor: pointer;
    border-radius: 0;
    border: 1px solid #444444;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
    background-color: #333333;
    opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
 #back-to-top:hover {
  opacity: 1;
  color: #2d5c88;
  border: 1px solid #e1e1e1;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
 #back-to-top.show {
    opacity: 1;
    bottom: 20px;
    transition: 0.8s ease-out;
}


/* Fixed Left Menu CSS */
.fixed-left-menu {
  position: fixed;
  left: 10px;
  top: 50%;
  z-index: 99;
  transform: translateY(-50%);
  text-align: center;
  max-width: 100px;
  border-radius: 20px;
  overflow: hidden;
}
.fixed-left-menu ul li a {
  background-color: #000000;
  color: #ffffff;
  line-height: 14px;
  display: block;
  padding: 10px 10px;
}
.fixed-left-menu ul li a:hover {
  text-decoration: underline;
}
.fixed-left-menu ul li a span {
  display: block;
}
.fixed-left-menu ul li a img {
  height: 35px;
}
.fixed-left-menu ul li:nth-child(2) a {
  background-color: #1B68AF;
}
.fixed-left-menu ul li:nth-child(3) a {
  background-color: #000000;
}
.fixed-left-menu ul li:nth-child(4) a {
  background-color: #FF0000;
}
.fixed-left-menu ul li:nth-child(5) a {
  background-color: #17FF21;
}




.my-title {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.my-title span {
  text-transform: capitalize;
  color: #00007C;
  font-size: 24px;
  font-weight: 500;
}
.my-title h2 {
  font-size: 48px;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.title-bdr {
  position: relative;
  height: 5px;
  border-radius: 30px;
  background-color: #00007C;
  width: 100px;
  margin: 0 auto;
  margin-top: 5px;
  margin-bottom: 18px;
  overflow: hidden
}

.title-bdr:after,
.title-bdr:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: #fff;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
  animation-name: MOVE-BG
}

.title-bdr:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: #fff;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
  animation-name: MOVE-BG
}

@-webkit-keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  to {
    -webkit-transform: translateX(120px);
    transform: translateX(120px)
  }
}

@-webkit-keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  to {
    -webkit-transform: translateX(120px);
    transform: translateX(120px)
  }
}

@keyframes MOVE-BG {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  to {
    -webkit-transform: translateX(120px);
    transform: translateX(120px)
  }
}



.progress-container {
  width: 100%;
  height: 0;
  background: #f5f5f5;
}
.progress-bar {
  height: 5px;
  background: #00007C;
  width: 0%;
}


.call-link {
  position: fixed;
  left: 0;
  top: 15%;
  z-index: 999;
  background-color: #00007C;
  padding: 10px 20px;
  text-align: center;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.call-link a {
  color: #ffffff;
  font-weight: 600;
}



/*****-----*****-----*****-----*****
    Header CSS
*****-----*****-----*****-----*****/
.header-area {
  width: 100%;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99999;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-area .container-fluid {
  padding: 0 150px;
}
.header-area .row {
  align-items: center;
}
.header-menu-bar {
  background-color: #ffffff;
  margin-top: 20px;
  padding: 0 20px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


/* Header Nav CSS Start */
.header-logo {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-logo img {
  width: 100%;
  max-width: 200px;
  height: auto;
}
.header-area .stellarnav {
  
}
.stellarnav ul {
  text-align: left;
}
.stellarnav>ul>li>a {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: #666666 !important;
  text-transform: capitalize;
  padding: 32px 12px;
  position: relative;
}
.stellarnav.light {
  background: transparent;
}
.stellarnav>ul>li>a:hover {
  color: #000000 !important;
}
.stellarnav>ul>li.active>a {
  border-bottom-color: #00007C !important;
}
.stellarnav ul ul {
  max-width: 210px;
  text-align: right;
  border-radius: 0;
  background-color: #efefef !important;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.stellarnav ul li ul li a {
  padding: 10px 15px;
  text-transform: capitalize;
  background-color: #ffffff;
}
.stellarnav ul li ul li a:hover {
  background-color: #00007C;
  color: #ffffff;
}
.stellarnav li.has-sub>a:after {
  display: none;
}
.stellarnav>ul>li>ul>li>ul {
  right: 100%;
  box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.2);
}


/* Fixed header css Start */
.fixed-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0,0,124,0.1);
  -moz-box-shadow: 0px 10px 20px 0px rgba(0,0,124,0.1);
  box-shadow: 0px 10px 20px 0px rgba(0,0,124,0.1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fixed-header .header-menu-bar {
  margin-top: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}



/*****-----*****-----*****-----*****
    Main slider CSS
*****-----*****-----*****-----*****/
.main-slider-area {
  overflow: hidden;
  position: relative;
}
.pogoSlider {
    height: 100vh;
}
.pogoSlider-dir-btn {
  z-index: 1;
  width: 30px;
  height: 30px;
}
.pogoSlider--dirBottomRight .pogoSlider-dir-btn--next, 
.pogoSlider--dirCenterHorizontal .pogoSlider-dir-btn--next, 
.pogoSlider--dirTopRight .pogoSlider-dir-btn--next {
    right: 20px;
}
.pogoSlider--dirBottomLeft .pogoSlider-dir-btn--prev, 
.pogoSlider--dirCenterHorizontal .pogoSlider-dir-btn--prev, 
.pogoSlider--dirTopLeft .pogoSlider-dir-btn--prev {
    left: 20px;
}
.pogoSlider-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.pogoSlider-slide:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    background: rgba(0, 0, 124, 0.5);
}
.silder-elements {
    text-align: center;
    position: relative;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 999;
    padding: 0;
}
.slider-para {
    color: #ffffff;
    text-transform: capitalize;
    font-size: 24px !important;
    margin-bottom: 20px !important;
    display: inline-block;
    opacity: 0.2;
}
.slider-main-title {
  display: block;
  width: 100%;
  font-size: 60px !important;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  display: inline-block;
  padding: 0 25px;
}
.slider-main-title span {
    -webkit-text-stroke-color: #D6A354;
}
.silder-elements .theme-btn {
    margin: 0 5px;
    margin-bottom: 10px;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 20px;
}
.silder-elements .theme-btn:hover {
  color: #fa4729;
}
.pogoSlider--navBottom .pogoSlider-nav {
  bottom: 60px;
  z-index: 1;
}
/*.pogoSlider--navBottom .pogoSlider-nav, .pogoSlider--navTop .pogoSlider-nav {
  left: auto;
  right: 10px;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}*/
.pogoSlider-nav-btn {
  height: 8px;
  width: 60px;
  border-radius: 5px;
  background-color: #000000;
}
.pogoSlider-nav-btn--selected {
  background-color: #ffffff;
}
.slider-bottom-text {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}
.slider-bottom-text p {
  color: #ffffff;
  padding: 0 15px;
}


.bottom-shape {
  position: absolute;
  left: 0;
  bottom: -10px;
  z-index: 1;
  width: 100%;
  height: 65px;
}
.bottom-shape img {
  width: 100%;
  height: 65px;
}






/*****-----*****-----*****-----*****
    About CSS
*****-----*****-----*****-----*****/
.about-area {
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
}
.about-area:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-right: 300px solid transparent;
  border-bottom: 300px solid #F5F5FF;
}
.about-area .row {
  align-items: center;
}
.about-col {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.about-text-content {
  position: relative;
  padding-right: 200px;
}
.about-text-content p {
  margin-bottom: 15px;
}
.experience-box {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  text-align: center;
  background-color: #00007C;
  border-radius: 10px;
  padding: 15px 20px;
}
.experience-box h3 {
  font-size: 50px;
  margin: 0;
  color: #ffffff;
}
.experience-box h3 span {
  font-size: 20px;
  display: block;
}
.read-more-box {
  display: flex;
  align-items: center;
  position: relative;
}
.read-more-box .ceo-name {
  padding-right: 90px;
  border-right: 1px solid #dddddd;
  margin-right: 20px;
  position: relative;
}
.read-more-box .ceo-name img {
  position: absolute;
  right: 20px;
  top: 0;
  z-index: 0;
  width: 60px;
  height: 60px;
  border: 3px solid #b1b1b1;
  border-radius: 50%;
}
.read-more-box .ceo-name h4 {
  margin: 0;
}
.read-more-box .ceo-name p {
  font-size: 14px;
}
.about-img {
  padding-left: 30px;
  position: relative;
}
.about-img:before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #00007C;
  border-radius: 50%;
  background: rgb(80,80,255);
  background: -moz-linear-gradient(148deg, rgba(80,80,255,1) 0%, rgba(0,0,124,1) 100%);
  background: -webkit-linear-gradient(148deg, rgba(80,80,255,1) 0%, rgba(0,0,124,1) 100%);
  background: linear-gradient(148deg, rgba(80,80,255,1) 0%, rgba(0,0,124,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5050ff",endColorstr="#00007c",GradientType=1);

}
.about-img img {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}





/*****-----*****-----*****-----*****
    About two CSS
*****-----*****-----*****-----*****/
.about-two-area {
  padding: 120px 0;
}
.about-two-col {
  position: relative;
}
.about-two-text {
  width: 100%;
  max-width: 1050px;
  margin-top: -100px;
  background-color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 1;
  padding: 50px 50px;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.1);
}
.about-two-text p {
  margin-bottom: 20px;
}




/*****-----*****-----*****-----*****
    Service CSS
*****-----*****-----*****-----*****/
.service-area {
  padding: 120px 0 90px;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.service-area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,124,0.9);
  /*background: rgb(80,80,255);
  background: -moz-linear-gradient(148deg, rgba(80,80,255,0.9) 0%, rgba(0,0,124,0.9) 100%);
  background: -webkit-linear-gradient(148deg, rgba(80,80,255,0.9) 0%, rgba(0,0,124,0.9) 100%);
  background: linear-gradient(148deg, rgba(80,80,255,0.9) 0%, rgba(0,0,124,0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5050ff",endColorstr="#00007c",GradientType=1);*/
}
.service-area .my-title span {
  color: #ffffff;
}
.service-area .my-title h2 {
  color: #ffffff;
}
.service-col {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  background-color: #ffffff;
  padding: 40px 40px;
  border-radius: 10px;
  min-height: 263px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-col:hover {
  transform: scale(1.05);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-col span {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 0;
  color: #f1f1f1;
  font-size: 150px;
  line-height: 1;
  font-weight: bold;
  font-style: italic;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-col:hover span {
  font-size: 80px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-col h4 a {
  color: #2b2b2b;
  position: relative;
  z-index: 1;
}
.service-col p {
  position: relative;
  z-index: 1;
  line-height: 25px;
}
.service-icon {
  margin-bottom: 10px;
}
.service-icon img {
  width: 100%;
  max-width: 80px;
  position: relative;
  z-index: 1;
}
.service-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}


.abstract-img {
    max-width: 30px;
    position: absolute;
    z-index: 0;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: updown 5s infinite;
    animation: updown 5s infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
.abstract-img-1 {
    left: 8%;
    top: 22%;
}
.abstract-img-2 {
    left: 5%;
    bottom: 25%;
    -webkit-animation-name: spin;
    animation-name: spin;
    -webkit-animation-duration: 8000ms;
    animation-duration: 8000ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
.abstract-img-3 {
    right: 10%;
    top: 22%;
    -webkit-animation: updown 8s infinite;
    animation: updown 8s infinite;
}
.abstract-img-4 {
    left: 55%;
    bottom: 5%;
    -webkit-animation: updown 10s infinite;
    animation: updown 10s infinite;
}
.abstract-img-5 {
    right: 40%;
    top: 230px;
    -webkit-animation-name: spin;
    animation-name: spin;
    -webkit-animation-duration: 5000ms;
    animation-duration: 5000ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear; 
}
.abstract-img-6 {
    right: 5%;
    bottom: 15%;
    -webkit-animation-name: spin;
    animation-name: spin;
    -webkit-animation-duration: 5000ms;
    animation-duration: 5000ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear; 
}


@-webkit-keyframes updown {
    0%   {
        -webkit-transform : translate(0);
        transform : translate(0)
    }
    50%  { 
        -webkit-transform : translate(50px, -20px); 
        transform : translate(50px, -20px)
    }

    100%  { 
        -webkit-transform : translate(0); 
        transform : translate(0)
    }
}


@keyframes updown {
    0%   {
        -webkit-transform : translate(0);
        transform : translate(0)
    }
    50%  { 
        -webkit-transform : translate(50px, -20px); 
        transform : translate(50px, -20px)
    }

    100%  { 
        -webkit-transform : translate(0); 
        transform : translate(0)
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg);
    }
    to {
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg);
    }
    to {
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}




/*****-----*****-----*****-----*****
    Choose CSS
*****-----*****-----*****-----*****/
.counter-area {
  background-color: #F5F5FF;
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
}
.counter-title {
  text-align: center;
}
.counter-title h2 {
  font-size: 180px;
  line-height: 1;
  margin-bottom: 0;
  font-weight: bold;
  background-image: url(../images/bg/3.jpg);
  background-repeat: repeat;
  background-position: center;
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-font-smoothing: antialiased;
}
.counter-col {
  text-align: center;
  margin-bottom: 30px;
}
.counter-col .counter {
  position: relative;
  font-size: 80px;
  display: inline-block;
  margin-bottom: 0;
}
.counter-col .counter:before {
  content: "+";
  position: absolute;
  right: -30px;
  top: 0;
  z-index: 0;
  font-size: 40px;
}
.counter-col p {
  font-weight: bold;
}



/*****-----*****-----*****-----*****
    Choose CSS
*****-----*****-----*****-----*****/
.choose-area {
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}
.choose-area:before {
  content: "";
  position: absolute;
  right: 18%;
  top: -200px;
  z-index: 0;
  width: 400px;
  height: 150%;
  transform: rotate(20deg);
  background: rgb(80,80,255);
  background: -moz-linear-gradient(148deg, rgba(80,80,255,0.9) 0%, rgba(0,0,124,0.9) 100%);
  background: -webkit-linear-gradient(148deg, rgba(80,80,255,0.9) 0%, rgba(0,0,124,0.9) 100%);
  background: linear-gradient(148deg, rgba(80,80,255,0.9) 0%, rgba(0,0,124,0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5050ff",endColorstr="#00007c",GradientType=1);
}
.choose-col p {
  margin-bottom: 15px;
}
.woman-img {
  position: absolute;
  right: 23%;
  bottom: 0;
  z-index: 0;
}
.woman-img img {
  width: 100%;
  max-width: 400px;
}







/*****-----*****-----*****-----*****
    Insurance form CSS
*****-----*****-----*****-----*****/
.insurance-form-area {
  background-color: #f5f5ff;
  overflow: hidden;
}
.insurance-form-area .my-title h2 {
  font-size: 36px;
}
.insurance-form-container {
  display: flex;
}
.insurance-form-img {
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.insurance-form-img:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 0;
  height: 0;
  border-top: 120px solid transparent;
  border-right: 960px solid #f5f5ff;
}
.insurance-form-col {
  width: 50%;
  padding: 120px 120px;
}
.insurance-form-content {
  padding: 50px 50px;
  border: 1px solid #dddddd;
  border-radius: 10px;
}
.insurance-form-content .form-control {
  margin-bottom: 20px;
  height: 50px;
  text-align: right;
  border-radius: 8px;
}
.insurance-form-content textarea.form-control {
  height: 100%;
  min-height: 170px;
}
.insurance-form-content .theme-btn {
  width: 100%;
}


/*****-----*****-----*****-----*****
    Team CSS
*****-----*****-----*****-----*****/
.team-area {
  padding: 120px 0 50px;
  background-color: #F9FAFF;
  position: relative;
  z-index: 0;
}
.team-col {
  position: relative;
  z-index: 1;
  transform: perspective(1500px) rotateY(30deg);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 70px;
  text-align: center;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(9,9,121,0.2);
  -moz-box-shadow: 0px 20px 40px 0px rgba(9,9,121,0.2);
  box-shadow: 0px 20px 40px 0px rgba(9,9,121,0.2);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-col:hover {
  transform: perspective(1500px) rotateY(0deg);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-img {
  
}
.team-img img {
  width: 100%;
}
.team-content {
  background-color: #F1F3FD;
  padding: 20px 10px;
}
.team-content h4 {
  margin-bottom: 0 !important;
}
.team-content p {
  margin-bottom: 10px;
}
.team-content ul li {
  display: inline-block;
  margin: 0 10px;
}
.team-content ul li i {
  font-size: 20px;
  color: #00007C;
}

.shape2 {
  position: absolute;
  right: 0;
  bottom: -100px;
  z-index: -1;
  width: 100%;
  max-width: 530px;
  text-align: right;
}


/*****-----*****-----*****-----*****
    Testimonial CSS
*****-----*****-----*****-----*****/
.testimonial-area {
  padding: 120px 0 110px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.testimonial-item {
  position: relative;
  padding-top: 50px;
}
.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  margin-top: -80px;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-img:before {
  content: "\f10e";
  font-family: FontAwesome;
  position: absolute;
  left: -25px;
  top: 50%;
  z-index: 0;
  transform: translateY(-50%);
  background-color: #00007C;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 25px;
  line-height: 35px;
  text-align: center;
}
.testimonial-img img {
  border-radius: 50%;
}
.testimonial-item {
  background-color: #ffffff;
  padding: 50px 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 35px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 0px 35px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 0px 35px 0px rgba(0,0,0,0.15);
}
.testimonial-item h4 {
  font-size: 22px;
  margin-bottom: 0;
}
.testimonial-item span {
  margin-bottom: 20px;
  display: block;
}
.testimonial-area .owl-carousel .owl-item {
  padding: 35px 35px;
}
.testimonial-area .owl-theme .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FC5130;
}
.testimonial-area .owl-theme .owl-dots .owl-dot.active span {
  width: 20px;
  height: 20px;
  background-color: #FC5130;
  position: relative;
  bottom: -7px;
}
.testimonial-area .owl-theme .owl-dots .owl-dot.active span:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  margin-left: -5px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
}
.testimonial-area .owl-theme .owl-nav [class*=owl-] {
  background-color: #00007C;
}




/*****-----*****-----*****-----*****
    Blog CSS
*****-----*****-----*****-----*****/
.blog-area {
  padding: 120px 0 90px;
  overflow: hidden;
}
.blog-col {
  margin-bottom: 30px;
}
.blog-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.blog-img img {
  width: 100%;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.my-date {
  position: absolute;
  right: 0;
  top: 20px;
  background-color: #00007C;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  padding: 5px 15px;
  direction: ltr;
}
.my-date p {
  padding: 0 !important;
  margin: 0 !important;
  color: #ffffff;
}
.blog-col:hover .blog-img img {
  transform: scale(1.1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog-col h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
}
.blog-col h4 a {
  color: #071e22;
}
.blog-col p {
  margin-bottom: 15px;
}
.blog-col ul li {
  display: inline-block;
  margin-left: 20px;
}
.blog-col ul li:last-child {
  margin: 0;
}
.blog-col ul li i {
  margin-left: 10px;
  color: #00007C;
}
.blog-col ul li a {
  color: #585858;
}


/*****-----*****-----*****-----*****
    Blog Details CSS
*****-----*****-----*****-----*****/
.blog-details-area {
    padding: 120px 0 90px;
}
.blog-details-area .blog-col {
    margin-bottom: 30px;
}
.blog-details-col {
  margin-bottom: 30px;
}
.blog-details-col .blog-info-bar {
  margin-top: 20px;
}
.blog-details-col .blog-info-bar ul li {
    display: inline-block;
    margin-right: 10px;
}
.blog-details-col .blog-info-bar ul li a {
    color: #444444;
}
.blog-details-col .blog-info-bar ul li a i {
    color: #00007C;
    margin-right: 5px;
}
.blog-item-content h4 a {

}
.blog-details-col p{
    margin-bottom: 15px;
}
.blog-comment-box {
  padding: 20px 30px;
  background: #f5f5f5;
  position: relative;
  margin: 5px 0 30px;
}
.blog-comment-box p {
  font-weight: bold;
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 0;
}
.blog-comment-box i {
  color: #999999;
  font-size: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  opacity: 0.3;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.middle-imgs {
    margin-bottom: 20px;
}
.middle-imgs img {
    width: 100%;
}
.tag-bar {
  padding: 12px 20px;
  margin: 40px 0 45px;
  background: #f5f5f5;
}
.tag-bar-col ul li {
  display: inline-block;
}
.tag-bar-col ul li i {
  margin-right: 15px;
  font-size: 24px;
  color: #00007C;
  position: relative;
  top: 3px;
}
.tag-bar-col ul li a {
  color: #333333;
}
.share-col {
  text-align: right;
}
.share-col ul li {
  display: inline-block;
}
.share-col ul li i {
  font-size: 24px;
  color: #00007C;
  position: relative;
  top: 3px;
}
.share-col ul li a i {
  color: #333333;
  font-size: 16px;
  margin-left: 10px;
  position: relative;
  top: 0;
}
.link-bar {
  margin-bottom: 50px;
}
.link-bar-col {
  position: relative;
}
.link-bar-col a i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #F5F5F5;
    line-height: 60px;
    font-size: 40px;
    text-align: center;
    color: #00007C;
}
.previous-link {
  padding-left: 70px;
}
.previous-link a i {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.link-bar-col h4 {
  margin-bottom: 0;
}
.next-link {
  padding-right: 70px;
  text-align: right;
}
.next-link a i {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.all-comments h4 {
  margin-bottom: 40px;
}
.comment-item {
  margin-bottom: 50px;
  position: relative;
  padding-right: 100px;
}
.comment-item img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  border: 3px solid #dddddd;
  border-radius: 50%;
}
.comment-item span {
  color: #9f9f9f;
  font-size: 12px;
  font-weight: bold;  
}
.comment-item i {
  color: #00007C;
  font-size: 30px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.comment-item.left-space {
  margin-right: 110px;
}
.comment-form h4 {
  margin-bottom: 20px;
}
.comment-form-box {
  padding: 30px 30px;
  background: #f5f5f5;
}
.comment-form .form-control {
  height: 50px;
  background: #e9e9e9;
  border: none;
  text-align: right;
}
.comment-form textarea {
  min-height: 120px !important;
  resize: none;
}

/* Sidebar CSS Start */
.blog-sedebar {
  margin-bottom: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}
.sidebar-title {
  color: #111111;
  line-height: 30px;
  padding: 15px 30px;
  background: #F5F5F5;
  margin-bottom: 0;
  border-bottom: 2px solid #00007C;
}
.box-content {
  padding: 30px 30px; 
  background: #f5f5f5;
}
.search-box button {
  background: #00007C;
  width: 55px;
  height: 50px;
  border-radius: 0;
  color: #ffffff;
}
.search-box .form-control {
  height: 50px;
  border: none;
  margin-bottom: 0;
  background-color: #cccccc;
}
.categorys-box .box-content ul li {
  position: relative;
}
.categorys-box .box-content ul li:before {
  content: "\f104";
  font-family: FontAwesome;
  position: absolute;
  right: 0;
  top: 10px;
  z-index: 0;
  color: #333333;
  font-size: 20px;
}
.categorys-box ul li a {
  padding: 10px 0;
  padding-right: 20px;
  display: block;
  border-bottom: 1px solid #ffffff;
  color: #333333;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.categorys-box ul li a:hover {
  padding-right: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.categorys-box .box-content ul li a span {
  float: right;
}
.post-box {

}
.post-box ul li {
  position: relative;
  padding-right: 90px;
  min-height: 80px;
  margin-bottom: 25px;
}
.post-box ul li:last-child {
  margin-bottom: 0;
}
.post-box ul li img {
  position: absolute;
  right: 0;
  top: 5px;
  z-index: 0;
  width: 80px;
  height: 80px;
}
.post-box ul li a {
  color: #444444;
  top: 0
}
.post-box ul li p a {
  font-weight: normal;
  opacity: 0.7
}
.post-box p {
  font-size: 13px;
  direction: ltr;
}
.tags-box {

}
.tags-box ul li {
  display: inline-block;
}
.tags-box ul li a {
  padding: 5px 12px;
  border: 1px solid #999999;
  display: block;
  margin: 0 5px 8px 0;
  color: #333333;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tags-box ul li a:hover {
  background: #00007C;
  border-color: #00007C;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.add-box {
    position: relative;
}
.add-box img {
    width: 100%;
}
.add-content {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(0,0,0,0.5);
    padding: 10px 10px 20px;
    text-align: center;
}
.add-content h4 {
    color: #ffffff;
}



/*****-----*****-----*****-----*****
    Pagename CSS
*****-----*****-----*****-----*****/
.pagename-area {
  padding: 225px 0 120px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.pagename-area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,124,0.7);
}
.pagename-col {
  position: relative;
  z-index: 1;
  text-align: center;
}
.pagename-col h2 {
  font-size: 48px;
  color: #ffffff;
}
.pagename-col ul li {
  display: inline-block;
  color: #ffffff;
}
.pagename-col ul li a {
  color: #ffffff;
}



/*****-----*****-----*****-----*****
    Details CSS
*****-----*****-----*****-----*****/
.details-area {
  padding: 120px 0 90px;
}
.sidebar-col {
  margin-bottom: 30px;
}
.last-post {
  margin-top: 30px;
  border: 1px solid #dddddd;
  padding: 30px 30px;
  border-radius: 10px;
}
.last-post ul li {
  position: relative;
  padding-right: 70px;
  margin-bottom: 15px;
  min-height: 60px;
}
.last-post ul li img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  width: 60px;
  height: 60px;
  border: 1px solid #444444;
  padding: 3px;
}
.last-post ul li a {
  color: #555555;
}
.last-post p {
  color: #00007C;
  font-size: 12px;
  line-height: 16px;
}
.details-col {
  margin-bottom: 30px;
}
.details-col p {
  margin-bottom: 15px;
}
.accordion-button {
  font-weight: bold;
}
.accordion-button:focus{
  outline: none;
  box-shadow: none;
}


/*****-----*****-----*****-----*****
    Contact CSS
*****-----*****-----*****-----*****/
.contact-area {
  padding: 120px 0;
  background: transparent;
  position: relative;
}
.contact-col {

}
.contact-info-col {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-info-box {
  width: 48%;
  text-align: center;
  margin-bottom: 25px;
  background-color: #f5f5f5;
  padding: 47px 20px;
}
.contact-info-box:last-child {
  border: none;
}
.contact-info-box img {
  margin-bottom: 20px;
}
.contact-info-box p {
  font-weight: bold;
}
.contact-info-box i {
  font-size: 30px;
  color: #00007C;
  margin-bottom: 10px;
}
.form-col {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #dddddd;
}
.form-col .form-control {
  min-height: 50px;
  border: none;
  background-color: #F5F5F5;
  border-radius: 0;
  text-align: right;
}
.form-col textarea.form-control {
  height: 100%;
  border-radius: 0;
}
.form-col .btn {
  width: 180px;
  margin-top: 30px;
}



/*****-----*****-----*****-----*****
    Client CSS
*****-----*****-----*****-----*****/
.client-area {
  position: relative;
  overflow: hidden;
  padding: 0 0 120px;
}
.client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background: #f5f5f5;
  padding: 20px;
}
.client-logo img {
  max-height: 65px;
}
.client-area .owl-theme .owl-nav [class*=owl-] {
  margin: 0;
  border-radius: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  opacity: 0;
  background: #00007C;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.client-area:hover .owl-theme .owl-nav [class*=owl-] {
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.client-area .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  right: 0px;
  top: 50%;
  z-index: 0;
  transform: translateY(-50%);
}
.client-area .owl-carousel .owl-nav .owl-next {
  position: absolute;
  left: 0px;
  top: 50%;
  z-index: 0;
  transform: translateY(-50%);
}





/*****-----*****-----*****-----*****
  Benefits CSS
*****-----*****-----*****-----*****/
.benefits-area {
  padding: 0 0 120px;
}
.my-title {
  margin-bottom: 50px;
}
.my-title h2 {
  font-size: 50px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  margin-top: -10px;
}
.my-title .bdr {
  width: 60px;
  height: 5px;
  background-color: #2196f3;
}
.benefits-col {
  padding: 100px 50px;
  padding-right: 50%;
  position: relative;
  background-color: #F5F5FF;
  overflow: hidden;
}
.benefits-col:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 80px solid transparent;
  border-right: 1377px solid #FFFFFF;
}
.benefits-item {
  margin-bottom: 10px;
  position: relative;
  z-index: 3;
}
.woman-img-2 {
  position: absolute;
  right: 80px;
  bottom: 0;
  z-index: 1;
  max-width: 450px;
}
.woman-img img {
  width: 100%;
}
.round-shape {
  position: absolute;
  right: -150px;
  top: -150px;
  z-index: 0;
  width: 700px;
  height: 700px;
  background-color: #120bb5;
  border-radius: 50%;
}
.round-shape:before {
  content: "";
  position: absolute;
  right: -20px;
  top: 30px;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #00007C;
  border-radius: 50%;
}

.pt-120 {
  padding-top: 120px;
}




/*****-----*****-----*****-----*****
    Footer CSS
*****-----*****-----*****-----*****/
.footer-area {
  width: 100%;
  background: #222222;
  padding: 120px 0 30px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.footer-area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}
#particles-js {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.top-shape {
  position: absolute;
  left: 0;
  top: -2px;
  z-index: 0;
  width: 100%;
  height: 65px;
}
.footer-col {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.footer-col h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}
.footer-col-1 {
  
}
.footer-col-1 img {
  width: 100%;
  max-width: 250px;
  margin-bottom: 30px;
}
.footer-col-1 p {
  color: #ffffff;
  opacity: 0.7;
}
.footer-col-2 {
  padding: 0 50px;
  margin: 0 50px;
  border-left: 1px solid #333333;
  border-right: 1px solid #333333;
}
.footer-col-2 ul li {
  position: relative;
  padding-right: 70px;
  margin-bottom: 15px;
  min-height: 60px;
}
.footer-col-2 ul li img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  width: 60px;
  height: 60px;
  border: 1px solid #444444;
  padding: 3px;
}
.footer-col-2 ul li a {
  color: #ffffff;
  opacity: 0.7;
  line-height: 22px;
}
.footer-col-2 ul li a:hover {
  color: #ffffff;
  opacity: 1;
}
.footer-col-2 p {
  color: #999999;
  font-size: 12px;
  line-height: 16px;
}
.footer-col-3 {

}
.footer-col-3 ul li {
  padding: 4px 0 5px;
}
.footer-col-3 ul li a {
  color: #ffffff;
  opacity: 0.7;
}
.footer-col-3 ul li a:hover {
  color: #ffffff;
  opacity: 1;
}
.copyright {
  background-color: #333333;
  padding: 15px 0;
  text-align: center;
}
.copyright .row {
  align-items: center;
}
.copyright p {
  font-size: 14px;
  color: #eeeeee;
  text-align: left;
}
.footer-social-links-col {
  text-align: right;
}
.footer-social-links-col ul li {
  display: inline-block;
  margin-left: 10px;
}
.footer-social-links-col ul li a i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  text-align: center;
  line-height: 38px;
  color: #ffffff;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-social-links-col ul li a i:hover {
  background-color: #00007C;
  border-color: #00007C;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}





/*****-----*****-----*****-----*****
    Responsive CSS
*****-----*****-----*****-----*****/
@media only screen and (max-width:1920px) {
    
}

@media only screen and (max-width:1680px) {
  .header-area .container-fluid {
    padding: 0 50px;
  }
  .insurance-form-col {
    width: 50%;
    padding: 120px 70px;
  }
}

@media only screen and (max-width:1600px) {
  .woman-img {
    right: 15%;
  }
  .header-area .container-fluid {
    padding: 0 30px;
  }
}

@media only screen and (max-width:1440px) {
    .header-area .container-fluid {
      padding: 0 50px;
    }
}

@media only screen and (max-width:1399px) {
    .about-img img {
      width: 480px;
      height: 480px;
  }
  .service-area .row {
    align-items: center;
  }
  .insurance-form-col {
    padding: 120px 50px;
  }
  .insurance-form-content {
    padding: 30px;
  }
  .choose-area:before {
    right: 0;
  }
}

@media only screen and (max-width:1366px) {
    .header-area .container-fluid {
      padding: 0 30px;
    }
    .stellarnav>ul>li>a {
      padding: 32px 10px;
    }
}

@media only screen and (max-width:1280px) {

}

@media only screen and (max-width:1199px) {
  /* Header Nav CSS Start */
  .nav-search-col ul {
    text-align: right;
  }
  .stellarnav.mobile.right>ul {
    max-width: 350px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  }
  .stellarnav.light {
    text-align: left;
  }
  .stellarnav .menu-toggle {
    padding: 0;
    margin-top: 0;
  }
  .header-logo {
    padding: 10px 0;
  }
  .nav-search-col ul {
    margin: 30px 0;
  }
  .fixed-header .nav-search-col ul {
    margin: 20px 0;
  }
  .stellarnav>ul>li.menu-item-has-children>a:before {
    display: none;
  }
  .stellarnav > ul > li > a {
    color: #333333 !important;
  }
  .stellarnav.light .menu-toggle span.bars span {
    background-color: #000000;
  }
  .stellarnav .menu-toggle span.bars span {
    width: 25px;
    height: 3px;
    margin: 0 0 5px;
  }
  /* Header Nav CSS End */

  .about-img {
    text-align: center;
    padding-left: 0;
  }
  .about-img:before {
    display: none;
  }
  .about-img img {
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.3);
  }
  .woman-img {
    right: 5%;
  }



}

@media only screen and (max-width:1024px) {
    
}

@media only screen and (max-width:991px) {
  .service-img {
    display: none;
  }
  .woman-img {
    position: relative;
    text-align: center;
    right: auto;
  }
  .choose-area {
    padding-bottom: 0;
  }
  .insurance-form-container {
    display: block;
  }
  .insurance-form-col {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }
  .insurance-form-img {
    width: 100%;
    min-height: 600px;
  }
  .footer-col-2 {
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
    border: none;
  }
  .copyright p {
    text-align: center;
  }
  .footer-social-links-col {
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-social-links-col ul li {
    margin: 0;
    margin: 0 2px;
  }
  .details-area .row,
  .blog-details-area .row {
    flex-direction: column-reverse;
  }
  .choose-area:before {
    display: none;
  }
  .middle-imgs img {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width:767px) {
    .pogoSlider {
      height: 60vh;
    }
    .slider-main-title {
      font-size: 36px !important;
    }
    .my-title h2 {
      font-size: 32px;
    }
    .experience-box {
      position: relative;
    }
    .about-text-content {
      padding: 0;
    }
    .top-shape {
      top: -10px;
    }
    .call-link {
      top: auto;
      bottom: 0;
    }
    .counter-title h2 {
      font-size: 100px;
    }
    .counter-col .counter {
      font-size: 60px;
    }
}

@media only screen and (max-width:600px) {
    
}

@media only screen and (max-width:575px) {
  .pogoSlider-nav-btn {
    width: 30px;
  }
  .header-area .container-fluid {
    padding: 0 15px;
  }
  .about-img img {
    width: 480px;
    height: 480px;
    width: 100%;
    height: 100%;
  }
  .read-more-box {
    display: block;
  }
  .read-more-box .ceo-name {
    margin-top: 20px;
    margin-right: 0;
    border: none;
  }
  .read-more-box .ceo-name img {
    right: 0;
  }
  .read-more-box .ceo-name {
    padding-right: 70px;
  }
  .insurance-form-img {
    min-height: 400px;
  }
  .insurance-form-col {
    padding-left: 15px;
    padding-right: 15px;
  }
  .counter-title h2 {
    font-size: 70px;
    margin-bottom: 20px;
  }
  .team-col {
    transform: perspective(0) rotateY(0deg);
  }
  .comment-item.left-space {
    margin-right: 50px;
  }
}

@media only screen and (max-width:480px) {
   .contact-info-col {
    display: block;
   }
   .contact-info-box {
    width: 100%;
   }

}

@media only screen and (max-width:420px) {

}

@media only screen and (max-width:375px) {
  
}

@media only screen and (max-width:320px) {
    
}


