/* ------------------------------------------ */
/*             TABLE OF CONTENTS
/* ------------------------------------------ */
/*   01 - General & Basic Styles   */
/*   02 - Accessibility            */
/*   03 - Header                   */
/*   04 - Navigation               */
/*   05 - Home Page Styles         */
/*   08 - Form Styles              */
/*   09 - Page Styles              */
/*   11 - Blog Styles              */
/*   13 - Sidebar Styles           */
/*   14 - Footer Styles 		   */
/*   16 - Media Styles             */
/*------------------------------------------*/
/*   Font Import
/*------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Poppins:100i,200,300,300i,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
/*------------------------------------------*/
/*	 General & Basic Styles
/*------------------------------------------*/
* {
    scroll-behavior: smooth !important;
 }
 html {
   overflow-y:scroll;
   overflow-x: hidden;
 }
 body {
   background: #1a1a1a;
   color: #1a1a1a;
   font-family: "Merriweather",Georgia,serif;
   font-size: 1rem;
   line-height: 1.75;
   padding: 20px;
 }
 .wrapper {
   background: #ffffff;
 }
 h1, h2, h3, h4, h5, h6 {
  font-family: Montserrat,"Helvetica Neue",sans-serif;
   margin: 0 auto;
   color: #1a1a1a;
   font-size: 2.5rem;
   line-height: 1.225;
   font-weight: 700;
 }
 h1 {
   font-size: 36px;
   line-height: 42px;
 }
 h2 {
   font-size: 36px;
   line-height: 42px;
 }
 h3 {
   font-size: 24px;
   line-height: 32px;
 }
 h4 {
   font-size: 21px;
   line-height: 28px;
 }
 h5 {
   font-size: 20px;
   line-height: 24px;
 }
 h6 {
   font-size: 18px;
   line-height: 24px;
 }
 a {
   transition: color 0.2s ease-in-out;
   -moz-transition: color 0.2s ease-in-out;
   -webkit-transition: color 0.2s ease-in-out;
   -o-transition: color 0.2s ease-in-out;
   text-decoration: none;
 }
 a:hover {
   text-decoration: none;
   color: #13334c;
 }
 img{
     border-style:none;
     vertical-align:middle;
     max-width:100%;
     height:auto;
     backface-visibility:hidden;
     -webkit-backface-visibility:hidden;
     -moz-backface-visibility:hidden;
     -ms-backface-visibility:hidden;
 }
 p {
   margin: 0 0 1.75em;
 }
 strong, b {
   font-weight: 600;
 }
 i {
   font-size: 1.1em;
   padding-right:5px;
   color: #222222;
 }
 object{
   max-width:100%;
 }
 ul, ol {
   list-style: none;
   padding: 0;
   margin: 0;
 }
 iframe[src="about:blank"] {
   display: none;
 }
 .widget {
   list-style-type: none;
 }

 /*------------------------------------------*/
 /*   Accessibility
 /*------------------------------------------*/
 /* Text meant only for screen readers. */
 .screen-reader-text {
     clip: rect(1px, 1px, 1px, 1px);
     height: 1px;
     overflow: hidden;
     position: absolute !important;
     width: 1px;
     word-wrap: normal !important;
 }

 .screen-reader-text:focus {
     background-color: #000;
     color: #ffd200;
     clip: auto !important;
     display: block;
     font-size: 14px;
     font-size: 18px;
     font-weight: 700;
     height: auto;
     left: 5px;
     line-height: normal;
     padding: 15px 23px 14px;
     text-decoration: none;
     top: 5px;
     width: auto;
     z-index: 100000;
 }
 .uppercase {
	text-transform: uppercase;
}
.capitalize {
	text-transform: capitalize;
}
 /*------------------------------------------*/
 /*   Buttons
 /*------------------------------------------*/
 .button {
   display: inline-block;
   transition: all 0.3s ease-in-out;
   -moz-transition: all 0.3s ease-in-out;
   -webkit-transition: all 0.3s ease-in-out;
   -o-transition: all 0.3s ease-in-out;
   text-transform: uppercase;
   padding:10px 25px;
   color: #ffffff !important;
   font-family: Montserrat,"Helvetica Neue",sans-serif;
    font-weight: 700;
  letter-spacing: .046875em;
   font-size: 16px;
   background: #1a1a1a;
 }
 .button:hover  {
   opacity: 0.9;
 }
 .button i { padding-left: 5px; }
    input:focus::-moz-placeholder {
        opacity: 0;
        -webkit-transition: .4s;
        -o-transition: .4s;
        transition: .4s;
    }

 /*------------------------------------------*/
 /*   Header
 /*------------------------------------------*/
 .main-header {
     padding: 20px 0;
 }
 .main-header .logo a {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 600;
 }
 .main-menu ul li {
    display: inline-block;
    position: relative;
    z-index: 1;
 }
 .main-menu ul li a {
    color: #1a1a1a;
    font-weight: 400;
    padding: 16px;
    font-weight: 400;
    display: block;
    font-size: 16px;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    text-transform: capitalize;
    font-family: "Poppins",sans-serif;
 }
 .main-header .main-menu ul ul.submenu {
    position: absolute;
    width: 170px;
    background: #fff;
    left: 0;
    top: 120%;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0 10px 3px rgb(0 0 0 / 5%);
    padding: 17px 0;
    border-top: 5px solid #1a1a1a;
    -webkit-transition: all .3s ease-out 0s;
    -moz-transition: all .3s ease-out 0s;
    -ms-transition: all .3s ease-out 0s;
    -o-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
}
.main-header ul > li:hover > ul.submenu {
	visibility: visible;
    opacity: 1;
    top: 100%;
}
.main-header .main-menu ul ul.submenu>li {
    margin-left: 7px;
    display: block;
}
.main-header .main-menu ul ul.submenu>li>a {
    padding: 6px 10px !important;
    font-size: 14px;
    text-transform: capitalize;
}

.sticky-bar {
    left: 0;
    margin: auto;
    position: fixed;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 10px 15px rgb(25 25 25 / 10%);
    box-shadow: 0 10px 15px rgb(25 25 25 / 10%);
    z-index: 9999;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgb(25 25 25 / 10%);
    background: #fff;
}
/*header Sticky Responsive*/
.slicknav_btn {
    top: -30px;
}
.slicknav_nav {
	margin-top: 0px;
}
.slicknav_menu .slicknav_icon-bar {
    background-color: #1a1a1a !important;
}
.slicknav_menu .slicknav_nav a:hover {
    background: transparent;
}
.slicknav_menu {
    background: transparent;
    margin-top: 5px !important;
}
.mobile_menu {
    position: absolute;
    right: 0px;
    width: 100%;
    z-index: 99;
}
 /*------------------------------------------*/
 /*   Footer
 /*------------------------------------------*/
 .footer-bottom-area {
  background-color: #222222;
   padding: 30px 0;
   text-align: center;
   color: #ffffff;
 }
 .footer-bottom-area i {
  color: #cccccc;
  padding-right: 10px;
 }

 .footer-bottom-area li {
  padding: 10px;
}
 .footer-bottom-area .footer-social li {
   font-size: 24px;
 }
.footer-bottom-area .footer-address {
   font-size: 16px;
   font-weight: 200;
   margin:20px auto;
}
.footer-bottom-area .footer-address a {
  color: #cccccc;
  text-decoration: underline;
  font-weight: 400;
}
.footer-copy-right p {
  font-size: 14px;
  font-weight: 300;
  padding: 0 50px;
}
.footer-widget-area {
  background-color: #f9f9f9;
  padding: 40px 0;
}
.footer-widget-area .form-row {
  max-width: 800px !important;
  width: 96% !important;
  margin: 0 auto !important;
}
 /*------------------------------------------*/
 /*   Page Styles
 /*------------------------------------------*/
 .page-header {
   background-color: #e9ecef;
   padding: 50px 0;
   text-align: center;
   color: #1a1a1a;
 }
 .home .page-header {
  padding: 50px 0;
}
blockquote {
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote:after {
  color: #ccc;
  content: close-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-left: 0.25em;
vertical-align: -0.5em;
}
blockquote p {
  display: inline;
}
.page-content {
  padding: 40px 0;
   text-align: justify;
  text-justify: inter-word;
}
.page-content .col-left p {
  margin: 25px 0;
}
.page-content h1 {
  margin-bottom: 25px;
}
.testimonial {
  background: #f9f9f9;
  padding:20px;
  border-left:5px solid #dddddd;
  margin:0 auto 30px;
  font-style: italic;
}
.page-content .col-left .testimonial p {
  margin: 15px 0;
}
.testimonial .author {
  font-weight:600;
  font-style:italic;
  padding:20px 0 0;
  margin-top: 25px;
  border-top:1px dotted #dddddd;
}
.page-content .col-left .testimonial .author p {
 margin:0;
}
.case-history {
  background: #f9f9f9;
  margin:25px auto;
  padding:20px;
  border-top: 5px solid #ddd;
}
.page-content .col-left .case-history p {
  font-size: 17px;
  margin:0px;
}
#page-contact .footer-widget-area {
  display: none;
}
#page-contact .contact-info {
  background: #f9f9f9;
  padding: 20px;
  margin: 15px auto;
}
#page-contact .contact-info li {
  padding: 10px 0;
  font-size: 20px;
}
#page-contact .contact-info li i {
  padding-right: 10px;
}
 /*------------------------------------------*/
 /*   Sidebar Styles
 /*------------------------------------------*/
.sidebar figure {
  border: 1px #cccccc solid;
  margin:  auto;
  text-align: center;
}

.sidebar figcaption {
  background-color: #f5f5f5;
  font-style: italic;
  padding: 5px;
  text-align: center;
}
.sidebar figcaption span {
  font-weight: 600;
}
.sidebar-social {
  margin: 15px auto; 
}
.sidebar-social li {
  padding: 10px;
  font-size: 20px;
  background-color: #f5f5f5;
  margin: 0 5px;
  max-width: 46px;
  text-align: center;
}
.sidebar-cases {
  border: 1px solid #efefef;
  border-radius: 5px;
  padding: 10px;
  margin: 25px auto;
}
.sidebar-cases p {
  margin: 0;
  line-height: 1.5;
}

.sidebar-cases .row {
  border-bottom: 1px solid #efefef;
  padding:10px;
}
.sidebar-cases .col-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
/*------------------------------------------*/
/*   Media Css
/*------------------------------------------*/
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li a{
    padding:12px;
  }

}
@media screen and (max-width: 767px) {
  .sidebar figure {
    margin: 15px auto;
  }
  .sidebar-cases .col-img {
    margin-bottom: 10px;
  }
  .footer-address {
    flex-direction: column;
  }
  .footer-copy-right p {
    padding: 0 10px;
 }
}
