/*-------------------------------------
    Template Name: DESIGNING NEPAL
    Author: AAKASH KHANAL ( ANANTA RAJ KHANAL )
---------------------------------------
    
    CSS INDEX
    ===================
	
    1. GLOBAL
	2. HEADER PART
	    NAVIGATION PART
	
	3. FOOTER PART
	    CONTACT US FORM PART
	    CONTACT PART
	
	4. NAVIGATION
	5. SLIDER
	6. ABOUT HOROSCROP
	7. CHOOSE YOUR ZODIAC SIGN
	8. OUR SERVICES
	9. TODAY SLIDER
	10. LATEST NEWS
	11. WHAT CLIENTS ARE SAYING
	12. TESTIMONIAL SLIDER
	13. CLIENT SLIDER
	14. SPEAK TO OUR EXPERT
	15. FOOTER


/*========================================================================
1. GLOBAL CSS
=========================================================================*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
    margin:0;
    padding:0;
}
.mt8{
  margin-top:80px
}
h1,h2,h3,h4,h5,h6,
.h1, .h2, .h3, .h4, .h5, .h6{
  font-family: "Outfit", sans-serif;
}
body{
  font-family: "Questrial", sans-serif;
  margin:0;
}
img{
    max-width:100%;
    height:auto;
}

.pb8{
  padding-bottom: 80px;
}
.pt8{
  padding-top: 80px;
}
.mb8{
    margin-bottom:80px
}
.mt4{
    margin-top:40px;
}
.mb4{
    margin-bottom:40px;
}

.nopad{
  padding: 0;
}
.white{
  background-color: #fff !important;
}
.black{
  background-color:#000 !important;
}
.grey-light{
  background-color: #fafbfc !important;
}
.pt5{
    padding-top:50px;
}

/*========================================================================
2. PRELOADER STYLE
=========================================================================*/
#preloader {
      position: fixed;
      inset: 0;
      background: #0a0a0a;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.6s ease;

}


/*========================================================================
3. HEADER PART
=========================================================================*/
/*--------------
NAVIGATION PART
--------------------------*/

.start-header {
  opacity: 1;
  transform: translateY(0);
  padding: 20px 0;
  box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.start-header.scroll-on {
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  padding: 10px 0;
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.start-header.scroll-on .navbar-brand img{
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.navigation-wrap{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.navbar{
  padding: 0;
}
.navbar-brand img{
  height: auto;
  width: auto;
  display: block;
 /* filter: brightness(10%);*/
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.navbar-toggler {
  float: right;
  border: none;
  padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
  outline: none;
}
.navbar-light .navbar-toggler-icon {
  width: 24px;
  height: 17px;
  background-image: none;
  position: relative;
  border-bottom: 1px solid #000;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after, 
.navbar-light .navbar-toggler-icon:before{
  width: 24px;
  position: absolute;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 0;
  content: '';
  z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
  top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}
.start-header .nav-link{
  color: #018052 !important;
  font-weight: 500;
    transition: all 200ms linear;
}
.nav-item:hover .nav-link{
  color: #8167a9 !important;
}
.nav-item.active .nav-link{
  color: #018052 !important;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover{
  color: #03e391 !important;
}
.nav-link {
  position: relative;
  padding: 5px 0 !important;
  display: inline-block;
    font-size: 15px;
    font-weight: 600;
}

.nav-item{
  position: relative;
    transition: all 200ms linear;
}


/* #Media
================================================== */
@media (min-width:768px){
    .navbar-nav li:hover .dropdown-menu {
    display: block;
}
}
@media (max-width: 767px) { 
  .nav-item:after{
    display: none;
  }
  .start-header .nav-item::before {
    position: absolute;
    display: block;
    top: 15px;
    left: -25px;
    width: 11px;
    height: 1px;
    content: "";
    border: none;
    background-color: #000;
    vertical-align: 0;
  }
  .dropdown-toggle::after {
    position: absolute;
    display: block;
    top: 10px;
    left: -23px;
    width: 1px;
    height: 11px;
    content: "";
    border: none;
    background-color: #000;
    vertical-align: 0;
    transition: all 200ms linear;
  }
  .dropdown-toggle[aria-expanded="true"]::after{
    transform: rotate(90deg);
    opacity: 0;
  }
  .dropdown-menu {
    padding: 0 !important;
    background-color: transparent;
    box-shadow: none;
    transition: all 200ms linear;
  }
  .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }
}

/*========================================================================
4. FOOTER  PART
=========================================================================*/

/*--------------
CONTACT US FORM PART
--------------------------*/

/*contact us*/
/*---------------------------------------------*/
.quick_contact h2,.quick_contact h3,.quick_contact h4,.quick_contact h5,.quick_contact h6{
	color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 35px;
    letter-spacing: 1px;
}
.quick_contact .label-input100{
	color:#ccc;
}
.quick_contact .wrap-input100 #message{
	color:#ccc;
	line-height:30px;
}

.contact-bg {
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
    background-attachment:fixed;
    position:relative;
}
.contact-bg:before{
        background-color: rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.7);
    color: rgba(0, 0, 0, 0.7);
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.widget h3{
    color: #000;
    font-size: 26px;
    margin-bottom: 50px;
    font-weight: 500;
    }
    .quick-links li{
        list-style:none;
        line-height: 2.5;
    }
    .quick-links li a{
        list-style:none;
        color: #000 !important;
        font-family: "Inter", Sans-serif;
        font-size: 1.3em;
    }

.list-item i{
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: #fad02b;
    text-align: center;
}

.form-group p{
    margin:0;
}
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: #E6E6E6 !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #adadad;}
input:-moz-placeholder { color: #adadad;}
input::-moz-placeholder { color: #adadad;}
input:-ms-input-placeholder { color: #adadad;}

textarea::-webkit-input-placeholder { color: #adadad;}
textarea:-moz-placeholder { color: #adadad;}
textarea::-moz-placeholder { color: #adadad;}
textarea:-ms-input-placeholder { color: #adadad;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ utility ]*/

/*==================================================================
[ Text ]*/
.txt1 {
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  display:block;
}

.txt2 {
  font-size: 15px;
  line-height: 1.6;
  color: #999999;
}

.txt3 {
  font-size: 15px;
  line-height: 1.6;
  color: #00ad5f;
}

/*==================================================================
[ Size ]*/
.size1 {
  width: 355px;
  max-width: 100%;
}

.size2 {
  width: calc(100% - 43px);
}


/*//////////////////////////////////////////////////////////////////
[ Contact ]*/

.container-contact100 {
  width: 40%;  
  min-height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
}

.wrap-contact100 {
  width: auto;
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row-reverse;

}

/*==================================================================
[ Contact more ]*/
.contact100-more {
  width: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  padding: 30px 15px 0px 15px;
}

.contact100-more::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.7);
    color: rgba(0, 0, 0, 0.7);
}



/*==================================================================
[ Form ]*/

#contact #wpcf7-f155-o1 {
  width: 40%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding: 56px 55px 63px 55px;
}
#contact form{
  width: 100%;
}

.contact100-form-title {
  width: 100%;
  display: block;
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 33px;
}



/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border: 1px solid #e6e6e6;
}

.rs1-wrap-input100,
.rs2-wrap-input100 {
  width: 50%;
}

.rs2-wrap-input100 {
  border-left: none;
}

.label-input100 {
  font-size: 12px;
  color: #018052;
  font-weight:600;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1px;
  
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 55px;
  border: 1px solid #e6e6e6;
  border-bottom: none; 
  padding: 10px 25px;
  margin-bottom: 0;
}
footer .label-input100{
    color:#fff;
}
.input100 {
  display: block;
  width: 100%;
  background: transparent;
  font-size: 18px;
  color: #666666;
  line-height: 1.2;
  padding: 0 25px;
}

.wrap-input100 input {
  height: 55px;
}
.wrap-input100 select {
  height: 55px;
}
.wrap-input100 .wpcf7-form-control{
    display: block;
    width: 100%;
    background: transparent;
    font-size: 18px;
    color: #666666;
    line-height: 1.2;
    padding: 0 25px;
  }


.wrap-input100 textarea {
  /*min-height: 139px;*/
  padding-top: 19px !important;
  padding-bottom: 15px !important;
}

/*---------------------------------------------*/


/*------------------------------------------------------------------
[ Button ]*/
.container-contact100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 23px;
}

.contact100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 200px;
  height: 50px;
  border-radius: 2px;
  background: #00ad5f;
  font-size: 12px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact100-form-btn:hover {
  background: #333333;
}



/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 992px) {
  #contact #wpcf7-f155-o1 {
    width: 40%;
    padding: 56px 30px 63px 30px;
  }

  .contact100-more {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #contact #wpcf7-f155-o1 {
    width: 100%;
  }

  .contact100-more {
    width: 100%;
  }
}

@media (max-width: 576px) {
  #contact #wpcf7-f155-o1 {
    padding: 56px 15px 63px 15px;
  }

  .rs1-wrap-input100,
  .rs2-wrap-input100 {
    width: 100%;
  }

  .rs2-wrap-input100 {
    border-left: 1px solid #e6e6e6;
    border-top: none;
  }
}

.flex-col-c-m{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}

.p-b-47 {
    padding-bottom: 47px;
}

.contact-list {
    list-style-type: none;
}
.list-item {
    line-height: 2.5;
    color: #000;
    display: flex;
    align-items: center;
}
.place{
    color: #000 !important;
    font-family: "Inter", Sans-serif;
    font-size: 1.3em !important;
}
.place {
    margin-left: 25px;
}
.contact-text {
   font-weight: 400;
    font-size: 14px;
    color: #fff;
}
.fa-2x {
    font-size: 20px;
}

.contact-text a {
    color: #000;
    text-decoration: none;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
.contact-text a:hover {
    color: #fff;
    text-decoration: none;
}

hr {
    border-color: rgba(255,255,255,.8);
}

.social-media-list li {
    display: inline-block;
}
.ast_copyright_wrapper p{
color: #000 !important;
    font-family: "Outfit", Sans-serif;
    font-size: 0.9em;
    font-weight:500;
}
.ast_copyright_wrapper p a{
    color:#fad02b;
}
.social-media-list li:hover {
    transition: all 0.4s;
    transform: translateY(-5px);
}
.social-media-list li:hover a img{
    filter: brightness(0) invert(1);
    transition: all 0.4s;

}


.formtext{
    margin-bottom:80px;
}
.formtext p{
       color: #fff !important;
    letter-spacing: 1.2px;
}
.copyright span{
    font-weight:600px;
}

/*--------------
CONTACT PART
--------------------------*/
footer{
    background:#F3F3F4;
}
.split_row{
    margin-top:-140px;
    background: #000;
    padding:50px;
    border-radius:50px;
}
.CTA_footer .description h2{
    font-size: 42px;
    color: #fff;
}
.footer .widget p{
    color: #000 !important;
    font-family: "Inter", Sans-serif;
    font-size: 1.3em;
}
.footer hr{
    border-color: rgb(0 0 0);
}
/*========================================================================
5. SCROLL STYLE
=========================================================================*/



/*** Works on common browsers ***/
::selection {
    background-color: #03e391;
    color: #fff;
}

/*** Mozilla based browsers ***/
::-moz-selection {
    background-color: #03e391;
    color: #fff;
}

/***For Other Browsers ***/
::-o-selection {
    background-color: #03e391;
    color: #fff;
}

::-ms-selection {
    background-color: #03e391;
    color: #fff;
}

/*** For Webkit ***/
::-webkit-selection {
    background-color: #03e391;
    color: #fff;
}


body::-webkit-scrollbar {
  width: 0.4em;
}
 
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
body::-webkit-scrollbar-thumb {
  background-color: #018052;
  outline: 1px solid slategrey;
}


/*========================================================================
INFORMATION LAYOUT
=========================================================================*/
.short-info-layout .container-fluid .row {
    padding: 0;
}
.short-info-layout.google-maps .col-md-12 {
    padding: 0;
}
.short-info-layout.google-maps .about p{
    margin:0;
}
.pt1{
    padding-top:10px;
}
.pt2{
    padding-top:20px;
}
/*========================================================================
BANNER PART
=========================================================================*/
.breadcrumb-wrapper{
width: 100%;
    background: #013623;
    margin-top: -55px;
    position: relative;
    padding: 15px 0;
}

.breadcrumb-wrapper .bd a{
        color: #fff;
    margin-right: 10px;
    letter-spacing:.9px;
}

.breadcrumb-wrapper .bd{
    color:#03e391;
    letter-spacing:.9px;
}
.breadcrumb-wrapper .bd .divider{
    margin-right:10px;
}

.breadcrumb-wrapper .bd .divider i{
    color:#f44336;
}
.breadcrumb-wrapper .bd a:hover, .breadcrumb-wrapper .bd a:focus {
    color: #03e391;
}
/*========================================================================
PORTFOLIO LAYOUT
=========================================================================*/


/*========================================================================
VIDEO LAYOUT
=========================================================================*/

/*========================================================================
SECTION LAYOUT
=========================================================================*/

/*========================================================================
REGULAR LAYOUT
=========================================================================*/
.layout-regular h1,.layout-regular h2,.layout-regular h3,.layout-regular h4,.layout-regular h5,.layout-regular h6{
    font-size: 25px;
    margin: 10px 0;
    font-weight:600;
}
.layout-regular .label-input100{
    color:#018052;
    font-weight:600;
}
.layout-regular p{
    font-size: 16px;
    letter-spacing: .5px;
    font-weight: 500;
}

.layout-regular ol{
    padding-left: 25px;
}
.layout-regular ol li{
    font-size: 16px;
    letter-spacing: .5px;
    font-weight: 500;
    line-height:30px;

}
.layout-regular ul.chat-skype li{
    list-style: none;
    display: inline-block;
    
}
.layout-regular ul.chat-skype li a{
        color: #fff;
        padding: 8px 14px;
    background: #018052;
    margin-right: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 25px;
}

.layout-regular ul.chat-skype li a:hover{
    background:#15aabf;
}
.layout-regular h6{
    font-size: 15px;
    text-transform: unset;
    display: inline-block;
    margin-bottom: 20px;
}

.codedropz-upload-handler{
        margin: 15px;
}
/*========================================================================
EQUAL COLUMN LAYOUT
=========================================================================*/
.column-font-icon i{
    font-weight: 600;
    font-size: 70px;
    margin: 30px 0;
    color: #018052;
}
.layout-equal-columns{
    margin-bottom:25px;
}
.layout-equal-columns .column-content {
    border-radius: 15px;
    -webkit-box-shadow: 0 0 10px 0 #e6e8ee;
    box-shadow: 0 0 10px 0 #e6e8ee;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    border: 1px solid #e6e8ee;
    padding: 0 3rem 3rem 3rem;
    
}
.layout-equal-columns .column-content{
        padding-left: 15px;
    padding-right: 15px;
}

.layout-equal-columns h3{
        font-size: 24px;
    margin: 10px 0;
}
.layout-equal-columns p{
    font-size: 16px;
    letter-spacing: .5px;
    font-weight: 500;
}

.layout-equal-columns .column-icon{
    margin:20px 0;
    position:relative;
}
.layout-equal-columns .column-icon img{
    width:25%;
}

/*========================================================================
HISTORY LAYOUT
=========================================================================*/

/*-- GENERAL STYLES
------------------------------*/
.timeline {
  line-height: 1.4em;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.timeline h1, .timeline h2, .timeline h3, .timeline h4, .timeline h5, .timeline h6 {
  line-height: inherit;
}

/*----- TIMELINE ITEM -----*/
.timeline-item {
  padding-left: 40px;
  position: relative;
}
.timeline-item:last-child {
  padding-bottom: 0;
}

/*----- TIMELINE INFO -----*/
.timeline-info {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin: 0 0 .5em 0;
  text-transform: uppercase;
  white-space: nowrap;
}

/*----- TIMELINE MARKER -----*/
.timeline-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15px;
}
.timeline-marker:before {
  background: #fad02b;
  border: 3px solid transparent;
  border-radius: 100%;
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
}
.timeline-item:first-child .timeline-marker:before {
  content: none;
}
.timeline-marker:after {
  content: "";
  width: 3px;
  background: #CCD5DB;
  display: block;
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 6px;
}
.timeline-item:not(.period):hover .timeline-content:hover {
    border-color:red;
}
.timeline-item:not(.period):hover .timeline-marker:before {
  background: transparent;
  border: 3px solid #fad02b;
}

.timeline-info span{
    font-family: 'Outfit';
    font-weight: 600;
    color: #fad02b;
    font-size: 16px;
}

/*----- TIMELINE CONTENT -----*/
.timeline-content {
  padding-bottom: 40px;
}
.timeline-content p:last-child {
  margin-bottom: 0;
}
h3.timeline-title{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}
.cover p{
  font-weight: 400;
    font-size: 18px;
    line-height: 32px;
}

/*----------------------------------------------
    MOD: TIMELINE CENTERED
----------------------------------------------*/
@media (min-width: 992px) {
  .timeline-centered,
  .timeline-centered .timeline-item,
  .timeline-centered .timeline-info,
  .timeline-centered .timeline-marker,
  .timeline-centered .timeline-content {
    display: block;
    margin: 0;
    padding: 0;
  }
  .timeline-centered .timeline-item {
    padding-bottom: 40px;
    overflow: hidden;
  }
  .timeline-centered .timeline-marker {
    position: absolute;
    left: 50%;
    margin-left: -7.5px;
  }
  .timeline-centered .timeline-info,
  .timeline-centered .timeline-content {
    width: 50%;
  }
  .timeline-centered > .timeline-item:nth-child(odd) .timeline-info {
    float: left;
    text-align: right;
    padding-right: 30px;
  }
  .timeline-centered > .timeline-item:nth-child(odd) .timeline-content {
    float: right;
    text-align: left;
    padding-left: 30px;
  }
  .timeline-centered > .timeline-item:nth-child(even) .timeline-info {
    float: right;
    text-align: left;
    padding-left: 30px;
  }
  .timeline-centered > .timeline-item:nth-child(even) .timeline-content {
    float: left;
    text-align: right;
    padding-right: 30px;
  }
  .timeline-centered > .timeline-item.period .timeline-content {
    float: none;
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .timeline-centered .timeline-item.period {
    padding: 50px 0 90px;
  }
  .timeline-centered .period .timeline-marker:after {
    height: 30px;
    bottom: 0;
    top: auto;
  }
  .timeline-centered .period .timeline-title {
    left: auto;
  }
}

/*----------------------------------------------
    MOD: MARKER OUTLINE
----------------------------------------------*/
.marker-outline .timeline-marker:before {
  background: transparent;
  border-color: #FF6B6B;
}
.marker-outline .timeline-item:hover .timeline-marker:before {
  background: #FF6B6B;
}
.div-center{
  margin: 0 auto;
}


/*========================================================================
LANDING LAYOUT
=========================================================================*/
.layout-landing img{
    border-radius:50px;
}
.layout-landing .content h3{

    margin-bottom: 30px;
    font-size: 40px;
}

.layout-landing .content p{

    margin-bottom: 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;

}

.layout-landing .content ul{
  padding: 0;
}

.layout-landing .content ul li {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    list-style: none;
    position: relative;
    padding-left: 25px;
}
.layout-landing .content ul li:before{
  content: "\f064";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  font-size: 17px;
  padding-right: 15px;
  font-weight: 900;
}

    .video { 
        position: relative; 
        padding-bottom: 56.25%;
        overflow: hidden;
        max-width: 100%;
        height: auto;
    } 

    .video iframe { 
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


@media screen and (max-width: 767px) {
	.layout-landing.right {
		display: flex; flex-direction: column-reverse; 
	}
}

/*========================================================================
TABS LAYOUT
=========================================================================*/
/*----------------------------------------------
   Tab section
----------------------------------------------*/
.bg-tab{
  
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;

}
.tab-layout::before{
  background-color: rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.7);
    color: rgba(0, 0, 0, 0.7);
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

section .section-title {
    text-align: center;
    color: #007b5e;
    margin-bottom: 50px;
    text-transform: uppercase;
}


#tabs .nav-tabs .nav-item.show .nav-link, #tabs .nav-tabs .nav-link.active {
    color: #f3f3f3;
    background-color: transparent;
}

#tabs .nav-tabs .nav-link {
    color: #fff !important;
}
.tab-layout .nav-tabs .nav-link:focus, .tab-layout .nav-tabs .nav-link:hover{
  border:0;
}
.tab-layout .nav-tabs .nav-link:focus{
    border: 0;
    /*padding: 25px 0 !important;*/
  }
.tab-layout .nav-tabs .nav-link{
  font-size: 15px;
  border:0;
  color: #03e391;
  padding:20px 0 !important;
    -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.tab-layout .nav-tabs .nav-link.active{
  color: #fff;
    -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.tab-layout .nav-item:after{
  content: unset;
}
.tab-layout .nav-tabs {
  padding-bottom: 20px;
  border-bottom: 2px solid #fff;
}
.tab-layout .nav-tabs .nav-item.show .nav-link, .tab-layout .nav-tabs .nav-link.active{
  background:transparent;
  border: 1px solid #fff;
  padding:20px 0 !important;
}
.tabs-content{
  padding: 40px 0 0 0;
}

/*tabs content body
*/

.tabs-content i{
    background: transparent;
    width: 85px;
    height: 85px;
    display: block;
    text-align: center;
    padding: 30px;
    margin: 0 auto;
    font-size: 20px;
    color: #fff;
    border: 1px solid #fff;
    margin-bottom: 20px;
      -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.tabs-content .icon-box:hover i, .tabs-content .icon-box:focus i{
  background: #03e391;
    border-color: #03e391;
      -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.tabs-content.circle .icon-box i{
  border-radius: 50%;
}
.tabs-content span{
  color: #fff;
  letter-spacing: 1.2px;
  font-size: 14px;
  font-weight: 600;
}

.tabs-content .icon-box p{
    margin-top: 10px;
    color: #fff;
    text-transform: capitalize;
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 20px;
}

.icon-box{
      margin-bottom: 50px;
}
.icon-box:nth-child(n+4):nth-child(-n+6) {
  margin-bottom:0;
}

.icon-box.circle{
  margin-bottom: 0;
}


/*single tab layout*/

.tab-single-layout .nav-tabs{
        border-bottom: 0;
}

.tab-single-layout .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #013623;
    border-color: #018052 #018052 #018052;
    box-shadow: 0 0 10px 0 #767777;
}
.tab-single-layout .nav-tabs .nav-link{
    padding: 15px !important;
    margin: 0;
    background: #018052;
    color: #fff;
    border-color: #03e391 #03e391 #03e391;
}
.tab-single-layout .nav-tabs .nav-link:hover{
        background: #013623;
    border-color: #013623 #013623 #013623;
}
.tab-single-layout .nav-item.active:after{
    opacity:0;
}
.tab-single-layout .nav-item:after{
    opacity:0;
}
.tab-single-layout .details p{
    
    margin-top: 20px;
    line-height: 30px;
    color: #000;
    text-align: center;
    font-size: 16px;
    letter-spacing: .5px;
    font-weight: 500;
}
.tab-single-layout .details h1, .tab-single-layout .details h2, .tab-single-layout .details h3, .tab-single-layout .details h4, .tab-single-layout .details h5, .tab-single-layout .details h6{
    
    font-size: 20px;
    text-transform: capitalize;
    margin: 10px 0;
    letter-spacing: .5px;
    font-weight:600;
}

/*========================================================================
SHORT INFORMATION LAYOUT
=========================================================================*/
.white.yellow{
  background-color: #ffdc60 !important;
}
.short_information h2 {
    font-size: 40px;
    font-weight: 600;
    color:#000;
    text-align:center;
}

.short_information p{
    margin-top: 20px;
    font-size: 18px;
    line-height: 30px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-align: center;
}

/*========================================================================
HEADING LAYOUT
=========================================================================*/
.heading-layout h4 {
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  text-transform:uppercase;
}
.heading-layout h4:after {
  content: "";
  display: block;
  width: 50%;
  border-bottom: 1px solid #494949;
  margin: 8px auto;
}
.heading-layout h2 {
  font-weight: 600;
      font-size: 38px;
}
.heading-layout {
  text-align: center;
  margin-bottom: 60px;
  padding: 3em 0;
  border-bottom: 1px solid #000;
  padding-top: 0;
}
section.black .heading-layout{
    border-bottom: 1px solid #fad02b;  
}
.heading-layout p {
    font-size: 16px;
    letter-spacing: .5px;
    font-weight: 500;
    margin-top: 20px;
    line-height: 28px;
}




/*========================================================================
3. History Style
=========================================================================*/
.history{
    color: #E0E0E0;
  background-color: #000000;
  -webkit-tap-highlight-color: rgba(224, 224, 224, 0.2);
}
.cover{
  background: #1e2021;
  border-radius:15px;
  padding: 25px 25px;
  position: relative;
}
.timeline-centered > .timeline-item:nth-child(odd) .timeline-content .cover:before{
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    border: 7px solid transparent;
    border-right: 7px solid #ccc;
    top: 15px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color:#1e2021;
  }


.timeline-centered > .timeline-item:nth-child(even) .timeline-content .cover:before{
  
  content: '';
    position: absolute;
    height: 0;
    width: 0;
    border: 7px solid transparent;
    border-right: 7px solid #ccc;
    top: 15px;
    right: 100%;
    border-right-color:#ccc;
    left: 100%;
    border-color: transparent;
    border-left-color: #1e2021;
}

@media (max-width: 991px){
  .timeline-centered > .timeline-item:nth-child(even) .timeline-content .cover:before{
        left: auto;
    border-color: transparent;
    border-right-color: #ccc;
  }
}

.example-header {
  background: #3D4351;
  color: #FFF;
  font-weight: 300;
  padding: 3em 1em;
  text-align: center;
}
.example-header h1 {
  color: #FFF;
  font-weight: 300;
  margin-bottom: 20px;
}
.example-header p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}

.container-fluid .row {
  padding: 0 0 4em 0;
}
.container-fluid .row:nth-child(even) {
  background: #F1F4F5;
}







/*.about-info ul li i{
  padding-right: 15px;
  font-size: 17px;
}*/






/*----------------------------------------------
   portfolio Modal section
----------------------------------------------*/
.portfolio-modal .modal-dialog {
  max-width: 100vw;
}

.portfolio-modal .modal-content {
  border: none;
  background: rgba(0, 0, 0, 0.7);
}
.portfolio-modal .modal-content .modal-header {
  border: none;
}
.portfolio-modal .modal-content .modal-body {
  padding: 10px;
  text-align: center;
}
.portfolio-modal .row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.portfolio-modal .column {
  float: left;
  width: 16.66%;
}

.portfolio-modal .close {
    background-color: unset;
    border: 0;
    background: #013623 !important;
    opacity: 1;
    padding: 13px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: red;
    font-size: 30px;
}
.portfolio-modal .close:hover, .portfolio-modal .close:focus{
background: #018052  !important;
    opacity: 1 !important;
    color: #fff !important;
    outline: 0;
}
.prev{
  left: 0;
}
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
    position: absolute;
    top: 40%;
    width: 65px;
    height: 65px;
    padding: 17px;
    color: #fff !important;
    font-size: 20px;
    border-radius: 50% !important;
    user-select: none;
    -webkit-user-select: none;
    background: #018052;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

section.video{
    background:#e4af79;
}
section.video .image{
    position:relative;
}
section.video a{
    position: absolute;
    top: 40%;
    left: 40%;
}
.animated-ripple {
    position: relative;
    display: inline-block;
    line-height: 73px;
    font-size: 20px;
    vertical-align: middle;
    text-align: center;
    z-index: 99;
    color: #018052;
    background: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
}
.animated-ripple::before,.animated-ripple::after {
	background-color: #ffffff;
	border-radius: 100%;
	margin: -20px;
	bottom: 0px;
	content: "";
	display: block;
	left: 0px;
	opacity: 0;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index:-1;
	-webkit-animation-name: ripple_effect;
	-moz-animation-name: ripple_effect;
	-o-animation-name: ripple_effect;
	animation-name: ripple_effect;
	-webkit-animation-duration: 2s;
	-moz-animation-duration: 2s;
	-o-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-delay: 3s;
	-moz-animation-delay: 3s;
	-o-animation-delay: 3s;
	animation-delay: 3s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-o-animation-timing-function: linear;
	animation-timing-function: linear;
}
.animated-ripple::before {
	animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
}
.animated-ripple::after {
	animation-delay: 1s;
	-webkit-animation-delay: 1s;
}
@-webkit-keyframes ripple_effect {
    0%{
        opacity:0;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    50%{
        opacity:0.6;
    }
	100%{
        opacity:0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}
@keyframes ripple_effect {
    0%{
        opacity:0;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    50%{
        opacity:0.6;
    }
	100%{
        opacity:0;
        -webkit-transform:scale(1);
        transform:scale(1)
    }
}




/*responsive*/

@media(max-width:767px){
    .about-us .about h1 {
    font-size: 20px;
    line-height: 34px;
}
}

/*========================================================================
404 PAGE
=========================================================================*/
.pagenotfound{
  background:#013623;
  position:absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
}
.box {
  width: 350px;
  height: 100%;
  max-height: 600px;
  min-height: 450px;
  background: #018052;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 30px 50px;
}
.box .box__ghost {
  padding: 15px 25px 25px;
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -30%);
}
.box .box__ghost .symbol:nth-child(1) {
  opacity: 0.2;
  animation: shine 4s ease-in-out 3s infinite;
}
.box .box__ghost .symbol:nth-child(1):before, .box .box__ghost .symbol:nth-child(1):after {
  content: "";
  width: 12px;
  height: 4px;
  background: #fff;
  position: absolute;
  border-radius: 5px;
  bottom: 65px;
  left: 0;
}
.box .box__ghost .symbol:nth-child(1):before {
  transform: rotate(45deg);
}
.box .box__ghost .symbol:nth-child(1):after {
  transform: rotate(-45deg);
}
.box .box__ghost .symbol:nth-child(2) {
  position: absolute;
  left: -5px;
  top: 30px;
  height: 18px;
  width: 18px;
  border: 4px solid;
  border-radius: 50%;
  border-color: #fff;
  opacity: 0.2;
  animation: shine 4s ease-in-out 1.3s infinite;
}
.box .box__ghost .symbol:nth-child(3) {
  opacity: 0.2;
  animation: shine 3s ease-in-out 0.5s infinite;
}
.box .box__ghost .symbol:nth-child(3):before, .box .box__ghost .symbol:nth-child(3):after {
  content: "";
  width: 12px;
  height: 4px;
  background: #fff;
  position: absolute;
  border-radius: 5px;
  top: 5px;
  left: 40px;
}
.box .box__ghost .symbol:nth-child(3):before {
  transform: rotate(90deg);
}
.box .box__ghost .symbol:nth-child(3):after {
  transform: rotate(180deg);
}
.box .box__ghost .symbol:nth-child(4) {
  opacity: 0.2;
  animation: shine 6s ease-in-out 1.6s infinite;
}
.box .box__ghost .symbol:nth-child(4):before, .box .box__ghost .symbol:nth-child(4):after {
  content: "";
  width: 15px;
  height: 4px;
  background: #fff;
  position: absolute;
  border-radius: 5px;
  top: 10px;
  right: 30px;
}
.box .box__ghost .symbol:nth-child(4):before {
  transform: rotate(45deg);
}
.box .box__ghost .symbol:nth-child(4):after {
  transform: rotate(-45deg);
}
.box .box__ghost .symbol:nth-child(5) {
  position: absolute;
  right: 5px;
  top: 40px;
  height: 12px;
  width: 12px;
  border: 3px solid;
  border-radius: 50%;
  border-color: #fff;
  opacity: 0.2;
  animation: shine 1.7s ease-in-out 7s infinite;
}
.box .box__ghost .symbol:nth-child(6) {
  opacity: 0.2;
  animation: shine 2s ease-in-out 6s infinite;
}
.box .box__ghost .symbol:nth-child(6):before, .box .box__ghost .symbol:nth-child(6):after {
  content: "";
  width: 15px;
  height: 4px;
  background: #fff;
  position: absolute;
  border-radius: 5px;
  bottom: 65px;
  right: -5px;
}
.box .box__ghost .symbol:nth-child(6):before {
  transform: rotate(90deg);
}
.box .box__ghost .symbol:nth-child(6):after {
  transform: rotate(180deg);
}
.box .box__ghost .box__ghost-container {
  background: #fff;
  width: 100px;
  height: 100px;
  border-radius: 100px 100px 0 0;
  position: relative;
  margin: 0 auto;
  animation: upndown 3s ease-in-out infinite;
}
.box .box__ghost .box__ghost-container .box__ghost-eyes {
  position: absolute;
  left: 50%;
  top: 45%;
  height: 12px;
  width: 70px;
}
.box .box__ghost .box__ghost-container .box__ghost-eyes .box__eye-left {
  width: 12px;
  height: 12px;
  background: #013623;
  border-radius: 50%;
  margin: 0 10px;
  position: absolute;
  left: 0;
}
.box .box__ghost .box__ghost-container .box__ghost-eyes .box__eye-right {
  width: 12px;
  height: 12px;
  background: #013623;
  border-radius: 50%;
  margin: 0 10px;
  position: absolute;
  right: 0;
}
.box .box__ghost .box__ghost-container .box__ghost-bottom {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.box .box__ghost .box__ghost-container .box__ghost-bottom div {
  flex-grow: 1;
  position: relative;
  top: -10px;
  height: 20px;
  border-radius: 100%;
  background-color: #fff;
}
.box .box__ghost .box__ghost-container .box__ghost-bottom div:nth-child(2n) {
  top: -12px;
  margin: 0 0px;
  border-top: 15px solid #013623;
  background: transparent;
}
.box .box__ghost .box__ghost-shadow {
  height: 20px;
  box-shadow: 0 50px 15px 5px #013623;
  border-radius: 50%;
  margin: 0 auto;
  animation: smallnbig 3s ease-in-out infinite;
}
.box .box__description {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.box .box__description .box__description-container {
  color: #fff;
  text-align: center;
  width: 200px;
  font-size: 16px;
  margin: 0 auto;
}
.box .box__description .box__description-container .box__description-title {
  font-size: 24px;
  letter-spacing: 0.5px;
}
.box .box__description .box__description-container .box__description-text {
  color: #fff;
  line-height: 22px;
  margin-top: 20px;
}
.box .box__description .box__button {
  display: block;
  position: relative;
  background: #013623;
  border: 1px solid transparent;
  border-radius: 50px;
  height: 50px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  line-height: 50px;
  font-size: 18px;
  padding: 0 70px;
  white-space: nowrap;
  margin-top: 25px;
  transition: background 0.5s ease;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.box .box__description .box__button:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 100px;
  background: #fff;
  bottom: -25px;
  left: 0;
  border: 2px solid #fff;
  transform: translateX(-50px) rotate(45deg);
  transition: transform 0.5s ease;
}
.box .box__description .box__button:hover {
  background: transparent;
  border-color: #fff;
}
.box .box__description .box__button:hover:before {
  transform: translateX(250px) rotate(45deg);
}

@keyframes upndown {
  0% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(5px);
  }
}
@keyframes smallnbig {
  0% {
    width: 90px;
  }
  50% {
    width: 100px;
  }
  100% {
    width: 90px;
  }
}
@keyframes shine {
  0% {
    opacity: 0.2;
  }
  25% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
  }
}

/*========================================================================
CHAT WITH US
=========================================================================*/
.chatus {
  position: fixed;
  z-index: 10;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  transition: all 0.2s ease;
}
.chatus .bg_links {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  backdrop-filter: blur(5px);
  position: absolute;
  color:#fff !important;
  font-size:30px;
        text-decoration:none !important;
}
.chatus .logo {
  width: 50px;
  height: 50px;
  z-index: 9;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: 10px 7px;
  opacity: 0.9;
  transition: all 1s 0.2s ease;
  bottom: 0;
  right: 0;
    background: #018052;
    cursor:pointer;
}
.chatus .logo:hover{
    background:#03e391;
}
.chatus .social {
  opacity: 0;
  right: 0;
  bottom: 0;
  font-size:25px;
}
.chatus .social .icon {
  width: 100%;
  height: 100%;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  display: flex;
  transition: all 0.2s ease, background-color 0.4s ease;
  opacity: 0;
  border-radius: 100%;
}
.chatus .social.portfolio {
  transition: all 0.8s ease;
}

.chatus .social.dribbble {
  transition: all 0.3s ease;
}

.chatus .social.linkedin {
  transition: all 0.8s ease;
}

.chatus:hover {
  width: 105px;
  height: 105px;
  transition: all 0.6s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.chatus:hover .logo {
  opacity: 1;
  transition: all 0.6s ease;
}
.chatus:hover .social {
  opacity: 1;
  background:#03e391;
}
.chatus:hover .social .icon {
  opacity: 0.9;
}
.chatus:hover .social:hover {
  background-size: 28px;
}
.chatus:hover .social:hover .icon {
  background-size: 65%;
  opacity: 1;
}
.chatus:hover .social.portfolio {
  right: 0;
  bottom: calc(100% - 40px);
  transition: all 0.3s 0s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.chatus:hover .social.portfolio:hover {
  background-color: #698fb7;
}
.chatus:hover .social.dribbble {
  bottom: 45%;
  right: 45%;
  transition: all 0.3s 0.15s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.chatus:hover .social.dribbble:hover {
  background-color: #ea4c89;
}
.chatus:hover .social.linkedin {
  bottom: 0;
  right: calc(100% - 40px);
  transition: all 0.3s 0.25s cubic-bezier(0.64, 0.01, 0.07, 1.65);
}
.chatus:hover .social.linkedin:hover {
  background-color: #0077b5;
}




/*========================================================================
GO TO TOP PART
=========================================================================*/

#gototop {
  display: inline-block;
  background-color: #000;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 10px;
  right: 15px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#gototop i{
  font-size: 2em;
  line-height: 50px;
  color: #fad02b;
}
#gototop:hover {
  cursor: pointer;
  background-color: #fad02b;
}
#gototop:hover i{
    color: #000;
}
/* #gototop:active {
  background-color: #03e391;
} */
#gototop.show {
  opacity: 1;
  visibility: visible;
}


.page-id-1232 .viewport-header h1 {
    letter-spacing: 0.2vw;
}
.width_80 img{
	width:80px !important;
}
.btn_contact a{
	font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    background-color: #018052;
    border: solid 1px #03e391;
    padding: 15px 30px;
    min-width: 100px;
    width: fit-content;
    font-size: 14px;
    letter-spacing: 2px;
    color: #ffffff;
    position: relative;
    border-radius: 80px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin-top: 20px;
}
.btn_contact a:hover{
	background: #03e391;
}
.layout-equal-columns h3, .layout-landing h3{
	font-weight:700;
}
.layout-landing p {
    letter-spacing: .5px;
    font-weight: 500;
}
.layout-equal-columns .column-content{
	padding: 1rem 3rem 1rem 3rem;
}
.h-600{
	height: 600px;
}
.h-300{
	height: 300px;
}
.bg-fixed{
	background-attachment:fixed;
}
.mt-60{
    margin-top: 60px;
}
.image-overlay{
	position:relative;
}
.image-overlay::before{
    background-color: rgba(69, 69, 78, 0.2);
    background-image: linear-gradient(180deg, rgb(10 10 10 / 30%), rgb(31 31 33 / 30%));
    color: rgba(0, 0, 0, 0.7);
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.dark-image-overlay{
	position:relative;
}
.dark-image-overlay::before{
    background-color: rgba(0, 0, 0, .5);
    color: rgba(0, 0, 0, 0.7);
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.gallery-item{
	margin:0 !important;
}
.main_heading{
  font-size: 55px;
    font-weight: 700;
}
@media(max-width:991px){
  .main_heading{
        font-size: 42px;
    }
    .hero_section .image{
        text-align:right;
    }
    .hero_section .image img{
        max-width:80%;
    }  
}
@media(max-width:767px){
    .hero_section .image{
        text-align:center;
        margin-top:20px;
    }
    .hero_section .image img{
        max-width:50%;
    }  
}
.hero_section p{
  font-size: 22px !important;
  line-height: unset !important;
  letter-spacing: unset !important;
}
#history{
    background:url(https://everestcreator.com/demo/wp-content/uploads/2024/07/pattern.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.layout-landing .content p, .layout-landing .content ul li, .single-testimonial p, .bg_cta_image .layout-regular p, .faq-section .accordion-body p, .layout-equal-columns p, .short_information p, .heading-layout p, .layout-regular p{
    font-size: 1.3em;
    letter-spacing: unset;
}

.process_steps .column-content{
    padding: 0;
    border-radius: 0;
    box-shadow: unset;
    border: unset;
    font-size: unset;
}
.process_steps .column-content img{
max-width: 100px;
    border-radius: 0;
    background: #f7f7f7;
    padding: 15px;
    /* border-color: #f7f7f7; */
    border-radius: 15px;
    text-align: center;
    border: unset;
    width: unset !important;
}

.process_steps.layout-equal-columns .column-icon:after{
    content: attr(data-count);
    position: absolute;
    font-size: 24px;
    padding-right: 15px;
    font-weight: 700;
    background: #fad02b;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    top: 70%;
    left: 60%;
    text-align: center;
    padding: 5px;
    font-family:"Outfit";
}

/* CSS */
.force-4-columns > div:nth-child(1),
.force-4-columns > div:nth-child(2),
.force-4-columns > div:nth-child(3),
.force-4-columns > div:nth-child(4),
.force-3-columns > div:nth-child(1),
.force-3-columns > div:nth-child(2),
.force-3-columns > div:nth-child(3) {
    margin-bottom: 40px; /* or add the pb8 class equivalent styles */
}

.a{
--tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-rotate: 0;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transition-duration: .5s;
}

.heading-layout h2 {
    font-size: 45px;
    font-weight: 700;
}
.service_section{
    background-repeat: repeat !important;
    background-size: contain !important;
}
.service_section .layout-landing .content h3 {
    font-size: 35px;
}
.inner-page .navigation-wrap.start-style{
    background:transparent !important;
    box-shadow:none;
}

.front-page .navigation-wrap.start-style{
    background:transparent !important;
    box-shadow:none;
}
section.black .heading-layout h2{
    color:#fff;
}
.industry_section .layout-equal-columns .column-content{
    box-shadow:none;
    border-color: #fad02b;
    background: transparent;
}
.industry_section .layout-equal-columns .column-content h3{
    color: #fff;
}

.layout-equal-columns .column-icon img {
    width: 50%;
}

/* new COntact Form */

.contact-form-area {
  border-radius: 7px;
  background: var(--ztc-text-text-1);
  position: relative;
  z-index: 1;
  box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.09);
  padding: 32px;
}
.contact-form-area h4 {
  color: #000;
  font-style: normal;
  line-height: 24px;
  display: inline-block;
}
.contact-form-area .input-area input, .contact-form-area .input-area select {
  border-radius: 8px;
    border: 1px solid #E6E6E6;
    background: #fff;
    width: 100%;
    font-family: 'Outfit';
    font-size: 18px;
    font-weight: normal;
    color: #000;
    padding: 16px;
    height: 48px;
    margin-top: 24px;
}
.contact-form-area .input-area input.btn_custom_inverse{
    width: unset;
    height: unset;
    border: 2px solid #fad02b;
    border-radius: 15px;
    font-weight: 600;
}
.contact-form-area .input-area input, .contact-form-area .input-area select {
    padding-top:0;
    padding-bottom:0;
}
.contact-form-area .input-area input::placeholder {
  color: #000;
  font-style: normal;
  line-height: 16px;
}
.contact-form-area .input-area textarea {
  border-radius: 8px;
  border: 1px solid #E6E6E6;
    font-family: 'Outfit';
    font-size: 18px;
    font-weight: normal;
  background: #fff;
  width: 100%;
  color: #000;
  padding: 16px;
  height: 120px;
  margin-top: 24px;
}
.contact-form-area .input-area textarea::placeholder {
  font-style: normal;
  line-height: 16px;
  color:#000;
}
.contact-form-area .input-area button {
  border: none;
  outline: none;
  margin-top: 24px;
}

.contact-form-area .wpcf7-not-valid{
    border:1px solid #fe0000 !important;
}

.wpcf7-not-valid-tip {
    display: block;
    color: #fe0000;
    font-size: 12px;
    text-align: left;
    font-weight: 500;
    font-style: italic;
    padding-left: 0;
    margin-top: 5px;
    font-family: "Inter";
    font-weight: 600;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
border-color: #000000;
    color: #ffffff;
    text-align: center;
    background: #1e1905;
    border-radius: 8px;
}
.layout-regular .layout-content h2{
        font-size: 47px;
    font-weight: 700;
    margin-bottom: 30px;
}
.layout-regular .layout-content h3{
        font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-header .number-address-area {
	 display: flex;
	 align-items: center;
	 border-radius: 7px;
	 background: var(--ztc-text-text-1);
	 position: relative;
	 transition: all 0.4s;
     align-items:flex-start;
     row-gap:20px;
     flex-direction:column;
}
 .contact-header .number-address-area .phone-number {
	 display: flex;
	 align-items: center;
	 margin: 0 40px 0 0;
}
 .contact-header .number-address-area .phone-number .img1 {
	 height: 60px;
	 width: 60px;
	 text-align: center;
	 line-height: 60px;
	 border-radius: 50%;
	 transition: all 0.4s;
	 background: #fad02b;
}
 .contact-header .number-address-area .phone-number .content {
	 margin-left: 16px;
}
 .contact-header .number-address-area .phone-number .content p {
    color: #000000;
    font-size: 1.2em;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 8px;
    display: inline-block;
    font-family: "Inter", sans-serif;
}
 .contact-header .number-address-area .phone-number .content a {
	     color: #000;
    font-family: "Outfit";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    display: block;
    transition: all 0.4s;
}
 .contact-header .number-address-area .phone-number .content a:hover {
	 color: #fad02b;
    transition: all 0.4s;
    text-decoration: none;
}
 .contact-header .number-address-area2 {
	 display: flex;
	 align-items: center;
	 border-radius: 7px;
	 position: relative;
	 transition: all 0.4s;
	 justify-content: space-between;
	 background: var(--ztc-text-text-1);
}
 .contact-header .number-address-area2 .phone-number {
	 display: flex;
	 align-items: center;
}
 .contact-header .number-address-area2 .phone-number .img1 {
	 height: 60px;
	 width: 60px;
	 text-align: center;
	 line-height: 60px;
	 border-radius: 50%;
	 transition: all 0.4s;
	 background: #fad02b;
}
 .contact-header .number-address-area2 .phone-number .content {
	 margin-left: 16px;
}
 .contact-header .number-address-area2 .phone-number .content p {
	 color: var(--ztc-text-text-3);
	 font-family: var(--ztc-family-font1);
	 font-size: var(--ztc-font-size-font-s16);
	 font-style: normal;
	 font-weight: var(--ztc-weight-medium);
	 line-height: 16px;
	 margin-bottom: 8px;
	 display: inline-block;
}
 .contact-header .number-address-area2 .phone-number .content a {
	 color: var(--ztc-text-text-2);
	 font-family: var(--ztc-family-font1);
	 font-size: var(--ztc-font-size-font-s20);
	 font-style: normal;
	 font-weight: var(--ztc-weight-semibold);
	 line-height: 26px;
	 display: block;
	 transition: all 0.4s;
}
 .contact-header .number-address-area2 .phone-number .content a:hover {
	 color: var(--ztc-text-text-4);
	 transition: all 0.4s;
}
 .contact-header .number-address-area2 .phone-number .map {
	 color: var(--ztc-text-text-4);
	 font-family: var(--ztc-family-font1);
	 font-size: var(--ztc-font-size-font-s20);
	 font-style: normal;
	 font-weight: var(--ztc-weight-semibold);
	 line-height: 20px;
	 display: inline-block;
	 text-decoration-line: underline;
}
footer .img2{
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    transition: all 0.4s;
    background: #fad02b;
}
footer .img2 img{
padding:5px;
}
.n_label{
font-size: 16px !important;
    font-family: "Outfit";
}

.login_process.layout-equal-columns h3 {
    font-size: 24px;
    margin: 10px 0;
}


/*-------------------------------------
    RESPONSIVE CSS
--------------------------------------- */

@media(max-width:991px){
	.row_gap_40, .layout-regular{
		row-gap: 40px;
	}
}

@media(max-width:767px){
	.split_row{
		flex-direction: column;
		text-align: center;
	}
	.split_row .btn_theme{
		text-align:center !important;
	}
	
	.footer__copyright > div > div{
		text-align:center !important;
	}
	.bg_cta_image .btn_theme {
		flex-direction:column;
	}
	.faq-section .accordion-button h5{
		text-align:left;
		max-width:90%;
	}
	.accordion-button:before{
		right:0;
	}
	.front-page .navigation-wrap.start-style{
		background:#fff !important;
		box-shadow:none;
	}
}