@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

html {
  scroll-behavior: smooth;
}
body, p {
    font-size: 14px;
    line-height: 28px;
    font-style: normal;
    font-weight: normal;
    font-family: "Open Sans", sans-serif;
    color: #666666;

}
b, strong {
    font-weight: 700;
    color: #1C1C1C;
}
.no-padding{
  padding: 0;
}
a{
    font-family: "Oswald", sans-serif;
    color: #1C1C1C;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
a:hover{
    text-decoration: none;
}
a:link , a:visited , a:hover, a:active{
    text-decoration: none;
}
h1 , h2, h3, h4, h1 p, h2 p, h3 p{
    font-family: "Oswald", sans-serif;
    color: #1f2d30;
    font-weight: 400;
    margin-top: 0;
    line-height: 1.2;
}
.coman-btn a{
    font-family: 'Object Sans';
}
.slick-slide {
    height: auto;
}
.small_title {
    color: #074bfb;
    line-height: 1.25em;
    font-family: "Oswald", sans-serif;
    margin: 0;
    font-size: 17px;
    margin-bottom: 5px;
    width: 100%;
}
ul{
    margin-bottom: 0;
}
/* ================ back to top =================*/
.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  left: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #000000 url(../images/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 40px;
    width: 40px;
    left: 30px;
    bottom: 30px;
  }
}

/* ================ end back to top =================*/

/* ================ Loader =================*/
/*.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/loader-64x/Preloader_2.gif) center no-repeat #fff;
}*/

.container-preloader {
    align-items:center; 
    cursor:none; 
    display:flex; 
    height:100%;
    justify-content:center; 
    position:fixed; 
    left:0; 
    top:0; 
    width:100%; 
    z-index:900;
}
.container-preloader .animation-preloader {
    position:absolute; 
    z-index: 100;
}
/* Spinner Loading */
.container-preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;  
    border: 10px solid rgba(0, 0, 0, 0.2);
    border-top-color: #bfb170; /* It is not in alphabetical order so that you do not overwrite it */
    height: 9em;  margin: 0 auto 3.5em auto; width: 9em;
}
/* Loading text */
.container-preloader .animation-preloader .txt-loading {
    font: bold 5em 'Montserrat', sans-serif;
    text-align: center; 
    user-select: none;
}
.container-preloader .animation-preloader .txt-loading .characters:before {
  animation: characters 4s infinite;  
  color: #1e3859;
  content: attr(preloader-text);  left: 0;
  opacity: 0;  position: absolute;  top: 0;
  transform: rotateY(-90deg);
}
.container-preloader .animation-preloader .txt-loading .characters {
    color: rgba(0, 0, 0, 0.2);  position: relative;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(2):before {
  animation-delay: 0.2s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(3):before {
  animation-delay: 0.4s;
}
.container-preloader .loader-section {
  background-color: #ffffff;  height: 100%;
  position: fixed;  top: 0;  width: calc(50% + 1px);
}
.container-preloader .loader-section.section-left {
  left: 0;
}
.container-preloader .loader-section.section-right {
  right: 0;
}
/* Fade effect on loading animation */
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
/* Curtain effect */
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}
.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}
/* Animation of the preloader */
@keyframes spinner {
to {
    transform: rotateZ(360deg);
}}
/* Animation of letters loading from the preloader */
@keyframes characters {
  0%,
  75%,
  100% {
 opacity: 0;
 transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }}
/* Laptop size back (laptop, tablet, cell phone) */
@media screen and (max-width: 767px) {   
    .container-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }
    .container-preloader .animation-preloader .txt-loading {
      font: bold 3.5em 'Montserrat', sans-serif;
    }
}
@media screen and (max-width: 500px) { 
    .container-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }
    .container-preloader .animation-preloader .txt-loading {
      font: bold 1em 'Montserrat', sans-serif;
    }
}
/* ================ end Loader =================*/

/* ================ Header =================*/

.header-top {
    background-color: #1f2d30;
    padding-top: 10px;
    padding-bottom: 10px;
}
.header-top ul{
    list-style: none;
    padding-left: 0;
}
.header-top ul li:first-child{
    padding-left: 0;
}
.header-top ul li{
    display: inline-block;
    padding: 0 10px;
    color: #fff;
}
.header-top .right ul{
    text-align: right;
}
.header-top .right ul li a{
    color: #fff;
}
.header-bottom {
  padding-top: 10px;
}
/* ====================== End Header =================== */

/* ====================== Slider =================== */

.hero-banner-bread {
    background: #f0f0f0;
    padding-top: 10px;
    padding-bottom: 10px;
}
.hero-banner-bread p{
    margin-bottom: 0;
}
/* ====================== End slider =================== */

/* ====================== footer=================== */
.footer {
  background: #1f2d30;
  padding-top: 30px;
  padding-bottom: 20px;
  color: #fff;
}
.footer h4, ul#menu-gridlove-main li a, .footer p{
  color: #fff;
}
.footer h4{
  margin-bottom: 15px;
}
.footer_info {
  display: flex;
  margin-bottom: 8px;
}
.footer_info .left{
  margin-top: 8px;
  margin-right: 8px;
}
ul#menu-gridlove-main {
  padding-left: 0;
  list-style: none;
}
.footer-bottom {
  text-align: center;
  background: #1f2d30;
  padding-bottom: 10px;
  color: #fff;
}
.footer-bottom .copyright {
  border-top: 1px solid #ffffff4d;
  padding-top: 15px;
}
/* ====================== End footer =================== */

/* ====================== two_column_layout =================== */
.two_column_layout .right h1{
    margin-bottom: 10px;
}
.two_column_layout .bold_text {
  color: #1f2d30;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 15px;
}
.two_column_layout .right {
  display: flex;
  align-items: center;
}
.btn_custom a {
  display: inline-block;
  padding: 8px 25px;
  background: #ff0808;
  font-size: 17px;
  color: #fff;
}
.two_column_layout{
    margin-top: 80px;
    margin-bottom: 80px;
}
.two_column_layout img{
    border-radius: 10px;
}
/* ====================== End two_column_layout =================== */

.list_layout {
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 80px;
}
.list_layout .left{
    margin-bottom: 10px;
}
.two_column_layout .right ul {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 10px;
}
.address ul {
  margin-top: 15px;
}
.whatsapp {
  position: fixed;
  bottom: 10px;
  right: 10px;
}
.whatsapp img{
  width: 50px;
}
.social-x {
  position: fixed;
  right: 0;
  top: 30%;
  z-index: 99;
}
.social-x ul{
  list-style: none;
  padding-left: 0;
}
.social-x ul li a {
  background-color: #000;
  display: inline-block;
  width: 35px;
  height: 35px;
  color: #fff;
  text-align: center;
  padding-top: 7px;
  font-size: 18px;
  margin-bottom: 2px;
}
/* ====================== services_layout =================== */

.services_layout{
    margin-bottom: 80px;
}
.page-id-25 .services_layout {
  margin-top: 80px;
}
.services_layout h1{
    text-align: center;
    margin-bottom: 30px;
}
.services_layout .list-inner {
    text-align: left;
    padding: 15px 20px;
    border: 1px solid #eeeeee;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-bottom: 30px;
    min-height: auto;
}
.services_layout .list-inner .left {
    display: flex;
}
.services_layout .list-inner .left h3{
	margin-left:10px;
}
.services_layout .list-inner .left i {
  font-size: 32px;
  color: #074bfb;
  margin-bottom: 15px;
}
.services_layout .list-inner p {
    font-size: 17px;
}
/* ====================== End services_layout =================== */

/* ====================== testimonial_layout =================== */
.testimonial_layout {
  padding-top: 80px;
  padding-bottom: 80px;
}
.testimonial_layout .title{
  text-align: center;
  margin-bottom: 30px;
}
.testimonials-box {
  text-align: center;
}
.testimonial_layout .quote {
  text-align: center;
  font-size: 42px;
  margin-bottom: 15px;
  color: #074bfb;
}
.testimonials-box-bottom p {
  margin-bottom: 0;
  font-weight: 600;
  color: #074bfb;
}
.testimonials-box-top p {
  font-size: 18px;
  font-style: italic;
  line-height: 32px;
  margin-bottom: 10px;
}
.plain_text_layout {
  margin-top: 50px;
  margin-bottom: 30px;
}
.plain_text_layout h1{
  margin-bottom: 20px;
}
/* ====================== End testimonial_layout =================== */

button, input, optgroup, select, textarea {
  width: 100%;
  border: 1px solid #00000024;
  border-radius: 5px;
  padding: 8px;
}
label {
  width: 100%;
}
textarea{
  height: 170px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
  display: inline-block;
  padding: 8px 25px;
  background: #ff0808;
  font-size: 17px;
  color: #fff;
  border: 0;
}
.contact-us {
  margin-top: 60px;
  margin-bottom: 30px;
}
.contact-top{
  margin-bottom: 30px;
}
.address {
  border: 1px solid #0000001c;
  padding: 30px;
  margin-bottom: 30px;
  min-height: 175px;
  font-size: 16px;
}
.address ul {
  padding-left: 0;
}
.address ul li{
  margin-right: 5px;
  display: inline-block;
}
@media(max-width:1024px){
  .contact-us {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .contact-right {
    margin-bottom: 30px;
  } 
  .services_layout .list-inner {
    padding: 30px 20px;
  }
  .row.right_row h1 {
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .row.order .right{
    margin-bottom: 30px;
  }
  .row.order .left{
    order: 1;
  }
  .row.order .right{
    order: 2;
  }
  .two_column_layout {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .home .row.right_row h1 {
    margin-top: 3px;
    margin-bottom: 15px;
    font-size: 28px;
  }
  .home .row.right_row {
    margin-top: 20px;
  }
  .footer_row {
    margin-bottom: 20px;
  }
  .header-bottom .left {
    padding: 0;
    padding-left: 10px;
    display: inline-block;
    z-index: 9;
    width: auto;
  }
  .header-bottom .middle {
    padding: 0;
    margin-top: -63px;
  }
  ul#mega-menu-Primary-Menu {
    margin-top: 25px !important;
  }
  .header-bottom  .container{
    padding: 0;
  }
  .header-top{
    display: none
  }
}