:root {
  --primary-color-one: #781D7D;
  --menu-active-color: #781D7D;
  --primary-color-two: #949B9F;
  --heading-dark: #282f3b;
  --link-color-dark: #282f3b;
  --menu-color: #282f3b;
  --menu-dropdown-color: #282f3b;
}

.primarg_bg_color {
  background: var(--primary-color-one) !important;
  background-color: var(--primary-color-one) !important;
}

.primarg_border_color {
  border-color: var(--primary-color-one) !important;
}

.footer_seven {
  padding-top: 80px;
}


/***************************************
Scroll 
***************************************/
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color-one); 
  height: 100px;
  border-radius: 15px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000; 
}
/*
Generat Settings
*/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
  }

  html, body {
    overflow-x:hidden;
    width:100%;
  }
  
  /* Sections
     ========================================================================== */
  
  /**
   * Remove the margin in all browsers.
   */
  
  body {
    margin: 0;
  }
  
  /**
   * Render the `main` element consistently in IE.
   */
  
  main {
    display: block;
  }
  
 
  
  /* Grouping content
     ========================================================================== */
  
  /**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
  
  hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
  }
  
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  
  pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  
  /* Text-level semantics
     ========================================================================== */
  
  /**
   * Remove the gray background on active links in IE 10.
   */
  
  a {
    background-color: transparent;
  }
  
  /**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
  
  abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
  }
  
  /**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
  
  b,
  strong {
    font-weight: bolder;
  }
  
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  
  code,
  kbd,
  samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  
  /**
   * Add the correct font size in all browsers.
   */
  
  small {
    font-size: 80%;
  }
  
  /**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
  
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  
  /* Embedded content
     ========================================================================== */
  
  /**
   * Remove the border on images inside links in IE 10.
   */
  
  img {
    border-style: none;
  }
  
  /* Forms
     ========================================================================== */
  
  /**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
  
  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
  }
  
  /**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
  
  button,
  input { /* 1 */
    overflow: visible;
  }
  
  /**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
  
  button,
  select { /* 1 */
    text-transform: none;
  }
  
  /**
   * Correct the inability to style clickable types in iOS and Safari.
   */
  
  button,
  [type="button"],
  [type="reset"],
  [type="submit"] {
    -webkit-appearance: button;
  }
  
  /**
   * Remove the inner border and padding in Firefox.
   */
  
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  
  /**
   * Restore the focus styles unset by the previous rule.
   */
  
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  
  /**
   * Correct the padding in Firefox.
   */
  
  fieldset {
    padding: 0.35em 0.75em 0.625em;
  }
  
  /**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
  
  legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
  }
  
  /**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
  
  progress {
    vertical-align: baseline;
  }
  
  /**
   * Remove the default vertical scrollbar in IE 10+.
   */
  
  textarea {
    overflow: auto;
  }
  
  /**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
  
  [type="checkbox"],
  [type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
  }
  
  /**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
  
  [type="number"]::-webkit-inner-spin-button,
  [type="number"]::-webkit-outer-spin-button {
    height: auto;
  }
  
  /**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
  
  [type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
  }
  
  /**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
  
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  /**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
  
  ::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
  }
  
  /* Interactive
     ========================================================================== */
  
  /*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
  
  details {
    display: block;
  }
  
  /*
   * Add the correct display in all browsers.
   */
  
  summary {
    display: list-item;
  }
  
  /* Misc
     ========================================================================== */
  
  /**
   * Add the correct display in IE 10+.
   */
  
  template {
    display: none;
  }
  
  /**
   * Add the correct display in IE 10.
   */
  
  [hidden] {
    display: none;
  }


  /* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float:right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-inline-start: auto;
  margin-inline-end: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.gallery-caption {
  position: relative;
}
.bypostauthor {
  position: relative;
}


.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
width: 1px;
word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
background-color: #eee;
clip: auto !important;
clip-path: none;
color: #444;
display: block;
font-size: 1em;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
/* Above WP toolbar. */
}

table{
  width: 100%;
}
.widgets_grid_box .widget_categories ul:before, .widgets_grid_box .widget_meta ul:before, .widgets_grid_box .widget_archive ul:before{
  clear: both;
  content: '';
  overflow: auto;
}

.widgets_grid_box  ul ul.children{
  padding: 0px 0px 0px 5px!important;
  border-radius: 0px;
  border: 0px!important;
  
}
.grid_box{
    height: 550px;
    margin-bottom: 30px;
}
.widgets_grid_box .widget_categories ul li ,
.widgets_grid_box .widget_archive ul li{
  text-align: right;
}

.widgets_grid_box .widget_categories ul li a ,
.widgets_grid_box .widget_archive ul li a{
  float: left;
}
.post-password-form label{
width: 100%;
}
input[type="password"]{
  width: 100%;
}
.wp-block-button{
  margin-bottom: 15px;
}
.has-background-dim ,
.has-background-dim p{
  color: #fff;
}

.col-lg-12.padding_zero{
  padding: 0px;
}
.sec_comments .col-lg-12{
  padding: 0px;
}

/*------===============-main-style-sheet-==============------*/
/*--==================spacing===================--*/
.pd_zero {
  padding: 0px !important;
}

.gutter_minus_15px {
  --bs-gutter-x: -15px!important;
}

.gutter_minus_25px {
  --bs-gutter-x: -25px!important;
}

.gutter_15px {
  --bs-gutter-x: 15px!important;
}

.gutter_20px {
  --bs-gutter-x: 20px!important;
}

.gutter_25px {
  --bs-gutter-x: 25px!important;
}

.gutter_30px {
  --bs-gutter-x: 30px!important;
}

.gutter_35px {
  --bs-gutter-x: 35px!important;
}

.gutter_40px {
  --bs-gutter-x: 40px!important;
}

.gutter_45px {
  --bs-gutter-x: 45px!important;
}

/*--==================padding top===================--*/
.pd_top_5 {
  padding-top: 5px !important;
}

.pd_top_10 {
  padding-top: 10px !important;
}

.pd_top_15 {
  padding-top: 15px !important;
}

.pd_top_20 {
  padding-top: 20px !important;
}

.pd_top_25 {
  padding-top: 25px !important;
}

.pd_top_30 {
  padding-top: 30px !important;
}

.pd_top_35 {
  padding-top: 35px !important;
}

.pd_top_40 {
  padding-top: 40px !important;
}

.pd_top_45 {
  padding-top: 45px !important;
}

.pd_top_50 {
  padding-top: 50px !important;
}

.pd_top_55 {
  padding-top: 55px !important;
}

.pd_top_60 {
  padding-top: 60px !important;
}

.pd_top_65 {
  padding-top: 65px !important;
}

.pd_top_70 {
  padding-top: 70px !important;
}

.pd_top_75 {
  padding-top: 75px !important;
}

.pd_top_80 {
  padding-top: 80px !important;
}

.pd_top_85 {
  padding-top: 85px !important;
}

.pd_top_90 {
  padding-top: 90px !important;
}

.pd_top_95 {
  padding-top: 95px !important;
}

.pd_top_100 {
  padding-top: 100px !important;
}

.pd_top_110 {
  padding-top: 110px !important;
}

.pd_top_120 {
  padding-top: 120px !important;
}

.pd_top_130 {
  padding-top: 130px !important;
}

.pd_top_140 {
  padding-top: 140px !important;
}

.pd_top_150 {
  padding-top: 150px !important;
}

.pd_top_160 {
  padding-top: 160px !important;
}

.pd_top_170 {
  padding-top: 170px !important;
}

.pd_top_180 {
  padding-top: 180px !important;
}

.pd_top_190 {
  padding-top: 190px !important;
}

.pd_top_200 {
  padding-top: 200px !important;
}

.pd_top_210 {
  padding-top: 210px !important;
}

.pd_top_220 {
  padding-top: 220px !important;
}

.pd_top_230 {
  padding-top: 230px !important;
}

.pd_top_240 {
  padding-top: 240px !important;
}

.pd_top_250 {
  padding-top: 250px !important;
}

.pd_top_260 {
  padding-top: 260px !important;
}

.pd_top_270 {
  padding-top: 270px !important;
}

.pd_top_280 {
  padding-top: 280px !important;
}

.pd_top_290 {
  padding-top: 290px !important;
}

.pd_top_300 {
  padding-top: 300px !important;
}

/*--==================padding top end===================--*/
/*--==================padding left===================--*/
.pd_left_5 {
  padding-inline-start: 5px;
}

.pd_left_10 {
  padding-inline-start: 10px !important;
}

.pd_left_15 {
  padding-inline-start: 15px !important;
}

.pd_left_20 {
  padding-inline-start: 20px !important;
}

.pd_left_25 {
  padding-inline-start: 25px !important;
}

.pd_left_30 {
  padding-inline-start: 30px !important;
}

.pd_left_35 {
  padding-inline-start: 35px !important;
}

.pd_left_40 {
  padding-inline-start: 40px !important;
}

.pd_left_45 {
  padding-inline-start: 45px !important;
}

.pd_left_50 {
  padding-inline-start: 50px !important;
}

.pd_left_55 {
  padding-inline-start: 55px !important;
}

.pd_left_60 {
  padding-inline-start: 60px !important;
}

.pd_left_65 {
  padding-inline-start: 65px !important;
}

.pd_left_70 {
  padding-inline-start: 70px !important;
}

.pd_left_75 {
  padding-inline-start: 75px !important;
}

.pd_left_80 {
  padding-inline-start: 80px !important;
}

.pd_left_85 {
  padding-inline-start: 85px !important;
}

.pd_left_90 {
  padding-inline-start: 90px !important;
}

.pd_left_95 {
  padding-inline-start: 95px !important;
}

.pd_left_100 {
  padding-inline-start: 100px !important;
}

/*--==================padding left end===================--*/
/*--==================padding right===================--*/
.pd_right_5 {
  padding-inline-end: 5px !important;
}

.pd_right_10 {
  padding-inline-end: 10px !important;
}

.pd_right_15 {
  padding-inline-end: 15px !important;
}

.pd_right_20 {
  padding-inline-end: 20px !important;
}

.pd_right_25 {
  padding-inline-end: 25px !important;
}

.pd_right_30 {
  padding-inline-end: 30px !important;
}

.pd_right_35 {
  padding-inline-end: 35px !important;
}

.pd_right_40 {
  padding-inline-end: 40px !important;
}

.pd_right_45 {
  padding-inline-end: 45px !important;
}

.pd_right_50 {
  padding-inline-end: 50px !important;
}

.pd_right_55 {
  padding-inline-end: 55px !important;
}

.pd_right_60 {
  padding-inline-end: 60px !important;
}

.pd_right_65 {
  padding-inline-end: 65px !important;
}

.pd_right_70 {
  padding-inline-end: 70px !important;
}

.pd_right_75 {
  padding-inline-end: 75px !important;
}

.pd_right_80 {
  padding-inline-end: 80px !important;
}

.pd_right_85 {
  padding-inline-end: 85px !important;
}

.pd_right_90 {
  padding-inline-end: 90px !important;
}

.pd_right_95 {
  padding-inline-end: 95px !important;
}

.pd_right_100 {
  padding-inline-end: 100px !important;
}

/*--==================padding right end===================--*/
/*--==================padding bottom===================--*/
.pd_bottom_5 {
  padding-bottom: 5px;
}

.pd_bottom_10 {
  padding-bottom: 10px;
}

.pd_bottom_15 {
  padding-bottom: 15px;
}

.pd_bottom_20 {
  padding-bottom: 20px;
}

.pd_bottom_25 {
  padding-bottom: 25px;
}

.pd_bottom_30 {
  padding-bottom: 30px;
}

.pd_bottom_35 {
  padding-bottom: 35px;
}

.pd_bottom_40 {
  padding-bottom: 40px;
}

.pd_bottom_45 {
  padding-bottom: 45px;
}

.pd_bottom_50 {
  padding-bottom: 50px;
}

.pd_bottom_55 {
  padding-bottom: 55px;
}

.pd_bottom_60 {
  padding-bottom: 60px;
}

.pd_bottom_65 {
  padding-bottom: 65px;
}

.pd_bottom_70 {
  padding-bottom: 70px;
}

.pd_bottom_75 {
  padding-bottom: 75px;
}

.pd_bottom_80 {
  padding-bottom: 80px;
}

.pd_bottom_85 {
  padding-bottom: 85px;
}

.pd_bottom_90 {
  padding-bottom: 90px;
}

.pd_bottom_95 {
  padding-bottom: 95px;
}

.pd_bottom_100 {
  padding-bottom: 100px;
}

.pd_bottom_110 {
  padding-bottom: 110px;
}

.pd_bottom_120 {
  padding-bottom: 120px !important;
}

.pd_bottom_130 {
  padding-bottom: 130px !important;
}

.pd_bottom_140 {
  padding-bottom: 140px !important;
}

.pd_bottom_150 {
  padding-bottom: 150px !important;
}

.pd_bottom_160 {
  padding-bottom: 160px !important;
}

.pd_bottom_170 {
  padding-bottom: 170px !important;
}

.pd_bottom_180 {
  padding-bottom: 180px !important;
}

.pd_bottom_190 {
  padding-bottom: 190px !important;
}

.pd_bottom_200 {
  padding-bottom: 200px !important;
}

.pd_bottom_210 {
  padding-bottom: 2010px !important;
}

.pd_bottom_220 {
  padding-bottom: 220px !important;
}

.pd_bottom_230 {
  padding-bottom: 230px !important;
}

.pd_bottom_240 {
  padding-bottom: 240px !important;
}

.pd_bottom_250 {
  padding-bottom: 250px !important;
}

.pd_bottom_260 {
  padding-bottom: 260px !important;
}

.pd_bottom_270 {
  padding-bottom: 270px !important;
}

.pd_bottom_280 {
  padding-bottom: 280px !important;
}

.pd_bottom_290 {
  padding-bottom: 290px !important;
}

.pd_bottom_300 {
  padding-bottom: 300px !important;
}

/*--==================padding top end===================--*/
/*--==================margin top===================--*/
.mr_top_5 {
  margin-top: 5px;
}

.mr_top_10 {
  margin-top: 10px;
}

.mr_top_15 {
  margin-top: 15px;
}

.mr_top_20 {
  margin-top: 20px;
}

.mr_top_25 {
  margin-top: 25px;
}

.mr_top_30 {
  margin-top: 30px;
}

.mr_top_35 {
  margin-top: 35px;
}

.mr_top_40 {
  margin-top: 40px;
}

.mr_top_45 {
  margin-top: 45px;
}

.mr_top_50 {
  margin-top: 50px;
}

.mr_top_55 {
  margin-top: 55px;
}

.mr_top_60 {
  margin-top: 60px;
}

.mr_top_65 {
  margin-top: 65px;
}

.mr_top_70 {
  margin-top: 70px;
}

.mr_top_75 {
  margin-top: 75px;
}

.mr_top_80 {
  margin-top: 80px;
}

.mr_top_85 {
  margin-top: 85px;
}

.mr_top_90 {
  margin-top: 90px;
}

.mr_top_95 {
  margin-top: 95px;
}

.mr_top_100 {
  margin-top: 100px;
}

.mr_top_minus_40 {
  margin-top: -40px;
}

.mr_top_minus_50 {
  margin-top: -50px;
}

.mr_top_minus_60 {
  margin-top: -60px;
}

.mr_top_minus_70 {
  margin-top: -70px;
}

.mr_top_minus_80 {
  margin-top: -80px;
}

.mr_top_minus_90 {
  margin-top: -90px;
}

.mr_top_minus_100 {
  margin-top: -100px;
}

.mr_top_minus_110 {
  margin-top: -110px;
}

.mr_top_minus_120 {
  margin-top: -120px;
}

.mr_top_minus_130 {
  margin-top: -130px;
}

.mr_top_minus_140 {
  margin-top: -140px;
}

.mr_top_minus_150 {
  margin-top: -150px;
}

.mr_top_minus_160 {
  margin-top: -160px;
}

.mr_top_minus_170 {
  margin-top: -170px;
}

.mr_top_minus_320 {
  margin-top: -320px;
}

/*--==================margin top end===================--*/
/*--==================margin right===================--*/
.mr_right_5 {
  margin-inline-end: 5px;
}

.mr_right_10 {
  margin-inline-end: 10px;
}

.mr_right_15 {
  margin-inline-end: 15px;
}

.mr_right_20 {
  margin-inline-end: 20px;
}

.mr_right_25 {
  margin-inline-end: 25px;
}

.mr_right_30 {
  margin-inline-end: 30px;
}

.mr_right_35 {
  margin-inline-end: 35px;
}

.mr_right_40 {
  margin-inline-end: 40px;
}

.mr_right_45 {
  margin-inline-end: 45px;
}

.mr_right_50 {
  margin-inline-end: 50px;
}

.mr_right_55 {
  margin-inline-end: 55px;
}

.mr_right_60 {
  margin-inline-end: 60px;
}

.mr_right_65 {
  margin-inline-end: 65px;
}

.mr_right_70 {
  margin-inline-end: 70px;
}

.mr_right_75 {
  margin-inline-end: 75px;
}

.mr_right_80 {
  margin-inline-end: 80px;
}

.mr_right_85 {
  margin-inline-end: 85px;
}

.mr_right_90 {
  margin-inline-end: 90px;
}

.mr_right_95 {
  margin-inline-end: 95px;
}

.mr_right_100 {
  margin-inline-end: 100px;
}

.mr_right_minus_40 {
  margin-inline-end: -40px;
}

.mr_right_minus_50 {
  margin-inline-end: -50px;
}

.mr_right_minus_60 {
  margin-inline-end: -60px;
}

.mr_right_minus_70 {
  margin-inline-end: -70px;
}

.mr_right_minus_80 {
  margin-inline-end: -80px;
}

.mr_right_minus_90 {
  margin-inline-end: -90px;
}

.mr_right_minus_100 {
  margin-inline-end: -100px;
}

.mr_right_minus_110 {
  margin-inline-end: -110px;
}

.mr_right_minus_120 {
  margin-inline-end: -120px;
}

.mr_right_minus_130 {
  margin-inline-end: -130px;
}

.mr_right_minus_140 {
  margin-inline-end: -140px;
}

.mr_right_minus_150 {
  margin-inline-end: -150px;
}

.mr_right_minus_160 {
  margin-inline-end: -160px;
}

.mr_right_minus_170 {
  margin-inline-end: -170px;
}

.mr_right_minus_320 {
  margin-inline-end: -320px;
}

/*--==================margin right end===================--*/
/*--==================margin left===================--*/
.mr_left_5 {
  margin-inline-start: 5px;
}

.mr_left_10 {
  margin-inline-start: 10px;
}

.mr_left_15 {
  margin-inline-start: 15px;
}

.mr_left_20 {
  margin-inline-start: 20px;
}

.mr_left_25 {
  margin-inline-start: 25px;
}

.mr_left_30 {
  margin-inline-start: 30px;
}

.mr_left_35 {
  margin-inline-start: 35px;
}

.mr_left_40 {
  margin-inline-start: 40px;
}

.mr_left_45 {
  margin-inline-start: 45px;
}

.mr_left_50 {
  margin-inline-start: 50px;
}

.mr_left_55 {
  margin-inline-start: 55px;
}

.mr_left_60 {
  margin-inline-start: 60px;
}

.mr_left_65 {
  margin-inline-start: 65px;
}

.mr_left_70 {
  margin-inline-start: 70px;
}

.mr_left_75 {
  margin-inline-start: 75px;
}

.mr_left_80 {
  margin-inline-start: 80px;
}

.mr_left_85 {
  margin-inline-start: 85px;
}

.mr_left_90 {
  margin-inline-start: 90px;
}

.mr_left_95 {
  margin-inline-start: 95px;
}

.mr_left_100 {
  margin-inline-start: 100px;
}

.mr_left_minus_40 {
  margin-inline-start: -40px;
}

.mr_left_minus_50 {
  margin-inline-start: -50px;
}

.mr_left_minus_60 {
  margin-inline-start: -60px;
}

.mr_left_minus_70 {
  margin-inline-start: -70px;
}

.mr_left_minus_80 {
  margin-inline-start: -80px;
}

.mr_left_minus_90 {
  margin-inline-start: -90px;
}

.mr_left_minus_100 {
  margin-inline-start: -100px;
}

.mr_left_minus_110 {
  margin-inline-start: -110px;
}

.mr_left_minus_120 {
  margin-inline-start: -120px;
}

.mr_left_minus_130 {
  margin-inline-start: -130px;
}

.mr_left_minus_140 {
  margin-inline-start: -140px;
}

.mr_left_minus_150 {
  margin-inline-start: -150px;
}

.mr_left_minus_160 {
  margin-inline-start: -160px;
}

.mr_left_minus_170 {
  margin-inline-start: -170px;
}

.mr_left_minus_320 {
  margin-inline-start: -320px;
}

/*--==================margin left end===================--*/
/*--==================margin bottom===================--*/
.mr_bottom_5 {
  margin-bottom: 5px;
}

.mr_bottom_10 {
  margin-bottom: 10px;
}

.mr_bottom_15 {
  margin-bottom: 15px;
}

.mr_bottom_20 {
  margin-bottom: 20px;
}

.mr_bottom_25 {
  margin-bottom: 25px;
}

.mr_bottom_30 {
  margin-bottom: 30px;
}

.mr_bottom_35 {
  margin-bottom: 35px;
}

.mr_bottom_40 {
  margin-bottom: 40px;
}

.mr_bottom_45 {
  margin-bottom: 45px;
}

.mr_bottom_50 {
  margin-bottom: 50px;
}

.mr_bottom_55 {
  margin-bottom: 55px;
}

.mr_bottom_60 {
  margin-bottom: 60px;
}

.mr_bottom_65 {
  margin-bottom: 65px;
}

.mr_bottom_70 {
  margin-bottom: 70px;
}

.mr_bottom_75 {
  margin-bottom: 75px;
}

.mr_bottom_80 {
  margin-bottom: 80px;
}

.mr_bottom_85 {
  margin-bottom: 85px;
}

.mr_bottom_90 {
  margin-bottom: 90px;
}

.mr_bottom_95 {
  margin-bottom: 95px;
}

.mr_bottom_100 {
  margin-bottom: 100px;
}

.mr_bottom_minus_90 {
  margin-bottom: -90px;
}

.mr_bottom_minus_100 {
  margin-bottom: -100px;
}

.mr_bottom_minus_110 {
  margin-bottom: -110px;
}

.mr_bottom_minus_140 {
  margin-bottom: -140px;
}

.mr_bottom_minus_150 {
  margin-bottom: -150px;
}

.mr_bottom_minus_200 {
  margin-bottom: -200px;
}

.margin_extra {
  margin: -47px -178px -330px 0px !important;
}

/*--==================margin bottom end===================--*/
/*--================== top end===================--*/
@media (max-width: 992px) {
  .mr_md_top_zero {
    margin-top: 0px !important;
  }
  .mr_md_zero {
    margin: 0px !important;
  }
  .md_pd_left_zero {
    padding-inline-start: 0 !important;
  }
  .md_pd_right_zero {
    padding-inline-end: 0 !important;
  }
  .md_pd_left_15 {
    padding-inline-start: 15px !important;
  }
  .md_pd_right_15 {
    padding-inline-end: 15px !important;
  }
}
/*--==================top  end===================--*/
/*--==================spacing===================--*/
/*--==================background option===================--*/
.bg_op_1 {
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}

.bg_op_2 {
  background-repeat: no-repeat !important;
  background-position: top !important;
  background-size: contain !important;
}

.bg_op_3 {
  background-repeat: no-repeat !important;
  background-position: top !important;
}

.bg_pattern_2 {
  background-position: bottom left !important;
  background-repeat: no-repeat !important;
  background-size: 68% auto !important;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s !important;
}

.bg_pattern_3 {
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: 55vw auto !important;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s !important;
}

/*--==================spacing===================--*/
/*--================ height ====================--*/
.height_200px, .height_200 {
  height: 200px !important;
}

.height_210px, .height_210 {
  height: 210px !important;
}

.height_220px, .height_220 {
  height: 220px !important;
}

.height_230px, .height_230 {
  height: 230px !important;
}

.height_235px, .height_235 {
  height: 235px !important;
}

.height_240px, .height_240 {
  height: 240px !important;
}

.height_250px, .height_250 {
  height: 250px !important;
}

.height_260px, .height_260 {
  height: 260px !important;
}

.height_264px, .height_264 {
  height: 264px !important;
}

.height_350px, .height_350 {
  height: 350px !important;
}

.height_360px, .height_360 {
  height: 360px !important;
}

.height_400px, .height_400 {
  height: 400px !important;
}

.height_500px, .height_500 {
  height: 500px !important;
}

.height_510px, .height_510 {
  height: 510px !important;
}

.height_530px, .height_530 {
  height: 530px !important;
}

.height_540px, .height_540 {
  height: 540px !important;
}

.height_550, .height_550px {
  height: 550px !important;
}

.height_560px, .height_560 {
  height: 560px !important;
}

.height_570px, .height_570 {
  height: 570px !important;
}

.height_580px, .height_580 {
  height: 580px !important;
}

.height_590px, .height_590 {
  height: 590px !important;
}

.height_600px, .height_600 {
  height: 600px !important;
}

/*--================ height ====================--*/
/*--================ z_99 ====================--*/
.z_99 {
  z-index: 99;
}

/*--================ z_99 ====================--*/
/*--================ image_fit ====================--*/
.image_fit {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}

/*--================ image_fit ====================--*/
/*--================ rounded_bottom_left_30 ====================--*/
.rounded_radius {
  border-radius: 30px;
}

.rounded_bottom_right_30, .rbr_30 {
  border-bottom-right-radius: 30px !important;
}

.rounded_bottom_left_30, .rbl_30 {
  border-bottom-left-radius: 30px !important;
}

.rounded_top_left_30, .rtl_30 {
  border-top-left-radius: 30px !important;
}

.rounded_top_right_30, .rtr_30 {
  border-top-right-radius: 30px !important;
}

.rounded_bottom_right_0, .rbr_0 {
  border-bottom-right-radius: 0px !important;
}

.rounded_bottom_left_0, .rbl_0 {
  border-bottom-left-radius: 0px !important;
}

.rounded_top_left_0, .rtl_0 {
  border-top-left-radius: 0px !important;
}

.rounded_top_right_0, .rtr_0 {
  border-top-right-radius: 0px !important;
}

.border_solid_2px {
  border: 2px solid rgba(0, 0, 0, 0.0392156863);
}

/*--================ image_fit ====================--*/
/*--================ float unset ====================--*/
.float-unset {
  float: unset !important;
}

/*--================ float unset ====================--*/
/*--================ font_20 ====================--*/
.font_20 {
  font-size: 20px !important;
  line-height: 32px !important;
}

.font_24 {
  font-size: 24px !important;
  line-height: 36px !important;
}

.font_30 {
  font-size: 30px !important;
  line-height: 42px !important;
}

.font_70 {
  font-size: 70px !important;
  line-height: 80px !important;
}

/*--================  font_20 ====================--*/
@media (max-width: 992px) {
  .d_md_none {
    display: none;
  }
}
/*--==================import styles===================--*/
:root {
  --creote-family-one: "Spartan", sans-serif!important;
  --creote-family-two: "Inter", sans-serif!important;
  --primary-color-one: #781D7D;
  --primary-color-two: #949B9F;
  --primary-color-three: #f0f3f9;
  --color-white:#fff;
  --primary-color-four:#fafcff;
  --primary-color-five: #1f2530;
  --text-color-dark: #4a4e56;
  --text-color-dark-two: #888888;
  --text-color-light: #aaafb8;
  --heading-dark: #282f3b;
  --link-color-dark: #282f3b;
  --border-color-dark: #e4e7ee;
  --border-color-dark-two:#373e4a;
  --border-color-light: #fbfcfe;
  --menu-color: #282f3b;
  --menu-color-white: #ffffff;
  --menu-dropdown-color: #282f3b;
  --menu-active-color: #781D7D;
  --box-shadow: 0px 0px 40px 0px rgba(0,0,0,.09);
  --box-shadow-two: 0px 3px 16px 0px rgba(0 , 0 , 0 , .05);
  --footer-default-bgcolor: #1f2530;
  --preloader-background-color: #781D7D;
  --bg-light-color-one:#F0F3F947;
  --bg-light-color-two:#F0F3F969;
}

.color_white {
  color: #fff !important;
}

.color_dark {
  color: var(--heading-dark) !important;
}

/*--================bg light colors ====================--*/
.bg_light_1 {
  background: var(--primary-color-three) !important;
}

.bg_light_2 {
  background: var(--bg-light-color-one) !important;
}

.bg_light_3 {
  background: var(--bg-light-color-two) !important;
}

/*--================bg light colors ====================--*/
/*--================bg dark colors ====================--*/
.bg_dark_1 {
  background: var(--primary-color-one) !important;
}

.bg_dark_2 {
  background: var(--primary-color-two) !important;
}

.bg_dark_3 {
  background: var(--primary-color-five) !important;
}

/*--================bg dark colors ====================--*/
/*--================divider colors ====================--*/
.divider_1 {
  border-bottom: 1px solid var(--border-color-dark);
}

.divider_2 {
  border-bottom: 1px dashed var(--border-color-dark);
}

.divider_w_1 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/*--================divider colors ====================--*/
/*--================border colors ====================--*/
.border_l {
  border-left: 1px solid var(--border-color-dark);
}

.border_r {
  border-right: 1px solid var(--border-color-dark);
}

.border_t {
  border-top: 1px solid var(--border-color-dark);
}

.border_b {
  border-bottom: 1px solid var(--border-color-dark);
}

.border_light_color {
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
}

.border_l_0 {
  border-left: 0px !important;
}

.border_r_0 {
  border-right: 0px !important;
}

.border_t_0 {
  border-top: 0px !important;
}

.border_b_0 {
  border-bottom: 0px !important;
}

/*--================border colors ====================--*/
/*--================box shadows ======================--*/
.box_shadow_2 {
  box-shadow: var(--box-shadow-two);
}

/*--================box shadows ======================--*/
/*------===============-css-start-==============------*/
body {
  font-family: var(--creote-family-two);
  font-size: 16px;
  color: var(--text-color-dark);
  font-weight: 400;
  background: #ffffff;
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased !important;
  -moz-font-smoothing: antialiased !important;
  -o-font-smoothing: antialiased !important;
  -ms-font-smoothing: antialiased !important;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  padding-inline-start: 17px;
}

.page_wapper {
  position: relative;
}
.page_wapper #wrapper_full {
  overflow: hidden;
}

.footer_sticky_body .content_all_warpper {
  position: relative;
  z-index: 99999;
}

.fancybox-container {
  z-index: 99999999;
}

.admin-bar .fixed-header .sticky_header_main {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .fixed-header .sticky_header_main {
    top: 0px;
  }
}
.single-service.right-sidebar .content-area article.col-lg-12.service,
.single-service.left-sidebar .content-area article.col-lg-12.service {
  padding-inline-start: 7px;
  padding-inline-end: 7px;
}

@media (max-width: 992px) {
  body.home .page_header_default {
    padding: 100px 0px;
    min-height: auto;
  }
}
.no-results.not-found .header {
  padding: 0px !important;
  box-shadow: unset !important;
}

.row {
  --bs-gutter-x: 0;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  padding-inline-end: 15px;
  padding-inline-start: 15px;
}

h1 a,
h1,
h2 a,
h2,
h3 a,
h3,
h4 a,
h4,
h5 a,
h5,
h6 a,
h6 {
  font-weight: 700;
  margin: 0;
  color: var(--primary-color-two);
  font-family: var(--creote-family-one);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  word-break: break-word;
}

.h1,
h1 {
  line-height: 54px;
}

.h2,
h2 {
  line-height: 44px;
}

.h3,
h3 {
  line-height: 38px;
}

.h4,
h4 {
  line-height: 34px;
}

.h5,
h5 {
  line-height: 30px;
}

.h6,
h6 {
  line-height: 26px;
}

p {
  font-size: 16px;
  line-height: 26px;
  font-family: var(--creote-family-two);
  font-weight: 400;
  margin-bottom: 15px;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}

input,
input[type=text],
input[type=email],
input[type=number],
textarea,
select {
  position: relative;
  height: 56px;
  line-height: 26px;
  border-radius: 5px;
  border: 1px solid var(--border-color-dark);
  width: 100%;
  padding: 4px 15px 0px 15px;
  display: block;
  transition: 0.5s ease-in-out !important;
  -moz-transition: 0.5s ease-in-out !important;
  -o-transition: 0.5s ease-in-out !important;
  -ms-transition: 0.5s ease-in-out !important;
  margin-bottom: 20px;
  color: var(--text-color-dark);
}

input::-moz-placeholder {
  color: var(--text-color-dark);
}

input::placeholder {
  color: var(--text-color-dark);
}

textarea {
  height: 150px;
  padding: 20px 20px;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
  height: auto;
  margin: 0px;
  display: inline-block;
  padding: 0px;
}

input:focus,
textarea:focus,
select:focus,
input:active,
textarea:active,
select:active {
  outline: 0px;
  border-color: var(--primary-color-one);
}

body input[type=submit], body button[type=submit] {
  position: relative;
  display: inline-block;
  min-width: 160px;
  min-height: 60px;
  font-size: 12px;
  line-height: 60px;
  padding: 0px 20px;
  border-radius: 10px 0px 10px 0px;
  border: 1px solid var(--border-color-one);
  background: var(--primary-color-one);
  font-family: var(--creote-family-one);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
    padding: 0px 15px;
  }
}
.container-fluid {
  padding: 0px;
}

.full-container {
  position: static;
  max-width: 1800px;
  padding: 0px 15px;
  margin: 0 auto;
}

.large-container {
  position: static;
  max-width: 1480px;
  padding: 0px 15px;
  margin: 0 auto;
}

.medium-container {
  position: static;
  max-width: 1350px;
  padding: 0px 15px;
  margin: 0 auto;
}

.default-container {
  position: static;
  max-width: 1280px;
  padding: 0px 15px;
  margin: 0 auto;
}

.auto-container,
.auto_container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.small-container {
  max-width: 680px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--primary-color-one);
  transition: 0.5s ease-in-out !important;
  -moz-transition: 0.5s ease-in-out !important;
  -o-transition: 0.5s ease-in-out !important;
  -ms-transition: 0.5s ease-in-out !important;
}

a:hover {
  color: var(--primary-color-one);
}

#wrapper,
#content {
  width: 100%;
  height: 100%;
}

.elementor-column {
  min-height: 0px !important;
}

ul li,
ol li {
  margin-bottom: 5px;
}

/*--==================vc_custom_r_s ===================--*/
.vc_custom_r_s .container-fluid {
  padding: 0px;
}

.header_area .vc_column-inner {
  padding: 0px !important;
}

/*----====Content--css========----*/
body.error404 .right-sidebar .content-area,
body.error404 .left-sidebar .content-area {
  display: none;
}

.project-template-template-fullwidth article.col-lg-12 {
  padding: 0px;
}

.single-post .sec_comments .col-lg-12 {
  padding: 0px;
}
/*----====preloader--css========----*/
.preloader-wrap {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
}
.preloader-wrap::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
}
.preloader-wrap .preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 85%;
  height: 85%;
  z-index: 999;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../img/product/3.webp");
  background-size: contain;
}
.preloader-wrap .preloader img{
    width: 460px;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 20px;
}
.preloader-close {
  position: fixed;
  z-index: 999999;
  color: var(--preloader-background-color);
  cursor: pointer;
  right: 20px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  top: 20px;
  font-weight: 600;
  border-radius: 50px;
  background: #fff;
  box-shadow: var(--box-shadow);
}

/*----====page-header--css========----*/
.page_header_default {
  position: relative;
  min-height: 320px;
  padding: 100px 0px 100px;
  overflow: hidden;
  align-items: center;
}
.page_header_default::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #282f3b;
  opacity: 0.85;
  z-index: 1;
}
.page_header_default.bread{
  background-repeat: no-repeat;
  background-position: center;
}
.page_header_default .parallax_cover {
  position: absolute;
  top: 0;
  min-height: 485px;
  height: 100%;
  width: 100%;
  left: 0;
}
.page_header_default .parallax_cover img {
  max-width: 100%;
  height: 100% !important;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0px;
}
.page_header_default .page_header_content {
  position: relative;
  z-index: 3;
  text-align: center;
}
.page_header_default .page_header_content .banner_title_inner {
  position: relative;
  margin-bottom: 20px;
}
.page_header_default .page_header_content .banner_title_inner .title_page {
  color: #fff;
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  font-family: var(--creote-family-one);
}

@media (max-width: 1400px) {
  .page_header_default .simpleParallax {
    position: absolute;
    top: 0;
    height: 100%;
    bottom: 0;
    right: 0;
    width: 100%;
    left: 0;
  }
}
@media (max-width: 1200px) {
  .page_header_default::after {
    display: none;
  }
}
.breadcrumbs {
  position: relative;
  display: inline-block;
}
.breadcrumbs ul {
  position: relative;
  padding: 0;
}
.breadcrumbs ul li {
  margin-inline-end: 30px;
  color: #fff;
  position: relative;
  font-family: var(--creote-family-one);
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.breadcrumbs ul li a {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  text-decoration: none;
  font-family: var(--creote-family-one);
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  padding-inline-end: 30px;
}
.breadcrumbs ul li a:before {
  position: absolute;
  content: "\f105";
  font-family: "FontAwesome";
  right: 11px;
  top: -4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.breadcrumbs ul li a:last-child {
  padding-inline-end: 0px;
}
.breadcrumbs ul li a:last-child:before {
  display: none;
}
.breadcrumbs ul li:before {
  position: absolute;
  content: "\f105";
  font-family: "FontAwesome";
  right: -19px;
  top: -2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.breadcrumbs ul li:last-child {
  margin-inline-end: 0;
}
.breadcrumbs ul li:last-child::before {
  display: none;
}

.home.blog .page_header_default {
  padding: 210px 0px 100px;
}
.home.blog .page_header_default .banner_title_inner {
  margin: 0;
}
.home.blog .page_header_default .banner_title_inner h1 {
  margin: 0px;
}
.news_box.style_ten {
  position: relative;
  padding: 15px;
  box-shadow: var(--box-shadow-two);
  background: #fff;
  transform: translateY(0px);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  margin-bottom: 30px;
  height: 460px;
}
.news_box.style_ten .image_box {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
}
.news_box.style_ten .image_box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  opacity: 0;
}
.news_box.style_ten .image_box img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.news_box.style_ten:hover {
  transform: translateY(-10px);
}
.news_box.style_ten:hover .image_box:before {
  opacity: 0.5;
}
.news_box.style_ten h2 {
  line-height: normal;
}
.news_box.style_ten h2 a {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 15px;
  color: var(--heading-dark);
  display: block;
}
.news_box.style_ten ul {
  padding: 0px;
  position: relative;
  margin: 0px 0px 5px;
}
.news_box.style_ten ul li {
  display: inline-block;
  margin-inline-end: 15px;
  font-size: 15px;
}
.news_box.style_ten ul li.cag {
  position: relative;
  padding: 5px 15px;
  background: var(--primary-color-one);
}
.news_box.style_ten ul li.cag a {
  color: #fff;
}
.news_box.style_ten ul li.cag i {
  display: none;
}
.news_box.style_ten ul li.dte i {
  color: var(--primary-color-one);
  margin-inline-end: 5px;
}
.news_box.style_ten ul li:last-child {
  margin-inline-end: 0px;
}

.blog_single_pageheader.page_header_default {
  padding: 0px;
}
.blog_single_pageheader.page_header_default .page_header_content {
  padding: 270px 0px 20px;
}
.blog_single_pageheader.page_header_default .page_header_content .banner_title_inner .date span {
  color: #fff;
  font-family: var(--creote-family-one);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
  display: block;
  margin-bottom: 15px;
}
.blog_single_pageheader.page_header_default .meta_blog_single {
  position: relative;
  z-index: 3;
  text-align: inherit;
  padding-bottom: 25px;
}
.blog_single_pageheader.page_header_default .meta_blog_single .left_side {
  position: relative;
  padding-top: 30px;
  float: left;
}
.blog_single_pageheader.page_header_default .meta_blog_single .left_side .category,
.blog_single_pageheader.page_header_default .meta_blog_single .left_side .comments {
  position: relative;
  margin-inline-end: 15px;
  display: inline-block;
  color: #fff;
}
.blog_single_pageheader.page_header_default .meta_blog_single .left_side .category a,
.blog_single_pageheader.page_header_default .meta_blog_single .left_side .category span,
.blog_single_pageheader.page_header_default .meta_blog_single .left_side .comments a,
.blog_single_pageheader.page_header_default .meta_blog_single .left_side .comments span {
  color: #fff;
  font-family: var(--creote-family-one);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
}
.blog_single_pageheader.page_header_default .meta_blog_single .left_side .category i,
.blog_single_pageheader.page_header_default .meta_blog_single .left_side .comments i {
  display: inline-block;
  font-size: 16px;
  color: var(--primary-color-one);
  margin-inline-end: 6px;
}
.blog_single_pageheader.page_header_default .meta_blog_single .right_side {
  position: relative;
  float: right;
}
.blog_single_pageheader.page_header_default .meta_blog_single .right_side .content_box_auht {
  position: relative;
}
.blog_single_pageheader.page_header_default .meta_blog_single .right_side .content_box_auht .authour_content {
  position: relative;
  margin-inline-end: 10px;
  text-align: right;
  padding: 10px 0px 0px;
}
.blog_single_pageheader.page_header_default .meta_blog_single .right_side .content_box_auht .authour_content h6 {
  color: #fff;
  font-family: var(--creote-family-one);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 5px;
}
.blog_single_pageheader.page_header_default .meta_blog_single .right_side .content_box_auht .authour_content h4 {
  color: #fff;
  font-family: var(--creote-family-one);
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}
.blog_single_pageheader.page_header_default .meta_blog_single .right_side .content_box_auht .authour_image {
  position: relative;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
}
.blog_single_pageheader.page_header_default .meta_blog_single .right_side .content_box_auht .authour_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 992px) {
  .page_header_default {
    padding: 100px 0px;
    min-height: auto;
  }
  .home.blog .page_header_default {
    padding: 100px 0px;
    min-height: auto;
  }
  .page_header_default .parallax_cover {
    min-height: 100%;
  }
  .page_header_default .page_header_content .banner_title_inner h1 {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (max-width: 768px) {
  .page_header_default .page_header_content .banner_title_inner h1 {
    font-size: 35px;
    line-height: 45px;
  }
}


/*------back-to-top------------*/
.prgoress_indicator {
  position: fixed;
  right: 50px;
  bottom: 75px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(22, 93, 245, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transform: translateY(15px) !important;
  transition: all 200ms linear !important;
}
.prgoress_indicator.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}
.prgoress_indicator::after {
  position: absolute;
  content: "\f106";
  font-family: "FontAwesome";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: var(--primary-color-one);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  font-weight: 900;
  z-index: 1;
  transition: all 200ms linear !important;
}
.prgoress_indicator::before {
  position: absolute;
  content: "\f106";
  font-family: "FontAwesome";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear !important;
}
.prgoress_indicator:hover ::after {
  color: var(--primary-color-one);
}
.prgoress_indicator:hover ::before {
  opacity: 1;
}
.prgoress_indicator svg path {
  fill: none;
}
.prgoress_indicator svg.progress-circle path {
  stroke: var(--primary-color-one);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear !important;
}

.footer_sticky_body .prgoress_indicator {
  z-index: 99999999;
}

body.blog .extra_tit, body.archive .extra_tit {
  display: none;
}
body.blog .enabled_custom_title .title_page .main_tit, body.archive .enabled_custom_title .title_page .main_tit {
  display: block;
}
body .enabled_custom_title .title_page .main_tit {
  display: none;
}

/*----------theme-button-csss-------*/
.application_button {
  display: inline-block;
  padding: 0px 25px;
  border-radius: 10px 0px 10px 0px;
  background: var(--primary-color-one);
  color: #fff;
  border: 1px solid var(--primary-color-one);
  line-height: 56px;
  font-family: var(--creote-family-one);
  min-height: 56px;
  min-width: 160px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.application_button:hover {
  background: #fff;
  color: var(--primary-color-one);
  border-radius: 0px 10px 0px 10px;
}

.theme-btn {
  position: relative;
  font-family: var(--creote-family-one);
  /*----theme-btn one-----*/
  /*----theme-btn two-----*/
}
.theme-btn.one {
  display: inline-block;
  padding: 0px 25px;
  border-radius: 10px 0px 10px 0px;
  background: var(--primary-color-one);
  color: #fff;
  border: 1px solid var(--primary-color-one);
  line-height: 56px;
  min-height: 56px;
  min-width: 160px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.theme-btn.one:hover {
  background: #fff;
  color: var(--primary-color-one);
  border-radius: 0px 10px 0px 10px;
}
.theme-btn.two {
  display: inline-block;
  padding: 0px 25px;
  border-radius: 10px 0px 10px 0px;
  background: transparent;
  color: var(--primary-color-one);
  border: 1px solid var(--primary-color-one);
  line-height: 56px;
  min-height: 56px;
  min-width: 160px;
  text-align: center;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-weight: 600;
  font-size: 15px;
}
.theme-btn.two:hover {
  background: var(--primary-color-one);
  color: #fff;
  border-radius: 0px 10px 0px 10px;
}
.theme-btn.three {
  display: inline-block;
  padding: 0px 25px;
  border-radius: 10px 0px 10px 0px;
  background: var(--primary-color-one);
  color: #fff;
  line-height: 50px;
  min-height: 50px;
  min-width: 160px;
  text-align: center;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  overflow: hidden;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 0;
  border: unset !important;
}
.theme-btn.three::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  left: -100%;
  top: 0;
  bottom: 0;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  background: var(--primary-color-two);
  z-index: -1;
}
.theme-btn.three::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  right: -100%;
  top: 0;
  bottom: 0;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  background: var(--primary-color-two);
  z-index: -1;
}
.theme-btn.three:hover {
  color: #fff;
}
.theme-btn.three:hover::after {
  right: 0;
}
.theme-btn.three:hover::before {
  left: 0;
}
.theme-btn.four {
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 22px;
  color: var(--heading-dark);
  text-transform: uppercase;
  background: none !important;
  font-family: var(--creote-family-one);
  font-weight: 600;
}
.theme-btn.four i {
  position: relative;
  top: 2px;
  font-size: 18px;
  left: 5px;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.theme-btn.four:hover {
  color: var(--primary-color-one);
  background: none !important;
}
.theme-btn.four:hover i {
  left: 10px;
}
.theme-btn.five {
  font-size: 12px;
  position: relative;
  text-align: center !important;
  color: #fff;
  background: var(--primary-color-one);
  display: inline-block;
  min-width: 180px;
  height: 56px;
  padding: 0px 18px;
  line-height: 60px !important;
  font-weight: 600;
  transition: all 0.5s ease;
  transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  text-transform: uppercase;
  border-radius: 5px;
}
.theme-btn.five i {
  position: relative;
  top: 2px;
  font-size: 18px;
  left: 5px;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.theme-btn.five:hover {
  background: var(--primary-color-two);
  color: #fff;
}
.theme-btn.five:hover i {
  left: 10px;
}
.theme-btn.color_white {
  color: #fff !important;
  border-color: #fff !important;
  background: transparent !important;
}
.theme-btn.color_white_1 {
  color: var(--heading-dark) !important;
  border-color: #fff !important;
  background: #fff !important;
}

.theme_btn_all {
  position: relative;
}
.theme_btn_all.color_two a {
  background: var(--primary-color-two);
  border-color: var(--primary-color-two);
  color: #fff;
}
.theme_btn_all.color_two a:hover {
  background: #fff;
  color: var(--primary-color-one);
}
.theme_btn_all.color_two a.two {
  background: transparent;
  border-color: var(--primary-color-two);
  color: var(--primary-color-two);
}
.theme_btn_all.color_two a.two:hover {
  background: var(--primary-color-two);
  color: #fff;
}

/*--------topbar css-------------*/
.top_bar {
  position: relative;
  background: var(--primary-color-two);
}
.top_bar .top_inner {
  display: table;
  width: 100%;
}
.top_bar .top_inner .common_css {
  display: table-cell;
  vertical-align: top;
  line-height: 50px;
}
.top_bar .top_inner .common_css .contntent {
  position: relative;
  display: inline-block;
  margin-inline-start: 25px;
  margin-inline-end: 25px;
  vertical-align: top;
}
.top_bar .top_inner .common_css .contntent i {
  position: absolute;
  left: -25px;
  top: 0;
  color: var(--primary-color-one);
  margin-inline-end: 5px;
  bottom: 0;
  margin: auto;
  font-size: 16px;
  line-height: 16px;
  height: 16px;
}
.top_bar .top_inner .common_css .contntent .text {
  position: relative;
}
.top_bar .top_inner .common_css .contntent .text small {
  font-size: 15px;
  color: #fff;
  margin-inline-end: 5px;
}
.top_bar .top_inner .common_css .contntent .text span, .top_bar .top_inner .common_css .contntent .text a {
  font-size: 15px;
  color: var(--text-color-light);
}
.top_bar .top_inner .common_css .contntent .text span i, .top_bar .top_inner .common_css .contntent .text a i {
  position: relative;
  margin-inline-start: 9px !important;
  top: inherit;
  right: inherit;
  left: inherit;
  margin: inherit;
  height: auto;
  font-size: 13px;
  color: var(--text-color-light);
}
.top_bar .top_inner .common_css .contntent:last-child {
  margin-inline-end: 0px;
}
.top_bar .top_inner .right_side {
  float: right;
}
.top_bar.style_two {
  position: relative;
  background: var(--primary-color-one);
}
.top_bar.style_two .auto-container {
  max-width: 1400px;
}
.top_bar.style_two .top_inner .common_css .cbutton {
  top: 8px;
  margin: 0px;
}
.top_bar.style_two .top_inner .common_css .cbutton a {
  background: rgba(255, 255, 255, 0.1);
  min-height: 35px;
  color: #fff;
  line-height: 35px;
  display: inline-block;
  text-transform: inherit;
  font-weight: 400;
  font-size: 14px;
}
.top_bar.style_two .top_inner .common_css .media small {
  font-size: 12px;
  text-transform: uppercase;
}
.top_bar.style_two .top_inner .common_css .media small, .top_bar.style_two .top_inner .common_css .media i {
  margin-inline-end: 10px;
  position: relative;
  top: inherit;
  left: inherit;
  right: inherit;
  bottom: inherit;
  color: #fff !important;
}
.top_bar.style_two .top_inner .common_css .media a:last-child small, .top_bar.style_two .top_inner .common_css .media a:last-child i {
  margin-inline-end: 0px;
}
.top_bar.style_two .top_inner .common_css i {
  color: #fff;
  font-size: 13px;
}
.top_bar.style_two .top_inner .common_css .text small {
  color: #fff;
}
.top_bar.style_two .top_inner .common_css .text span, .top_bar.style_two .top_inner .common_css .text a {
  color: #fff;
}

.header_boxed.style_four .top_bar .top_inner .common_css .contntent i {
  color: #fff;
}
.header_boxed.style_four .top_bar .top_inner .common_css .contntent .text span, .header_boxed.style_four .top_bar .top_inner .common_css .contntent .text a {
  color: #fff !important;
  opacity: 0.8;
}
.header_boxed.style_four .top_bar .top_inner .right_side .contntent {
  margin-inline-start: 0px;
}
.header_boxed.style_four .top_bar .top_inner .right_side .contntent.button a i {
  color: var(--heading-dark);
  right: unset;
  left: 5px;
}
.header_boxed.style_four .top_bar .top_inner .common_css .contntent .text span i, .header_boxed.style_four .top_bar .top_inner .common_css .contntent .text a i {
  margin-inline-start: 20px !important;
  font-size: 25px;
}

.top_bar .top_inner .common_css .contntent .text i {
  display: inline-block !important;
}

/*--------------------------------------
===============fixed-header=============
--------------------------------------*/
@media (max-width: 992px) {
  .top_bar {
    padding: 15px 0px 15px;
  }
  .top_bar .top_inner {
    display: block !important;
    text-align: center;
  }
  .top_bar .top_inner .common_css {
    display: block;
    line-height: normal;
  }
  .top_bar .top_inner .common_css .contntent {
    position: relative;
    margin-bottom: 10px;
  }
  .top_bar .top_inner .common_css.right_side {
    float: none;
  }
}
/*-===============---crt_mobile_menu---====================--*/
.nav-link {
  padding: 0px;
}

.transparent-bg {
  background: transparent !important;
}

.crt_mobile_menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  padding-inline-end: 30px;
  max-width: 100%;
  height: 100%;
  z-index: 999999;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 500ms ease 0ms;
  -moz-transition: all 500ms ease 0ms;
  -ms-transition: all 500ms ease 0ms;
  -o-transition: all 500ms ease 0ms;
}
.crt_mobile_menu .menu-backdrop {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  background: #282f3b;
  opacity: 0.8;
  cursor: pointer;
}
.crt_mobile_menu .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 300px;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #fff;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 500ms ease 0ms;
  -moz-transition: all 500ms ease 0ms;
  -ms-transition: all 500ms ease 0ms;
  -o-transition: all 500ms ease 0ms;
  border-radius: 0px;
  padding: 20px;
}
.crt_mobile_menu .menu-box form {
  position: relative;
  margin-bottom: 30px;
}
.crt_mobile_menu .menu-box form input {
  margin-bottom: 0px;
}
.crt_mobile_menu .menu-box form button.sch_btn {
  position: absolute;
  line-height: 41px;
  min-width: unset;
  padding: 0;
  min-height: unset;
  right: 7px;
  border-radius: 5px;
  background: var(--primary-color-one);
  width: 41px;
  height: 41px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  border: 0px;
  bottom: 0;
  top: 0;
  margin: auto;
}
.crt_mobile_menu .menu-box .menu-outer ul.navbar_nav {
  margin: 0px;
  padding: 0px;
}
.crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li {
  list-style: none;
  position: relative;
  border-bottom: 1px solid var(--border-color-dark);
}
.crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li a.nav-link {
  font-size: 15px;
  line-height: 50px;
  font-weight: 600;
  color: var(--menu-color);
  font-family: var(--creote-family-one);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  padding: 0px 40px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li a.nav-link .fa-angle-down {
  position: relative;
  right: 0px;
  top: 10px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid var(--border-color-dark);
  border-radius: 3px;
  cursor: pointer;
}
.crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 10px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid var(--border-color-dark);
  border-radius: 3px;
  cursor: pointer;
  z-index: 99;
}
.crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li.dropdown.mega_menu .dropdown-menu {
  padding: 20px 5px !important;
  width: 100% !important;
}
.crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li.dropdown.mega_menu .dropdown-menu .m_column {
  width: 33.33%;
}
.crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li.dropdown.mega_menu .dropdown-menu li ul {
  border: 0px !important;
}
.crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li .dropdown-menu {
  position: relative;
  border: 0px;
  padding: 0px !important;
  border-radius: 0px;
}
.crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li .dropdown-menu h1, .crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li .dropdown-menu h2, .crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li .dropdown-menu h3, .crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li .dropdown-menu h4, .crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li .dropdown-menu h5, .crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li .dropdown-menu h6 {
  margin-bottom: 15px;
  font-size: 16px;
}
.crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li .dropdown-menu .list_item_box ul {
  margin-inline-start: 0px !important;
}
.crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li .dropdown-menu li {
  display: block;
  padding-inline-end: 0px;
}
.crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li:last-child {
  border: 0px;
  padding-bottom: 0px;
}
.crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li ul {
  border-top: 1px solid var(--border-color-dark) !important;
  margin-inline-start: 7px !important;
}
.crt_mobile_menu .menu-box .menu-outer ul.navbar_nav li li a.nav-link {
  font-size: 14px;
}

.crt_mobile_menu .menu-box .close-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  line-height: 40px;
  text-align: center;
  border: 1px solid var(--border-color-dark);
  text-align: center;
  display: block;
  margin-bottom: 20px;
  margin-inline-start: auto;
}

.crt_mobile_menu-visible .crt_mobile_menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all 500ms ease 0ms;
  -moz-transition: all 500ms ease 0ms;
  -ms-transition: all 500ms ease 0ms;
  -o-transition: all 500ms ease 0ms;
}
.crt_mobile_menu-visible .crt_mobile_menu .menu-box {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all 500ms ease 0ms;
  -moz-transition: all 500ms ease 0ms;
  -ms-transition: all 500ms ease 0ms;
  -o-transition: all 500ms ease 0ms;
}

/*----============---header_default-styles--===========---*/
.sticky_header_main {
  position: relative;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.header,
.default_sickty_heaad {
  position: relative;
  background: #ffffff;
  padding: 20px 0px 20px;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.header .header_logo_box,
.default_sickty_heaad .header_logo_box {
  position: relative;
  height: 65px;
}
.header .header_logo_box img,
.default_sickty_heaad .header_logo_box img {
  display: block;
  width: 170px;
  height: auto;
  margin-bottom: 0px;
}
.header .header_logo_box .logo_default,
.default_sickty_heaad .header_logo_box .logo_default {
  display: block;
}
.header .header_logo_box .logo__sticky,
.default_sickty_heaad .header_logo_box .logo__sticky {
  display: none;
}
.header .header_logo_box .site-description,
.default_sickty_heaad .header_logo_box .site-description {
  position: absolute !important;
  text-indent: -9999px !important;
  height: 0 !important;
  line-height: 0 !important;
  visibility: hidden !important;
}
.header .header_logo_box .mobile_logo,
.default_sickty_heaad .header_logo_box .mobile_logo {
  display: none;
}
.header .header_logo_box .mobile_logo_sticky,
.default_sickty_heaad .header_logo_box .mobile_logo_sticky {
  display: none;
}
.header .header_content_collapse .navigation_menu,
.default_sickty_heaad .header_content_collapse .navigation_menu {
  float: right;
}
.header .header_content_collapse .navigation_menu .navbar_nav,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav {
  padding: 0;
  margin: 0px;
}
.header .header_content_collapse .navigation_menu .navbar_nav li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li {
  position: relative;
  margin-inline-end: 30px;
  padding: 0px 0px;
  margin-bottom: 0px !important;
  display: inline-block;
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.header .header_content_collapse .navigation_menu .navbar_nav li.dropdown,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li.dropdown {
  margin-inline-end: 40px;
}
.header .header_content_collapse .navigation_menu .navbar_nav li.dropdown.mega_menu,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li.dropdown.mega_menu {
  margin-inline-end: 27px;
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-btn,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-btn {
  position: absolute;
  right: -31px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-btn span:before,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-btn span:before {
  font-family: "FontAwesome";
  color: var(--text-color-light);
  font-weight: 400;
}
.header .header_content_collapse .navigation_menu .navbar_nav li.mega_menu a.nav-link span.fa-angle-down,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li.mega_menu a.nav-link span.fa-angle-down {
  display: inline-block;
  margin-inline-start: 6px;
  color: var(--text-color-light);
  top: 1px;
  position: relative;
}
.header .header_content_collapse .navigation_menu .navbar_nav li.mega_menu a.nav-link span.fa-angle-down::before,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li.mega_menu a.nav-link span.fa-angle-down::before {
  font-weight: 400;
  font-family: "fontawesome";
}
.header .header_content_collapse .navigation_menu .navbar_nav li.mega_menu .dropdown-btn,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li.mega_menu .dropdown-btn {
  display: none;
}
.header .header_content_collapse .navigation_menu .navbar_nav li.mega_menu .dropdown-menu,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li.mega_menu .dropdown-menu {
  z-index: 999;
}
.header .header_content_collapse .navigation_menu .navbar_nav li a.nav-link,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li a.nav-link {
  font-size: 15px;
  line-height: 65px;
  padding: 0;
  font-weight: 600;
  color: var(--menu-color);
  font-family: var(--creote-family-one);
  transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.header .header_content_collapse .navigation_menu .navbar_nav li a.nav-link:hover,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li a.nav-link:hover {
  color: var(--menu-active-color);
}
.header .header_content_collapse .navigation_menu .navbar_nav li:last-child,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li:last-child {
  margin-inline-end: 0px;
}
.header .header_content_collapse .navigation_menu .navbar_nav li.active a.nav-link,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li.active a.nav-link {
  color: var(--menu-active-color) !important;
}
.header .header_content_collapse .navigation_menu .navbar_nav li.active .dropdown-btn span,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li.active .dropdown-btn span {
  color: var(--menu-active-color);
}
.header .header_content_collapse .navigation_menu .navbar_nav li.active .dropdown-btn span:before,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li.active .dropdown-btn span:before {
  color: var(--menu-active-color);
}
.header .header_content_collapse .navigation_menu .navbar_nav li.active.mega_menu a.nav-link span.fa-angle-down,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li.active.mega_menu a.nav-link span.fa-angle-down {
  color: var(--menu-active-color);
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu {
  position: absolute;
  display: block !important;
  pointer-events: none;
  left: 0;
  margin-inline-start: 0;
  background-color: #fff;
  min-width: 250px;
  padding: 20px 25px;
  transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  z-index: 0;
  box-shadow: var(--box-shadow);
  border: 0px !important;
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li {
  display: block;
  padding: 5px 0px;
  margin: 0 !important;
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li a.nav-link,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li a.nav-link {
  color: var(--text-color-dark) !important;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  font-family: var(--creote-family-two);
  display: block;
  white-space: inherit;
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li,
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu ul li,
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu ul li, .header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu ul li,
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu ul li, .header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu ul li, .header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu ul li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu ul li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu ul li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu ul li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu ul li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu ul li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu ul li {
  transition-delay: 0.1s;
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu .dropdown-btn,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu .dropdown-btn {
  right: -25px;
  transform: rotate(-90deg);
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu .dropdown-btn span:before,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu .dropdown-btn span:before {
  color: var(--text-color-dark);
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu .dropdown-menu,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu .dropdown-menu {
  left: 205px;
  margin-top: -22px;
  opacity: 1;
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu .dropdown-menu::before,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu .dropdown-menu::before {
  left: -35px;
  height: 60px;
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-menu,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-menu {
  left: -40px;
  margin-top: 10px;
}
.header .header_content_collapse .navigation_menu .navbar_nav li.mega_menu .dropdown-menu,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li.mega_menu .dropdown-menu {
  width: 96%;
  margin-inline-start: auto !important;
  margin-inline-end: auto !important;
  right: 0;
}
.header .header_content_collapse .navigation_menu .navbar_nav li.mega_menu .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li.mega_menu .dropdown-menu li {
  position: relative;
}
.header .header_content_collapse .navigation_menu .navbar_nav li.mega_menu .dropdown-menu li a,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li.mega_menu .dropdown-menu li a {
  display: block;
  font-size: 15px;
  line-height: 26px;
  color: var(--menu-color);
  font-weight: 400;
}
.header .header_content_collapse .navigation_menu .navbar_nav li.mega_menu .dropdown-menu h2,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li.mega_menu .dropdown-menu h2 {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px !important;
}
.header .header_content_collapse .navigation_menu .navbar_nav li:hover > .dropdown-menu,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li:hover > .dropdown-menu {
  opacity: 1;
  z-index: 99;
  margin-inline-start: 0;
  margin-top: 0 !important;
  z-index: 9999 !important;
  visibility: visible;
  transform: translateX(0);
  -ms-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  pointer-events: fill;
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li,
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li,
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li,
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li,
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li,
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li,
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li,
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li {
  transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition-delay: 0.19s;
}
.header .header_content_collapse .navigation_menu .navbar_nav li:hover .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li:hover .dropdown-menu li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li:hover .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li:hover .dropdown-menu li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu li,
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .hamburger_menu,
.default_sickty_heaad .hamburger_menu {
  position: relative;
  float: none;
  top: 0px;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  margin-top: 0px;
  z-index: 11;
}
.header .hamburger_menu .line,
.default_sickty_heaad .hamburger_menu .line {
  width: 25px;
  height: 2px;
  background-color: var(--menu-color);
  display: block;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.header .hamburger_menu:before,
.default_sickty_heaad .hamburger_menu:before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  top: calc(50% - 20px);
  left: calc(50% - 21px);
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  margin-inline-start: 1px;
}

.default_sickty_heaad {
  padding: 12px 0px 7px !important;
}
.default_sickty_heaad .header_logo_box img {
  width: 140px;
  margin-top: 7px;
}

.hamburger_menu.color_white .line {
  background-color: var(--color-white);
}

/*----navbar-togller-styles--*/
.header .navbar_togglers, .sticky_header_main .navbar_togglers {
  position: relative;
  display: none;
}

.default_sickty_heaad .d-flex {
  justify-content: space-between;
}
.default_sickty_heaad .logo_column {
  padding-inline-end: 50px;
}
.default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li:last-child {
  margin-inline-start: 0px !important;
}

.dropdown-item:focus, .dropdown-item:hover,
.dropdown-item.active, .dropdown-item:active {
  background: transparent;
  border: none;
}

.dropdown-toggle::after {
  display: none !important;
}

.header_boxed.style_four {
  position: relative;
  width: 100%;
  z-index: 99;
  left: 0;
  right: 0;
  top: 0px;
}
.header_boxed.style_four .top_bar {
  background: var(--primary-color-one);
}
.header_boxed.style_four .top_bar .col-lg-12 {
  padding: 7px 10px 5px 19px;
}
.header_boxed.style_four .top_bar .theme-btn {
  height: auto;
  width: auto;
  font-size: 12px;
  min-height: auto;
  min-width: auto;
  padding: 10px 22px 8px;
  line-height: 22px;
  background: #fff;
  border-radius: 5px;
  color: var(--primary-color-two);
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--creote-family-one);
}
.header_boxed.style_four .top_bar .theme-btn i {
  position: relative;
  left: inherit;
  right: -5px;
  top: 2px;
  font-size: 19px;
  color: var(--primary-color-two);
}
.header_boxed.style_four .header {
  position: unset;
  border-radius: 0px 0px 10px 10px;
}
.header_boxed.style_four .header .header_content_collapse .header_menu_box {
  text-align: center;
}
.header_boxed.style_four .header .header_content_collapse .header_menu_box .navigation_menu {
  float: none;
}
.header_boxed.style_four .header .header_content_collapse .navigation_menu .navbar_nav li a.nav-link span, .header_boxed.style_four .default_sickty_heaad .header_content_collapse .navigation_menu .navbar_nav li a.nav-link span {
  color: unset;
  opacity: unset;
}

/*--------------------------------------
===============fixed-header=============
--------------------------------------*/
.sticky_header_main {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease;
}

.default_sickty_heaad {
  padding: 20px 0px 14px;
  background: #fff;
}
.default_sickty_heaad .header_content_collapse .search-toggler {
  height: 54px;
}
.default_sickty_heaad .header_content_collapse .navigation_menu {
  float: none;
  text-align: center;
}
.default_sickty_heaad .header_content_collapse.no_right_content .navigation_menu {
  text-align: right;
}

.df_before ul li a.nav-link {
  color: var(--primary-color-two) !important;
}

/*-----------header_logo_box_solo----------------*/
.header_area {
  position: relative;
  display: block;
  width: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
  background: 0 0;
}
.header_area .header_position_absolute {
  position: absolute !important;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
}
/*--------------------------------------
===============fixed-header=============
--------------------------------------*/
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.fixed-header .get_sticky_header {
  position: fixed !important;
  visibility: visible;
  opacity: 1;
  left: 0;
  top: 0;
  padding: 10px 0px;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease;
  animation-name: slideInUp;
}
.fixed-header .get_sticky_header.style_two {
  background: var(--primary-color-two);
}

.fixed-header .header_default.style_seven.style_eight.get_sticky_header {
  padding: 10px 0px !important;
  background: #ffffff !important;
}
.fixed-header .header_default.style_six.get_sticky_header {
  padding: 10px 0px !important;
  background: #ffffff !important;
}
.fixed-header .header_default.style_nine {
  background: var(--primary-color-one) !important;
}
.fixed-header .header_default.style_nine .theme-btn {
  background: #fff;
  color: var(--primary-color-one);
  border-radius: 0px 10px 0px 10px;
}
.fixed-header .header_default.style_nine .header_content_collapse .navigation_menu .navbar_nav li.active > a.nav-link {
  color: #fff !important;
}
.fixed-header .header_default.style_nine .header_content_collapse .navigation_menu .navbar_nav li.active > a.nav-link span.fa-angle-down {
  color: #fff !important;
}
.fixed-header .header_v15 .get_sticky_header {
  background: var(--primary-color-two) !important;
}
.fixed-header .header_v15 .get_sticky_header .hamburger_menu .line {
  background: #fff;
}
.fixed-header .header_v14 .navbar_outer {
  margin-top: 5px;
  background: unset !important;
  box-shadow: unset;
}

.dropdown-menu li.dropdown a.nav-link {
  position: relative !important;
  display: flex !important;
  justify-content: space-between !important;
}

.mega_menu .width_45_percentage {
  width: 45% !important;
}
.mega_menu .width_50_percentage {
  width: 50% !important;
}
.mega_menu .width_55_percentage {
  width: 55% !important;
}
.mega_menu .width_60_percentage {
  width: 60% !important;
}
.mega_menu .width_65_percentage {
  width: 65% !important;
}
.mega_menu .width_70_percentage {
  width: 70% !important;
}
.mega_menu .width_75_percentage {
  width: 75% !important;
}
.mega_menu .width_80_percentage {
  width: 80% !important;
}
.mega_menu .width_85_percentage {
  width: 85% !important;
}
.mega_menu .width_90_percentage {
  width: 90% !important;
}
.mega_menu .width_95_percentage {
  width: 95% !important;
}

.dropdown-menu .dropdown-menu {
  top: 0px;
  margin-inline-start: -5px !important;
}

.header_v14 .header_mid .d_md_block {
  display: none;
}
.header_v14 .header_mid .hamburger_menu .line, .header_v14 .header_mid .hamburger_menu .line {
  margin: 6px 0 6px auto;
}

/*-----header-media-----*/
@media (max-width: 1200px) {
  .header_content_collapse {
    display: none !important;
  }
  .header .navbar_togglers, .sticky_header_main .navbar_togglers {
    display: block;
  }
  .header .logo_column, .sticky_header_main .logo_column {
    width: 86%;
  }
  .header .menu_column, .sticky_header_main .menu_column {
    width: 14%;
  }
  .crt_mobile_menu .navbar_nav li.mega_menu {
    position: relative !important;
  }
  .crt_mobile_menu .navbar_nav li.mega_menu a span.fa-angle-down {
    display: none !important;
  }
  .crt_mobile_menu .navbar_nav li.mega_menu .dropdown-btn {
    display: block;
  }
  .crt_mobile_menu .navbar_nav li.mega_menu .vc_row.wpb_row {
    margin: 10px 0px !important;
  }
  .crt_mobile_menu .navbar_nav li.mega_menu .vc_column_container > .vc_column-inner {
    padding: 0px !important;
  }
  .crt_mobile_menu .navbar_nav li.mega_menu .wpb_column {
    width: 100%;
  }
  .crt_mobile_menu .navbar_nav li.mega_menu .wpb_column .wpb_button, .crt_mobile_menu .navbar_nav li.mega_menu .wpb_column .wpb_content_element, .crt_mobile_menu .navbar_nav li.mega_menu .wpb_column ul.wpb_thumbnails-fluid > li {
    margin: 10px 0px !important;
  }
  .header.header_default.style_two .hamburger_menu .line {
    background: #fff;
  }
  header.header_default.style_nine .right_column {
    display: none;
  }
  .header_v14 .header_mid {
    padding: 10px 0px !important;
  }
  .header_v14 .header_top {
    display: none;
  }
  .header_v14 .navbar_outer {
    display: none;
  }
  .header_v14 .header_mid .d_md_block {
    display: block;
  }
  .header_v14 .header_mid .dnone {
    display: none;
  }
}
@media (max-width: 1200px) {
  .header_v15 .top {
    text-align: center;
  }
  .header_v15 .top .d-flex {
    display: block !important;
  }
  .header_v15 .top .d-flex .contact_list {
    display: flex;
    justify-content: center;
    padding: 5px 0px 5px !important;
  }
  .header_v15 .hamburger_menu .line {
    margin: 6px 0px 6px auto !important;
  }
  .header_v13 .header_top .header_top_inner {
    text-align: center;
    display: block !important;
  }
  .header_v13 .header_top .header_top_inner .top_left {
    display: block !important;
  }
  .header_v13 .header_top .header_top_inner .contact_info_two {
    text-align: center;
    margin: auto;
    padding-top: 8px;
  }
  .header_v13 .header_top .header_top_inner .contact_info_two li {
    margin-inline-start: unset !important;
    padding: 5px 10px;
  }
}
.navbar_right .dropdown-btn {
  display: none;
}  

/*----------------slider-csss---------------*/
.slider {
  position: relative;
  width: 100%;
}
.slider .slide-item {
  position: relative;
  display: block;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  width: 100%;
}
.slider .animated {
  animation-duration: 1.25s;
}
.slider.style_four .slide-item-content {
  position: relative;
  overflow: hidden;
}

.slider.style_four .slide-item-content .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}
.slider.style_four .slide-item-content .image-layer::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #949B9F;
  opacity: 0.7;
}
.slider.style_four .slide-item-content .auto-container {
  position: relative;
  z-index: 10;
  padding: 0px 15px;
}
.slider.style_four .slide-item-content .slider_content {
  position: relative;
  padding: 350px 0px 300px;
  z-index: 11;
}
.slider.style_four .slide-item-content .slider_content h1 {
  font-size: 72px;
  line-height: 90px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  opacity: 0;
  transition: 0.9s ease-in-out;
  -moz-transition: 0.9s ease-in-out;
  -o-transition: 0.9s ease-in-out;
  -ms-transition: 0.9s ease-in-out;
}
.slider.style_four .slide-item-content .slider_content h6 {
  font-size: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--primary-color-one);
  padding: 10px 30px;
  line-height: 32px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 25px;
  border-radius: 20px 0px;
  color: #fff;
  opacity: 0;
  transition: 0.9s ease-in-out;
  -moz-transition: 0.9s ease-in-out;
  -o-transition: 0.9s ease-in-out;
  -ms-transition: 0.9s ease-in-out;
}
.slider.style_four .slide-item-content .slider_content p {
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  color: var(--text-color-light);
  margin-bottom: 30px;
  opacity: 0;
  transition: 0.9s ease-in-out;
  -moz-transition: 0.9s ease-in-out;
  -o-transition: 0.9s ease-in-out;
  -ms-transition: 0.9s ease-in-out;
}
.slider.style_four .slide-item-content .slider_content .theme-btn.one {
  opacity: 0;
  transition: 0.9s ease-in-out;
  -moz-transition: 0.9s ease-in-out;
  -o-transition: 0.9s ease-in-out;
  -ms-transition: 0.9s ease-in-out;
}
.slider.style_four .slide-item-content .content_left {
  text-align: left !important;
}
.slider.style_four .slide-item-content .content_right {
  text-align: right !important;
}
.slider.style_four .slide-item-content .content_center {
  text-align: center !important;
}
.slider.style_four .owl-item.active .slide-item-content .image-layer {
  opacity: 1;
}
.slider.style_four .owl-item.active .slide-item-content .slider_content h1 {
  opacity: 1;
}
.slider.style_four .owl-item.active .slide-item-content .slider_content h6 {
  opacity: 1;
}
.slider.style_four .owl-item.active .slide-item-content .slider_content p {
  opacity: 1;
}
.slider.style_four .owl-item.active .slide-item-content .slider_content .theme-btn.one {
  opacity: 1;
}
.slider .owl-nav {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 0px;
  left: 0;
  right: 0;
}
.slider.nav_position_one .owl-prev {
  position: absolute;
  top: 0;
  left: 50px;
  bottom: 0;
  margin: auto;
  z-index: 99;
}
.slider.nav_position_one .owl-next {
  position: absolute;
  top: 0;
  right: 110px;
  bottom: 0;
  margin: auto;
  z-index: 99;
}
.slider.nav_position_two .owl-nav, .slider.nav_position_one .owl-nav {
  display: block;
}
.slider .owl-prev,
.slider .owl-next {
  background: none;
}
.slider .owl-prev span,
.slider .owl-next span {
  display: none;
}
.slider .owl-prev::before,
.slider .owl-next::before {
  position: absolute;
  font-family: "FontAwesome" !important;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 22px;
  color: #fff;
  border-radius: 50%;
}
.slider .owl-prev::after,
.slider .owl-next::after {
  display: none !important;
}
.slider .owl-next::before {
  content: "\f105";
}
.slider .owl-prev::before {
  content: "\f104";
}
/*------slider-v2-----*/
.slider_version_v2 {
  position: relative;
}
.slider_version_v2 .slide-item-content.content_left {
  text-align: left;
}
.slider_version_v2 .slide-item-content.content_center {
  text-align: center;
}
.slider_version_v2 .slide-item-content.content_right {
  text-align: right;
}
.slider_version_v2 .slide-item-content .full-container {
  padding: 200px 100px 200px;
}
.slider_version_v2 .banner_carousel .owl-dots .owl-dot {
  margin: 0px 5px;
}
.slider_version_v2 .banner_carousel .owl-dots .owl-dot.active {
  background: #fff;
  border-color: #fff;
}
.slider_version_v2 .owl-prev {
  top: -64px !important;
}
.slider_version_v2 .owl-prev::before {
  content: "\e934";
  font-family: "icomoon" !important;
}
.slider_version_v2 .owl-next {
  top: -64px !important;
}
.slider_version_v2 .owl-next::before {
  content: "\e933";
  font-family: "icomoon" !important;
}
.slider_version_v2.style_one .slide-item-content::before {
  display: none !important;
}
.slider_version_v2.style_one .slide-item-content .slider_content h6 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.slider_version_v2.style_one .slide-item-content .slider_content h1 {
  font-size: 72px;
  text-decoration: underline;
  line-height: 90px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  -webkit-text-decoration: 4px underline;
          text-decoration: 4px underline;
}
.slider_version_v2.style_one .slide-item-content .slider_content p {
  font-size: 17px;
  color: var(--text-color-dark);
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 40px;
}
.slider_version_v2.style_two .slide-item-content::before {
  display: none !important;
}
.slider_version_v2.style_two .slide-item-content::after {
  display: none !important;
}
.slider_version_v2.style_two .slide-item-content .slider_content h6 {
  font-size: 14px;
  -webkit-text-decoration: 1px underline;
          text-decoration: 1px underline;
  text-transform: uppercase;
  line-height: 28px;
  font-weight: 600;
  color: var(--primary-color-one);
  margin-bottom: 25px;
}
.slider_version_v2.style_two .slide-item-content .slider_content h1 {
  font-size: 72px;
  line-height: 90px;
  font-weight: 700;
  color: var(--primary-color-two);
  margin-bottom: 20px;
  padding-inline-start: 0px;
  padding-bottom: 0px;
  border: 0px !important;
}
.slider_version_v2.style_two .slide-item-content .slider_content p {
  font-size: 17px;
  color: var(--text-color-dark);
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 40px;
}
.slider_version_v2.style_two .slide-item-content .slider_content a.theme-btn {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--creote-family-one);
  text-transform: uppercase;
}
.slider_version_v2.style_two .owl-prev::before {
  background: rgba(0, 0, 0, 0.1);
}
.slider_version_v2.style_two .owl-next::before {
  background: rgba(0, 0, 0, 0.1);
}
.slider_version_v2.style_three .slide-item-content:before {
  display: none !important;
}
.slider_version_v2.style_three .slide-item-content:after {
  display: none !important;
}
.slider_version_v2.style_three .slide-item-content .slider_content h6 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
}
.slider_version_v2.style_three .slide-item-content .slider_content h1 {
  font-size: 72px;
  line-height: 90px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  padding-inline-start: 0px;
  padding-bottom: 0px;
  border: 0px !important;
}
.slider_version_v2.style_three .slide-item-content .slider_content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 40px;
}
.slider_version_v2.style_three .slide-item-content .slider_content a.theme-btn {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--creote-family-one);
  color: #fff;
  background: var(--primary-color-one);
  text-transform: uppercase;
}
.slider_version_v2.style_five .slide-item {
  background: transparent !important;
}
.slider_version_v2.style_five .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
}
.slider_version_v2.style_five .slide-item-content::before {
  display: none !important;
}
.slider_version_v2.style_five .slide-item-content::after {
  display: none !important;
}
.slider_version_v2.style_five .slide-item-content .slider_content {
  padding: 100px 0px;
}
.slider_version_v2.style_five .slide-item-content .slider_content h6 {
  font-size: 14px;
  line-height: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  display: block;
  position: relative;
}
.slider_version_v2.style_five .slide-item-content .slider_content h1 {
  font-size: 72px;
  line-height: 90px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  padding-inline-start: 0px;
  padding-bottom: 0px;
  border: 0px !important;
  position: relative;
}
.slider_version_v2.style_five .slide-item-content .slider_content p {
  font-size: 17px;
  color: #fff;
  opacity: 0.9;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 40px;
}
.slider_version_v2.style_five .slide-item-content .slider_content a.theme-btn {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--creote-family-one);
  text-transform: uppercase;
  border-radius: 8px;
}
.slider_version_v2.style_five .owl-prev::before {
  background: rgba(0, 0, 0, 0.1);
}
.slider_version_v2.style_five .owl-next::before {
  background: rgba(0, 0, 0, 0.1);
}
.slider_version_v2.style_four .slider_content h1 {
  font-size: 85px;
  line-height: 100px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.slider_version_v2.style_four .slider_content h1 span {
  font-size: 50px;
  display: block;
  line-height: 70px;
  font-weight: 600;
  margin-bottom: 10px;
}
.slider_version_v2.style_four .slider_content p {
  font-size: 17px;
  color: #fff;
  opacity: 0.9;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 40px;
}
.slider_version_v2.style_four .slider_content .thm_btn {
  position: relative;
  padding-top: 20px;
}
.slider_version_v2.style_four .slider_content .thm_btn a {
  font-size: 15px;
  text-transform: unset;
  font-weight: 600;
  border-radius: 50px;
}
.slider_version_v2.style_four .slider_content .thm_btn a.two {
  border-color: #fff;
  color: #fff;
}
.slider_version_v2.style_four .slider_content .thm_btn a.two:hover {
  border-color: var(--primary-color-one);
}
.slider_version_v2.style_four .content_left .slider_content .thm_btn a {
  margin-inline-end: 15px;
}
.slider_version_v2.style_four .content_center .slider_content .thm_btn a {
  margin: 0px 10px;
}
.slider_version_v2.style_four .content_right .slider_content .thm_btn a {
  margin-inline-start: 15px;
}
/*---==========================================-----
-----==================title_all_box===============-----
-----=========================================-----*/
.title_all_box {
  position: relative;
}
.title_all_box.style_one .title_sections, .title_all_box.style_two .title_sections {
  position: relative;
}
.title_all_box.style_one .title_sections .before_title, .title_all_box.style_two .title_sections .before_title {
  font-size: 22px;
  line-height: 40px;
  font-weight: 700;
  color: var(--primary-color-one);
  padding: 0px 0px 10px 0px;
  text-decoration: underline;
  font-family: var(--creote-family-one);
}
.title_all_box.style_one .title_sections .title, .title_all_box.style_one .title_sections h1, .title_all_box.style_one .title_sections h2, .title_all_box.style_one .title_sections h3, .title_all_box.style_one .title_sections h4, .title_all_box.style_one .title_sections h5, .title_all_box.style_one .title_sections h6, .title_all_box.style_two .title_sections .title, .title_all_box.style_two .title_sections h1, .title_all_box.style_two .title_sections h2, .title_all_box.style_two .title_sections h3, .title_all_box.style_two .title_sections h4, .title_all_box.style_two .title_sections h5, .title_all_box.style_two .title_sections h6 {
  font-size: 38px;
  line-height: 50px;
  font-weight: 700;
  color: var(--heading-dark);
  padding: 0px 0px 10px 0px;
  font-family: var(--creote-family-one);
}
.title_all_box.style_one .title_sections p, .title_all_box.style_two .title_sections p {
  font-size: 17px;
  line-height: 27px;
  padding: 0px 0px 10px 0px;
}
.title_all_box.style_one.light_color .before_title, .title_all_box.style_two.light_color .before_title {
  color: var(--color-white);
}
.title_all_box.style_one.light_color .title, .title_all_box.style_one.light_color h1, .title_all_box.style_one.light_color h2, .title_all_box.style_one.light_color h3, .title_all_box.style_one.light_color h4, .title_all_box.style_one.light_color h5, .title_all_box.style_one.light_color h6, .title_all_box.style_two.light_color .title, .title_all_box.style_two.light_color h1, .title_all_box.style_two.light_color h2, .title_all_box.style_two.light_color h3, .title_all_box.style_two.light_color h4, .title_all_box.style_two.light_color h5, .title_all_box.style_two.light_color h6 {
  color: #fff;
}
.title_all_box.style_one.light_color p, .title_all_box.style_two.light_color p {
  color: #fff;
}
.title_all_box.style_two .title_sections .before_title {
  font-size: 16px;
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  font-weight: 600;
  font-family: var(--creote-family-one);
  padding: 0px 10px 3px 10px;
  border-left: 1px solid var(--border-color-dark);
  border-bottom: 1px solid var(--border-color-dark);
  line-height: 26px;
  margin-bottom: 20px;
}
.title_all_box.style_two.light_color .before_title {
  color: #fff;
  opacity: 0.7;
  border-color: rgba(255, 255, 255, 0.2);
}
.title_all_box.style_two.light_color .title, .title_all_box.style_two.light_color h1, .title_all_box.style_two.light_color h2, .title_all_box.style_two.light_color h3, .title_all_box.style_two.light_color h4, .title_all_box.style_two.light_color h5, .title_all_box.style_two.light_color h6 {
  color: #fff;
}
.title_all_box.style_two.light_color p {
  color: #fff;
}
.title_all_box.style_three .title_sections .before_title {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color-one);
  font-family: var(--creote-family-one);
  margin-bottom: 10px;
  display: inline-block;
  padding-inline-start: 38px;
  margin-bottom: 7px;
}
.title_all_box.style_three .title_sections .before_title::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background: var(--primary-color-one);
  left: 0;
  top: 12px;
}
.title_all_box.style_three .title_sections.center .before_title {
  padding-inline-start: 38px;
  padding-inline-end: 38px;
}
.title_all_box.style_three .title_sections.center .before_title::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background: var(--primary-color-one);
  right: 0;
  top: 12px;
}
.title_all_box.style_three .title_sections.right .before_title::before {
  left: inherit;
  right: 0;
}
.title_all_box.style_three .title_sections .title, .title_all_box.style_three .title_sections h1, .title_all_box.style_three .title_sections h2, .title_all_box.style_three .title_sections h3, .title_all_box.style_three .title_sections h4, .title_all_box.style_three .title_sections h5, .title_all_box.style_three .title_sections h6 {
  font-size: 40px;
  font-family: var(--creote-family-one);
  line-height: 48px;
  color: var(--heading-dark);
  font-weight: 700;
}
.title_all_box.style_three .title_sections p {
  margin-top: 12px;
}
.title_all_box.style_three.light_color h2 {
  color: #fff;
}
.title_all_box.style_three.light_color p {
  color: #fff;
  opacity: 0.8;
}
.title_all_box.style_four .title_sections .before_title {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color-one);
  margin-bottom: 17px;
  display: inline-block;
  background: var(--primary-color-three);
  padding: 5px 15px;
  border-radius: 5px;
  font-family: var(--creote-family-one);
}
.title_all_box.style_four .title_sections .title, .title_all_box.style_four .title_sections h1, .title_all_box.style_four .title_sections h2, .title_all_box.style_four .title_sections h3, .title_all_box.style_four .title_sections h4, .title_all_box.style_four .title_sections h5, .title_all_box.style_four .title_sections h6 {
  font-size: 40px;
  font-family: var(--creote-family-one);
  line-height: 48px;
  color: var(--heading-dark);
  font-weight: 700;
}
.title_all_box.style_four .title_sections p {
  margin-top: 12px;
}
.title_all_box.style_four.light_color .title, .title_all_box.style_four.light_color h1, .title_all_box.style_four.light_color h2, .title_all_box.style_four.light_color h3, .title_all_box.style_four.light_color h4, .title_all_box.style_four.light_color h5, .title_all_box.style_four.light_color h6 {
  color: #fff;
}
.title_all_box.style_four.light_color p {
  color: #fff;
}
.title_all_box.style_five .title_sections {
  position: relative;
}
.title_all_box.style_five .title_sections .before_title {
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  color: var(--primary-color-one);
  padding: 0px 0px 12px 0px;
  letter-spacing: 3px;
  font-family: var(--creote-family-one);
}
.title_all_box.style_five .title_sections .title, .title_all_box.style_five .title_sections h1, .title_all_box.style_five .title_sections h2, .title_all_box.style_five .title_sections h3, .title_all_box.style_five .title_sections h4, .title_all_box.style_five .title_sections h5, .title_all_box.style_five .title_sections h6 {
  font-size: 38px;
  line-height: 50px;
  font-family: var(--creote-family-one);
  font-weight: 700;
  color: var(--heading-dark);
  padding: 0px 0px 10px 0px;
}
.title_all_box.style_five .title_sections p {
  font-size: 17px;
  line-height: 27px;
  padding: 0px 0px 10px 0px;
}
.title_all_box.style_five.light_color .title, .title_all_box.style_five.light_color h1, .title_all_box.style_five.light_color h2, .title_all_box.style_five.light_color h3, .title_all_box.style_five.light_color h4, .title_all_box.style_five.light_color h5, .title_all_box.style_five.light_color h6 {
  color: #fff;
}
.title_all_box.style_five.light_color p {
  color: #fff;
}
.title_all_box.style_six .title_sections .before_title {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--creote-family-two);
  color: var(--primary-color-one);
  text-transform: uppercase;
  padding-bottom: 18px;
  display: inline-block;
}
.title_all_box.style_six .title_sections .before_title span {
  margin-inline-end: 10px;
  font-size: 20px;
}
.title_all_box.style_six .title_sections .title, .title_all_box.style_six .title_sections h1, .title_all_box.style_six .title_sections h2, .title_all_box.style_six .title_sections h3, .title_all_box.style_six .title_sections h4, .title_all_box.style_six .title_sections h5, .title_all_box.style_six .title_sections h6 {
  font-size: 38px;
  line-height: 50px;
  font-weight: 700;
  color: var(--heading-dark);
  padding: 0px 0px 10px 0px;
  font-family: var(--creote-family-one);
}
.title_all_box.style_six .title_sections p {
  font-size: 17px;
  line-height: 27px;
  padding: 0px 0px 10px 0px;
}
.title_all_box.style_six.light_color .before_title {
  color: var(--color-white);
}
.title_all_box.style_six.light_color .before_title span {
  color: var(--color-white);
}
.title_all_box.style_six.light_color .title, .title_all_box.style_six.light_color h1, .title_all_box.style_six.light_color h2, .title_all_box.style_six.light_color h3, .title_all_box.style_six.light_color h4, .title_all_box.style_six.light_color h5, .title_all_box.style_six.light_color h6 {
  color: var(--color-white);
}
.title_all_box.style_six.light_color p {
  color: var(--color-white);
}
.title_all_box.style_seven .title, .title_all_box.style_seven h1, .title_all_box.style_seven h2, .title_all_box.style_seven h3, .title_all_box.style_seven h4, .title_all_box.style_seven h5, .title_all_box.style_seven h6 {
  font-size: 44px;
  line-height: 54px;
  font-weight: 700;
  color: var(--heading-dark);
  font-family: var(--creote-family-one);
}
.title_all_box.style_seven .title span, .title_all_box.style_seven h1 span, .title_all_box.style_seven h2 span, .title_all_box.style_seven h3 span, .title_all_box.style_seven h4 span, .title_all_box.style_seven h5 span, .title_all_box.style_seven h6 span {
  font-weight: 500;
}
.title_all_box.style_seven .before_title {
  font-size: 18px;
  padding-bottom: 10px;
  color: var(--primary-color-one);
  font-family: var(--creote-family-one);
  text-transform: uppercase;
  font-weight: 500;
  padding-top: 23px;
}
.title_all_box.style_seven .small_text_sub {
  position: absolute;
  color: transparent;
  top: 0px;
  left: 0;
  opacity: 0.1;
  font-size: 60px;
  line-height: 60px;
  font-family: var(--creote-family-one);
  font-weight: 700;
  -webkit-text-stroke: 1px var(--heading-dark);
  text-shadow: 1px 1px 0 var(--heading-dark), -1px -1px 0 var(--heading-dark), 1px -1px 0 1px var(--heading-dark), -1px 1px 0 var(--heading-dark), 1px 1px 0 var(--heading-dark);
}
.title_all_box.style_seven p {
  font-size: 16px;
  line-height: 26px;
  margin-top: 10px;
}
.title_all_box.style_seven.light_color .before_title {
  color: var(--color-white);
}
.title_all_box.style_seven.light_color .before_title span {
  color: var(--color-white);
}
.title_all_box.style_seven.light_color .title, .title_all_box.style_seven.light_color h1, .title_all_box.style_seven.light_color h2, .title_all_box.style_seven.light_color h3, .title_all_box.style_seven.light_color h4, .title_all_box.style_seven.light_color h5, .title_all_box.style_seven.light_color h6 {
  color: var(--color-white);
}
.title_all_box.style_seven.light_color .small_text_sub {
  -webkit-text-stroke: 1px var(--color-white);
  text-shadow: 1px 1px 0 var(--color-white), -1px -1px 0 var(--color-white), 1px -1px 0 1px var(--color-white), -1px 1px 0 var(--color-white), 1px 1px 0 var(--color-white);
}
.title_all_box.style_seven.light_color p {
  color: var(--color-white);
}
.title_all_box.style_seven.text-center .small_text_sub {
  right: 0;
  margin: auto;
}
.title_all_box.style_seven.text-right {
  text-align: right;
}
.title_all_box.style_seven.text-right .small_text_sub {
  left: unset;
  right: 0;
}
.title_all_box .title_sections .title_big {
  font-size: 51px !important;
  font-weight: 800 !important;
  line-height: 66px !important;
}


.process_box {
  position: relative;
}
.process_box.style_four .process_box_outer_four {
  position: relative;
  text-align: center;
}
.process_box.style_four .process_box_outer_four .icon {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--box-shadow);
  transition: 0.5s ease-in-out !important;
  -moz-transition: 0.5s ease-in-out !important;
  -o-transition: 0.5s ease-in-out !important;
  -ms-transition: 0.5s ease-in-out !important;
  margin: 0px auto 20px;
  display: block;
}
.process_box.style_four .process_box_outer_four .icon span {
  position: absolute;
  font-size: 50px;
  line-height: 60px;
  height: 60px;
  width: 60px;
  text-align: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: var(--primary-color-one);
}
.process_box.style_four .process_box_outer_four .icon h6 {
  position: absolute;
  top: 6px;
  right: 1px;
  width: 40px;
  height: 40px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--primary-color-one);
  line-height: 40px;
  border-radius: 50px;
}
.process_box.style_four .process_box_outer_four .icon img {
  position: absolute;
  width: 50px;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.process_box.style_four .process_box_outer_four h2 {
  position: relative;
  line-height: normal;
}
.process_box.style_four .process_box_outer_four h2 a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 8px;
}
/*---==========================================-----
-----================== image_boxes ===============-----
-----=========================================-----*/
.image_boxes {
  position: relative;
}

.image_boxes.style_five {
  position: relative;
  z-index: 0;
  display: inline-block;
}
.image_boxes.style_five::before {
  position: absolute;
  content: "";
  width: 362px;
  height: 362px;
  background: var(--primary-color-three);
  top: 55px;
  left: 75px;
  border-radius: 50%;
  z-index: -1;
}
.image_boxes.style_five .image_box {
  overflow: hidden;
  position: relative;
  display: inline-block;
}
.image_boxes.style_five .image_box.one {
  z-index: 3;
}
.image_boxes.style_five .image_box.one .video_box_null {
  position: absolute;
  right: 0px;
  bottom: 0px;
}
.about-section .image_boxes.style_five .image_box.one .video_box_null{
  right: 42%;
  bottom: 30%;
}
.about-section .image_boxes.style_five::before {
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--primary-color-two);
  opacity: 0.5;

}
.about-section .image_boxes.style_five .image_box{
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.image_boxes.style_five .image_box.one .video_box_null a {
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background: var(--primary-color-one);
  display: block;
  border-radius: 10px 0px 10px 0px;
}
.image_boxes.style_five .image_box.one .video_box_null a i {
  position: absolute;
  font-size: 16px;
  height: 16px;
  width: 16px;
  line-height: 16px;
  text-align: center;
  top: 0;
  bottom: 0;
  right: 0;
  color: #fff;
  left: 0;
  margin: auto;
}
.image_boxes.style_five .image_box.two {
  z-index: 2;
  margin-top: -150px;
  margin-inline-start: 190px;
}
.image_boxes.style_five .image_box img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}


/*--=====================================---
--------------service css-----------------
---=====================================--*/
.service_section {
  position: relative;
}

.service_box {
  position: relative;
}
.service_post.style_four {
  position: relative;
  padding: 10px;
  box-shadow: var(--box-shadow);
  background: #fff;
  z-index: 0;
  border-radius: 10px;
  transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  height: 550px;
}
.service_post.style_four .image_box {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 10px;
}
.service_post.style_four .image_box img {
  height: 200px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
     transition: 0.6s linear;
}
.service_post.style_four::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 50px;
  left: 0;
  bottom: 0;
  background: var(--primary-color-one);
  opacity: 0;
  transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  top: 100%;
  z-index: 1;
}
.service_post.style_four::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 38px;
  top: 40px;
  background: var(--primary-color-three);
  transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  z-index: -1;
}
.service_post.style_four .content_in_box {
  position: relative;
  padding: 10px 20px 25px;
}
.service_post.style_four .icon_box {
  width: 60px;
  height: 60px;
  position: relative;
}
.service_post.style_four .icon_box::before {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 30px;
  border-radius: 5px;
  color: #fff;
  content: "";
  text-align: center;
  display: block;
  margin-bottom: 20px;
  background: var(--primary-color-one);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  transition: 0.5s;
}
.service_post.style_four .icon_box::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 71px;
  border-radius: 5px;
  top: -5px;
  left: 7px;
  background: #eee;
}
.service_post.style_four .icon_box .icons {
  position: absolute;
  font-size: 25px;
  line-height: 25px;
  height: 25px;
  text-align: center;
  color: #fff;
  top: 0;
  z-index: 77;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.service_post.style_four .icon_box{
  transition: 0.5s linear;

}
.service_post.style_four .icon_box img {
  position: absolute;
  width: 30px;
  height: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 77;
  transition: 0.5s linear;
}
.service_post.style_four .bg_im {
  position: absolute;
  right: 27px;
  font-size: 50px;
  line-height: 50px;
  color: var(--primary-color-three);
  width: 50px;
  height: auto;
  top: 3px;
  transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
}
.service_post.style_four h2 {
  line-height: normal;
}
.service_post.style_four h2 a {
  position: relative;
  font-size: 20px;
  line-height: 30px;
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--heading-dark);
  font-family: var(--creote-family-one);
  margin-top: 30px;
}
.service_post.style_four p {
  margin-bottom: 15px;
    height: 105px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.service_post.style_four a.read_more {
  font-size: 15px;
  line-height: 25px;
  font-family: var(--creote-family-one);
  color: var(--primary-color-two);
  display: block;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.service_post.style_four a.read_more i {
  position: relative;
  right: -8px;
  top: 3px;
  font-size: 17px;
}
.service_post.style_four small {
  position: absolute;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color-two);
  opacity: 0.2;
  top: 64px;
  right: 34px;
}
.service_post.style_four:hover::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.service_post.style_four:hover::before {
  opacity: 1;
  top: 50px;
}
.service_post.style_four:hover a.read_more {
  color: var(--primary-color-one);
}
.service_post.style_four:hover .bg_im {
  color: #fff;
}

.service_post.style_four .image_box img:hover{
  transform: scaleX(1.1);
}
/*---==========================================-----
-----==================grid column for blog post and project ===============-----
-----=========================================-----*/
._card {
  position: relative;
  display: inline-block;
  width: 100%;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
}

@media (min-width: 576px) {
  ._card {
    display: inline-block;
    width: 100%;
  }
}
.one_column .grid_show_case .grid_box {
  width: 100%;
  padding: 0px 0px;
  margin-bottom: 25px;
}

.two_column .grid_show_case .grid_box {
  width: 50%;
  padding: 0px 12px;
  margin-bottom: 25px;
}

.three_column .grid_show_case .grid_box {
  width: 33.33%;
  padding: 0px 12px;
  margin-bottom: 25px;
}

.four_column .grid_show_case .grid_box {
  width: 25%;
  padding: 0px 12px;
  margin-bottom: 25px;
}

.five_column .grid_show_case .grid_box {
  width: 20%;
  padding: 0px 12px;
  margin-bottom: 25px;
}


/*---==========================================-----
-----================== project_all ===============-----
-----=========================================-----*/
.project_all {
  position: relative;
}
.project_all.filter_enabled {
  padding: 0px;
}
.project_all.filt_style_one .fliter_group, .project_all.filt_style_six .fliter_group {
  position: relative;
  margin-bottom: 50px;
}
.project_all.filt_style_one .fliter_group .project_filter, .project_all.filt_style_six .fliter_group .project_filter {
  position: relative;
  display: block;
  padding-inline-start: 0px;
}
.project_all.filt_style_one .fliter_group .project_filter li, .project_all.filt_style_six .fliter_group .project_filter li {
  display: inline-block;
  margin: 0px 15px;
  position: relative;
  padding: 9px 15px 5px;
  border-left: 1px solid var(--border-color-dark);
  border-bottom: 1px solid var(--border-color-dark);
  cursor: pointer;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  text-transform: uppercase;
  font-family: var(--creote-family-one);
  font-weight: 600;
}
.project_all.filt_style_one .fliter_group .project_filter li.current, .project_all.filt_style_six .fliter_group .project_filter li.current {
  border-color: var(--primary-color-one);
  background: var(--primary-color-one);
  color: #fff;
}
.project_all.filt_style_six .fliter_group .project_filter {
  padding-inline-start: 0px;
}
.project_all.filt_style_six .fliter_group .project_filter li {
  border: 0px;
  padding: 8px 20px;
  background: var(--primary-color-three);
  margin: 0px 5px;
  border-radius: 5px;
}
.project_all.filt_style_six .fliter_group .project_filter li.current {
  background: var(--primary-color-one);
  color: #fff;
}
.project_post.style_six {
  position: relative;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.project_post.style_six .image_box {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
}
.project_post.style_six .image_box img {
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.project_post.style_six .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.project_post.style_six .overlay:before {
  position: absolute;
  content: "";
  bottom: 0px;
  border-radius: 5px;
  right: 0px;
  opacity: 0;
  width: 0%;
  background: var(--primary-color-one);
  height: 0%;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.project_post.style_six .overlay .content_box {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  top: 0px;
  left: 100%;
  transition: all 0.9s ease-in-out;
  -moz-transition: all 0.9s ease-in-out;
  -ms-transition: all 0.9s ease-in-out;
  -o-transition: all 0.9s ease-in-out;
}
.project_post.style_six .overlay .content_box h2 {
  line-height: normal;
}
.project_post.style_six .overlay .content_box h2 a {
  font-size: 20px;
  color: #fff;
  line-height: 30px;
  margin-bottom: 4px;
  display: block;
}
.project_post.style_six .overlay .content_box p {
  color: #f1f1f1;
}
.project_post.style_six:hover .overlay:before {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.project_post.style_six:hover .overlay .content_box {
  left: 20px;
}
.project_post.style_six .zoom_icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #fff;
  line-height: 40px;
  text-align: center;
  display: block;
  color: #222;
  z-index: 10;
}

/*---==========================================-----
-----==================video_box===============-----
-----=========================================-----*/
.default .video_box a {
  background: var(--primary-color-one);
}

.default .video_box:before, .default .video_box:after {
  background: rgba(7, 133, 134, 0.4);
}
.video_box {
  position: relative;
  width: 70px;
  height: 70px;
  display: inline-block;
}
.video_box:before, .video_box:after {
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  animation: ripple 3s infinite;
  transition: all 0.4s ease;
  z-index: 0;
}
.video_box:after {
  animation-delay: 0.4s;
}
.video_box a {
  position: relative;
  display: inline-block;
  font-size: 30px !important;
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 75px;
  text-align: center !important;
  border-radius: 50%;
  background: var(--primary-color-one);
  background-image: inherit;
  z-index: 10;
}
.video_box.color_white a {
  background: var(--color-white);
  color: var(--primary-color-one);
}

@keyframes ripple {
  70% {
    background: rgba(255, 255, 255, 0);
    width: 120px;
    height: 120px;
  }
  100% {
    background: rgba(255, 255, 255, 0);
    width: 0px;
    height: 0px;
  }
}
/*--====================================================--
----==============Contact us contact boxes========================--
--======================================================--*/
.contact_box_content {
  position: relative;
}

.contact_box_content.style_one .contact_box_inner {
  position: relative;
  padding: 20px 30px;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--border-color-dark);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  cursor: pointer;
  background: #fff;
}
.contact_box_content.style_one .contact_box_inner .contnet {
  position: relative;
}
.contact_box_content.style_one .contact_box_inner .contnet h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-dark);
  margin-bottom: 5px;
  line-height: 26px;
}
.contact_box_content.style_one .contact_box_inner .contnet p {
  margin-bottom: 0px;
}
.contact_box_content.style_one .contact_box_inner:hover {
  box-shadow: var(--box-shadow);
  border-color: #fff;
}
.contact_box_content.style_one .contact_box_inner.icon_yes .icon_bx {
  position: absolute;
  left: 24px;
  bottom: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: var(--primary-color-one);
  margin: auto;
  text-align: center;
  line-height: 40px;
}
.contact_box_content.style_one .contact_box_inner.icon_yes .icon_bx span {
  color: #fff;
  font-size: 16px;
}
.contact_box_content.style_one .contact_box_inner.icon_yes .contnet {
  margin-inline-start: 55px;
}
.contact_box_content.style_two .contact_box_inner {
  position: relative;
  display: flex;
}
.contact_box_content.style_two .contact_box_inner .icon_bx {
  position: relative;
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background: var(--primary-color-one);
  color: #fff;
  line-height: 60px;
  margin: auto 0px;
}
.contact_box_content.style_two .contact_box_inner .icon_bx span {
  font-size: 25px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  color: #fff;
  height: 40px;
}
.contact_box_content.style_two .contact_box_inner .icon_bx img {
  width: 30px;
  height: auto;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.contact_box_content.style_two .contact_box_inner .text {
  position: relative;
  margin-inline-start: 12px;
}
.contact_box_content.style_two .contact_box_inner .text h3 {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 2px;
}
.contact_box_content.style_two .contact_box_inner .text p {
  margin-bottom: 0px;
  font-size: 15px;
  line-height: 25px;
}
.contact_box_content.style_two .contact_box_inner.color_two .icon_bx {
  background: transparent;
  border: 1px dashed #fff;
}
.contact_box_content.style_two .contact_box_inner.color_two .icon_bx span {
  color: #fff;
}
.contact_box_content.style_two .contact_box_inner.color_two .text h3 {
  color: #fff;
}
.contact_box_content.style_two .contact_box_inner.color_two .text p {
  color: rgba(255, 255, 255, 0.8);
}
/*--====================================================--
----==============Contact Form contact========================--
--======================================================--*/
input::-moz-placeholder, textarea::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--creote-family-one);
  color: var(--text-color-dark);
  text-transform: capitalize;
}
input::placeholder, textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--creote-family-one);
  color: var(--text-color-dark);
  text-transform: capitalize;
}

form p {
  margin-bottom: 0px;
}
form br {
  display: none;
}

.contact_form_box_all {
  position: relative;
}
.contact_form_box_all input,
.contact_form_box_all input[type=text],
.contact_form_box_all input[type=email],
.contact_form_box_all input[type=number],
.contact_form_box_all textarea,
.contact_form_box_all select {
  margin: 6px 0px 25px !important;
}
.contact_form_box_all input[type=submit], .contact_form_box_all button[type=submit] {
  margin-bottom: 10px !important;
}
.contact_form_box_all label {
  position: relative;
}
.contact_form_box_all textarea {
  height: 130px;
}
.contact_form_box_all.type_one .contact_form_box_inner {
  position: relative;
  padding: 50px 45px 35px;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--box-shadow-two);
  z-index: 1;
}
.contact_form_box_all.type_one .contact_form_box_inner .contact_form_shortcode {
  position: relative;
}
.contact_form_box_all.type_one .contact_form_box_inner .contact_form_shortcode label {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--creote-family-one);
  line-height: 12px;
  color: var(--heading-dark);
  width: 100%;
  text-transform: uppercase;
}
.contact_form_box_all.type_one .contact_form_box_inner .contact_form_shortcode .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  width: 100%;
}
.contact_form_box_all.type_one .contact_form_box_inner .contact_form_shortcode input, .contact_form_box_all.type_one .contact_form_box_inner .contact_form_shortcode button {
  width: 100%;
}
.contact_form_box_all.type_one .contact_form_box_inner .contact_form_shortcode p {
  position: relative;
  margin: 0px;
}
.contact_form_box_all.type_one .contact_form_box_inner .contact_form_shortcode p i {
  position: absolute;
  top: 37px;
  right: 14px;
  color: var(--primary-color-one);
  margin: auto;
  font-size: 16px;
  height: 16px;
}
.contact_form_box_all.type_one .contact_form_box_inner .contact_form_shortcode textarea {
  height: 150px;
}
.contact_form_box_all.type_one .contact_form_box_inner .contact_form_shortcode .ajax-loader,
.contact_form_box_all.type_one .contact_form_box_inner .contact_form_shortcode .wpcf7-spinner {
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.contact_form_box_all.type_one .contact_form_box_inner .contact_form_shortcode .wpcf7-not-valid-tip {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--creote-family-one);
  line-height: 26px;
  color: var(--primary-color-one);
  text-transform: none;
}
.contact_form_box_all.type_one .contact_form_box_inner .contact_form_shortcode .wpcf7-response-output {
  position: absolute;
  z-index: 11;
  background: var(--primary-color-one);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--creote-family-two);
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  border-color: var(--primary-color-one);
  margin: auto;
  bottom: -78px;
  right: 0;
  left: 0;
  width: auto;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.contact_form_box_all.type_one .contact_form_box_inner .contact_form_shortcode .wpcf7-response-output::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  width: 20px;
  height: 20px;
  top: -22px;
  margin: auto;
  border-top: 10px solid transparent;
  border-bottom: 10px solid var(--primary-color-one);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
/*---==========================================-----
-----================== footer widgets  css  ===============-----
-----=========================================-----*/
/*----============---about company--===========---*/
.footer_widgets {
  position: relative;
  margin-bottom: 30px;
  /*----about company-----*/
  /*-----get_in_touch_foo------*/
  /*-----navigation_foo-----*/
}
.footer_widgets .fo_wid_title {
  position: relative;
  margin-bottom: 16px;
}
.footer_widgets .fo_wid_title:before {
  position: absolute;
  content: "";
  width: 70px;
  height: 3px;
  background: var(--primary-color-one);
  left: 0;
  bottom: -15px;
}
.footer_widgets .fo_wid_title h2 {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 5px;
}
.footer_widgets .fo_wid_title.dark_color h2 {
  color: var(--heading-dark);
}
.footer_widgets.style_two .fo_wid_title {
  position: relative;
}
.footer_widgets.style_two .fo_wid_title:before {
  display: none;
}
.footer_widgets.style_two .fo_wid_title h2 {
  font-size: 20px;
  line-height: 30px;
  color: var(--primary-color-one);
  font-weight: 700;
  margin-bottom: 5px;
}
.footer_widgets.about_company {
  position: relative;
}
.footer_widgets.about_company .logo {
  position: relative;
  margin-bottom: 25px;
}
.footer_widgets.about_company .content_box {
  position: relative;
}
.footer_widgets.about_company .content_box p {
  color: var(--text-color-light);
  margin-bottom: 30px;
}
.footer_widgets.about_company .content_box .consulting {
  position: relative;
}
.footer_widgets.about_company .content_box .consulting .image {
  float: left;
  width: 60px;
}
.footer_widgets.about_company .content_box .consulting .image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer_widgets.about_company .content_box .consulting .help_con {
  position: relative;
  margin-inline-start: 70px;
  padding: 7px 0px;
}
.footer_widgets.about_company .content_box .consulting .help_con h6 {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color-one);
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer_widgets.about_company .content_box .consulting .help_con h2 a {
  font-size: 16px;
  font-weight: 600;
  color: #FFF;
  line-height: 26px;
  margin-bottom: 0px;
  display: block;
}
.footer_widgets.about_company.dark_color .content_box p {
  color: var(--text-color-dark);
}
.footer_widgets.about_company.dark_color .content_box .consulting .help_con h2 a {
  color: var(--text-color-dark);
}
.footer_widgets.get_in_touch_foo {
  position: relative;
}
.footer_widgets.get_in_touch_foo .foo_cont_inner {
  position: relative;
}
.footer_widgets.get_in_touch_foo .foo_cont_inner .top, .footer_widgets.get_in_touch_foo .foo_cont_inner .bottom {
  position: relative;
  margin-bottom: 20px;
}
.footer_widgets.get_in_touch_foo .foo_cont_inner .top h6, .footer_widgets.get_in_touch_foo .foo_cont_inner .bottom h6 {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}
.footer_widgets.get_in_touch_foo .foo_cont_inner .top p, .footer_widgets.get_in_touch_foo .foo_cont_inner .bottom p {
  color: var(--text-color-light);
  margin-bottom: 0px;
}
.footer_widgets.get_in_touch_foo .foo_cont_inner .bottom {
  margin-bottom: 0px;
}
.footer_widgets.get_in_touch_foo .foo_cont_inner .bottom .con_content {
  position: relative;
  margin-bottom: 5px;
}
.footer_widgets.get_in_touch_foo .foo_cont_inner .bottom .con_content h5 {
  display: inline-block;
  font-family: var(--creote-family-two);
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 26px;
}
.footer_widgets.get_in_touch_foo .foo_cont_inner .bottom .con_content a {
  color: var(--text-color-light);
  font-size: 16px;
  line-height: 26px;
  display: inline-block;
}
.footer_widgets.get_in_touch_foo.dark_color .foo_cont_inner {
  position: relative;
}
.footer_widgets.get_in_touch_foo.dark_color .foo_cont_inner .top h6, .footer_widgets.get_in_touch_foo.dark_color .foo_cont_inner .bottom h6 {
  color: var(--heading-dark);
}
.footer_widgets.get_in_touch_foo.dark_color .foo_cont_inner .top p, .footer_widgets.get_in_touch_foo.dark_color .foo_cont_inner .bottom p {
  color: var(--text-color-dark);
}
.footer_widgets.get_in_touch_foo.dark_color .foo_cont_inner .bottom .con_content h5 {
  color: var(--heading-dark);
}
.footer_widgets.get_in_touch_foo.dark_color .foo_cont_inner .bottom .con_content a {
  color: var(--text-color-dark);
}
.footer_widgets.navigation_foo {
  position: relative;
}
.footer_widgets.navigation_foo .navigation_foo_inner {
  position: relative;
}
.footer_widgets.navigation_foo .navigation_foo_inner ul {
  padding: 0;
  margin: 0;
  position: relative;
}
.footer_widgets.navigation_foo .navigation_foo_inner ul li {
  position: relative;
  display: block;
  list-style: none;
}
.footer_widgets.navigation_foo .navigation_foo_inner ul li a {
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 9px;
  color: var(--text-color-light);
  font-weight: 400;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.footer_widgets.navigation_foo .navigation_foo_inner ul li a:hover {
  color: var(--primary-color-one);
}
.footer_widgets.navigation_foo.style_two .fo_wid_title {
  position: relative;
  margin-bottom: 25px;
}
.footer_widgets.navigation_foo.style_two .fo_wid_title:before {
  display: none;
}
.footer_widgets.navigation_foo.style_two .fo_wid_title h2 {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}
.footer_widgets.navigation_foo.style_two .navigation_foo_inner {
  position: relative;
}
.footer_widgets.navigation_foo.style_two .navigation_foo_inner ul {
  padding: 0;
  margin: 0;
  position: relative;
}
.footer_widgets.navigation_foo.style_two .navigation_foo_inner ul li {
  position: relative;
  display: block;
  list-style: none;
}
.footer_widgets.navigation_foo.style_two .navigation_foo_inner ul li a {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 9px;
  padding-inline-start: 14px;
  color: var(--text-color-light);
  font-weight: 400;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.footer_widgets.navigation_foo.style_two .navigation_foo_inner ul li a:hover {
  color: var(--primary-color-one);
}
.footer_widgets.navigation_foo.style_two .navigation_foo_inner ul li a::before {
  position: absolute;
  top: 0px;
  left: 0;
  content: "\f101";
  font-family: "FontAwesome";
  font-size: 18px;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.footer_widgets.navigation_foo.style_three {
  position: relative;
}
.footer_widgets.navigation_foo.style_three .left {
  float: left;
  width: 50%;
}
.footer_widgets.navigation_foo.style_three .right {
  float: left;
  width: 50%;
}
.footer_widgets.navigation_foo.style_three .navigation_foo_inner ul li a {
  position: relative;
  padding-inline-start: 14px;
  font-size: 16px;
  line-height: 26px;
}
.footer_widgets.navigation_foo.style_three .navigation_foo_inner ul li a::before {
  position: absolute;
  left: 0;
  content: "";
  background: rgba(255, 255, 255, 0.5);
  width: 6px;
  height: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.footer_widgets.navigation_foo.style_three .navigation_foo_inner ul li a:hover {
  color: var(--primary-color-one);
}
.footer_widgets.navigation_foo.style_three .navigation_foo_inner ul li a:hover::before {
  background: var(--primary-color-one);
}
/*---footer_contact_list -----*/
.footer_contact_list {
  position: relative;
}
.footer_contact_list .same_contact {
  position: relative;
  padding-inline-start: 60px;
}
.footer_contact_list .same_contact span {
  position: absolute;
  width: 30px;
  font-size: 25px;
  top: 1px;
  left: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50px;
  background: var(--primary-color-one);
  line-height: 50px;
  color: #fff;
}
.footer_contact_list .same_contact .content {
  position: relative;
}
.footer_contact_list .same_contact .content h6 {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0px;
  color: #fff;
  font-weight: 600;
}
.footer_contact_list .same_contact .content a, .footer_contact_list .same_contact .content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--text-color-light);
}
.footer_contact_list.dark_color .same_contact .content h6 {
  color: var(--heading-dark);
}
.footer_contact_list.dark_color .same_contact .content a, .footer_contact_list.dark_color .same_contact .content p {
  color: var(--text-color-dark);
}
.footer-copyright{
  background: rgb(120 29 125 / 50%) !important;
  position: relative;
}
.footer_copy_right a{
  color: #969DA2;
  font-weight: 700;
}
/*---gallery_repeater------*/
.gallery_repeater {
  position: relative;
}
.gallery_repeater ul {
  position: relative;
  padding-inline-start: 0px;
}
.gallery_repeater ul li {
  list-style: none;
  display: inline-block;
  padding-inline-end: 3px;
  padding-bottom: 4px;
}
.gallery_repeater ul li span.image {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  display: block;
}
.gallery_repeater ul li span.image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
}
.gallery_repeater ul li span.image a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  opacity: 0;
}
.gallery_repeater ul li span.image a i {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #fff;
  color: var(--primary-color-one);
  border-radius: 50px;
  line-height: 30px;
  text-align: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.gallery_repeater ul li span.image:hover img {
  opacity: 0.5;
}
.gallery_repeater ul li span.image:hover a {
  opacity: 1;
}
.footer_area{
  position: relative;
    background-image: url(../img/product/3.webp);
    background-repeat: no-repeat;
    background-position: bottom;
    background-attachment: fixed;
}
.footer_area::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.9;
}
@media (min-width: 992px) {
  .footer_area.footer_sticky_enable_foo {
    position: sticky;
    left: 0;
    bottom: 0;
    width: 100%;
    clear: both;
  }
}
.footer_area.fifteen {
  background-color: transparent;
  background-image: linear-gradient(180deg, #FFFFFF 3%, #F0F3F9 100%);
}

.footer_logo img {
  width: 150px;
}
/* .footer_area.footer_five{
  background-color: #101010 !important;
} */
/*--====================================================--
----==============social_media_v_one========================--
--======================================================--*/
.social_media_v_one {
  position: relative;
}
.social_media_v_one ul {
  padding: 0;
  margin: 0;
}
.social_media_v_one ul li {
  position: relative;
  display: inline-block;
  margin-inline-end: 10px;
  margin-bottom: 0px !important;
}
.social_media_v_one ul li:last-child {
  margin-inline-end: 0px;
}
.social_media_v_one ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  border-radius: 50px;
  background: var(--primary-color-two);
  color: #fff;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  
}
.social_media_v_one ul li a i{
    font-size: 40px;
    background: var(--primary-color-three) ;
}
.social_media_v_one ul li a span {
  opacity: 0.8;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.social_media_v_one ul li a small {
  position: absolute;
  padding: 5px 15px;
  border-radius: 5px;
  background: #fff;
  color: var(--primary-color-one);
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  min-width: 100px;
  text-align: center;
  margin: auto;
  left: -10px;
  right: 0;
  top: -35px;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  opacity: 0;
}
.social_media_v_one ul li a small::before {
  position: absolute;
  content: "";
  width: 12px;
  border-top: 10px solid #fff;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  height: 12px;
  bottom: -20px;
  left: 20px;
}
.social_media_v_one ul li a:hover {
  background: var(--primary-color-one);
  color: #fff;
}
.social_media_v_one ul li a:hover small {
  opacity: 1;
}
.social_media_v_one ul li a:hover span {
  opacity: 1;
}
.social_media_v_one.light ul li a {
  background: rgba(255, 255, 255, 0.0392156863);
}
.social_media_v_one.style_two ul li a {
  background-color: rgb(148 155 159 / 30%);
  color: var(--primary-color-one);
}
.social_media_v_one.style_three ul li a {
  background-color: var(--primary-color-one);
  color: var(--color-white);
}
.social_media_v_one.color_white ul li a {
  background-color: var(--color-white);
  color: var(--heading-dark);
}

/*----foo_subscribe ----*/
.foo_subscribe {
  position: relative;
}
.foo_subscribe.style_one p {
  color: var(--text-color-light);
  margin-bottom: 15px;
}
.foo_subscribe.style_one .shortcodes {
  position: relative;
  padding-top: 5px;
}
.foo_subscribe.style_one .shortcodes input {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  width: 100%;
  border-color: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
  font-family: var(--creote-family-one);
}
.foo_subscribe.style_one .shortcodes input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.foo_subscribe.style_one .shortcodes input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.foo_subscribe.style_one .shortcodes input[type=submit] {
  background: var(--primary-color-one);
  position: absolute;
  width: auto;
  height: 45px;
  font-size: 12px;
  font-family: var(--creote-family-one);
  text-transform: uppercase;
  padding: 10px 15px;
  text-align: center;
  color: #fff;
  right: 5px;
  min-width: auto;
  min-height: auto;
  line-height: 29px;
  top: 0px;
  bottom: 0;
  margin: auto;
  border-radius: 10px;
}
.foo_subscribe.style_one .social_media_v_one {
  padding: 10px 0px 0px;
}
.foo_subscribe.style_one .social_media_v_one ul li {
  position: relative;
}
.foo_subscribe.style_one .social_media_v_one ul li a {
  margin-inline-end: 0px;
  background: rgba(255, 255, 255, 0.05);
}
.foo_subscribe.style_one .social_media_v_one ul li small {
  position: absolute;
  background: var(--primary-color-one);
  color: #fff;
  left: 0;
  min-width: 100px;
  border-radius: 5px;
  padding: 8px 10px 6px;
  text-align: center;
  font-size: 12px;
  font-family: var(--creote-family-one);
  display: block;
  bottom: -50px;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  opacity: 0;
}
.foo_subscribe.style_one .social_media_v_one ul li small::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--primary-color-one);
  top: -20px;
  left: 10px;
  margin: auto;
}
.foo_subscribe.style_one .social_media_v_one ul li:hover small {
  opacity: 1;
}
.foo_subscribe.dark_color.style_one p {
  color: var(--text-color-dark) !important;
}
.foo_subscribe.dark_color.style_one .shortcodes input {
  background: #fff !important;
  border-color: var(--border-color-dark) !important;
  color: var(--text-color-dark) !important;
  font-family: var(--creote-family-one) !important;
}
.foo_subscribe.dark_color.style_one .shortcodes input::-moz-placeholder {
  color: var(--text-color-dark) !important;
}
.foo_subscribe.dark_color.style_one .shortcodes input::placeholder {
  color: var(--text-color-dark) !important;
}
.foo_subscribe.dark_color.style_one .shortcodes input[type=submit] {
  background: var(--primary-color-one) !important;
  color: #fff !important;
}
.foo_subscribe.dark_color.style_one .social_media_v_one ul li a {
  margin-inline-end: 0px;
  background: var(--primary-color-three) !important;
  color: var(--primary-color-one) !important;
}
.post_single_content h5{
  color: var(--primary-color-one);
  font-size: 30px;
}
.widgets_grid_box .widget-title {
  position: relative;
  margin-bottom: 50px;
  font-size: 18px;
  margin-inline-start: 60px;
  font-weight: 700;
  line-height: 26px;
  color: var(--heading-dark);
  font-family: var(--creote-family-one);
}
.widgets_grid_box .widget-title:before {
  position: absolute;
  content: "";
  width: 50px;
  left: -60px;
  height: 2px;
  background: var(--primary-color-one);
  top: 0;
  bottom: 0;
  margin: auto;
}
.widgets_grid_box .widget-title:after {
  position: absolute;
  content: "";
  width: 10px;
  left: -60px;
  height: 10px;
  border-radius: 10px;
  background: var(--primary-color-one);
  top: 0;
  bottom: 0;
  margin: auto;
}
.widget_post_box .blog_in {
  position: relative;
  margin-bottom: 19px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color-dark);
}
.widget_post_box .blog_in .content_inner {
  position: relative;
}
.widget_post_box .blog_in .content_inner .post-date {
  text-transform: uppercase;
  font-size: 12px;
  color: var(--text-color-dark);
  line-height: 22px;
  font-weight: 600;
  font-family: var(--creote-family-one);
  margin-bottom: 6px;
}
.widget_post_box .blog_in .content_inner .post-date span {
  display: inline-block;
  font-size: 16px;
  color: var(--primary-color-one);
  margin-inline-end: 5px;
}
.widget_post_box .blog_in .content_inner h3 a {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--heading-dark);
  font-family: var(--creote-family-one);
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: none;
}
.widget_post_box .blog_in.image_in .image {
  float: left;
}
.widget_post_box .blog_in.image_in .image img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.widget_post_box .blog_in.image_in .content_inner {
  margin-inline-start: 85px;
}
.widget_post_box .blog_in:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.widgets_grid_box .contact_form_box_all.type_one .contact_form_box_inner{
  padding: 25px;
  margin-top: 30px;
}
.gallery-item{
  margin: 15px 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  min-height: 200px;
  border-radius: 15px;
}
.gallery-item img{min-height: 200px;border-radius: 20px;}
.fancybox__container{
  z-index: 9999;

}
/***************************************** Social media *****************************************************/

.social-sec {
  padding: 0;
  z-index: 10000;
  transition: 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  list-style: none;
  /* z-index: 1000; */
  position: fixed;
  bottom: 20%;
  left: 0;
  transform: translate(-100%, 100%);
  /* direction: rtl; */
}

.social-sec .Icon {
  position: relative;
  padding: 15px;
  margin: 0;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  background: var(--primary-color-one);
  margin-bottom: 10px;
  border-radius: 10px;
}
.social-sec i{
  color: #fff;
}
.social-sec .Icon:hover i{
  color: #fff
}

.social-sec .Icon.contact a {
  transform: rotate(90deg);
  width: 130px;
  text-align: center;
  color: #fff;
}

.social-sec .Icon:hover span{
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.social-sec .Icon:hover a {
  color: #fff;
}

.social-sec .call:hover {
  background: var(--primary-color-one);
  color: #fff;
}

.social-sec .whatsapp:hover{
  background: var(--primary-color-one);
  color: #ffffff;
}

/*--------------------------------------------------------------
# Gallery Page
--------------------------------------------------------------*/
.gallery-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}
..gallery-page.inside{
    padding-top: 30px;
}
.gallery-page__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  /* height: 450px; */
}

.gallery-page__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  height: 350px;
}

.gallery-page__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-color: rgb(0 0 0 / 30%);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transform: translateY(-102%);
  transform: translateY(-102%);
  z-index: 1;
}

.gallery-page__single:hover .gallery-page__img:before {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.gallery-page__img img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.gallery-page__single:hover .gallery-page__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.gallery-page__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}

.gallery-page__icon a {
  height: 95px;
  width: 95px;
  background-color: #272727;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  z-index: 2;
}

.gallery-page__single:hover .gallery-page__icon a {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.gallery-page__icon a:hover {
  background-color: #fff;
  color: var(--primary-color-one);
}
.htit h3{
  margin: 30px 0;
}
.gallery-text h4{
  font-size: 18px;
  text-align: center;
}
.contact.inside{
    padding: 50px 0;
}
/************************************** Media Query ***********************************/
@media (max-width: 1600px){

    .top_bar .top_inner .common_css .contntent {
        margin-inline-start: 20px;
        margin-inline-end: 15px;
    }
}