/* use font link */

@import url("https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700,700i");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");


* {
  margin: 0px;
  padding: 0px;
  border:none;
  outline: none;
}

body {
  font-size: 16px;
  color: #666666;
  line-height: 26px;
  font-weight: 400;
  background: #ffffff;
  font-family: "PT Sans", sans-serif;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1200px) {
  .container {
    /* max-width: 1170px; */
    padding: 0px 15px;
  }
}

.boxed_wrapper {
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}
a {
  text-decoration: none;
  position: relative;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  line-height: 26px;
  font-weight: 400;
  cursor: pointer;
  color: #999999;
  transition: all 500ms ease;
}

a:hover {
  text-decoration: none;
  outline: none;
  color: #1280b4;
}

input,
button,
select,
textarea {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}
ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

input {
  transition: all 500ms ease;
}
button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  transition: all 500ms ease;
}

p {
  position: relative;
  font-size: 16px;
  font-family: "PT Sans", sans-serif;
  line-height: 26px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 10px;
  font-style: normal;
  transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  margin-bottom: 0px;
  color: #222222;
  transition: all 500ms ease;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  margin-bottom: 0px;
  color: #222222;
  transition: all 500ms ease;
}

h2 {
  font-size: 36px;
  line-height: 44px;
}

h3 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

h5 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

h3 a {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

h4 a {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

h5 a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}

h3 a:hover,
h4 a:hover,
h5 a:hover {
  color: #1280b4;
}

.centred {
  text-align: center;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0px;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 5px rgba(18, 128, 180, 0.25),
      0 0 0 20px rgba(18, 128, 180, 0.4);
  }
}

/* button */
.dd_btn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  padding: 15px 22px;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  border: 2px solid #ffffff;
  text-align: center;
  text-transform: uppercase;
  transition: all 300ms ease;
  cursor: pointer;
  text-align: center;
  z-index: 1;
}
.dd_btn:hover {
  background: #ffffff;
  color: #1280b4;
  border: 2px solid #1280b4;
}

.theme-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  padding: 17px 29px;
  background: #14437b;
  color: #fff !important;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  transition: all 300ms ease;
  cursor: pointer;
  text-align: center;
  z-index: 1;
}

.theme-btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #6bc7f2;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.theme-btn:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.gray-bg {
  background: #f7f7f7;
}
/* pagination */

.pagination {
  position: relative;
  display: block;
}
.pagination li {
  display: inline-block;
  margin: 0px 2px;
}
.pagination li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  height: 50px;
  font-weight: 600;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #cccccc;
  color: #666666;
  transition: all 500ms ease;
}
.pagination li a:hover,
.pagination li a.active {
  background: #1280b4;
  border: 1px solid #1280b4;
  color: #ffffff;
}


/* sec-title */

.sec-title h2 {
  position: relative;
  text-transform: uppercase;
  padding-top: 31px;
  line-height: 39px;
}

.sec-title h2:before {
  position: absolute;
  content: "";
  background: #1280b4;
  width: 30px;
  height: 3px;
  left: 50%;
  margin-left: -25px;
  top: 0px;
}

.title-text {
  position: relative;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

/* main-header */
.main-header {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 999;
  width: 100%;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sticky-header {
  position: fixed;
  /* background: #ffffff; */
  left: 0px;
  top: 0px;
  box-shadow: 0 0 10px black;
  width: 100%;
  z-index: 0;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}


/** header-top **/

.main-header .header-top {
  position: relative;
  background: #09194d;
  width: 100%;
  height: 60px;
  box-shadow: 0 0 5px black;
}

.main-header .header-top .top-left {
  position: relative;
  float: left;
}

.main-header .header-top .social li {
  position: relative;
  float: left;
  margin-right: 4px;
  color: #1280b4;

}

.main-header .header-top .social li:last-child {
  margin-right: 0px;
}

.main-header .header-top .social li a {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  height: 60px;
  width: 50px;
  line-height: 60px;
  /* background: #f2f2f2; */
  color: #3cc1ff;
  text-align: center;
}

.main-header .header-top .social li a:hover {
  background: #1280b4;
  color: #ffffff;
}

.main-header .header-top .top-right {
  position: relative;
  float: right;
}

.main-header .header-top .top-right li {
  position: relative;
  float: left;
  padding: 0px 0px 0px 25px;
  margin: 15px 28px 0px 0px;
  font-size: 16px;
  color: #3cc1ff;
  font-weight: 400;
}

.main-header .header-top .top-right li a {
  font-weight: 700;
  color: rgb(223, 169, 54);
  font-size: 0.7rem;
}

.main-header .header-top .top-right li a:hover {
  color: #1280b4;
}
.main-header .header-top .top-right li:nth-child(2) a {
  font-weight: 400;
}

.main-header .header-top .top-right li i {
  position: absolute;
  left: 0px;
  top: 6px;
  font-size: 20px;
}

.main-header .header-top li a.upper-btn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: #1280b4;
  padding: 18px 28px;
  line-height: 24px;
  text-align: center;
}

.main-header .header-top li a.upper-btn:hover {
  background: #0574a8;
  color: #fff;
}

.main-header .header-top .top-right li:last-child {
  padding: 0px;
  margin: 0px;
}

/* header-bottom */
.header-bottom > nav{
  padding: 0 !important;
  background-color: #030215e6;
}
.sticky-header > nav{
  background-color: #030215e6;
}
.navbar-brand{
  display: flex;
  align-items: center;
}
.navbar-brand>img {
  width: 95px;
  border-radius: 50%;
}

.sticky-header .nav-item,
.header-bottom .nav-item{
  margin: auto 0.5rem;
  transition:all 1s ease;
  -moz-transition:all 1s ease;
  -webkit-transition:all 1s ease;
  -ms-transition:all 1s ease;
  -o-transition:all 1s ease;
}
.sticky-header .nav-item:hover,
.header-bottom .nav-item:hover{
  border-bottom: 1px solid #1280b4;
  color: #fff;
}
.sticky-header .nav-item > a,
.header-bottom .nav-item > a{
  text-transform: uppercase;
  font-size: 0.8rem;
}

.sticky-header .active,
.header-bottom .active {
  border-bottom: 1px solid #1280b4;
  color: #fff;
}
.sticky-header .active > a,
.header-bottom .active > a {
  color: #f7f7f7;
}

/** stricky-header **/

.sticky-header .main-menu .navigation > li {
  margin: 0px !important;
  padding-top: 0.25rem;
}

.sticky-header .main-menu .navigation > li > a {
  padding: 14px 30px 16px 30px !important;
}

.sticky-header .main-menu .navigation > li > a {
  color: #222222;
}

.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li:hover > a {
  background: #1280b4;
  color: #ffffff;
}

.sticky-header .logo-box {
  position: relative;
  float: left;
}

.sticky-header .menu-area {
  position: relative;
  float: right;
}


/** main slider **/


.main-slider{
  position:relative;
  padding-top: 60px;
}

.main-slider .slide{
  position:relative;
  padding:267px 0px 220px 0px;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center center;
}

.main-slider .slide:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(0deg, rgba(20,67,123,1) 10%, rgba(255,255,255,0.0) 100%);
  left: 0px;
  top: 0px;
  right: 0px;
}

.main-slider h6{
  position:relative;
  opacity: 0;
  margin-bottom: 14px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}

.main-slider .active h6{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 500ms;
}

.main-slider h1{
  position:relative;
  font-size: 48px;
  font-family: 'Poppins', sans-serif;
  line-height: 55px;
  color: #ffffff;
  font-weight: 500;
  opacity: 0;
  margin-bottom: 14px;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}

.main-slider .active h1{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 1000ms;
}

.main-slider .text{
  position:relative;
  font-size: 22px;
  font-family: 'Poppins', sans-serif;
  line-height: 34px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 36px;
  opacity:0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}

.main-slider .active .text{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 1300ms;
}

.main-slider .slider-btn{
  opacity:0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}

.main-slider .active .slider-btn{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 2000ms;
}


/* slide nav */

.owl-nav-none .owl-nav,
.owl-dots-none .owl-dots{
  display: none !important;
}

.main-slider .owl-nav{
  position:absolute;
  left:0px;
  top:50%;
  z-index:1;
  width:100%;
  margin-top:-20px;
}

.main-slider .owl-theme .owl-controls .owl-nav [class*="owl-"]{
  position: absolute;
  margin: 0px;
  color: #ffffff;
}

.main-slider .owl-nav .owl-prev{
  position:absolute;
  left:40px;
  cursor: pointer;
  display: inline-block;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  width: 60px;
  height: 60px;
  line-height: 65px;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider .owl-nav .owl-next{
  position:absolute;
  right:40px;
  cursor: pointer;
  display: inline-block;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  width: 60px;
  height: 60px;
  line-height: 65px;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider .owl-nav .owl-prev:hover,
.main-slider .owl-nav .owl-next:hover{
  color:#ffffff;
  background-color:#1280b4;
  border: 2px solid #1280b4;
}

.main-slider .owl-theme .owl-controls .owl-nav [class*="owl-"]:hover {
  border: 1px solid #1280b4;
  color: #ffffff;
}

.main-slider .owl-theme .owl-controls{
  margin-top: 0px;
}



/* slide nav */

.owl-nav-none .owl-nav,
.owl-dots-none .owl-dots{
  display: none !important;
}

.main-slider .owl-nav{
  position:absolute;
  left:0px;
  top:50%;
  z-index:1;
  width:100%;
  margin-top:-20px;
}

.main-slider .owl-theme .owl-controls .owl-nav [class*="owl-"]{
  position: absolute;
  margin: 0px;
  color: #ffffff;
}

.main-slider .owl-nav .owl-prev{
  position:absolute;
  left:40px;
  cursor: pointer;
  display: inline-block;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  width: 60px;
  height: 60px;
  line-height: 65px;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider .owl-nav .owl-next{
  position:absolute;
  right:40px;
  cursor: pointer;
  display: inline-block;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffffff;
  width: 60px;
  height: 60px;
  line-height: 65px;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider .owl-nav .owl-prev:hover,
.main-slider .owl-nav .owl-next:hover{
  color:#ffffff;
  background-color:#1280b4;
  border: 2px solid #1280b4;
}

.main-slider .owl-theme .owl-controls .owl-nav [class*="owl-"]:hover {
  border: 1px solid #1280b4;
  color: #ffffff;
}

.main-slider .owl-theme .owl-controls{
  margin-top: 0px;
}

/** about-section **/

.about-section{
  position: relative;
  padding: 100px 0px 110px 0px;
  background: url(../images/svgs/cline_bottomright.svg) no-repeat bottom right;
}
.about-section .btn-style-one{
  text-transform: uppercase;
  padding: 13px 32px 12px 32px;
  background-color: #0574a8;
  color: #3cc1ff;
}

.about-section .btn-style-one:hover{
  background: #def4f7;
  color: #1280b4;
}
.video-gallery{
  text-align: center;
  position: relative;
  overflow: hidden;
}

.video-gallery:before{
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.60);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.video-gallery:hover:before{
  opacity: 1;
}

.video-gallery img {
  width: 100%;
}

.video-gallery .overlay-gallery {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 500ms ease;
}

.video-gallery .overlay-gallery .icon-holder{
  display: table;
  height: 100%;
  width: 100%;    
}

.video-gallery .overlay-gallery .icon-holder .icon{
  display: table-cell;
  vertical-align: middle;    
}

.video-gallery .overlay-gallery .icon-holder .icon a{
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 44px;
  color: #ffffff;
  margin: 0px;
}

.about-section .video-content{
  position: relative;
  margin-right: 10px;
}

.about-section .video-content .about-title{
  position: relative;
  margin-bottom: 20px;
  padding-top: 26px;
}

.about-section .video-content .about-title:before{
  position: absolute;
  content: '';
  background: #1280b4;
  width: 30px;
  height: 3px;
  left: 0px;
  top: 0px;
}

.about-section .video-content .about-title span{
  font-weight: 500;
}

.about-section .video-content .text p{
  margin-bottom: 31px;
}

.about-section .about-content .single-item{
  position: relative;
  padding: 3px 0px 0px 130px;
  margin-bottom: 61px;
}

.about-section .about-content .single-item .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
  background: transparent;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border: 1px solid #ebebeb;
  border-radius: 50%;
  text-align: center;
  transition: all 500ms ease;
}

.about-section .about-content .single-item .icon-box:before{
  position: absolute;
  content: '';
  border: 1px dashed #4c4c4c;
  width: 1px;
  height: 33px;
  left: 50%;
  bottom: -100%;
  margin-left: 0px;
  margin-bottom: 39px;
}

.about-section .about-content .single-item:last-child .icon-box:before{
  display: none;
}

.about-section .about-content{
  position: relative;
  margin-left: 38px;
  margin-top: 30px;
}

.about-section .about-content .single-item:last-child{
  margin-bottom: 0px;
}

.about-section .about-content .single-item:hover .icon-box{
  background: #1280b4;
  border: 1px solid #1280b4;
}

.about-section .about-content .single-item .icon-box i:before{
  position: relative;
  font-size: 45px;
  color: #222222;
  margin: 0px;
  transition: all 500ms ease;
}

.about-section .about-content .single-item:hover .icon-box i:before{
  color: #ffffff;
}

.about-section .about-content .single-item h4 a{
  display: inline-block;
  margin-bottom: 10px;
}

/** form-section **/

.form-section{
  position: relative;
  width: 100%;
  padding: 100px 0px 110px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

.form-section:before{
  position: absolute;
  content: '';
  background: rgba(18, 128, 180, 0.75);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.form-section .title-box .form-title h2{
  position: relative;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 2px;
  padding-top: 29px;
}

.form-section .title-box .form-title h2:before{
  position: absolute;
  content: '';
  background: #ffffff;
  width: 30px;
  height: 3px;
  left: 50%;
  margin-left: -25px;
  top: 0px;
}

.form-section .title-box .text{
  position: relative;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
}

.form-section .title-box{
  margin-bottom: 52px;
}

.form-section .form-content .form-group{
  position: relative;
  margin-bottom: 25px;
}
.form-section .form-content .form-group input[type='text'],
.form-section .form-content .form-group input[type='email'],
.form-section .form-content .form-group .ui-selectmenu-button.ui-button,
.form-section .form-content .form-group textarea{
  width: 100%;
  height: 52px;
  background: #ffffff;
  color: #666666;
  padding: 10px 20px;
  font-size: 14px;
  border: 1px solid #ffffff;
  border-radius: 0px;
  transition: all 500ms ease;
}

.form-section .form-content .form-group .ui-selectmenu-button.ui-button{
  padding: 17px 20px;
}

.form-section .form-content .form-group textarea{
  height: 150px;
  resize: none;
}

.form-section .form-content .form-group input:focus,
.form-section .form-content .form-group textarea:focus,
.form-section .form-content .form-group .ui-selectmenu-button.ui-button:focus{
  border: 1px solid #222222;
}

.ui-selectmenu-button .ui-icon {
  background: none;
  position: relative;
  top: -2px;
  right: 2px;
  text-indent: 0px;
  display: block;
  float: right;
}

.ui-selectmenu-button .ui-icon:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f107";
  position: absolute;
  right: 0px;
  top: 0px;
  display: block;
  color: #666666;
  line-height: 20px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  z-index: 5;
}

.form-section .form-content .form-group .btn-style-one{
  text-transform: uppercase;
  padding: 13px 32px 12px 32px;
}

.form-section .form-content .form-group .btn-style-one:hover{
  background: #ffffff;
  border: 2px solid #ffffff;
  color: #1280b4;
}

.form-section .call-content .call{
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: #ffffff;
  padding: 0px 0px 0px 22px;
}

.form-section .call-content .call a{
  color: #fff;
}

.form-section .call-content .call i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 18px;
  color: #ffffff;
}

.form-section .form-content{
  padding-bottom: 22px;
}

.form-section .img-column{
  position: absolute;
  left: 150px;
  bottom: 0px;
  background: url(../images/resources/1.png);
  width: 410px;
  height: 795px;
  background-repeat: no-repeat;
}


.service-section{
  position: relative;
}

.service-section .title-box{
  margin-bottom: 52px;
}

.overlay-box{
  position: relative;
}

.overlay-box .image-box{
  position: relative;
  overflow: hidden;
}

.overlay-box .image-box img{
  width: 100%;
}

.overlay-box .image-box .overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  padding: 0 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  opacity: 0;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  visibility: hidden;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  -moz-transform-origin: left top;
  transform-origin: left top;
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}

.overlay-box .image-box .overlay:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  display: block;
  visibility: hidden;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  background-color: rgba(0, 0, 0, 0.80);
}

.overlay-box:hover .overlay:before {
  opacity: 1;
  visibility: visible;
}

.overlay-box:hover .overlay {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}

.overlay-box .image-box .overlay .wrapper .list li{
  display: inline-block;
  margin: 0px 1px;
}

.overlay-box .image-box .overlay .wrapper .list a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0px 0px;
  background: #f2f2f2;
  color: #222222;
}

.overlay-box .image-box .overlay .wrapper .list a:hover{
  background: #1280b4;
  color: #ffffff;
}

.service-block-one{
  position: relative;
  background: #ffffff;
  transition: all 500ms ease;
}

.service-block-one .lower-content{
  padding: 43px 30px 49px 45px;
}

.service-block-one .lower-content h3 a{
  display: inline-block;
  margin-bottom: 14px;
}

.service-block-one .lower-content .text{
  position: relative;
  margin-bottom: 36px;
}

.service-section .owl-dots{
  display: none !important;
}

.owl-theme .owl-controls{
  text-align: center;
  margin-top: 70px;
}

.owl-theme .owl-controls .owl-nav [class*="owl-"]{
  margin: 0px 4px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border: 1px solid #cccccc;
  color: #666666;
  text-align: center;
}

.owl-theme .owl-controls .owl-nav [class*="owl-"]:hover{
  border: 1px solid #222222;
  color: #222222;
}

.owl-theme .owl-controls .owl-nav [class*="owl-"] span:before{
  font-size: 16px;
}

/** team-section **/

.team-section{
  position: relative;
  background: url(../images/svgs/hex_grad.svg) center center no-repeat;
}

.team-section .title-box{
  margin-bottom: 52px;
}

.single-team-content .wrapper .top-content h4 a{
  display: inline-block;
  position: relative;
  color: #ffffff;
  margin-bottom: 0px;
}

.single-team-content .wrapper .top-content span{
  position: relative;
  display: block;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  line-height: 18px;
}

.single-team-content .wrapper .top-content{
  margin-bottom: 21px;
}

.single-team-content .wrapper .text{
  position: relative;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 46px;
}

.team-section .link-btn{
  position: relative;
  display: block;
  margin-top: 60px;
}

.team-section .link-btn a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  border: 2px solid #222222;
  text-align: center;
  padding: 10px 28px;
}

.team-section .link-btn a:hover{
  color: #ffffff;
  background: #1280b4;
  border: 2px solid #1280b4;
}
.team-section .team-row{
  background: #ecf9ff82;
  padding: 1rem;
  flex-wrap: wrap;
}
.team-section .team-row .team-column{
  padding: 1rem;
  width: 300px;
}





/** call-to-action **/

.call-to-action{
  position: relative;
  width: 100%;
  padding: 63px 0px 69px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

.call-to-action:before{
  position: absolute;
  content: '';
  background: rgba(18, 128, 180, 0.90);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.call-to-action .call-content{
  position: relative;
  float: left;
  padding: 3px 0px 0px 65px;
}

.call-to-action .call-content .icon-box{
  position: absolute;
  left: 0px;
  top: 6px;
}

.call-to-action .call-content .icon-box i{
  position: relative;
  font-size: 60px;
  color: #ffffff;
}

.call-to-action .call-content .title{
  position: relative;
  font-size: 30px;
  line-height: 38px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1px;
}

.call-to-action .call-content .title a{
  font-size: 30px;
  line-height: 38px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #ffffff;
}

.call-to-action .call-content .text{
  position: relative;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}

.call-to-action .inner-content .link{
  position: relative;
  float: right;
  margin-top: 7px;
}

.call-to-action .inner-content .link .btn-style-one,
.main-slider .btn-style-one
{
  background-color: #73d0f8;
  color: #03131a;
  padding: 15px 30px;
}

.call-to-action .inner-content .link .btn-style-one:hover,
.main-slider .btn-style-one:hover
{
  background: #ffffff;
  color: #1280b4;
}
/* clients */
.clients{
  background: url(../images/svgs/trnas_circles.svg) no-repeat center center;
  background-size: cover;
}
.clients .container{
  background: #ffffff90;
}
.clients-carousel .owl-stage-outer{
  align-items: center;
  text-align: center;
  justify-content: center;
  display: flex;
}
.clients-carousel .owl-stage-outer .owl-item{
  border: 1px solid #cccccc;
  height: 60px;
}
.present-clients, .past-clients{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.present-clients> h4, .past-clients >h4{
  text-align: center;
  margin-bottom: 1rem;
  color: #737373;
}
.single-client
{
  height: 75px;
  width: 170px;
  border: 1px solid #cccccc;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  margin: 1rem auto;
}
.single-client small{
  font-weight: 600;
}
.present-clients .single-client{
  background-color: #bae7fc;
  box-shadow: 5px 5px 0px 0px #76a9bd;
}
.past-clients .single-client{
  background-color: #fcbad9;
  box-shadow: 5px 5px 0px 0px #ae7293;
}
.single-client:hover{
  background-color: #ffffff;
  box-shadow: 5px 5px 0px 0px #cccccc;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

/** main-footer **/

.main-footer{
  position: relative;
  background: #03131a;
  color: #999999;
}

.footer-top{
  position: relative;
  padding: 75px 0px 93px 0px;
  margin-top: 50px;
  background: url(../images/svgs/footer_wave.svg) no-repeat bottom center;
}

.footer-top .logo-widget{
  position: relative;
  margin-top: -8px;
}

.footer-top .logo-widget .footer-logo{
  position: relative;
  margin-bottom: 32px;
}

.footer-top .logo-widget .text{
  margin-bottom: 23px;
}

.footer-top .logo-widget .info-box li{
  position: relative;
  display: block;
  margin-bottom: 1px;
}

.footer-top .logo-widget .info-box li:last-child{
  margin-bottom: 0px;
}

.footer-top .logo-widget .info-box li a,
.footer-top .logo-widget .address{
  color: #cccccc;
}

.footer-top .logo-widget .info-box li a:hover{
  color: #1280b4;
}

.footer-top .logo-widget .address{
  line-height: 24px;
}

.footer-top .logo-widget .info-box{
  position: relative;
  margin-bottom: 24px;
}

.footer-top .footer-title h4{
  position: relative;
  color: #ffffff;
  font-weight: 500;
  padding-top: 9px;
  margin-bottom: 24px;
}

.footer-top .footer-title h4:before{
  position: absolute;
  content: '';
  background: #1280b4;
  width: 15px;
  height: 3px;
  left: 0px;
  top: 0px;
}

.footer-top .service-widget .service-list li{
  position: relative;
  display: block;
  padding: 0px 0px 0px 23px;
  margin-bottom: 4px;
}

.footer-top .service-widget .service-list li:before{
  position: absolute;
  left: 0px;
  top: 1px;
  content: "\f152";
  font-family: 'Font Awesome 5 Free';
  font-size: 12px;
  color: #1280b4;
  font-weight: 700;
}

.footer-top .service-widget .service-list li:last-child{
  margin-bottom: 0px;
}

.footer-top .service-widget .service-list li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: 'PT Sans', sans-serif;
  font-weight: 400;
  color: #999999;
}

.footer-top .service-widget .service-list li a:hover,
.footer-top .post-widget .post .text a:hover{
  color: #1280b4;
}

.footer-top .service-widget{
  margin-left: 27px;
}

.footer-top .post-widget .post{
  position: relative;
  margin-bottom: 33px;
}

.footer-top .post-widget .post:last-child{
  margin-bottom: 0px;
}

.footer-top .post-widget .post .text a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: 'PT Sans', sans-serif;
  color: #999999;
  margin-bottom: 8px;
}

.footer-top .post-widget .post .post-date{
  position: relative;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  color: #1280b4;
}

.footer-top .post-widget{
  margin-right: 15px;
}

.footer-top .newsletter-widget .text{
  margin-bottom: 26px;
}

.footer-top .newsletter-widget .newsletter-form .form-group{
  position: relative;
  margin-bottom: 40px;
}

.footer-top .newsletter-widget .newsletter-form .form-group input[type='email']{
  width: 100%;
  height: 52px;
  background: #ffffff;
  padding: 10px 50px 10px 20px;
  border: 2px solid #ffffff;
  transition: all 500ms ease;
}

.footer-top .newsletter-widget .newsletter-form .form-group input[type='email']:focus{
  border: 2px solid #1280b4;
}

.footer-top .newsletter-widget .newsletter-form .form-group button{
  position: absolute;
  top: 15px;
  right: 21px;
  background: transparent;
  font-size: 18px;
  color: #1280b4;
  cursor: pointer;
  transition: all 500ms ease;
}

.footer-top .newsletter-widget .newsletter-form .form-group input:focus + button,
.footer-top .newsletter-widget .newsletter-form .form-group button:hover{
  color: #1280b4 !important;
}

.footer-top .newsletter-widget .footer-social li{
  position: relative;
  float: left;
  margin-right: 4px;
}

.footer-top .newsletter-widget .footer-social li:last-child{
  margin-right: 0px;
}

.footer-top .newsletter-widget .footer-social li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #ffffff;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #27343a;
}

.footer-top .newsletter-widget .footer-social li a:hover{
  background: #1280b4;
}

.main-footer .footer-bottom{
  position: relative;
  padding: 41px 0px 45px 0px;
  border-top: 1px solid #252c2e;
}

/* contact */

.page-title{
  position: relative;
  width: 100%;
  padding: 200px 0px 0px 0px;
  background-size: cover;
  margin-bottom: 18px;
  background-repeat: no-repeat;
}

.page-title:before{
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.30);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.page-title .content-box .title{
  position: relative;
  display: block;
  font-size: 48px;
  font-family: 'Poppins', sans-serif;
  line-height: 55px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 42px;
}

.page-title .content-box .bread-crumb{
  position: relative;
  display: inline-block;
  background: #ffffff;
  padding: 19px 40px;
  margin-bottom: -18px;
  box-shadow: 0 5px 10px rgba(46, 46, 46, 0.6);
  z-index: 1;
}

.page-title .content-box .bread-crumb li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #222222;
  margin-right: 10px;
  padding-right: 21px;
}

.page-title .content-box .bread-crumb li a{
  font-size: 14px;
  color: #222222;
}

.page-title .content-box .bread-crumb li a:hover{
  color: #1280b4;
}

.page-title .content-box .bread-crumb li:last-child{
  padding: 0px;
  margin: 0px;
}

.page-title .content-box .bread-crumb li:before{
  font-family: 'Font Awesome 5 Free';
  content: "\f105";
  position: absolute;
  right: 0px;
  top: 1px;
  color: #666;
  font-size: 16px;
  font-weight: 600;
}

.page-title .content-box .bread-crumb li:last-child:before{
  display: none;
}

/* about us */


.feature-section{
  position: relative;
  padding: 50px 0px 45px 0px;
}

.feature-block-one{
  position: relative;
  padding: 50px 30px 51px 30px;
  background: #ffffff;
  transition: all 500ms ease;
}

.feature-section .feature-column{
  position: relative;
}

.feature-section .feature-column:before{
  position: absolute;
  content: '';
  border: 1px dashed #4c4c4c;
  width: 57px;
  height: 1px;
  top: 100px;
  right: 0px;
  margin-right: -25px;
  z-index: 1;
}

.feature-section .feature-column:last-child:before{
  display: none;
}

.feature-block-one .icon-box{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border: 1px solid #ececec;
  border-radius: 50%;
  margin-bottom: 43px;
  box-shadow: 0 10px 10px rgba(236, 236, 236, 0.30);
  transition: all 900ms ease;
}

.feature-block-one:hover .icon-box{
  border: 1px solid #1280b4;
}

.feature-block-one .icon-box:before {
  content: '';
  position: absolute;
  background: transparent;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  transform: scale(0,0);
  transition: .5s ease;
}

.feature-block-one:hover .icon-box:before {
  transform: scale(1);
  background: #1280b4;
}

.feature-block-one .icon-box i:before{
  position: relative;
  font-size: 45px;
  color: #1280b4;
  margin: 0px;
  transition: all 500ms ease;
}

.feature-block-one:hover .icon-box i:before{
  color: #ffffff;
}

.feature-block-one .lower-content h3 a{
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 27px;
}

.feature-block-one .lower-content h3 a:before{
  position: absolute;
  content: '';
  background: #cccccc;
  width: 30px;
  height: 3px;
  left: 50%;
  margin-left: -25px;
  bottom: 0px;
  transition: all 500ms ease;
}


.service-section{
  position: relative;
}

.service-section .title-box{
  margin-bottom: 52px;
}

.overlay-box{
  position: relative;
}

.overlay-box .image-box{
  position: relative;
  overflow: hidden;
}

.overlay-box .image-box img{
  width: 100%;
}

.overlay-box .image-box .overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  padding: 0 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  opacity: 0;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  visibility: hidden;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  -moz-transform-origin: left top;
  transform-origin: left top;
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}

.overlay-box .image-box .overlay:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  display: block;
  visibility: hidden;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  background-color: rgba(0, 0, 0, 0.80);
}

.overlay-box:hover .overlay:before {
  opacity: 1;
  visibility: visible;
}

.overlay-box:hover .overlay {
  opacity: 1;
  visibility: visible;
  -moz-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}

.overlay-box .image-box .overlay .wrapper .list li{
  display: inline-block;
  margin: 0px 1px;
}

.overlay-box .image-box .overlay .wrapper .list a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0px 0px;
  background: #f2f2f2;
  color: #222222;
}

.overlay-box .image-box .overlay .wrapper .list a:hover{
  background: #1280b4;
  color: #ffffff;
}

.service-block-one{
  position: relative;
  background: #ffffff;
  transition: all 500ms ease;
}

.service-block-one .lower-content{
  padding: 43px 30px 49px 45px;
}

.service-block-one .lower-content h3 a{
  display: inline-block;
  margin-bottom: 14px;
}

.service-block-one .lower-content .text{
  position: relative;
  margin-bottom: 36px;
}

.service-section .owl-dots,
.clients-carousel .owl-dots
{
  display: none !important;
}

.owl-theme .owl-controls{
  text-align: center;
  margin-top: 70px;
}

.owl-theme .owl-controls .owl-nav [class*="owl-"]{
  margin: 0px 4px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border: 1px solid #cccccc;
  color: #666666;
  text-align: center;
}

.owl-theme .owl-controls .owl-nav [class*="owl-"]:hover{
  border: 1px solid #222222;
  color: #222222;
}

.owl-theme .owl-controls .owl-nav [class*="owl-"] span:before{
  font-size: 16px;
}


/** our-protection **/

.our-protection{
  position: relative;
}

.our-protection .title-box{
  margin-bottom: 86px;
}

.our-protection .inner-content{
  position: relative;
  margin: 0px -60px;
}

.our-protection .inner-content .single-item{
  position: relative;
  margin-bottom: 70px;
}

.our-protection .inner-content .single-item:last-child{
  margin-bottom: 0px;
}

.our-protection .inner-content .single-item .icon-box{
  position: absolute;
  top: 6px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #1280b4;
  text-align: center;
  border-radius: 50%;
  transition: all 500ms ease;
}

.our-protection .inner-content .single-item:hover .icon-box{
  background: #222222;
}

.our-protection .inner-content .left-column .single-item{
  padding: 0px 0px 0px 100px;
}

.our-protection .inner-content .left-column .single-item .icon-box{
  left: 0px;
}

.our-protection .inner-content .right-column .single-item{
  padding: 0px 100px 0px 0px;
  text-align: right;
}

.our-protection .inner-content .right-column .single-item .icon-box{
  right: 0px;
}

.our-protection .inner-content .single-item .icon-box i:before{
  position: relative;
  font-size: 28px;
  color: #ffffff;
  margin: 0px;
}

.our-protection .inner-content .single-item h4 a{
  display: inline-block;
  margin-bottom: 6px;
}

.our-protection .inner-content .image-box{
  position: relative;
  text-align: center;
  margin-top: 3px;
}

.our-protection .inner-content:before{
  position: absolute;
  content: '';
  background: url(../images/background/map.png);
  width: 1000px;
  height: 530px;
  left: 100px;
  top: -60px;
  background-repeat: no-repeat;
}


.contact-section{
  position: relative;
}

.contact-section .title-box .title h2{
  position: relative;
  display: block;
  line-height: 46px;
  padding-top: 25px;
  margin-bottom: 58px;
}

.contact-section .title-box .title h2 span{
  font-weight: 500;
}

.contact-section .title-box .title h2:before{
  position: absolute;
  content: '';
  background: #1280b4;
  width: 30px;
  height: 3px;
  left: 50%;
  margin-left: -25px;
  top: 0px;
}

.contact-section .contact-info{
  position: relative;
  background: #1280b4;
  color: #ffffff;
  padding: 45px 30px 50px 46px;
}

.contact-section .contact-info .title h3{
  position: relative;
  display: block;
  color: #ffffff;
  padding-top: 11px;
  margin-bottom: 26px;
}

.contact-section .contact-info .title h3:before{
  position: absolute;
  content: '';
  background: #ffffff;
  width: 30px;
  height: 3px;
  left: 0px;
  top: 0px;
}

.contact-section .contact-info .single-info h5{
  color: #ffffff;
  line-height: 25px;
}

.contact-section .contact-info .single-info .text a{
  color: #fff;
}

.contact-section .contact-info .single-info{
  margin-bottom: 25px;
}

.contact-section .contact-info .social li{
  position: relative;
  float: left;
  margin-right: 4px;
}

.contact-section .contact-info .social li:last-child{
  margin-right: 0px;
}

.contact-section .contact-info .social li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #222222;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #f2f2f2;
  text-align: center;
}

.contact-section .contact-info .social li a:hover{
  background: #222222;
  color: #ffffff;
}

.contact-section .contact-info .info-box{
  position: relative;
  display: block;
  padding-bottom: 14px;
}

.contact-section .contact-form-area .form-group{
  position: relative;
  margin-bottom: 20px;
}

.contact-section .contact-form-area .form-group:last-child{
  margin-bottom: 0px;
}

.contact-section .contact-form-area .form-group input[type='text'],
.contact-section .contact-form-area .form-group input[type='email'],
.contact-section .contact-form-area .form-group textarea{
  width: 100%;
  height: 62px;
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
  padding: 15px 20px;
  transition: all 500ms ease;
}

.contact-section .contact-form-area .form-group textarea{
  height: 230px;
  resize: none;
}

.contact-section .contact-form-area .form-group input:focus,
.contact-section .contact-form-area .form-group textarea:focus{
  border: 1px solid #1280b4;
}

.contact-section .contact-form-area .form-group button{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #222222;
  border: 2px solid #222222;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  padding: 13px 45px 12px 45px;
  transition: all 500ms ease;
}

.contact-section .contact-form-area .form-group button:hover{
  background: #1280b4;
  border: 2px solid #1280b4;
  color: #ffffff;
}

.contact-section .contact-form-area .form-group .contact-btn{
  position: relative;
  float: right;
  padding-top: 4px;
}

/** google-map-section **/

.google-map-section{
  position: relative;
}

#contact-google-map{
  position: relative;
  width: 100%;
  height: 600px;
}




/** service-details **/

.service-details{
  position: relative;
  padding: 77px 0px 95px 0px;
}

.service-details .service-sidebar-content{
  position: relative;
  margin-right: 10px;
  margin-top: 5px;
}

.sidebar-title h4{
  display: block;
  margin-bottom: 19px;
}

.sidebar-categories{
  position: relative;
  display: block;
  background: #f7f7f7;
  padding: 44px 30px 47px 45px;
  margin-bottom: 40px;
}

.sidebar-categories .categories-list li{
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.sidebar-categories .categories-list li:last-child{
  margin-bottom: 0px;
}

.sidebar-categories .categories-list li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: 'PT Sans', sans-serif;
  color: #666666;
  padding: 0px 0px 0px 25px;
}

.sidebar-categories .categories-list li a:before{
  position: absolute;
  content: "\f115";
  font-family: 'flaticon';
  font-size: 14px;
  left: 0px;
  top: 0px;
  color: #222222;
  transition: all 500ms ease;
}

.sidebar-categories .categories-list li a:hover,
.sidebar-categories .categories-list li a:hover:before,
.sidebar-categories .categories-list li.active a,
.sidebar-categories .categories-list li.active a:before{
  color: #1280b4;
}

.sidebar-call{
  position: relative;
  display: block;
  border: 2px solid #1280b4;
  padding: 66px 30px 52px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
}

.sidebar-call .icon-box{
  margin-bottom: 14px;
}

.sidebar-call .icon-box i:before{
  position: relative;
  font-size: 60px;
  color: #1280b4;
  margin: 0px;
}

.sidebar-call .text{
  position: relative;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  color: #222222;
  font-weight: 400;
  margin-bottom: 18px;
}

.sidebar-call .phone{
  position: relative;
  font-size: 28px;
  line-height: 35px;
  font-family: 'Poppins', sans-serif;
  color: #222222;
  font-weight: 700;
  margin-bottom: 1px;
}

.sidebar-call .phone a{
  color: #222;
}

.sidebar-call .phone a:hover,
.sidebar-call .email a:hover{
  color: #1280b4;
}

.sidebar-call .email{
  position: relative;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  color: #222222;
  font-weight: 400;
  margin-bottom: 36px;
}

.sidebar-call .email a{
  color: #222;
}

.sidebar-call .link a{
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #222222;
  border: 2px solid #222222;
  padding: 10px 30px;
}

.sidebar-call .link a:hover{
  color: #ffffff;
  border: 2px solid #1280b4;
  background: #1280b4;
}

.service-details .service-details-content .content-style-one .title{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-family: 'Poppins', sans-serif;
  color: #222222;
  font-weight: 600;
  padding-bottom: 21px;
  margin-bottom: 32px;
}

.service-details .service-details-content .content-style-one .title:before{
  position: absolute;
  content: '';
  background: #cccccc;
  width: 30px;
  height: 3px;
  left: 0px;
  bottom: 0px;
}

.service-details .service-details-content p{
  margin-bottom: 46px;
}

.service-details .service-details-content .content-style-one .image-box{
  position: relative;
  margin-bottom: 42px;
}

.service-details .service-details-content .image-box img{
  width: 100%;
}

.service-details .service-details-content .content-style-two .inner-content .text{
  margin: -6px 0px 0px 0px;
}

.service-details .service-details-content .content-style-two .inner-content .text p{
  margin-bottom: 26px;
}
.service-details .service-details-content .content-style-two .inner-content .text p:last-child{
  margin-bottom: 0px;
}

.service-details .service-details-content .content-style-two .inner-content{
  margin-bottom: 38px;
}
.service-details-content .inner-content ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.service-details-content .inner-content ul>li{
  font-size: small;
  margin: 5px;
  padding: 0.5rem 1rem;
  background: #19389e;
  color: #7ed2f8;
}


/** project-section **/

.project-section{
  position: relative;
  padding: 110px 0px;
}

.project-section .title-box{
  position: relative;
  display: block;
  margin-bottom: 44px;
}

.project-section .title-box h6{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  padding-top: 22px;
  margin-bottom: 9px;
}

.project-section .title-box h6:before{
  position: absolute;
  content: '';
  background: #6bc7f2;
  height: 3px;
  width: 30px;
  left: 50%;
  transform: translateX(-50%);
  top: 0px;
}

.project-section .title-box h2{
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 17px;
}

.project-section .masonry-item{
  padding: 0px 0px;
}

.project-block-one .inner-box{
  position: relative;
  display: block;
}

.project-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
}

.project-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.project-block-one .inner-box:hover .image-box img{
  opacity: 0.2;
}

.project-block-one .inner-box .content-box{
  position: absolute;
  left: 0;
  top: 0;
  /* transform: translate(-50%,-50%); */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 15px;
}

.project-block-one .inner-box .content-box .view-btn{
  position: relative;
  margin-bottom: 33px;
  transform: translateY(-15px);
  transition: all 500ms ease
}

.project-block-one .inner-box:hover .content-box .view-btn{
  transform: translateY(0px);
}

.project-block-one .inner-box .content-box .view-btn a{
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 30px;
  color: #6bc7f2;
  opacity: 0;
}

.project-block-one .inner-box .content-box .view-btn a:hover{
  color: #fff;
}

.project-block-one .inner-box:hover .content-box .view-btn a{
  opacity: 1;
}

.project-block-one .inner-box .content-box .box h3{
  position: relative;
  display: block;
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 7px;
}

.project-block-one .inner-box .content-box .box a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-family: 'PT Sans', sans-serif;
  color: #6bc7f2;
  font-weight: 600;
  margin: 0px;
}

.project-block-one .inner-box .content-box .box a:hover{
  text-decoration: underline;
}

.project-block-one .inner-box .content-box .box{
  position: relative;
  transform: translateY(15px);
  opacity: 0;
  transition: all 500ms ease;
}

.project-block-one .inner-box:hover .content-box .box{
  opacity: 1;
  transform: translateY(0px);
}

.project-section .filters{
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.project-section .filters .filter-btns li{
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #222;
  text-transform: uppercase;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  text-align: center;
  padding: 7px 30px;
  cursor: pointer;
  margin: 0px 5px;
  transition: all 500ms ease;
}

.project-section .filters .filter-btns li.active,
.project-section .filters .filter-btns li:hover{
  color: #fff;
  background: #14437b;
  border-color: #14437b;
}
.video .inner-box{
  position: relative;
  display: block;
  background: #77777790;
}
.video .video-btn{
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  transition: all 500ms ease;
}
.video .video-btn > i{
  padding: 2rem;
  border: 2px solid transparent;
  border-radius: 50%;
}
.video a:hover .video-btn{
  background: #070e26b3;
}
.video a:hover .video-btn > i{
  border: 2px solid #fff;
}

.brand-style-two{
  position: relative;
  padding: 100px 0px;
}

.brand-style-two .clients-logo{
  position: relative;
  display: block;
  border: 1px solid #e4eaf0;
  transition: all 500ms ease;
}

.brand-style-two .clients-logo:hover{
  border-color: #fb6e1a;
}

.brand-style-two .clients-logo img {
  display: block;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.brand-style-two .clients-logo:hover img {
  
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
}

.brand-style-two .owl-theme .owl-controls{
  margin: 0px;
}
