* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Vidaloka", serif;
    font-weight: 600;
    line-height: 1.6;
}
img{
  max-width:100%;
}
p {
    font-size: 16px;
    color: #a6a3a3;
    font-weight: 500;
    line-height: 1.7;
    padding-top: 10px;
}
.explore-btn a{
    background: #00abff;
  padding: 20px 35px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;

}
.explore-btn a:hover{
  background: #0487c8;
  color: #fff;
}

/***************** header **************/
.main_logo {
  max-width: 180px;
}
.header-wrap {
  display: flex;
  background: transparent;
  justify-content: space-between;
  padding: 20px 0 10px 0px;
  position: fixed;
  z-index: 2;
  left: 0;
  right: 0;
  width: 100%;
  transition: 0.3s;
}
.header-wrap.darkHeader {
  background: #2b2e31;
  padding: 0;
}
.menu-center ul {
    display: flex;
}

.menu-center ul li {
    list-style: none;
    position: relative;
}
.right_bar ul li:last-child {
  padding-right: 0;
}
.menu-center ul li a {
  padding: 0 20px !important;
  list-style: none;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.menu-center ul li a:focus, .menu-center ul li a:hover {
  color: #b7b7b7;
}
.drag-child ul li {
    padding: 5px 15px;
    font-size: 17px;
    font-weight: 500;
}

.menu_bar .drag-child ul li {
    color: #fff;
}

.menu_bar .drag-child ul {
    position: absolute;
    left: 0;
    margin: 2px 0 0 0;
    top: 100%;
    display: none;
    background: #c1bfbf;
    padding: 15px 10px;
}

.drag-child:hover ul {
    display: block;
}

.right_bar ul {
    display: flex;
    list-style: none;

}

.right_bar ul li {
    padding-right: 20px;
    color: #fff;
}

.right_bar ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding-left: 20px;
}
header .navbar-toggler {
  background: #fff;
  transform: rotate(90deg);
  width: 40px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/***************** banner **************/
.banner {
    background: url(../images/slide-1.webp)no-repeat scroll center / cover;
    height: 500px;
    position: relative;
    z-index: 1;
    min-height: 700px;
    display: flex;
    align-items: center;
}
.banner::after {
    content: "";
    background: rgba(0, 99, 138, 0.7);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
.banner::before {
    background: rgb(0, 0, 0);
    /*! z-index: 1; */
}
.content_box .title h1 {
  font-size: 80px;
  color: #fff;
  font-family: "Vidaloka", serif;
  font-weight: 600;
  line-height: 1;
}
.content_box .btn_w a {
    color: #fff;
    border: 2px solid #fff;
    padding: 20px 35px 20px 35px;
    display: inline-block;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
}
.content_box .btn_w a:hover {
    background: #fff;
    color: #0487c8;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

/************** number column **********/
.num_clm {
    padding: 4rem 0;
    background: #f7f7f7;
}

.col_one {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.col_one .number span {
    background: #00abff;
    padding: 25px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.number {
    padding: 25px 18px 0 0;
}

.col_one .content {
    text-align: left;
}

.col_one .content h3 {
    font-size: 22px;
    font-family: "Vidaloka", serif;
    font-weight: 600;
    line-height: 1.4;
    color: #232324;
}

.col_one .content p {
    color: #9b9191;
    font-size: 16px;
    line-height: 1.5;
    font-family: initial;
}

/************** Tecnical banner **********/
.technical_banner {
    margin: 7rem 0;
}

.row .banner-data .t_head {
    padding: 5rem 0px 2rem 0;
    position: relative;
}
.technical_banner .t_head .b_line {
  width: 60px;
  position: absolute;
  left: 0;
}

.row .banner-data .t_head h1 {
    font-size: 41px;
    font-weight: 700;
    font-family: "Vidaloka", serif;
    line-height: 1.2;
}

.row .banner-data .t_head p {
    font-size: 16px;
    color: #e0e0e0;
    font-weight: 500;
    line-height: 1.7;
    padding-top: 10px;
}

.technical_banner .row .a {}

.row .banner-data a {
    background: #00abff;
    padding: 20px 35px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.row .banner-data a:hover {
    background: #0487c8;
    transition: all 0.3s ease;
}

.banner-img .img_wrap img {
    padding: 0px 0px 0px 50px;
}
.b_line {
  position: absolute;
  content: '';
  height: 1px;
  background: #0487c8;
  width: 60px;
  left: 48%;
}
/************** Tecnical banner  end**********/

/************** section icon **********/

.icons_part.cmn_content .icon img {
  width: 30px;
  object-fit: cover;
}
.text_area.d-flex.justify-content-center.f-direction-column {
    flex-direction: column;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.text_area .title_head h1 {
    font-weight: 700;
    font-size: 50px;
}

.section {
    padding-bottom: 3rem;
}

.section_service {
    flex-wrap: wrap;
    padding: 2rem 0;
}

.section_service .icons_part {
    padding: 15px 15px 30px 20px;
}

.title_head {
    padding-bottom: 10px;
}

.cmn_content h3 {
    font-size: 25px;
    font-weight: 600;
}

.title_head .b_line {
    width: 60px;
}

.cmn_content p {
    color: #b0adad;
}

.icons_part .cmn_content a {
    color: #848484;
    text-decoration: none;
    font-size: 14px;
}

.icons_part .cmn_content a:hover {
    color: #0487c8;
}
.icons_part img {
  width: 40px;
}
/************** section icon **********/

/************** testimonial **********/
.sec-testi {
    flex-direction: column;
    z-index: 1;
}
.testimonial .testi_wrap {
  z-index: 1;
}

.testimonial::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
}

.testimonial {
  background: url(../images/testimonial-banner.webp)no-repeat scroll center /cover;
  min-height: 450px;
  position: relative;
  object-fit: cover;
  z-index: 1;
  padding: 5rem 0;
}

.testimonial p {
  color: #fff;
  font-size: 24px;
  max-width: 826px;
  margin: 15px auto;
  text-align: center;
  font-family: Vidaloka;
  font-weight: 600;
  line-height: 1.3;
  padding: 15px 0;
}
.testimonial span {
    color: #fff;
    padding-top: 10px;
    font-size: 14px;
}
/*8888888888888 choose section 88888888888888*/

.section_choose {
  padding: 3rem 0;
}
.choose-us .image-box {
  padding-right: 30px;
}
.choose-us.data-box {
  padding: 3rem 0;
}
.choose-us.data-box .title h2 {
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 15px;
}
.choose-us.data-box .row.d-flex {
  flex-wrap: wrap;
  justify-content: ;
}
.choose-us .data-box {
  padding: 5rem 0;
}
.choose-us.data-box .col-12.col-lg-6 {
  padding: 20px 0;
}
.choose-us .data-box .title {
  position: relative;
  padding-bottom: 0;
}
.data-box .cmn_content h3 {
  font-size: 25px;
  font-weight: 600;
}

/*8888888888888 Lattest section 88888888888888*/

.menu-works {
  padding: 2rem 0;
}
.menu-works ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}
.menu-works ul li a {
  padding-right: 25px;
  font-size: 10px;
  color: #767676;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
}
.menu-works ul li :hover {
  color: #0487c8;
}
.section-head .title {
  position: relative;
  padding-bottom: 15px;
}
.section-head .title h1 {
  font-weight: 800;
}
.b_line {
  width: 40px;
  position: absolute;
  height: 2px;
}
.section-lattest .img-wrp {
  overflow: hidden;
  border-radius: 20px;
}
.section-lattest .img-wrp img {
  transition: 1s;
  object-fit: cover;
}
.section-lattest .img-wrp img:hover {
  transform: scale(1.2) rotate(10deg);
}

/***************** ****************/
.popup-section {
  background: url(../images/video-banner.webp)no-repeat scroll center / cover;
  min-height: 450px;
  margin: 5rem 0;
  z-index: 1;
  position: relative;
}
.popup-section::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(134, 38, 0, 0.7);
  z-index: -1;
}
.pop-up {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
   z-index: 1;
}

.pop-up p {
  color: #fff;
  font-size: 35px;
  font-weight: 800;
  font-family: "Vidaloka", serif;
  line-height: 1.5;
}
/************** blogs section *********/
.blog_sect {
  padding: 5rem 0;
}
.title_head h2 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Vidaloka", serif;
  padding-bottom: 15px;
}
.blog_sect .blog p {
  font-size: 14px;
  line-height: 1.9;
}

.blog_sect .title_head {
  position: relative;
}
.blog_sect .title_head .b_line {
  position: absolute;
  left: 0;
  height: 1px;
}
.blog .explore-btn {
  padding-top: 20px;
}
.blog_sect .blog {
  padding: 30px 30px 0 0;
}
.blog_sect .section-image .cmn_box {
  background: #ffffff;
  box-shadow: 9px 15px 12px #f0f0f0;
  height: 100%;
}
.section-image {
  height: 100%;
}
.blog_sect .section-image .cmn_box .blog-cont {
  text-align: center;
  padding: 15px;
}
.blog_sect .section-image .cmn_box .blog-cont a {
  text-decoration: none;
}
.blog_sect .section-image .cmn_box .blog-cont a h3 {
  font-size: 24px;
  font-weight: 600;
  padding: 10px 0 0 0;
  color: #333;
}
.blog_sect .section-image .cmn_box .blog-cont a h3:hover {
  color: #0487c8;
}
.blog_sect .section-image .cmn_box .blog-cont p {
  font-size: 15px;
  padding-bottom: 0;
}
.section-image .img-wrap {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.section-image .img-wrap a img {
  width: 100%;
  transition: 1s;
  object-fit: cover;
}
.section-image .img-wrap a img:hover{
  transform: scale(1.5) ;
}


/************** blogs section end *********/

/************** Items section *********/


.items_section {
  padding: 3rem 0;
}
.items_section .img_wp a img {
  filter: invert(76%) sepia(68%) saturate(5%) hue-rotate(228deg) brightness(91%) contrast(94%);
} 

.items_section .img_wp a img:hover {
  filter: invert(75%) sepia(14%) saturate(5784%) hue-rotate(201deg) brightness(93%) contrast(86%);
}
/************** items  section *********/

/************** form  section *********/

form {
  padding: 2rem 0;
}
.section_form {
  min-height: 480px;
  margin: 5rem 0;
  background: #f7f7f7;
  overflow: hidden;
}
.section_form .form-input {
  padding: 4rem 40px;
}
.form-image  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section_form .contact-head .b_line {
  left: 45%;
}

.section_form .contact_form {
  display: flex;
  flex-wrap: wrap;
}
.contact_form .entry-row {
  margin: 1rem 0;
}

.form_edit {
  border: 0;
  border-bottom: 1px solid #ddd;
  background: none;
  font-size: 15px;
  font-weight: 600;
}
.contact_form .msg-row .form_edit {
  width: 100%;
  padding: 30px 0;
}
/************** form  section *********/

/************* footer **********/

footer {
  background: #000;
  padding: 5rem 0 0 0;
}
.footer_wrap .cmn-clm {
  color: #888888;
}
.footer_wrap .col-lg-3 .cmn_box .title h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.cmn_box .data p {
  color: #888888;
  line-height: 1.9;
}

.agency li:not(:last-child) a {
  padding-right: 25px;
}
.agency li a {
  color: #888888;
  font-size: 15px;
}
.cmn_box .data p {
  color: #888888;
  line-height: 2;
}
.company li {
  padding: 10px 0;
  transition: 0.6s;
}
.company li:hover {
  color: #fff;
}
.insta {
  padding-top: 10px;
}
.insta li {
  width: 50%;
}
.insta li a {
  display: inline-block;
}
.insta li a img {
  width: 100%;
}
.post li {
  padding: 8px 0;
  transition: 0.6s;
}
.post li:hover{
  color: #fff;

}
.copyright {
  border-top: 1px solid #444;
}
.copyright p {
  font-size: 12px;
}

/************* footer **********/


/************* Responsive **********/
@media(max-width: 1199px){

}

@media(max-width: 991px){
  header #navbarSupportedContent {
    background: #2b2e31;
    padding: 20px;
  }
  .row .banner-data .t_head {
    padding-top: 0;
  }
  .section-image {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .banner-img .img_wrap img {
    padding: 2rem 0 0 0;
  }
}

@media(max-width: 767px){
  .content_box .title h1 {
    font-size: 3rem;
    line-height: normal;
    margin-bottom: 2rem;
  }
  .banner {
    min-height: 400px;
  }

  .section-lattest .img-wrp {
    text-align: center;
  }
  .popup-section {
    min-height: auto;
    margin-bottom: 0;
  }

  .items_section {
    padding: 0;
  }
  .choose-us .image-box {
    padding-right: 0;
    text-align: center;
  }
}