/*--------------------------------------------------------------
# Start General Styling
--------------------------------------------------------------*/
:root {
  /* --primary-color: #4164cc;
  --secondary-color: #3444ce; */
  --primary-color: #214192;
  --secondary-color: #de2228;
/* Red - #de2228
Blue - #214192
*/
  --black: #000;
  --white: #fff;
  --gray: #444444;
  --lightgray: #d3d3d3;

  --facebook-color: #4d6ba7;
  --google-color: #db4437;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--gray);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}
/*--------------------------------------------------------------
# End General Styling
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Back to top button styling
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--secondary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: var(--white);
  line-height: 0;
}
.back-to-top:hover {
  background: var(--primary-color);
  color: var(--white);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# End Back to top button styling
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# End Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Header
--------------------------------------------------------------*/
#header {
  background: var(--white);
  transition: all 0.5s;
  z-index: 997;
  padding: 12px 0;
}
#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px var(--lightgray);
}
#header .logo {
  font-size: 20px;
  margin: 0;
  padding-right: 0.8em;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: var(--black);
  /* font-size: 10px; */
}
#header .logo a span {
  color: var(--primary-color);
  /* font-size: 15px; */
}
#header .logo img {
  max-height: 60px;
  /* max-width: 100%; */
}
/*--------------------------------------------------------------
# End Header
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}
.get-started-btn:hover {
  background: var(--black);
  color: var(--white);
}
@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}
/*--------------------------------------------------------------
# End Get Startet Button
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  
}
.navbar ul {
  margin: 0px 0px 0px 600px;
  /* margin: 0; */
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  
}
.navbar li {
  position: relative;
  
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  white-space: nowrap;
  transition: 0.3s;
  
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--secondary-color);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  box-shadow: 0px 0px 30px var(--gray);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: var(--secondary-color);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  margin: 0px 0px 0px 600px;
  color: var(--black);
  font-size: 20px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;

}
.mobile-nav-toggle.bi-x {
  color: var(--white);
}

@media (max-width: 1400px) {
  .mobile-nav-toggle {
    display: block;
    margin: 0;
    margin-left: 899px;
  }

  .navbar ul {
    display: none;
    margin: 0;
  }
}

@media (max-width: 1203px) {
  .mobile-nav-toggle {
    display: block;
    margin: 0;
    margin-left: 808px;
  }

  .navbar ul {
    display: none;
    margin: 0;
  }
}

@media (max-width: 1150px) {
  .mobile-nav-toggle {
    display: block;
    margin: 0;
    margin-left: 758px;
  }

  .navbar ul {
    display: none;
    margin: 0;
  }
}

@media (max-width: 1170px) {
  .mobile-nav-toggle {
    display: block;
    margin: 0;
    margin-left: 665px;
  }

  .navbar ul {
    display: none;
    margin: 0;
  }
}

@media (max-width: 1000px) {
  .mobile-nav-toggle {
    display: block;
    margin: 0;
    margin-left: 420px;
  }

  .navbar ul {
    display: none;
    margin: 0;
  }
}


@media (max-width: 800px) {
  .mobile-nav-toggle {
    display: block;
    margin: 0;
    margin-left: 380px;
  }

  .navbar ul {
    display: none;
    margin: 0;
  }
}

@media (max-width: 770px) {
  .mobile-nav-toggle {
    display: block;
    margin: 0;
    margin-left: 350px;
  }

  .navbar ul {
    display: none;
    margin: 0;
  }
}

@media (max-width: 670px) {
  .mobile-nav-toggle {
    display: block;
    margin: 0;
    margin-left: 300px;
  }

  .navbar ul {
    display: none;
    margin: 0;
  }
}

@media (max-width: 540px) {
  .mobile-nav-toggle {
    display: block;
    margin: 0;
    margin-left: 250px;
  }

  .navbar ul {
    display: none;
    margin: 0;
  }
}

@media (max-width: 490px) {
  .mobile-nav-toggle {
    display: block;
    margin: 0;
    margin-left: 200px;
  }

  .navbar ul {
    display: none;
    margin: 0;
  }
}

@media (max-width: 440px) {
  .mobile-nav-toggle {
    display: block;
    margin: 0;
    margin-left: 100px;
  }

  .navbar ul {
    display: none;
    margin: 0;
  }
}
@media (max-width: 345px) {
  .mobile-nav-toggle {
    display: block;
    margin: 0;
    margin-left: 60px;
  }

  .navbar ul {
    display: none;
    margin: 0;
  }
}
@media (max-width: 295px) {
  .mobile-nav-toggle {
    display: block;
    margin: 0;
    margin-left: 25px;
  }

  .navbar ul {
    display: none;
    margin: 0;
  }
}



.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--white);
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--black);
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--primary-color);
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--white);
  box-shadow: 0px 0px 30px var(--lightgray);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--primary-color);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# End Navigation Menu
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Start Index.html Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/home-page/hero.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 80px;
}
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
}
#hero h2 {
  color: var(--white);
  margin: 10px 0 0 0;
  font-size: 18px;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  color: var(--white);
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}
#hero .btn-get-started:hover {
  background: transparent;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);

}
@media (max-width: 768px) {
  #hero {
    text-align: center;
    padding-top: 58px;
  }
  #hero h1 {
    font-size: 28px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}
/*--------------------------------------------------------------
# Start index.html who we are section
--------------------------------------------------------------*/
.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--white);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--secondary-color);
  color: var(--white);
}
.about .content h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--secondary-color);

}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}
.about .content .about-btn:hover {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--white);
}

/*--------------------------------------------------------------
# Start our services button styling
--------------------------------------------------------------*/
.services .service-btn {
  align-items: center;
  padding: 8px 30px 9px 30px;
  color: var(--black);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  border: 2px solid var(--secondary-color);
}

.services .service-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.services .service-btn:hover {
  color: var(--white);
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
}
/*--------------------------------------------------------------
# Start FAQs
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
  list-style: none;
}
.faq .faq-list li {
  border-bottom: 1px solid var(--white);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.faq .faq-list a {
  display: block;
  position: relative;
  /* color: var(--primary-color); */
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}
.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: var(--gray);
}
.faq .faq-list a.collapsed:hover {
  color: var(--primary-color);
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
/*--------------------------------------------------------------
# End Index.html 
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Start About.html Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start About hero Section
--------------------------------------------------------------*/
#about-hero {
  width: 100%;
  height: 50vh;
  background: url("../img/about.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 80px;
}
#about-hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#about-hero h1 {
  margin: 0;
  font-size: 150px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
}

#about-hero .container .row::after {
  content: "";
  position: absolute;
  display: block;
  width: 250px;
  height: 6px;
  background: var(--secondary-color);
  bottom: 0;
  left: calc(15% - 25px);
}

@media (max-width: 997px) {
  #about-hero {
    text-align: center;
    padding-top: 58px;
  }
  #about-hero h1 {
    font-size: 30px;
    /* margin-bottom: 8px; */
  }
  #about-hero .container .row::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 6px;
    background: var(--primary-color);
    bottom: 0;
    left: calc(50% - 25px);
  }
  #about-hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-height: 500px) {
  #about-hero {
    height: 120vh;
  }
}
/*--------------------------------------------------------------
# Start index.html who are we and our vision, mission of about.html Section
--------------------------------------------------------------*/
.about .container {
  position: relative;
  z-index: 10;
}
.about .content {
  padding: 30px 30px 30px 0;
}
.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: var(--secondary-color);
  /* margin-bottom: 30px; */
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Start About why us Section
--------------------------------------------------------------*/
.our-services {
  background: var(--white);
  text-align: center;
}

.our-services .services {
  display: inline-block;
  width: calc(100% / 3);
  margin: 0 -2px;
  padding: 10px;
  cursor: pointer;
  transition: 0.4s;
}

@media screen and (max-width: 600px) {
  .our-services .services {
    width: 100%;
  }
}

.our-services .services .icon {
  color: var(--primary-color);
  font-size: 50px;
}

.our-services .services .icon:hover {
  color: var(--secondary-color);
}

.our-services .services h3 {
  font-weight: 600;
  font-size: 28px;
}

/*--------------------------------------------------------------
# Start Team Section
--------------------------------------------------------------*/
.team .member {
  /* margin-bottom: 20px; */
  overflow: hidden;
  border-radius: 15px;
  background: var(--white);
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .member-info {
  padding: 25px 15px;
}
.team .member .member-info h4 {
  font-weight: 700;
  /* margin-bottom: 5px; */
  font-size: 20px;
  color: var(--black);
}
.team .member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: var(--gray);
}

/*--------------------------------------------------------------
# Start Services.html Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start Services.html hero Section
--------------------------------------------------------------*/
#services-hero {
  width: 100%;
  height: 50vh;
  background: url("../img/services.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 80px;
}
#services-hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#services-hero h1 {
  margin: 0;
  font-size: 150px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
}

#services-hero .container .row::after {
  content: "";
  position: absolute;
  display: block;
  width: 350px;
  height: 6px;
  background: var(--secondary-color);
  bottom: 0;
  left: calc(15% - 25px);
}

@media (max-width: 1245px) {
  #services-hero {
    text-align: center;
    padding-top: 58px;
  }
  #services-hero h1 {
    font-size: 28px;
    /* margin-bottom: 8px; */
  }

  #services-hero .container .row::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 6px;
    background: var(--primary-color);
    bottom: 0;
    left: calc(50% - 25px);
  }

  #services-hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-height: 500px) {
  #services-hero {
    height: 120vh;
  }
}


/*--------------------------------------------------------------
# Start Services.html Tabs Section
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}
.tabs .nav-link {
  border: 1px solid var(--white);
  padding: 15px;
  transition: 0.3s;
  color: var(--black);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}
.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.tabs .nav-link:hover {
  color: var(--primary-color);
}
.tabs .nav-link.active {
  background: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}
@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }
  .tabs .nav-link i {
    font-size: 24px;
  }
}
.tabs .tab-content {
  margin-top: 30px;
}
.tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}
.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}
.tabs .tab-pane ul li {
  padding-bottom: 10px;
}
.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary-color);
}
.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Start Services.html Services Section
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: var(--black);
  transition: 0.3s;
}
.services .icon-box:hover {
  background: var(--black);
}
.services .icon-box i {
  float: left;
  color: var(--secondary-color);
  font-size: 40px;
  line-height: 0;
}
.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  /* margin-bottom: 15px; */
  font-size: 18px;
  color: var(--white);
}
.services .icon-box h4 a {
  color: var(--white);
  transition: 0.3s;
}
.services .icon-box h4 a:hover {
  text-decoration: underline;
}
.services .icon-box .icon-box:hover h4 a {
  color: var(--primary-color);
}
.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Start Blogs.html Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Start Blogs.html hero Section
--------------------------------------------------------------*/
#blogs-hero {
  width: 100%;
  height: 50vh;
  background: url("../img/blogs.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 80px;
}
#blogs-hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#blogs-hero h1 {
  margin: 0;
  font-size: 150px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
}

#blogs-hero .container .row::after {
  content: "";
  position: absolute;
  display: block;
  width: 250px;
  height: 6px;
  background: var(--secondary-color);
  bottom: 0;
  left: calc(12% - 25px);
}

@media (max-width: 997px) {
  #blogs-hero {
    text-align: center;
    padding-top: 58px;
  }
  #blogs-hero h1 {
    font-size: 28px;
    /* margin-bottom: 8px; */
  }
  #blogs-hero .container .row::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 6px;
    background: var(--primary-color);
    bottom: 0;
    left: calc(50% - 25px);
  }
  #blogs-hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-height: 500px) {
  #blogs-hero {
    height: 120vh;
  }
}

.pagination {
  display: inline-block;
  font-weight: bold;
}

.pagination a {
  color: var(--black);
  float: left;
  padding: 8px 16px;
  text-decoration: none;
}

.pagination a.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 5px;
}

.pagination a:hover:not(.active) {
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 5px;
}

@media screen and (max-width: 314px) {
  .pagination {
    display: inline-block;
    font-weight: bold;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Start Blog Content for blogs.html, and blog single section
--------------------------------------------------------------*/
.blog {
  padding: 100px 0 100px 0;
}
.blog .entry {
  padding: 25px;
  /* margin-bottom: 20px; */
  box-shadow: 0 4px 16px var(--lightgray);
}
.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}
.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 30px 0 20px 0;
}
.blog .entry .entry-title a {
  color: var(--primary-color);
  transition: 0.3s;
}
.blog .entry .entry-title a:hover {
  color: var(--secondary-color);
}

.blog .entry .entry-content p {
  line-height: 32px;
}
.blog .entry .entry-content .read-more{
  -moz-text-align-last: right;
  text-align-last: right;
}
.blog .entry .entry-content .read-more a, .blog .read-more a {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}
.blog .entry .entry-content .read-more a:hover, .blog .read-more a:hover{
  background: var(--primary-color);
}
.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: var(--white);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.blog .entry .entry-content blockquote p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--black);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry-single {
  margin-bottom: 30px;
}



/*--------------------------------------------------------------
# Start Sections General (Common)
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
  color: var(--black);
  
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  /* margin-bottom: 20px; */
  padding-bottom: 20px;
  position: relative;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  bottom: 0;
  left: calc(50% - 25px);
}
.section-title p {
  margin-bottom: 0;
}

.section-bg {
  padding: 100px 0;
  color: var(--white);
}
.section-bg:before {
  content: "";
  background: var(--black);
  /* background: #2F3637; */
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

/*--------------------------------------------------------------
# Start Tools and Technologies
--------------------------------------------------------------*/
.tools .swiper-pagination {
  margin-top: 50px;
  position: relative;
}
.tools .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white);
  opacity: 1;
  border: 1px solid var(--secondary-color);
}
.tools .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondary-color);
}
.tools .swiper-slide img {
  /* opacity: 0.5; */
  transition: 0.3s;
  /* filter: grayscale(100); */
}
.tools .swiper-slide img:hover {
  opacity: 1;
  filter: none;
}

/*--------------------------------------------------------------
# Start Contact.html
--------------------------------------------------------------*/
.contact .info-box {
  color: var(--gray);
  text-align: center;
  box-shadow: 0 0 30px var(--lightgray);
  padding: 30px 0 32px 0;
  border-radius: 4px;
}
.contact .info-box i {
  font-size: 32px;
  color: var(--primary-color);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted var(--white);
}
.contact .info-box h3 {
  font-size: 20px;
  color: var(--gray);
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px var(--lightgray);
  padding: 30px;
  border-radius: 4px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--white);
  background: var(--primary-color);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: var(--white);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .form-group {
  margin-bottom: 25px;
}

.contact .php-email-form button[type=submit] {
  background: var(--secondary-color);
  border: 0;
  padding: 10px 32px;
  color: var(--white);
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: var(--primary-color);
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


 /* Begin Sitemap */
#sitemap-hero {
  width: 100%;
  height: 50vh;
  /* background: url("../img/logo1.png") top center no-repeat; */
  background-color: var(--secondary-color);
  background-size: cover;
  position: relative;
  padding-top: 80px;
}

#sitemap-hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#sitemap-hero h1 {
  margin: 0;
  font-size: 150px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
}

#sitemap-hero .container .row::after {
  content: "";
  position: absolute;
  display: block;
  width: 250px;
  height: 6px;
  background: var(--secondary-color);
  bottom: 0;
  left: calc(15% - 25px);
}

@media (max-width: 997px) {
  #sitemap-hero {
      text-align: center;
      padding-top: 58px;
  }

  #sitemap-hero h1 {
      font-size: 30px;
      /* margin-bottom: 8px; */
  }

  #sitemap-hero .container .row::after {
      content: "";
      position: absolute;
      display: block;
      width: 50px;
      height: 6px;
      background: var(--primary-color);
      bottom: 0;
      left: calc(50% - 25px);
  }

}

@media (max-height: 500px) {
  #sitemap-hero {
      height: 120vh;
  }
}

.sitemap-title {
  /* text-align: center; */
  padding-bottom: 30px;
  position: relative;
  color: var(--black);
  
}
.sitemap-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  /* margin-bottom: 20px; */
  padding-bottom: 20px;
  position: relative;
}
.sitemap-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  bottom: 0;
  /* left: calc(50% - 25px); */
}
/* End Sitemap */



/*--------------------------------------------------------------
# Start Footer
--------------------------------------------------------------*/
#footer {
  color: var(--white);
  font-size: 14px;
  background: var(--black);
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--black);
    /* background: #2F3637; */
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact h3 span {
  color: var(--secondary-color);
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: fff;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: var(--white);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--primary-color);
}
#footer .footer-newsletter {
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: var(--white);
  padding: 5px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--secondary-color);
  color: var(--white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px var(--black);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: var(--primary-color);
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
}
.copyright span{
color: var(--secondary-color);
}
.copyright span:hover {
  
  color: var(--primary-color);
 
}

/* Google Translator Styling */
.translated-ltr{margin-top:-40px;}
.translated-ltr{margin-top:-40px;}
.goog-te-banner-frame {display: none;margin-top:-20px;}

.goog-logo-link {
   display:none !important;
} 

.goog-te-gadget{
   color: transparent !important;
}
.goog-te-combo{
  /* height: 200px; */
  /* width: 400px; */
  /* margin: 50px auto 0; */
  box-shadow: 0px 5px 5px 0px var(--secondary-color);
  background-color: var(--white);
  height: 3vh;
  /* color: var(--white); */
  /* border-radius: 0px; */
  /* min-width: 100px; */
  /* box-shadow: 10px 10px 5px grey; */
  /* padding-left: 25px; */
  /* margin: 20px; */
  /* padding: 6px 10px; */
  /* z-index: 1; */
  /* font-size: 1rem; */
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
}

/* 
.goog-te-combo:hover{

  background-color: var(--gray);
  color: var(--white);

  } */
  
  
 