/*============**  Base  **============*/
/* Common Color */
/* Theme Color */
/* Responsive Variables */
/*
  Theme Name: Finxer
  Author: Prowpagency.com
  Support: prowpagency@gmail.com
  Description: Lawyer HTML5 template.
  Version: 1.0
*/
/*==================================================
===**  TABLE OF CONTENTS: **===
====================================================
1. Theme reset CSS
2. Typhography
3. Padding margin
4. Header Area 
5. Slider Area 
6. About Area   
7. Skills Area 
8. Service Area  
9. Choose Us Area  
10. Brand  Area
11. Case Study
12. Contact Area
13. Questions Area 
14. Team Area 
15. Testimonials Area
16. Newsletter  Area
17. Blog Area
18. Errorpage Area
19. Faq Area
20. Footer Area
21. Sidebar Area 


===================================================*/
/*==================================================
===** Theme Reusable CSS **===
==================================================== */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&family=PT+Serif:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
}

a, .button {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus, .button:focus {
  outline: none;
}

a:focus, a:hover {
  color: #F31717;
  text-decoration: none;
}

a, button {
  color: #F31717;
  outline: medium none;
}

button:focus, input:focus, input:focus, textarea, textarea:focus {
  outline: 0;
}

*::-moz-selection {
  background: #F31717;
  color: #FFFFFF;
  text-shadow: none;
  border: 1px solid #F31717;
}

::-moz-selection {
  background: #F31717;
  color: #FFFFFF;
  text-shadow: none;
}

::selection {
  background: #F31717;
  color: #FFFFFF;
  text-shadow: none;
}

*::-webkit-input-placeholder {
  color: #5C727D;
  font-size: 16px;
  opacity: 1;
  font-weight: 600;
}

*:-ms-input-placeholder {
  color: #5C727D;
  font-size: 16px;
  opacity: 1;
  font-weight: 600;
}

*::-ms-input-placeholder {
  color: #5C727D;
  font-size: 16px;
  opacity: 1;
  font-weight: 600;
}

*::placeholder {
  color: #5C727D;
  font-size: 16px;
  opacity: 1;
  font-weight: 600;
}

/* Section Title */
.section-title-wrap__subtitle {
  font-size: 18px;
  text-transform: uppercase;
  color: #F31717;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 700;
}

.section-title-wrap__title {
  margin-bottom: 20px;
  color: #000000;
  font-size: 55px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-wrap__title {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .section-title-wrap__title {
    font-size: 28px;
  }
}

/* Color */
.white-color {
  color: #FFFFFF;
}

.primary-color {
  color: #F31717;
}

.primary-bg {
  background-color: #F31717;
}

/* Background CSS */
.bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}

.bg::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000000;
  left: 0;
  top: 0;
  opacity: .7;
  z-index: -1;
}

/* Button CSS */
.finxer-btn {
  padding: 5px 8px 5px 38px;
  color: #FFFFFF;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  border-radius: 30px;
  font-family: "Nunito Sans", sans-serif;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.finxer-btn i {
  height: 50px;
  width: 50px;
  background: #ffffff38;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  margin-left: 20px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
  z-index: 2;
}

.finxer-btn.finxer-btn-black {
  background: #000000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  color: #FFFFFF;
}

.finxer-btn.finxer-btn-black:hover {
  background-color: #F31717;
  color: #FFFFFF;
}

.finxer-btn.finxer-btn-black:hover i {
  background-color: #000000;
  color: #FFFFFF;
}

.finxer-btn.btn-bg-red {
  background-color: #F31717;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.finxer-btn.btn-bg-red i {
  background-color: #000000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.finxer-btn.btn-bg-red:hover {
  background-color: #FFFFFF;
  color: #F31717;
}

/*============** Padding Margin **============*/
.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.ml-15 {
  margin-left: 15px;
}

.mr-15 {
  margin-right: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.ml-25 {
  margin-left: 25px;
}

.mr-25 {
  margin-right: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.mr-30 {
  margin-right: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pb-35 {
  padding-bottom: 35px;
}

.mt-35 {
  margin-top: 35px;
}

.mb-35 {
  margin-bottom: 35px;
}

.ml-35 {
  margin-left: 35px;
}

.mr-35 {
  margin-right: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pb-45 {
  padding-bottom: 45px;
}

.mt-45 {
  margin-top: 45px;
}

.mb-45 {
  margin-bottom: 45px;
}

.ml-45 {
  margin-left: 45px;
}

.mr-45 {
  margin-right: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.ml-50 {
  margin-left: 50px;
}

.mr-50 {
  margin-right: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pb-55 {
  padding-bottom: 55px;
}

.mt-55 {
  margin-top: 55px;
}

.mb-55 {
  margin-bottom: 55px;
}

.ml-55 {
  margin-left: 55px;
}

.mr-55 {
  margin-right: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pb-65 {
  padding-bottom: 65px;
}

.mt-65 {
  margin-top: 65px;
}

.mb-65 {
  margin-bottom: 65px;
}

.ml-65 {
  margin-left: 65px;
}

.mr-65 {
  margin-right: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.mt-70 {
  margin-top: 70px;
}

.mb-70 {
  margin-bottom: 70px;
}

.ml-70 {
  margin-left: 70px;
}

.mr-70 {
  margin-right: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pb-75 {
  padding-bottom: 75px;
}

.mt-75 {
  margin-top: 75px;
}

.mb-75 {
  margin-bottom: 75px;
}

.ml-75 {
  margin-left: 75px;
}

.mr-75 {
  margin-right: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pb-85 {
  padding-bottom: 85px;
}

.mt-85 {
  margin-top: 85px;
}

.mb-85 {
  margin-bottom: 85px;
}

.ml-85 {
  margin-left: 85px;
}

.mr-85 {
  margin-right: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pb-90 {
  padding-bottom: 90px;
}

.mt-90 {
  margin-top: 90px;
}

.mb-90 {
  margin-bottom: 90px;
}

.ml-90 {
  margin-left: 90px;
}

.mr-90 {
  margin-right: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pb-95 {
  padding-bottom: 95px;
}

.mt-95 {
  margin-top: 95px;
}

.mb-95 {
  margin-bottom: 95px;
}

.ml-95 {
  margin-left: 95px;
}

.mr-95 {
  margin-right: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-100 {
  margin-right: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pb-105 {
  padding-bottom: 105px;
}

.mt-105 {
  margin-top: 105px;
}

.mb-105 {
  margin-bottom: 105px;
}

.ml-105 {
  margin-left: 105px;
}

.mr-105 {
  margin-right: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pb-110 {
  padding-bottom: 110px;
}

.mt-110 {
  margin-top: 110px;
}

.mb-110 {
  margin-bottom: 110px;
}

.ml-110 {
  margin-left: 110px;
}

.mr-110 {
  margin-right: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pb-115 {
  padding-bottom: 115px;
}

.mt-115 {
  margin-top: 115px;
}

.mb-115 {
  margin-bottom: 115px;
}

.ml-115 {
  margin-left: 115px;
}

.mr-115 {
  margin-right: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-120 {
  margin-bottom: 120px;
}

.ml-120 {
  margin-left: 120px;
}

.mr-120 {
  margin-right: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pb-125 {
  padding-bottom: 125px;
}

.mt-125 {
  margin-top: 125px;
}

.mb-125 {
  margin-bottom: 125px;
}

.ml-125 {
  margin-left: 125px;
}

.mr-125 {
  margin-right: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pb-130 {
  padding-bottom: 130px;
}

.mt-130 {
  margin-top: 130px;
}

.mb-130 {
  margin-bottom: 130px;
}

.ml-130 {
  margin-left: 130px;
}

.mr-130 {
  margin-right: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pb-135 {
  padding-bottom: 135px;
}

.mt-135 {
  margin-top: 135px;
}

.mb-135 {
  margin-bottom: 135px;
}

.ml-135 {
  margin-left: 135px;
}

.mr-135 {
  margin-right: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pb-140 {
  padding-bottom: 140px;
}

.mt-140 {
  margin-top: 140px;
}

.mb-140 {
  margin-bottom: 140px;
}

.ml-140 {
  margin-left: 140px;
}

.mr-140 {
  margin-right: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pb-145 {
  padding-bottom: 145px;
}

.mt-145 {
  margin-top: 145px;
}

.mb-145 {
  margin-bottom: 145px;
}

.ml-145 {
  margin-left: 145px;
}

.mr-145 {
  margin-right: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-150 {
  padding-bottom: 150px;
}

.mt-150 {
  margin-top: 150px;
}

.mb-150 {
  margin-bottom: 150px;
}

.ml-150 {
  margin-left: 150px;
}

.mr-150 {
  margin-right: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pb-155 {
  padding-bottom: 155px;
}

.mt-155 {
  margin-top: 155px;
}

.mb-155 {
  margin-bottom: 155px;
}

.ml-155 {
  margin-left: 155px;
}

.mr-155 {
  margin-right: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pb-160 {
  padding-bottom: 160px;
}

.mt-160 {
  margin-top: 160px;
}

.mb-160 {
  margin-bottom: 160px;
}

.ml-160 {
  margin-left: 160px;
}

.mr-160 {
  margin-right: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pb-165 {
  padding-bottom: 165px;
}

.mt-165 {
  margin-top: 165px;
}

.mb-165 {
  margin-bottom: 165px;
}

.ml-165 {
  margin-left: 165px;
}

.mr-165 {
  margin-right: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pb-170 {
  padding-bottom: 170px;
}

.mt-170 {
  margin-top: 170px;
}

.mb-170 {
  margin-bottom: 170px;
}

.ml-170 {
  margin-left: 170px;
}

.mr-170 {
  margin-right: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pb-175 {
  padding-bottom: 175px;
}

.mt-175 {
  margin-top: 175px;
}

.mb-175 {
  margin-bottom: 175px;
}

.ml-175 {
  margin-left: 175px;
}

.mr-175 {
  margin-right: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pb-180 {
  padding-bottom: 180px;
}

.mt-180 {
  margin-top: 180px;
}

.mb-180 {
  margin-bottom: 180px;
}

.ml-180 {
  margin-left: 180px;
}

.mr-180 {
  margin-right: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pb-185 {
  padding-bottom: 185px;
}

.mt-185 {
  margin-top: 185px;
}

.mb-185 {
  margin-bottom: 185px;
}

.ml-185 {
  margin-left: 185px;
}

.mr-185 {
  margin-right: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pb-190 {
  padding-bottom: 190px;
}

.mt-190 {
  margin-top: 190px;
}

.mb-190 {
  margin-bottom: 190px;
}

.ml-190 {
  margin-left: 190px;
}

.mr-190 {
  margin-right: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pb-195 {
  padding-bottom: 195px;
}

.mt-195 {
  margin-top: 195px;
}

.mb-195 {
  margin-bottom: 195px;
}

.ml-195 {
  margin-left: 195px;
}

.mr-195 {
  margin-right: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-200 {
  padding-bottom: 200px;
}

.mt-200 {
  margin-top: 200px;
}

.mb-200 {
  margin-bottom: 200px;
}

.ml-200 {
  margin-left: 200px;
}

.mr-200 {
  margin-right: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pb-205 {
  padding-bottom: 205px;
}

.mt-205 {
  margin-top: 205px;
}

.mb-205 {
  margin-bottom: 205px;
}

.ml-205 {
  margin-left: 205px;
}

.mr-205 {
  margin-right: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pb-210 {
  padding-bottom: 210px;
}

.mt-210 {
  margin-top: 210px;
}

.mb-210 {
  margin-bottom: 210px;
}

.ml-210 {
  margin-left: 210px;
}

.mr-210 {
  margin-right: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pb-215 {
  padding-bottom: 215px;
}

.mt-215 {
  margin-top: 215px;
}

.mb-215 {
  margin-bottom: 215px;
}

.ml-215 {
  margin-left: 215px;
}

.mr-215 {
  margin-right: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pb-220 {
  padding-bottom: 220px;
}

.mt-220 {
  margin-top: 220px;
}

.mb-220 {
  margin-bottom: 220px;
}

.ml-220 {
  margin-left: 220px;
}

.mr-220 {
  margin-right: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-225 {
  padding-bottom: 225px;
}

.mt-225 {
  margin-top: 225px;
}

.mb-225 {
  margin-bottom: 225px;
}

.ml-225 {
  margin-left: 225px;
}

.mr-225 {
  margin-right: 225px;
}

.pt-230 {
  padding-top: 230px;
}

.pb-230 {
  padding-bottom: 230px;
}

.mt-230 {
  margin-top: 230px;
}

.mb-230 {
  margin-bottom: 230px;
}

.ml-230 {
  margin-left: 230px;
}

.mr-230 {
  margin-right: 230px;
}

.pt-235 {
  padding-top: 235px;
}

.pb-235 {
  padding-bottom: 235px;
}

.mt-235 {
  margin-top: 235px;
}

.mb-235 {
  margin-bottom: 235px;
}

.ml-235 {
  margin-left: 235px;
}

.mr-235 {
  margin-right: 235px;
}

.pt-240 {
  padding-top: 240px;
}

.pb-240 {
  padding-bottom: 240px;
}

.mt-240 {
  margin-top: 240px;
}

.mb-240 {
  margin-bottom: 240px;
}

.ml-240 {
  margin-left: 240px;
}

.mr-240 {
  margin-right: 240px;
}

.pt-245 {
  padding-top: 245px;
}

.pb-245 {
  padding-bottom: 245px;
}

.mt-245 {
  margin-top: 245px;
}

.mb-245 {
  margin-bottom: 245px;
}

.ml-245 {
  margin-left: 245px;
}

.mr-245 {
  margin-right: 245px;
}

.pt-250 {
  padding-top: 250px;
}

.pb-250 {
  padding-bottom: 250px;
}

.mt-250 {
  margin-top: 250px;
}

.mb-250 {
  margin-bottom: 250px;
}

.ml-250 {
  margin-left: 250px;
}

.mr-250 {
  margin-right: 250px;
}

/*============** MD device  Padding Margin MD device **============*/
@media only screen and (max-width: 991px) {
  .md-pt-5 {
    padding-top: 5px;
  }
  .md-pb-5 {
    padding-bottom: 5px;
  }
  .md-mt-5 {
    margin-top: 5px;
  }
  .md-mb-5 {
    margin-bottom: 5px;
  }
  .md-ml-5 {
    margin-left: 5px;
  }
  .md-mr-5 {
    margin-right: 5px;
  }
  .md-pt-10 {
    padding-top: 10px;
  }
  .md-pb-10 {
    padding-bottom: 10px;
  }
  .md-mt-10 {
    margin-top: 10px;
  }
  .md-mb-10 {
    margin-bottom: 10px;
  }
  .md-ml-10 {
    margin-left: 10px;
  }
  .md-mr-10 {
    margin-right: 10px;
  }
  .md-pt-15 {
    padding-top: 15px;
  }
  .md-pb-15 {
    padding-bottom: 15px;
  }
  .md-mt-15 {
    margin-top: 15px;
  }
  .md-mb-15 {
    margin-bottom: 15px;
  }
  .md-ml-15 {
    margin-left: 15px;
  }
  .md-mr-15 {
    margin-right: 15px;
  }
  .md-pt-20 {
    padding-top: 20px;
  }
  .md-pb-20 {
    padding-bottom: 20px;
  }
  .md-mt-20 {
    margin-top: 20px;
  }
  .md-mb-20 {
    margin-bottom: 20px;
  }
  .md-ml-20 {
    margin-left: 20px;
  }
  .md-mr-20 {
    margin-right: 20px;
  }
  .md-pt-25 {
    padding-top: 25px;
  }
  .md-pb-25 {
    padding-bottom: 25px;
  }
  .md-mt-25 {
    margin-top: 25px;
  }
  .md-mb-25 {
    margin-bottom: 25px;
  }
  .md-ml-25 {
    margin-left: 25px;
  }
  .md-mr-25 {
    margin-right: 25px;
  }
  .md-pt-30 {
    padding-top: 30px;
  }
  .md-pb-30 {
    padding-bottom: 30px;
  }
  .md-mt-30 {
    margin-top: 30px;
  }
  .md-mb-30 {
    margin-bottom: 30px;
  }
  .md-ml-30 {
    margin-left: 30px;
  }
  .md-mr-30 {
    margin-right: 30px;
  }
  .md-pt-35 {
    padding-top: 35px;
  }
  .md-pb-35 {
    padding-bottom: 35px;
  }
  .md-mt-35 {
    margin-top: 35px;
  }
  .md-mb-35 {
    margin-bottom: 35px;
  }
  .md-ml-35 {
    margin-left: 35px;
  }
  .md-mr-35 {
    margin-right: 35px;
  }
  .md-pt-40 {
    padding-top: 40px;
  }
  .md-pb-40 {
    padding-bottom: 40px;
  }
  .md-mt-40 {
    margin-top: 40px;
  }
  .md-mb-40 {
    margin-bottom: 40px;
  }
  .md-ml-40 {
    margin-left: 40px;
  }
  .md-mr-40 {
    margin-right: 40px;
  }
  .md-pt-45 {
    padding-top: 45px;
  }
  .md-pb-45 {
    padding-bottom: 45px;
  }
  .md-mt-45 {
    margin-top: 45px;
  }
  .md-mb-45 {
    margin-bottom: 45px;
  }
  .md-ml-45 {
    margin-left: 45px;
  }
  .md-mr-45 {
    margin-right: 45px;
  }
  .md-pt-50 {
    padding-top: 50px;
  }
  .md-pb-50 {
    padding-bottom: 50px;
  }
  .md-mt-50 {
    margin-top: 50px;
  }
  .md-mb-50 {
    margin-bottom: 50px;
  }
  .md-ml-50 {
    margin-left: 50px;
  }
  .md-mr-50 {
    margin-right: 50px;
  }
  .md-pt-55 {
    padding-top: 55px;
  }
  .md-pb-55 {
    padding-bottom: 55px;
  }
  .md-mt-55 {
    margin-top: 55px;
  }
  .md-mb-55 {
    margin-bottom: 55px;
  }
  .md-ml-55 {
    margin-left: 55px;
  }
  .md-mr-55 {
    margin-right: 55px;
  }
  .md-pt-60 {
    padding-top: 60px;
  }
  .md-pb-60 {
    padding-bottom: 60px;
  }
  .md-mt-60 {
    margin-top: 60px;
  }
  .md-mb-60 {
    margin-bottom: 60px;
  }
  .md-ml-60 {
    margin-left: 60px;
  }
  .md-mr-60 {
    margin-right: 60px;
  }
  .md-pt-65 {
    padding-top: 65px;
  }
  .md-pb-65 {
    padding-bottom: 65px;
  }
  .md-mt-65 {
    margin-top: 65px;
  }
  .md-mb-65 {
    margin-bottom: 65px;
  }
  .md-ml-65 {
    margin-left: 65px;
  }
  .md-mr-65 {
    margin-right: 65px;
  }
  .md-pt-70 {
    padding-top: 70px;
  }
  .md-pb-70 {
    padding-bottom: 70px;
  }
  .md-mt-70 {
    margin-top: 70px;
  }
  .md-mb-70 {
    margin-bottom: 70px;
  }
  .md-ml-70 {
    margin-left: 70px;
  }
  .md-mr-70 {
    margin-right: 70px;
  }
  .md-pt-75 {
    padding-top: 75px;
  }
  .md-pb-75 {
    padding-bottom: 75px;
  }
  .md-mt-75 {
    margin-top: 75px;
  }
  .md-mb-75 {
    margin-bottom: 75px;
  }
  .md-ml-75 {
    margin-left: 75px;
  }
  .md-mr-75 {
    margin-right: 75px;
  }
  .md-pt-80 {
    padding-top: 80px;
  }
  .md-pb-80 {
    padding-bottom: 80px;
  }
  .md-mt-80 {
    margin-top: 80px;
  }
  .md-mb-80 {
    margin-bottom: 80px;
  }
  .md-ml-80 {
    margin-left: 80px;
  }
  .md-mr-80 {
    margin-right: 80px;
  }
  .md-pt-85 {
    padding-top: 85px;
  }
  .md-pb-85 {
    padding-bottom: 85px;
  }
  .md-mt-85 {
    margin-top: 85px;
  }
  .md-mb-85 {
    margin-bottom: 85px;
  }
  .md-ml-85 {
    margin-left: 85px;
  }
  .md-mr-85 {
    margin-right: 85px;
  }
  .md-pt-90 {
    padding-top: 90px;
  }
  .md-pb-90 {
    padding-bottom: 90px;
  }
  .md-mt-90 {
    margin-top: 90px;
  }
  .md-mb-90 {
    margin-bottom: 90px;
  }
  .md-ml-90 {
    margin-left: 90px;
  }
  .md-mr-90 {
    margin-right: 90px;
  }
  .md-pt-95 {
    padding-top: 95px;
  }
  .md-pb-95 {
    padding-bottom: 95px;
  }
  .md-mt-95 {
    margin-top: 95px;
  }
  .md-mb-95 {
    margin-bottom: 95px;
  }
  .md-ml-95 {
    margin-left: 95px;
  }
  .md-mr-95 {
    margin-right: 95px;
  }
  .md-pt-100 {
    padding-top: 100px;
  }
  .md-pb-100 {
    padding-bottom: 100px;
  }
  .md-mt-100 {
    margin-top: 100px;
  }
  .md-mb-100 {
    margin-bottom: 100px;
  }
  .md-ml-100 {
    margin-left: 100px;
  }
  .md-mr-100 {
    margin-right: 100px;
  }
  .md-pt-105 {
    padding-top: 105px;
  }
  .md-pb-105 {
    padding-bottom: 105px;
  }
  .md-mt-105 {
    margin-top: 105px;
  }
  .md-mb-105 {
    margin-bottom: 105px;
  }
  .md-ml-105 {
    margin-left: 105px;
  }
  .md-mr-105 {
    margin-right: 105px;
  }
  .md-pt-110 {
    padding-top: 110px;
  }
  .md-pb-110 {
    padding-bottom: 110px;
  }
  .md-mt-110 {
    margin-top: 110px;
  }
  .md-mb-110 {
    margin-bottom: 110px;
  }
  .md-ml-110 {
    margin-left: 110px;
  }
  .md-mr-110 {
    margin-right: 110px;
  }
  .md-pt-115 {
    padding-top: 115px;
  }
  .md-pb-115 {
    padding-bottom: 115px;
  }
  .md-mt-115 {
    margin-top: 115px;
  }
  .md-mb-115 {
    margin-bottom: 115px;
  }
  .md-ml-115 {
    margin-left: 115px;
  }
  .md-mr-115 {
    margin-right: 115px;
  }
  .md-pt-120 {
    padding-top: 120px;
  }
  .md-pb-120 {
    padding-bottom: 120px;
  }
  .md-mt-120 {
    margin-top: 120px;
  }
  .md-mb-120 {
    margin-bottom: 120px;
  }
  .md-ml-120 {
    margin-left: 120px;
  }
  .md-mr-120 {
    margin-right: 120px;
  }
  .md-pt-125 {
    padding-top: 125px;
  }
  .md-pb-125 {
    padding-bottom: 125px;
  }
  .md-mt-125 {
    margin-top: 125px;
  }
  .md-mb-125 {
    margin-bottom: 125px;
  }
  .md-ml-125 {
    margin-left: 125px;
  }
  .md-mr-125 {
    margin-right: 125px;
  }
  .md-pt-130 {
    padding-top: 130px;
  }
  .md-pb-130 {
    padding-bottom: 130px;
  }
  .md-mt-130 {
    margin-top: 130px;
  }
  .md-mb-130 {
    margin-bottom: 130px;
  }
  .md-ml-130 {
    margin-left: 130px;
  }
  .md-mr-130 {
    margin-right: 130px;
  }
  .md-pt-135 {
    padding-top: 135px;
  }
  .md-pb-135 {
    padding-bottom: 135px;
  }
  .md-mt-135 {
    margin-top: 135px;
  }
  .md-mb-135 {
    margin-bottom: 135px;
  }
  .md-ml-135 {
    margin-left: 135px;
  }
  .md-mr-135 {
    margin-right: 135px;
  }
  .md-pt-140 {
    padding-top: 140px;
  }
  .md-pb-140 {
    padding-bottom: 140px;
  }
  .md-mt-140 {
    margin-top: 140px;
  }
  .md-mb-140 {
    margin-bottom: 140px;
  }
  .md-ml-140 {
    margin-left: 140px;
  }
  .md-mr-140 {
    margin-right: 140px;
  }
  .md-pt-145 {
    padding-top: 145px;
  }
  .md-pb-145 {
    padding-bottom: 145px;
  }
  .md-mt-145 {
    margin-top: 145px;
  }
  .md-mb-145 {
    margin-bottom: 145px;
  }
  .md-ml-145 {
    margin-left: 145px;
  }
  .md-mr-145 {
    margin-right: 145px;
  }
  .md-pt-150 {
    padding-top: 150px;
  }
  .md-pb-150 {
    padding-bottom: 150px;
  }
  .md-mt-150 {
    margin-top: 150px;
  }
  .md-mb-150 {
    margin-bottom: 150px;
  }
  .md-ml-150 {
    margin-left: 150px;
  }
  .md-mr-150 {
    margin-right: 150px;
  }
  .md-pt-155 {
    padding-top: 155px;
  }
  .md-pb-155 {
    padding-bottom: 155px;
  }
  .md-mt-155 {
    margin-top: 155px;
  }
  .md-mb-155 {
    margin-bottom: 155px;
  }
  .md-ml-155 {
    margin-left: 155px;
  }
  .md-mr-155 {
    margin-right: 155px;
  }
  .md-pt-160 {
    padding-top: 160px;
  }
  .md-pb-160 {
    padding-bottom: 160px;
  }
  .md-mt-160 {
    margin-top: 160px;
  }
  .md-mb-160 {
    margin-bottom: 160px;
  }
  .md-ml-160 {
    margin-left: 160px;
  }
  .md-mr-160 {
    margin-right: 160px;
  }
  .md-pt-165 {
    padding-top: 165px;
  }
  .md-pb-165 {
    padding-bottom: 165px;
  }
  .md-mt-165 {
    margin-top: 165px;
  }
  .md-mb-165 {
    margin-bottom: 165px;
  }
  .md-ml-165 {
    margin-left: 165px;
  }
  .md-mr-165 {
    margin-right: 165px;
  }
  .md-pt-170 {
    padding-top: 170px;
  }
  .md-pb-170 {
    padding-bottom: 170px;
  }
  .md-mt-170 {
    margin-top: 170px;
  }
  .md-mb-170 {
    margin-bottom: 170px;
  }
  .md-ml-170 {
    margin-left: 170px;
  }
  .md-mr-170 {
    margin-right: 170px;
  }
  .md-pt-175 {
    padding-top: 175px;
  }
  .md-pb-175 {
    padding-bottom: 175px;
  }
  .md-mt-175 {
    margin-top: 175px;
  }
  .md-mb-175 {
    margin-bottom: 175px;
  }
  .md-ml-175 {
    margin-left: 175px;
  }
  .md-mr-175 {
    margin-right: 175px;
  }
  .md-pt-180 {
    padding-top: 180px;
  }
  .md-pb-180 {
    padding-bottom: 180px;
  }
  .md-mt-180 {
    margin-top: 180px;
  }
  .md-mb-180 {
    margin-bottom: 180px;
  }
  .md-ml-180 {
    margin-left: 180px;
  }
  .md-mr-180 {
    margin-right: 180px;
  }
  .md-pt-185 {
    padding-top: 185px;
  }
  .md-pb-185 {
    padding-bottom: 185px;
  }
  .md-mt-185 {
    margin-top: 185px;
  }
  .md-mb-185 {
    margin-bottom: 185px;
  }
  .md-ml-185 {
    margin-left: 185px;
  }
  .md-mr-185 {
    margin-right: 185px;
  }
  .md-pt-190 {
    padding-top: 190px;
  }
  .md-pb-190 {
    padding-bottom: 190px;
  }
  .md-mt-190 {
    margin-top: 190px;
  }
  .md-mb-190 {
    margin-bottom: 190px;
  }
  .md-ml-190 {
    margin-left: 190px;
  }
  .md-mr-190 {
    margin-right: 190px;
  }
  .md-pt-195 {
    padding-top: 195px;
  }
  .md-pb-195 {
    padding-bottom: 195px;
  }
  .md-mt-195 {
    margin-top: 195px;
  }
  .md-mb-195 {
    margin-bottom: 195px;
  }
  .md-ml-195 {
    margin-left: 195px;
  }
  .md-mr-195 {
    margin-right: 195px;
  }
  .md-pt-200 {
    padding-top: 200px;
  }
  .md-pb-200 {
    padding-bottom: 200px;
  }
  .md-mt-200 {
    margin-top: 200px;
  }
  .md-mb-200 {
    margin-bottom: 200px;
  }
  .md-ml-200 {
    margin-left: 200px;
  }
  .md-mr-200 {
    margin-right: 200px;
  }
  .md-pt-205 {
    padding-top: 205px;
  }
  .md-pb-205 {
    padding-bottom: 205px;
  }
  .md-mt-205 {
    margin-top: 205px;
  }
  .md-mb-205 {
    margin-bottom: 205px;
  }
  .md-ml-205 {
    margin-left: 205px;
  }
  .md-mr-205 {
    margin-right: 205px;
  }
  .md-pt-210 {
    padding-top: 210px;
  }
  .md-pb-210 {
    padding-bottom: 210px;
  }
  .md-mt-210 {
    margin-top: 210px;
  }
  .md-mb-210 {
    margin-bottom: 210px;
  }
  .md-ml-210 {
    margin-left: 210px;
  }
  .md-mr-210 {
    margin-right: 210px;
  }
  .md-pt-215 {
    padding-top: 215px;
  }
  .md-pb-215 {
    padding-bottom: 215px;
  }
  .md-mt-215 {
    margin-top: 215px;
  }
  .md-mb-215 {
    margin-bottom: 215px;
  }
  .md-ml-215 {
    margin-left: 215px;
  }
  .md-mr-215 {
    margin-right: 215px;
  }
  .md-pt-220 {
    padding-top: 220px;
  }
  .md-pb-220 {
    padding-bottom: 220px;
  }
  .md-mt-220 {
    margin-top: 220px;
  }
  .md-mb-220 {
    margin-bottom: 220px;
  }
  .md-ml-220 {
    margin-left: 220px;
  }
  .md-mr-220 {
    margin-right: 220px;
  }
  .md-pt-225 {
    padding-top: 225px;
  }
  .md-pb-225 {
    padding-bottom: 225px;
  }
  .md-mt-225 {
    margin-top: 225px;
  }
  .md-mb-225 {
    margin-bottom: 225px;
  }
  .md-ml-225 {
    margin-left: 225px;
  }
  .md-mr-225 {
    margin-right: 225px;
  }
  .md-pt-230 {
    padding-top: 230px;
  }
  .md-pb-230 {
    padding-bottom: 230px;
  }
  .md-mt-230 {
    margin-top: 230px;
  }
  .md-mb-230 {
    margin-bottom: 230px;
  }
  .md-ml-230 {
    margin-left: 230px;
  }
  .md-mr-230 {
    margin-right: 230px;
  }
  .md-pt-235 {
    padding-top: 235px;
  }
  .md-pb-235 {
    padding-bottom: 235px;
  }
  .md-mt-235 {
    margin-top: 235px;
  }
  .md-mb-235 {
    margin-bottom: 235px;
  }
  .md-ml-235 {
    margin-left: 235px;
  }
  .md-mr-235 {
    margin-right: 235px;
  }
  .md-pt-240 {
    padding-top: 240px;
  }
  .md-pb-240 {
    padding-bottom: 240px;
  }
  .md-mt-240 {
    margin-top: 240px;
  }
  .md-mb-240 {
    margin-bottom: 240px;
  }
  .md-ml-240 {
    margin-left: 240px;
  }
  .md-mr-240 {
    margin-right: 240px;
  }
  .md-pt-245 {
    padding-top: 245px;
  }
  .md-pb-245 {
    padding-bottom: 245px;
  }
  .md-mt-245 {
    margin-top: 245px;
  }
  .md-mb-245 {
    margin-bottom: 245px;
  }
  .md-ml-245 {
    margin-left: 245px;
  }
  .md-mr-245 {
    margin-right: 245px;
  }
  .md-pt-250 {
    padding-top: 250px;
  }
  .md-pb-250 {
    padding-bottom: 250px;
  }
  .md-mt-250 {
    margin-top: 250px;
  }
  .md-mb-250 {
    margin-bottom: 250px;
  }
  .md-ml-250 {
    margin-left: 250px;
  }
  .md-mr-250 {
    margin-right: 250px;
  }
}

/*============** Scroll To Top **============*/
#scrollUp {
  background: #F31717;
  height: 50px;
  width: 50px;
  right: 40px;
  bottom: 35px;
  text-align: center;
  font-size: 20px;
  line-height: 77px;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 50%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

#scrollUp:hover {
  background-color: #F64F4F;
}

#scrollUp i {
  color: #FFFFFF;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-animation-name: y-axis;
  animation-name: y-axis;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

#scrollUp::after {
  content: '';
  position: absolute;
  z-index: -3;
  top: 100%;
  left: 4%;
  height: 12px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 75%);
  width: 90%;
  opacity: 1;
}

/*============** Sticky Header **============*/
.sticky {
  position: fixed !important;
  left: 0;
  top: -0;
  margin: auto;
  width: 100%;
  -webkit-animation: smooth_sticky 1.3s;
          animation: smooth_sticky 1.3s;
  z-index: 11;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(11, 0, 59, 0.15);
          box-shadow: 0px 0px 10px 0px rgba(11, 0, 59, 0.15);
}

/*==== Animation Sticky ==== */
@-webkit-keyframes smooth_sticky {
  0% {
    top: -280px;
  }
  100% {
    top: 0px;
  }
}

@keyframes smooth_sticky {
  0% {
    top: -280px;
  }
  100% {
    top: 0px;
  }
}

/*==== Preloding ====*/
#loading {
  background-color: #051235;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 50px;
  width: 50px;
  margin-top: -25px;
  margin-left: -25px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: loading-center-absolute 1.5s infinite;
  animation: loading-center-absolute 1.5s infinite;
}

.object {
  width: 25px;
  height: 25px;
  background-color: #FFFFFF;
  float: left;
}

#object_one {
  -webkit-animation: object_one 1.5s infinite;
  animation: object_one 1.5s infinite;
}

#object_two {
  -webkit-animation: object_two 1.5s infinite;
  animation: object_two 1.5s infinite;
}

#object_three {
  -webkit-animation: object_three 1.5s infinite;
  animation: object_three 1.5s infinite;
}

#object_four {
  -webkit-animation: object_four 1.5s infinite;
  animation: object_four 1.5s infinite;
}

@-webkit-keyframes loading-center-absolute {
  100% {
    -webkit-transform: rotate(-45deg);
  }
}

@keyframes loading-center-absolute {
  100% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
}

@-webkit-keyframes object_one {
  25% {
    -webkit-transform: translate(0, -50px) rotate(-180deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}

@keyframes object_one {
  25% {
    transform: translate(0, -50px) rotate(-180deg);
    -webkit-transform: translate(0, -50px) rotate(-180deg);
  }
  100% {
    transform: translate(0, 0) rotate(-180deg);
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}

@-webkit-keyframes object_two {
  25% {
    -webkit-transform: translate(50px, 0) rotate(-180deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-180deg);
  }
}

/*============** Custom Animation **============*/
/*==== Animation y-axis ==== */
.animate-y-axis {
  -webkit-animation-name: y-axis;
  animation-name: y-axis;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes y-axis {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes y-axis {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.animate-y-axis-slider {
  -webkit-animation-name: y-axis-slider;
  animation-name: y-axis-slider;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes y-axis-slider {
  0% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}

@keyframes y-axis-slider {
  0% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}

/*==== Animation x-axis ==== */
.animate-x-axis {
  -webkit-animation-name: x-axis;
  animation-name: x-axis;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes x-axis {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes x-axis {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

/*==== Animation Rotate ==== */
.animate-rotate {
  animation-name: rotate;
  animation-duration: 24s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 24s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotate;
  -moz-animation-duration: 24s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotate;
  -ms-animation-duration: 24s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotate;
  -o-animation-duration: 24s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*==== Animation Play Video Button Pulse ==== */
.round-animated {
  position: relative;
  z-index: 1;
}

.round-animated-2 {
  position: relative;
  z-index: 1;
}

.round-animated::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  background: rgba(210, 81, 81, 0.5);
  border-radius: 50%;
  -webkit-animation: round-border 1500ms ease-out infinite;
  animation: round-border 1500ms ease-out infinite;
  z-index: -1;
}

.round-animated-2::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: rgba(210, 81, 81, 0.5);
  border-radius: 50%;
  -webkit-animation: round-border 1500ms ease-out infinite;
  animation: round-border 1500ms ease-out infinite;
  z-index: -1;
}

@-webkit-keyframes round-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes round-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/*==== Animate zoom-in-out  ====*/
.animate-zoom-in-out {
  animation-name: zoomInOut;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: zoomInOut;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-name: zoomInOut;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
  -ms-animation-name: zoomInOut;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;
  -o-animation-name: zoomInOut;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7);
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }
  50% {
    -webkit-transform: rotate(180deg) scale(1);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg) scale(0.7);
    transform: rotate(360deg) scale(0.7);
    opacity: 0;
  }
}

@keyframes zoomInOut {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7);
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }
  50% {
    -webkit-transform: rotate(180deg) scale(1);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg) scale(0.7);
    transform: rotate(360deg) scale(0.7);
    opacity: 0;
  }
}

/*=============== More Animation in here ============= */
.animate-square-zoom {
  position: relative;
  overflow: hidden;
}

.animate-square-zoom:before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 7px;
}

.animate-square-zoom:hover:before {
  -webkit-animation-duration: 0.95s;
  animation-duration: 0.95s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-name: circle;
  animation-name: circle;
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 5;
  }
}

.animate-zoominout {
  animation-name: zoomInOut;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: zoomInOut;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-name: zoomInOut;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
  -ms-animation-name: zoomInOut;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;
  -o-animation-name: zoomInOut;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7);
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }
  50% {
    -webkit-transform: rotate(180deg) scale(1);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg) scale(0.7);
    transform: rotate(360deg) scale(0.7);
    opacity: 0;
  }
}

@keyframes zoomInOut {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7);
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }
  50% {
    -webkit-transform: rotate(180deg) scale(1);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(360deg) scale(0.7);
    transform: rotate(360deg) scale(0.7);
    opacity: 0;
  }
}

.animate-zoom-fade {
  animation-name: zoom-fade;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: zoom-fade;
  -webkit-animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: zoom-fade;
  -moz-animation-duration: 5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: zoom-fade;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: zoom-fade;
  -o-animation-duration: 5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.animate-float-bob {
  animation-name: float-bob;
  animation-duration: 7s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob;
  -webkit-animation-duration: 7s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 7s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 7s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 7s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes float-bob {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}

@keyframes float-bob {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}

/*============**  Typhography Area  **============*/
/* Common Color */
/* Theme Color */
/* Responsive Variables */
body {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  font-family: "Nunito Sans", sans-serif;
  color: #152E3A;
}

p {
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: #152E3A;
  margin-bottom: 15px;
  font-family: "Nunito Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "PT Serif", serif;
  font-weight: normal;
  color: #000000;
  margin-top: 0px;
  font-style: normal;
  font-weight: 500;
  text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 40px;
  font-weight: 500;
}

h2 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

label {
  color: #7e7e7e;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

/* Common Color */
/* Theme Color */
/* Responsive Variables */
/*============**  Utils  **============*/
/*============**  Layouts  **============*/
/*============**  Header Area **============*/
@media (min-width: 1450px) {
  .header-area .container {
    max-width: 1400px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .header-area .container {
    max-width: 1300px;
  }
}

.header-area.transparent-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  right: 0;
  z-index: 5;
}

.header-area .header-top .container .header-top-bg {
  background-color: #0F1327;
  padding: 12px 30px;
}

@media (max-width: 767px) {
  .header-area .header-top .container .header-top-left ul {
    text-align: center;
  }
}

.header-area .header-top .container .header-top-left ul li {
  display: inline;
  margin-right: 15px;
}

.header-area .header-top .container .header-top-left ul li:last-child {
  margin-right: 0;
}

.header-area .header-top .container .header-top-left ul li:last-child a {
  text-decoration: underline;
}

.header-area .header-top .container .header-top-left ul li a {
  color: #FFFFFF;
}

.header-area .header-top .container .header-top-left ul li a img {
  margin-right: 10px;
}

.header-area .header-top .container .header-top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

@media (max-width: 767px) {
  .header-area .header-top .container .header-top-right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header-area .header-top .container .header-top-right .header-top-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-area .header-top .container .header-top-right .header-top-social ul li {
  margin-right: 14px;
  position: relative;
}

.header-area .header-top .container .header-top-right .header-top-social ul li a {
  font-size: 14px;
  color: #FFFFFF;
}

.header-area .header-top .container .header-top-right .header-top-social ul li:last-child::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 12px;
  background-color: #FFFFFF;
  top: 8px;
  left: 28px;
  z-index: 1;
}

.header-area .header-top .container .header-top-right .header-lang-wrap select {
  border: 0;
  margin-left: 10px;
  background: none;
  color: #FFFFFF;
  font-size: 14px;
}

.header-area .header-top .container .header-top-right .header-lang-wrap select option {
  background: #000000;
}

.header-area .header-top .container .header-top-right .header-lang-wrap select option:hover {
  background: #000000;
}

.header-area .header-menu .header-bg {
  background-color: #FFFFFF;
}

.header-area .header-menu .header-bg .header-logo a {
  background-color: #F31717;
}

.header-area .header-menu .header-bg .header-logo a img {
  background-color: #F31717;
  padding: 28px 33px 28px 15px;
  width: 200px;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .header-area .header-menu .header-bg .header-logo a img {
    padding: 30px 24px 30px 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .header-menu .header-bg .header-logo a img {
    padding: 20px 33px 20px 15px;
    max-width: 160px;
  }
}

@media (max-width: 767px) {
  .header-area .header-menu .header-bg .header-logo a img {
    padding: 20px 33px 20px 15px;
    max-width: 160px;
  }
}

.header-area .header-menu .header-bg .main-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.header-area .header-menu .header-bg .main-menu ul li {
  margin-right: 40px;
  position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .header-area .header-menu .header-bg .main-menu ul li {
    margin-right: 31px;
  }
}

.header-area .header-menu .header-bg .main-menu ul li:hover.menu-item-has-children:after {
  color: #F31717;
}

.header-area .header-menu .header-bg .main-menu ul li:hover > a {
  color: #F31717;
}

.header-area .header-menu .header-bg .main-menu ul li:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(100%);
          transform: scale(100%);
  top: 100%;
}

.header-area .header-menu .header-bg .main-menu ul li:last-child {
  margin-right: 0px;
}

.header-area .header-menu .header-bg .main-menu ul li ul.sub-menu {
  position: absolute;
  top: 50%;
  background: #000000;
  min-width: 220px;
  display: inline;
  left: -4px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transform: scale(50%);
          transform: scale(50%);
  z-index: 2;
}

.header-area .header-menu .header-bg .main-menu ul li ul.sub-menu li {
  margin-right: 0;
  border-bottom: 1px solid #686161;
}

.header-area .header-menu .header-bg .main-menu ul li ul.sub-menu li:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  left: 100%;
}

.header-area .header-menu .header-bg .main-menu ul li ul.sub-menu li ul.sub-menu {
  left: 80%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  top: 0;
}

.header-area .header-menu .header-bg .main-menu ul li ul.sub-menu li ul.sub-menu li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  left: 100%;
}

.header-area .header-menu .header-bg .main-menu ul li ul.sub-menu li ul.sub-menu li ul.sub-menui {
  left: 80%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.header-area .header-menu .header-bg .main-menu ul li ul.sub-menu li:last-child {
  border-bottom: 0;
}

.header-area .header-menu .header-bg .main-menu ul li ul.sub-menu li:hover > a {
  padding: 10px 25px;
  color: #F31717;
}

.header-area .header-menu .header-bg .main-menu ul li ul.sub-menu li a {
  margin: 0;
  padding: 10px 20px;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  color: #FFFFFF;
  font-size: 15px;
}

.header-area .header-menu .header-bg .main-menu ul li.menu-item-has-children {
  position: relative;
}

.header-area .header-menu .header-bg .main-menu ul li.menu-item-has-children:after {
  position: absolute;
  content: "\f078";
  font-weight: 700;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -14px;
  font-family: "Font Awesome 5 Free";
  font-size: 11px;
}

.header-area .header-menu .header-bg .main-menu ul li a {
  display: inline-block;
  text-transform: capitalize;
  font-weight: 700;
  color: #000000;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 34px 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .header-area .header-menu .header-bg .main-menu ul li a {
    font-size: 15px;
  }
}

.header-area .header-menu .header-contact-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-right: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .header-area .header-menu .header-contact-right {
    padding-right: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .header-area .header-menu .header-contact-right {
    padding-right: 0px;
  }
}

.header-area .header-menu .header-contact-right .phone-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -4px;
}

.header-area .header-menu .header-contact-right .phone-icon i::before {
  display: inline-block;
  color: #F31717;
  font-size: 18px;
  margin-right: 22px;
  margin-bottom: 2px;
  height: 46px;
  width: 46px;
  background: #FEE7E7;
  text-align: center;
  line-height: 47px;
  border-radius: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .header-area .header-menu .header-contact-right .phone-icon i::before {
    margin-right: 15px;
  }
}

.header-area .header-menu .header-contact-right .phone-number {
  margin-right: 25px;
  margin-top: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .header-area .header-menu .header-contact-right .phone-number {
    margin-right: 20px;
  }
}

.header-area .header-menu .header-contact-right .phone-number span {
  font-size: 12px;
  text-transform: capitalize;
  color: #707070;
  font-weight: 600;
  margin-bottom: -1px;
}

.header-area .header-menu .header-contact-right .phone-number a {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .header-area .header-menu .header-contact-right .phone-number a {
    font-size: 16px;
  }
}

.header-area .header-menu .header-contact-right a {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.header-area .header-menu .header-contact-right .menu-icon .menubar {
  padding: 14px 13px 16px;
  padding-right: 13px;
  background: transparent;
  max-width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 2px;
  padding-right: 0;
  margin-left: 4px;
  cursor: pointer;
}

.header-area .header-menu .header-contact-right .menu-icon .menubar span {
  height: 6px;
  width: 6px;
  display: block;
  background: #F31717;
  border-radius: 50%;
  -webkit-transition: none;
  transition: none;
  list-style: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 2px 3px;
}

.header-area .header-menu .header-contact-right .header-contact-btn a.contact-btn {
  padding: 10px 32px;
  background: #F31717;
  color: #FFFFFF;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  border-radius: 30px;
}

.header-area .header-menu .header-contact-right .header-contact-btn a.contact-btn:hover {
  background-color: #000000;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .header-menu .header-contact-right .header-contact-btn a.contact-btn {
    margin-top: -12px;
    margin-right: 60px;
  }
}

/*============**   Slider Area **============*/
.slider-area {
  height: 925px;
  position: relative;
  overflow: hidden;
}

.slider-area.slider-bg {
  background-image: url(/assets/img/slider/slider-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-area {
    height: 750px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area {
    height: 670px;
  }
}

@media (max-width: 767px) {
  .slider-area {
    height: 630px;
  }
}

.slider-area .slider-shape-01 {
  position: absolute;
  left: 54%;
  top: 11%;
  z-index: 2;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .slider-area .slider-shape-01 {
    left: 47%;
    top: 17%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-area .slider-shape-01 {
    left: 29%;
    top: 11%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area .slider-shape-01 {
    left: -6%;
    top: 46%;
  }
}

.slider-area .slider-shape-02 {
  position: absolute;
  right: -10%;
  top: 87%;
  z-index: 3;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .slider-area .slider-shape-02 {
    right: -3%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-area .slider-shape-02 {
    right: 44%;
    top: 33%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area .slider-shape-02 {
    right: 9%;
    top: 45%;
  }
}

@media (max-width: 767px) {
  .slider-area .slider-shape-02 {
    right: 51%;
    top: 19%;
  }
}

.slider-area::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #EEF1F5;
  opacity: 96%;
  z-index: 1;
}

.slider-area .slider-content {
  margin-top: 125px;
  position: relative;
  z-index: 3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-area .slider-content {
    margin-top: 100px;
  }
}

@media (max-width: 767px) {
  .slider-area .slider-content {
    margin-top: 100px;
  }
}

.slider-area .slider-content__subtitle {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  color: #F31717;
  margin-bottom: 5px;
  display: inline-block;
}

.slider-area .slider-content__title {
  font-size: 65px;
  color: #000000;
  margin-bottom: 22px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-area .slider-content__title {
    font-size: 51px;
  }
}

@media (max-width: 767px) {
  .slider-area .slider-content__title {
    font-size: 37px;
  }
}

.slider-area .slider-content__desc {
  width: 75%;
  margin-bottom: 30px;
}

.slider-area .slider-content__play-btn {
  width: 62px;
  height: 62px;
  background: #FEE7E7;
  display: inline-block;
  line-height: 62px;
  text-align: center;
  border-radius: 50%;
  color: #F31717;
  margin-left: 25px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.slider-area .slider-content__play-btn:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.slider-area .banner-img img {
  position: absolute;
  position: absolute;
  top: 58px;
  z-index: 3;
  right: -71px;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .slider-area .banner-img img {
    right: 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-area .banner-img img {
    right: 0px;
    top: 100px;
  }
}

/*============**  About Area  **============*/
.about-left__main-thumb {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-left__main-thumb img {
    width: 100%;
  }
}

.about-left__main-thumb .play-btn {
  position: absolute;
  height: 72px;
  width: 76px;
  line-height: 72px;
  text-align: center;
  color: #F31717;
  font-size: 14px;
  font-weight: 600;
  background-color: #FFFFFF;
  top: 48%;
  right: 48%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 2;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about-left__main-thumb .play-btn {
    right: 39%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-left__main-thumb .play-btn {
    right: 39%;
  }
}

@media (max-width: 767px) {
  .about-left__main-thumb .play-btn {
    right: 39%;
  }
}

.about-left__main-thumb .play-btn:hover {
  background-color: #F31717;
  color: #FFFFFF;
}

.about-left__content {
  background: #FFFFFF;
  height: 105px;
  padding: 18px 0px 15px 20px;
  margin-top: -55px;
  border-left: 5px solid #F31717;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
  margin-right: 25px;
}

@media (max-width: 767px) {
  .about-left__content {
    width: 100%;
    margin-right: 0;
    margin-top: 30px;
  }
}

.about-left__small-img {
  margin-top: -140px;
  width: 224px;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .about-left__small-img {
    margin-top: 30px;
    max-width: 100%;
  }
}

.about-left__experience-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .about-left__experience-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about-left__experience-wrap h3 {
  font-size: 60px;
  display: inline-block;
}

.about-left__experience-wrap p {
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-left: 20px;
  position: relative;
}

.about-left__experience-wrap p span {
  vertical-align: bottom;
  display: inline-block;
  color: #F31717;
  position: absolute;
  left: -17px;
  font-size: 20px;
  bottom: 0;
}

.about-right__deatils {
  margin-bottom: 40px;
  padding-right: 102px;
}

.about-right__desc.desc-heilight {
  color: #000000;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-right__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .about-right__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: inline-block;
  }
}

.about-right__ceo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
}

@media (max-width: 767px) {
  .about-right__ceo {
    margin-left: 0px;
    margin-top: 30px;
  }
}

.about-right__img {
  margin-right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about-right__ceo-text {
    margin-top: 5px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about-right__ceo-text h5 {
    font-size: 13px;
    margin-bottom: 4px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about-right .section-title-wrap__title {
    font-size: 35px;
  }
}

/*============**  Skills Area **============*/
.skill-area {
  background-color: #F7F7F7;
}

.skill-area .container img.skill-shape {
  position: absolute;
  top: 18%;
  left: -7%;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .skill-area .container img.skill-shape {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .skill-area .container img.skill-shape {
    display: none;
  }
}

@media (max-width: 767px) {
  .skill-area .container img.skill-shape {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .skill-text .section-title-wrap__title {
    font-size: 35px;
  }
}

.skill-text__cta i {
  height: 72px;
  width: 66px;
  background: #F31717;
  text-align: center;
  line-height: 72px;
  color: #FFFFFF;
  font-size: 20px;
  border-radius: 5px;
  display: inline-block;
}

.skill-text__cta a {
  font-size: 22px;
  font-weight: 700;
  display: inline-block;
  background: #FFFFFF;
  padding: 21px 30px;
  border-radius: 0px 5px 5px 0px;
  margin-left: -3px;
  color: #000000;
}

.skill-warp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .skill-warp {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .skill-warp {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

@media (max-width: 767px) {
  .skill-warp {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .skill-warp {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.skill-warp__single-skill {
  width: 215px;
  height: 250px;
  background: #F31717;
}

.skill-warp__single-skill .skill-box {
  text-align: center;
  margin-top: 50px;
  position: relative;
}

.skill-warp__single-skill .skill-box h2 {
  position: absolute;
  top: 38px;
  right: 78px;
  color: #fff;
  font-size: 35px;
  display: inline-block;
}

.skill-warp__single-skill .skill-box h2 span {
  font-size: 16px;
  margin-left: -7px;
}

.skill-warp__single-skill h4 {
  font-size: 18px;
  text-align: center;
  width: 100%;
  display: inline-block;
  color: #FFFFFF;
  font-weight: 600;
  margin-top: 10px;
  position: relative;
}

.skill-warp__single-skill.skill-bg-img {
  margin-top: 44px;
  margin-left: 35px;
  background-image: url(/assets/img/skill/single-skill-bg.jpg);
  position: relative;
}

@media (max-width: 767px) {
  .skill-warp__single-skill.skill-bg-img {
    margin-top: 30px;
    margin-left: 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .skill-warp__single-skill.skill-bg-img {
    margin-left: 35px;
  }
}

.skill-warp__single-skill.skill-bg-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #484D5B;
  opacity: 91%;
}

/*============**  Service Area  **============*/
.service-area.service-bg {
  background-image: url(/assets/img/service/service-bg.png);
  background-position: left top;
  background-repeat: no-repeat;
}

.service-single {
  padding: 55px 40px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
  background-color: #FFFFFF;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .service-single {
    padding: 55px 25px;
  }
}

.service-single__number {
  position: absolute;
  top: 28px;
  right: 30px;
  height: 36px;
  width: 36px;
  background-color: #F64F4F;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  color: #FFFFFF;
}

.service-single__icon-box {
  position: relative;
}

.service-single__icon-box::before {
  position: absolute;
  content: "";
  top: -16px;
  left: 48%;
  height: 48px;
  width: 48px;
  background-color: #FEE7E7;
  border-radius: 50%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.service-single__icon-box i {
  font-size: 50px;
  color: #F31717;
  position: relative;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.service-single__content h3 {
  font-size: 26px;
  margin-bottom: 24px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.service-single__content p {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.service-single__plus-icon i {
  color: #F31717;
  height: 40px;
  width: 40px;
  background: #FFFFFF;
  line-height: 40px;
  border-radius: 5px;
}

.service-single:hover {
  background-color: #F31717;
}

.service-single:hover .service-single__icon-box i {
  color: #FFFFFF;
}

.service-single:hover .service-single__icon-box::before {
  background-color: #F64F4F;
}

.service-single:hover .service-single__content h3 {
  color: #FFFFFF;
}

.service-single:hover .service-single__content p {
  color: #FFFFFF;
}

/*===== Service Details =====*/
.sidebar-widget.service-sid-bg {
  background-image: url(/assets/img/service/service.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.sidebar-widget.service-sid-bg::after {
  position: absolute;
  content: " ";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: .9;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: -1;
}

.sidebar-widget.service-sid-bg .title.team-details {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.sidebar-widget.service-sid-bg p {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.sidebar-widget.service-sid-bg .contact-info-team ul {
  margin-bottom: 0px;
}

.sidebar-widget.service-sid-bg .contact-info-team ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.sidebar-widget.service-sid-bg .contact-info-team ul li:last-child {
  margin-bottom: 0;
}

.sidebar-widget.service-sid-bg .contact-info-team ul li .footer-icon {
  margin-right: 20px;
}

.sidebar-widget.service-sid-bg .contact-info-team ul li .footer-icon i {
  color: #FFFFFF;
  font-size: 25px;
}

.sidebar-widget.service-sid-bg .contact-info-team ul li .footer-address-info h6 {
  font-size: 17px;
  color: #ddd;
  font-weight: 700;
  margin-bottom: 5px;
}

.sidebar-widget.service-sid-bg .contact-info-team ul li a {
  color: #FFFFFF;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .sidebar-widget.service-sid-bg .contact-info-team ul li a {
    font-size: 15px;
    font-weight: 600;
  }
}

.sidebar-widget.service-sid-bg .contact-info-team ul li p {
  color: #ddd;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 22px;
}

/* Progress bar */
.service-details-prog-wrap .blog-title {
  margin-bottom: 20px;
}

.single-progress-bar {
  position: relative;
  margin-bottom: 20px;
}

.single-progress-bar h4 {
  font-size: 18px;
}

.single-progress-bar .progress {
  height: 8px;
  background: #F2F6F7;
}

.single-progress-bar .progress h5 {
  font-size: 18px;
  position: absolute;
  top: 0px;
  right: 15px;
}

.single-progress-bar .progress .progress-bar {
  height: 8px;
}

/*Bank service*/
.service-bank-wrap {
  background: #F5F5F5;
  padding: 40px 30px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.service-bank-wrap__single-bank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.service-bank-wrap__single-bank i {
  color: #F31717;
  font-size: 35px;
  margin-right: 25px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.service-bank-wrap__text h4 {
  color: #000000;
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 767px) {
  .service-bank-wrap__text h4 {
    font-size: 17px;
    font-weight: 600;
  }
}

.service-bank-wrap__desc p {
  color: #000000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.service-bank-wrap:hover {
  background-color: #000000;
}

.service-bank-wrap:hover__single-bank {
  border-bottom: 1px solid #ddd;
}

.service-bank-wrap:hover i {
  color: #FFFFFF;
}

.service-bank-wrap:hover h4 {
  color: #FFFFFF;
}

.service-bank-wrap:hover p {
  color: #FFFFFF;
}

.service-bank-wrap__btn:hover {
  color: #FFFFFF;
}

/*============**  Choose Us Area **============*/
.choose-area {
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .choose-area .section-title-wrap__title {
    font-size: 35px;
  }
}

.choose-area::before {
  position: absolute;
  content: "";
  width: 64%;
  height: 100%;
  background-color: #0F1327;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .choose-area::before {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .choose-area::before {
    width: 100%;
  }
}

.choose-area__bgimg {
  position: relative;
}

.choose-area__bgimg .choose-play-btn {
  position: absolute;
  right: 20%;
  z-index: 4;
  top: 390px;
  height: 100px;
  width: 100px;
  background: #FFFFFF;
  text-align: center;
  line-height: 100px;
  border-radius: 50%;
  color: #F31717;
  font-size: 18px;
  font-weight: 700;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .choose-area__bgimg .choose-play-btn {
    top: 290px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .choose-area__bgimg .choose-play-btn {
    top: 290px;
  }
}

.choose-area__bgimg img {
  position: absolute;
  right: 0;
  width: 44%;
  margin-top: 70px;
  margin-bottom: -65px;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .choose-area__bgimg img {
    width: 45%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .choose-area__bgimg img {
    width: 49%;
  }
}

.choose-area__shape-red {
  position: absolute;
  left: -2%;
  bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .choose-area__shape-red {
    left: -3%;
    height: 28%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .choose-area__shape-red {
    left: -2%;
    bottom: 0;
    width: 30%;
  }
}

@media (max-width: 767px) {
  .choose-area__shape-red {
    display: none;
  }
}

.choose-area__shape-white {
  position: absolute;
  left: -9%;
  bottom: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .choose-area__shape-white {
    width: 30%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .choose-area__shape-white {
    position: absolute;
    left: 1%;
    bottom: 11px;
    width: 30%;
  }
}

@media (max-width: 767px) {
  .choose-area__shape-white {
    display: none;
  }
}

.choose-wrap .choose-border {
  border-bottom: 1px solid #4E5267;
}

.choose-wrap__icon-box i {
  width: 67px;
  height: 65px;
  line-height: 67px;
  background-color: #2E3243;
  border-radius: 5px;
  color: #FFFFFF;
  text-align: center;
  font-size: 30px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

.choose-wrap__icon-box i:hover {
  background-color: #F31717;
}

.choose-wrap__icon-box.choose-icon-color i {
  background-color: #F31717;
}

/*============**  Brand  Area **============*/
.brand-area {
  margin-top: -113px;
}

.brand-active {
  padding: 0px 70px;
  background: #FFFFFF;
}

.brand-active .single-brand {
  position: relative;
  padding: 60px 0;
}

.brand-active .single-brand img {
  width: inherit;
  display: block;
  -webkit-filter: grayscale(100%);
  -webkit-transition: all 0.3 ease-in-out;
  transition: all 0.3 ease-in-out;
}

.brand-active .single-brand img:hover {
  -webkit-filter: grayscale(0);
}

/*============**  Case Study **============*/
.case-study {
  position: relative;
  overflow: hidden;
}

.case-study:hover .case-study__text {
  left: 50%;
  opacity: 1;
  visibility: visible;
}

.case-study:hover .case-study__thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: grayscale(0);
}

@media (max-width: 767px) {
  .case-study:hover .case-study__thumb img {
    width: 100%;
  }
}

.case-study:hover .case-study__thumb::after {
  opacity: .6;
  visibility: visible;
  left: 0;
}

.case-study__thumb {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.case-study__thumb img {
  width: 100%;
  -webkit-filter: grayscale(100%);
}

.case-study__text {
  text-align: center;
  position: absolute;
  left: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  bottom: 10%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  background: #FFFFFF;
  padding: 30px 0;
  width: 330px;
}

@media (max-width: 767px) {
  .case-study__text {
    width: 95%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .case-study__text {
    width: 300px;
  }
}

.case-study__text span {
  display: inline-block;
  color: #F31717;
  font-size: 16px;
  margin-bottom: 10px;
}

.case-study__text a i {
  height: 35px;
  width: 35px;
  background-color: #F31717;
  text-align: center;
  line-height: 35px;
  font-size: 14px;
  color: #FFFFFF;
  display: block;
  margin: 0 auto;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.case-study__text a i:hover {
  background-color: #000000;
}

.case-study__text-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #000000;
}

@media (max-width: 767px) {
  .case-study__text-title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .case-study__text-title {
    font-size: 24px;
  }
}

.case-study__text-title:hover a {
  color: #F31717;
}

/*==== Case study details ====*/
.case-study-single__img img {
  width: 100%;
}

.case-study-single__title {
  font-size: 28px;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #E7E7E7;
  margin-bottom: 30px;
}

.case-study-single__content {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(11, 0, 59, 0.15);
          box-shadow: 0px 0px 10px 0px rgba(11, 0, 59, 0.15);
  padding: 35px 30px 35px 40px;
}

@media (max-width: 767px) {
  .case-study-single__content {
    padding: 35px 15px 35px 15px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(11, 0, 59, 0.15);
            box-shadow: 0px 0px 10px 0px rgba(11, 0, 59, 0.15);
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .case-study-single__content {
    padding: 35px 30px 35px 40px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.case-study-single__content .case-text h4 {
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.case-study-single__content .case-review__comments {
  text-align: center;
  background: #F4F4F9;
  padding: 25px 15px;
}

.case-study-single__content .case-review__comments .client-img {
  margin-bottom: 20px;
}

.case-study-single__content .case-review__comments .text p {
  font-size: 17px;
  text-transform: capitalize;
  font-style: italic;
}

.case-study-single__content .case-review__comments .client-review ul li {
  display: inline;
}

.case-study-single__content .case-review__comments .client-review ul li a {
  font-size: 12px;
}

/*============**  Contact Area  **============*/
.contact-area {
  background-color: #F7F7F7;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-area .section-title-wrap__title {
    font-size: 35px;
  }
}

.contact-area .google-map iframe {
  position: absolute;
  height: 87%;
  left: 0;
  width: 43%;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .contact-area .google-map iframe {
    width: 41%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .contact-area .google-map iframe {
    width: 49%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-area .google-map iframe {
    display: none;
  }
}

@media (max-width: 767px) {
  .contact-area .google-map iframe {
    display: none;
  }
}

.contact-box {
  position: relative;
}

.contact-box i {
  position: absolute;
  right: 20px;
  line-height: 63px;
  color: #F31717;
}

.contact-box__contact-home {
  height: 60px;
  padding: 15px;
  padding-right: 45px;
  width: 100%;
  -webkit-box-shadow: 0px 0px 25px #EBEBF4;
          box-shadow: 0px 0px 25px #EBEBF4;
  border: 0;
  border: 1px solid transparent;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.contact-box__contact-home:focus {
  border: 1px solid #F31717;
}

.contact-box__contact-home.select {
  background-color: #FFFFFF;
  color: #5C727D;
  margin-bottom: 50px;
  font-size: 16px;
}

.contact-box__contact-home.select ul {
  width: 50%;
}

.contact-box__contact-home.text-area {
  height: 200px;
  resize: none;
  border: 1px solid transparent;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.contact-box__contact-home.text-area:focus {
  border: 1px solid #F31717;
}

button.contact-btn {
  border: 0;
  cursor: pointer;
}

/*============** Single  Contact  **============*/
.contact-info__addres-wrap .single-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-info__addres-wrap .single-info .cont-icon {
  margin-right: 25px;
}

.contact-info__addres-wrap .single-info .cont-icon i {
  font-size: 50px;
  color: red;
}

.contact-info__addres-wrap .single-info .cont-text h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.contact-info__addres-wrap .single-info .cont-text h6 {
  font-size: 15px;
  font-weight: 600;
  color: #7E7E7E;
}

.contact-google-map-area .contact-google-map iframe {
  width: 100%;
  height: 500px;
}

/*============**  Questions Area **============*/
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .questions-area .section-title-wrap__title {
    font-size: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .questions-img-area {
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .questions-img-area {
    margin-bottom: 30px;
  }
}

.questions-img-area__images {
  position: relative;
}

.questions-img-area__images .small-img {
  position: absolute;
  bottom: -16%;
  right: 5%;
}

@media (max-width: 767px) {
  .questions-img-area__images .small-img {
    position: static;
    margin-top: -127px;
    margin-left: 3%;
  }
}

.questions-img-area__images .questions-Shapes {
  position: absolute;
  left: -4%;
  top: 12%;
  z-index: -2;
}

@media (max-width: 767px) {
  .questions-img-area__images .questions-Shapes {
    display: none;
  }
}

.ask-question-wrap {
  margin-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ask-question-wrap {
    margin-left: 0px;
  }
}

@media (max-width: 767px) {
  .ask-question-wrap {
    margin-left: 0px;
  }
}

.collapse-wrappper .card {
  margin-bottom: 25px;
  border: 0;
  border-radius: 0;
  border-bottom: 0;
  background: #FFFFFF;
}

.collapse-wrappper .card .card-header {
  padding: 0;
  border: 0;
}

.collapse-wrappper .card .card-header h2 a {
  font-size: 16px;
  color: #000000;
  font-weight: 600;
  display: block;
  padding: 15px 25px;
  text-decoration: none;
  font-family: "Nunito Sans", sans-serif;
  position: relative;
}

.collapse-wrappper .card .card-header h2 a.btn-link {
  background: #F31717;
  color: #FFFFFF;
}

.collapse-wrappper .card .card-header h2 a.btn-link.collapsed {
  background: #F7F7F7;
  color: #000000;
}

@media (max-width: 767px) {
  .collapse-wrappper .card .card-header h2 a {
    padding-right: 48px;
  }
}

.collapse-wrappper .card .card-header h2 a::after {
  position: absolute;
  content: "\f068";
  font-family: 'Font Awesome\ 5 Free';
  font-size: 15px;
  font-weight: 700;
  height: 36px;
  width: 36px;
  background: #FFFFFF;
  text-align: center;
  line-height: 36px;
  color: #F31717;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2%;
}

.collapse-wrappper .card .card-header h2 a.collapsed:after {
  content: "\f067";
}

.collapse-wrappper .card .card-body {
  padding: 0px 22px 10px 20px;
  font-size: 15px;
  margin-top: 15px;
}

/*============**  Team Area **============*/
.team-area {
  background-color: #F7F7F7;
}

.team-area .container {
  max-width: 1367px;
}

.team-area .team-shape-left {
  position: absolute;
  left: -3%;
  bottom: 22%;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .team-area .team-shape-left {
    left: 13%;
    top: -20%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .team-area .team-shape-left {
    left: 6%;
    top: -20%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-area .team-shape-left {
    left: 13%;
    top: -16%;
  }
}

.team-area .team-shape-right {
  position: absolute;
  right: -3%;
  top: 6%;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .team-area .team-shape-right {
    right: 13%;
    top: -19%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .team-area .team-shape-right {
    right: 6%;
    top: -19%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-area .team-shape-right {
    right: 13%;
    top: -16%;
  }
}

.team-area .team-shape-red-lb {
  position: absolute;
  left: 0%;
  bottom: 0%;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .team-area .team-shape-red-lb {
    top: -12%;
    height: 30%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .team-area .team-shape-red-lb {
    top: -12%;
    height: 30%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-area .team-shape-red-lb {
    top: -29%;
  }
}

.team-area .team-shape-red-rt {
  position: absolute;
  right: 0%;
  top: 3%;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .team-area .team-shape-red-rt {
    height: 15%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .team-area .team-shape-red-rt {
    height: 15%;
  }
}

.team-area .team-shape-rt-soft {
  position: absolute;
  right: 0%;
  top: 4%;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .team-area .team-shape-rt-soft {
    width: 31%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .team-area .team-shape-rt-soft {
    width: 31%;
  }
}

.team {
  overflow: hidden;
}

.team__thumb {
  position: relative;
  overflow: hidden;
}

.team__thumb img {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  width: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media (max-width: 767px) {
  .team__thumb img {
    width: 100%;
  }
}

.team__thumb .social {
  position: absolute;
  top: 15px;
  right: -20px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.team__thumb .social ul li {
  margin-bottom: 8px;
}

.team__thumb .social ul li a {
  display: block;
  height: 28px;
  width: 30px;
  text-align: center;
  line-height: 28px;
  color: #000000;
  background-color: #FFFFFF;
  display: inline-block;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.team__thumb .social ul li a:hover {
  background-color: #F31717;
  color: #FFFFFF;
}

.team__thumb::after {
  position: absolute;
  content: "";
  top: -20px;
  left: -20px;
  height: 100px;
  width: 100px;
  border-top: 50px solid #F31717;
  border-bottom: 50px solid transparent;
  border-left: 50px solid #F31717;
  border-right: 50px solid transparent;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 1;
}

.team__thumb::before {
  position: absolute;
  content: "";
  bottom: -20px;
  right: -20px;
  height: 100px;
  width: 100px;
  border-top: 50px solid transparent;
  border-bottom: 50px solid #F31717;
  border-left: 50px solid transparent;
  border-right: 50px solid #F31717;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  z-index: 1;
}

.team__content span {
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.team__content a:hover {
  color: #F31717;
}

.team:hover .team__thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.team:hover .team__thumb .social {
  opacity: 1;
  visibility: visible;
  right: 20px;
}

.team:hover .team__thumb::after {
  visibility: visible;
  opacity: 1;
  top: 0px;
  left: 0px;
}

.team:hover .team__thumb::before {
  visibility: visible;
  opacity: 1;
  bottom: 0px;
  right: 0px;
}

/* Team brand area */
.brand-area.team-brand-area {
  margin-top: 0;
}

@media (max-width: 767px) {
  .brand-area.team-brand-area .single-brand {
    padding: 30px 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .brand-area.team-brand-area .single-brand {
    padding: 45px 0;
  }
}

/*===== Team Details ====*/
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .team-details {
    padding-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .team-details {
    padding-top: 0;
  }
}

.team-details__title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-details__subtitle {
  color: #F31717;
}

.team-deails-thumb img {
  width: 100%;
  padding-right: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .team-deails-thumb img {
    padding-right: 0;
  }
}

.team-deails-text {
  padding-top: 10px;
}

.team-deails-text h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

/*===== Team Skill bar*/
.team-single-skill-wrap .skillbar-title {
  font-size: 15px;
  color: #000000;
  font-weight: 700;
}

.team-single-skill-wrap .skillbar {
  background: #FFFFFF;
  border: 1px solid #F31717;
  height: 18px;
  border-radius: 30px;
  overflow: visible;
  padding: 3px;
  margin: 10px 0 20px;
  line-height: 7px;
  position: relative;
  width: 100;
}

.team-single-skill-wrap .skillbar .skillbar-bar {
  background: #F31717;
  height: 10px;
  margin-bottom: 0;
  overflow: visible !important;
  line-height: 7px;
  border-radius: 30px;
}

.team-single-skill-wrap .skillbar .skill-bar-percent {
  height: 30px;
  line-height: 30px;
  position: absolute;
  top: -38px;
  font-size: 16px;
  right: 70px;
  color: #000000;
  font-weight: 700;
}

.skill-content-wrap .social {
  margin-bottom: 50px;
}

.skill-content-wrap .social ul li {
  display: inline-block;
  margin-right: 10px;
}

.skill-content-wrap .social ul li a {
  height: 45px;
  width: 45px;
  background: #FEE7E7;
  display: block;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  color: #000000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.skill-content-wrap .social ul li a:hover {
  background-color: #F31717;
  color: #FFFFFF;
}

.skill-content-wrap .contact-info-team ul {
  margin-bottom: 25px;
}

.skill-content-wrap .contact-info-team ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.skill-content-wrap .contact-info-team ul li .footer-icon {
  margin-right: 20px;
}

.skill-content-wrap .contact-info-team ul li .footer-icon i {
  color: #F31717;
}

.skill-content-wrap .contact-info-team ul li a {
  color: #000000;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 22px;
}

.skill-content-wrap .contact-info-team ul li p {
  color: #000000;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 22px;
}

/* Details teamk brand */
.brand-area.details-team-area {
  margin: 0;
}

.brand-area.details-team-area .single-brand {
  padding: 0px 0 40px 0;
}

@media (max-width: 767px) {
  .brand-area.details-team-area .single-brand {
    padding: 0px 0 40px 0;
  }
}

/*============**  Testimonials Area **============*/
.testimonials-area {
  background-size: inherit;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.testimonials-area.testimonials-bg {
  background-image: url(/assets/img/testimonials/testimonial-bg.jpg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center center;
}

.testimonials__content img {
  margin-bottom: 10px;
  width: inherit !important;
  display: inline-block !important;
}

.testimonials__content p {
  padding: 0 51px;
  font-size: 24px;
  color: #5C727D;
  line-height: 1.4;
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  .testimonials__content p {
    font-size: 18px;
  }
}

.testimonials__content p i {
  color: #F31717;
}

.testimonials__content .author h4 {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
}

.testimonials__content .author span {
  font-size: 18px;
  color: #F31717;
  text-transform: capitalize;
}

.testimonials-active .owl-dots owl-dit span {
  width: 10px;
  height: 10px;
  background: #F31717;
  display: inline-block;
}

.testimonials-active .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #F31717;
  display: inline-block;
  margin: 0px 7px;
  border-radius: 50%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.testimonials-active .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonials-active .owl-dots .owl-dot.active {
  width: 15px;
  height: 15px;
}

.testimonials-active .owl-nav div {
  position: absolute;
  top: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 30px;
}

@media (max-width: 767px) {
  .testimonials-active .owl-nav div {
    display: none;
  }
}

.testimonials-active .owl-next {
  left: auto;
  right: -116px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .testimonials-active .owl-next {
    right: 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .testimonials-active .owl-next {
    right: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonials-active .owl-next {
    right: 0px;
  }
}

.testimonials-active .owl-prev {
  left: -112px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media only screen and (min-width: 1200px) and (max-width: 1450px) {
  .testimonials-active .owl-prev {
    left: 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .testimonials-active .owl-prev {
    left: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonials-active .owl-prev {
    left: 0px;
  }
}

.testimonials-active .owl-nav .owl-prev:hover i,
.testimonials-active .owl-nav .owl-next:hover i {
  color: #F31717;
}

/*============**  Newsletter  Area **============*/
.newsletter-area {
  background-color: #F7F7F7;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .newsletter-img img {
    margin-bottom: -27px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newsletter-img img {
    margin-bottom: -12px;
  }
}

.newsletter-img::after {
  position: absolute;
  content: "";
  background-image: url(/assets/img/newsletter/newsletter-bg.png);
  width: 144%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  left: -44%;
  z-index: -1;
  bottom: -14%;
}

.newsletter-text {
  background-color: #FFFFFF;
  padding: 70px 70px 70px 92px;
  border-radius: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newsletter-text {
    padding: 50px 35px 50px 60px;
  }
}

@media (max-width: 767px) {
  .newsletter-text {
    padding: 50px 0px 50px 30px;
    margin-bottom: 70px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .newsletter-text {
    padding: 50px 23px 50px 80px;
  }
}

.newsletter-text h2 {
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 25px;
  position: relative;
}

.newsletter-text h2::after {
  position: absolute;
  content: "";
  top: 8px;
  left: -25px;
  background-color: #F31717;
  height: 97%;
  width: 3px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newsletter-text h2 {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .newsletter-text h2 {
    font-size: 25px;
    padding-right: 15px;
  }
}

.newsletter-text__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.newsletter-text__phone i {
  display: inline-block;
  height: 60px;
  width: 57px;
  line-height: 65px;
  text-align: center;
  background: #F31717;
  color: #FFFFFF;
  font-size: 26px;
  font-weight: 700;
  border-radius: 5px;
  margin-right: 5px;
}

.newsletter-text__phone a {
  font-size: 22px;
  font-weight: 700;
  background: #FEE7E7;
  padding: 16px 40px;
  display: inline-block;
  border-radius: 5px;
  color: #000000;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newsletter-text__phone a {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .newsletter-text__phone a {
    font-size: 15px;
    padding: 16px 17px;
  }
}

/*============**  Blog Area **============*/
.blog-box {
  padding: 15px;
  border: 1px solid #EBEBF4;
  border-radius: 5px;
}

.blog-box__img {
  overflow: hidden;
}

.blog-box__img img {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
  width: 100%;
}

@media (max-width: 767px) {
  .blog-box__img img {
    width: 100%;
  }
}

.blog-box__content {
  padding: 0px 36px 15px 10px;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-box__content {
    padding: 0px 0px 15px 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .blog-box__content {
    padding: 0px 0px 0px 0px;
  }
}

.blog-box__content .blog-category {
  overflow: hidden;
  opacity: 0;
  position: absolute;
  top: -74px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.blog-box__content .blog-category ul li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
}

.blog-box__content .blog-category ul li:last-child {
  margin-right: 0;
}

.blog-box__content .blog-category ul li a {
  padding: 6px 25px;
  background-color: #F31717;
  color: #FFFFFF;
  text-transform: capitalize;
  border-radius: 30px;
  display: inline-block;
}

.blog-box__content .blog-category ul li a:hover {
  background-color: #000000;
}

.blog-box__content .blog-meta {
  margin-bottom: 5px;
}

.blog-box__content .blog-meta span a {
  margin-right: 0px;
  position: relative;
}

.blog-box__content .blog-meta span a::before {
  position: absolute;
  content: "";
  right: -13px;
  top: 9px;
  width: 2px;
  height: 10px;
  background-color: #F31717;
}

.blog-box__content .blog-meta span a {
  color: #7E7E7E;
  margin-right: 20px;
  display: inline-block;
}

.blog-box__content .blog-meta span a:hover {
  color: #F31717;
}

.blog-box__content .blog-meta span a i {
  margin-right: 10px;
}

.blog-box__content .blog-meta span:last-child a::before {
  display: none;
  height: 0;
  width: 0;
}

.blog-box__content .blog-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-box__content .blog-title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-box__content .blog-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .blog-box__content .blog-title {
    font-size: 20px;
  }
}

.blog-box__content .read-more a {
  font-size: 16px;
  font-weight: 600;
  color: #F31717;
}

.blog-box__content .read-more a:hover {
  color: #000000;
}

.blog-box__content .read-more a i {
  font-size: 14px;
  position: relative;
  top: 1px;
  left: 3px;
}

.blog-box:hover .blog-box__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blog-box:hover .blog-category {
  overflow: visible;
  opacity: 1;
}

/*--- Blog Page ---*/
.breadcrumb-area {
  height: 580px;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-area {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-area {
    height: 300px;
  }
}

.breadcrumb-area.breadcrumb-bg {
  background-image: url(/assets/img/blog/breadcrumb-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.breadcrumb-area::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #EEF1F5;
  opacity: 96%;
  z-index: -1;
}

.breadcrumb-wrap {
  padding-top: 170px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-wrap {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrap {
    padding-top: 80px;
  }
}

.breadcrumb-wrap__title {
  font-size: 55px;
}

@media (max-width: 767px) {
  .breadcrumb-wrap__title {
    font-size: 28px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-wrap__title {
    font-size: 35px;
  }
}

.breadcrumb-wrap__items {
  display: inline-block;
  margin-right: 5px;
}

.breadcrumb-wrap__items:last-child {
  margin-right: 0;
}

.breadcrumb-wrap__items.active {
  color: #F31717;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 767px) {
  .breadcrumb-wrap__items.active {
    font-size: 13px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-wrap__items.active {
    font-size: 16px;
  }
}

.breadcrumb-wrap__items a {
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #000000;
}

.breadcrumb-wrap__items a i {
  margin-right: 5px;
  display: inline-block;
  color: #F31717;
}

.blog-page-wraper {
  padding-right: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-page-wraper {
    padding-right: 0px;
  }
}

.blog {
  padding: 0;
  border: 0;
  position: relative;
}

.blog__img {
  position: relative;
}

.blog__img .blog-play-btn {
  position: absolute;
  left: 50%;
  z-index: 6;
  top: 50%;
  height: 80px;
  width: 80px;
  background: #FFFFFF;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.blog__img.date {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1;
}

.blog__img.date ul li {
  display: block;
  padding: 11px 21px;
  background: #F31717;
  color: #FFFFFF;
  margin-bottom: 5px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.blog__img.date ul li span {
  display: block;
  margin-bottom: 0;
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
}

.blog__content {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(11, 0, 59, 0.15);
          box-shadow: 0px 0px 10px 0px rgba(11, 0, 59, 0.15);
  padding: 35px 30px 35px 40px;
}

@media (max-width: 767px) {
  .blog__content {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 35px 0px 35px 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog__content {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(11, 0, 59, 0.15);
            box-shadow: 0px 0px 10px 0px rgba(11, 0, 59, 0.15);
    padding: 35px 20px 35px 20px;
  }
}

.blog__content p {
  font-size: 14px;
  margin-bottom: 20px;
}

.blog__content .blog-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog__content .blog-title {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .blog__content .blog-title {
    font-size: 21px;
  }
}

.blog__content .blog-meta {
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.blog__content .blog-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog__content .blog-bottom .shair-love ul li {
  display: inline-block;
  margin-right: 10px;
}

.blog__content .blog-bottom .shair-love ul li:last-child {
  margin-right: 0;
}

.blog__content .blog-bottom .shair-love ul li a {
  height: 30px;
  width: 30px;
  background: #EDEDED;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  font-weight: 700;
  color: #7A8A9E;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.blog__content .blog-bottom .shair-love ul li a:hover {
  background-color: #F31717;
  color: #FFFFFF;
}

.blog-slider-item {
  overflow: hidden;
}

.blog-slider .owl-nav {
  position: absolute;
  bottom: 50px;
  color: #FFFFFF;
  font-size: 35px;
  left: 35px;
}

@media (max-width: 767px) {
  .blog-slider .owl-nav {
    bottom: 20px;
  }
}

.blog-slider .owl-nav.div {
  display: inline-block;
  position: absolute;
}

.blog-slider .owl-nav div {
  display: inline-block;
}

.blog-slider .owl-next {
  margin-left: 50px;
}

@media (max-width: 767px) {
  .blog-slider .owl-next {
    margin-left: 20px;
  }
}

.blog.quote-img-bg {
  background-image: url(/assets/img/blog/blog-page-small-05.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 240px;
  position: relative;
}

.blog.quote-img-bg::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #E53E29;
  opacity: 95%;
}

.blog__quote-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .blog__quote-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 10px;
  }
}

.blog__quote-wrap .quote {
  margin-right: 50px;
  position: relative;
  z-index: 4;
}

.blog__quote-wrap .quote i {
  font-size: 65px;
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .blog__quote-wrap .quote i {
    font-size: 40px;
  }
}

.blog__quote-wrap .text {
  position: relative;
  z-index: 4;
}

.blog__quote-wrap .text .blog-title {
  font-size: 30px;
  font-weight: 700;
}

.blog__quote-wrap .text .blog-title a {
  color: #FFFFFF;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.blog__quote-wrap .text .blog-title a:hover {
  color: #000000;
}

@media (max-width: 767px) {
  .blog__quote-wrap .text .blog-title {
    font-size: 20px;
  }
}

.blog__quote-wrap .text .blog-meta span a {
  color: #fff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.blog__quote-wrap .text .blog-meta span a:hover {
  color: #000000;
}

.blog-paginations {
  text-align: center;
}

.blog-paginations ul li {
  display: inline-block;
  margin: 10px 10px 10px 0px;
}

.blog-paginations ul li a {
  height: 50px;
  width: 50px;
  display: inline-block;
  border: 1px solid #EDEDED;
  text-align: center;
  line-height: 50px;
  color: #000000;
}

.blog-paginations ul li a:hover {
  background-color: #F31717;
  color: #FFFFFF;
}

.blog-paginations ul li.active a {
  background-color: #F31717;
  color: #FFFFFF;
}

/*==== Blog Rigt Side Bar ====*/
.blog-page-wraper.blog-left-sidebar {
  padding-left: 40px;
  padding-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-page-wraper {
    padding-left: 0px;
  }
}

/*==== Blog gride ====*/
.blog-gride-wrap {
  padding-right: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-gride-wrap {
    padding-right: 0px;
  }
}

.blog-gride-wrap .blog-box__content .blog-title {
  font-size: 22px;
}

/*==== Blog side bar ====*/
.sidebar-widget {
  -webkit-box-shadow: 0px 0px 4px 0px rgba(11, 0, 59, 0.15);
          box-shadow: 0px 0px 4px 0px rgba(11, 0, 59, 0.15);
  padding: 40px 32px;
}

.sidebar-widget__author {
  text-align: center;
}

.sidebar-widget__author img {
  margin-bottom: 15px;
}

.sidebar-widget__author .author-meta {
  margin-bottom: 5px;
}

.sidebar-widget__author .author-meta h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 7px;
}

.sidebar-widget__author .author-meta span {
  font-size: 12px;
  color: #5C727D;
  display: block;
  margin-bottom: -5px;
}

.sidebar-widget__author .author-meta .review ul li {
  display: inline-block;
}

.sidebar-widget__author .author-meta .review ul li a {
  font-size: 10px;
}

.sidebar-widget__author .author-meta .review ul li a span {
  color: #5C727D;
}

.sidebar-widget__author .content p {
  margin-bottom: 25px;
  font-size: 14px;
}

.sidebar-widget__author .author-social li {
  display: inline-block;
  margin-right: 15px;
}

.sidebar-widget__author .author-social li a {
  color: #000000;
}

.sidebar-widget__author .author-social li a:hover {
  color: #F31717;
}

/* Search */
.sidebar-widget__head .title {
  font-size: 22px;
  font-weight: 700;
  position: relative;
  margin-left: 10px;
}

.sidebar-widget__head .title::before {
  position: absolute;
  content: "";
  background: #F31717;
  height: 18px;
  width: 2px;
  top: 3px;
  left: -10px;
}

.sidebar-widget__content .search input {
  height: 55px;
  background-color: #F2F6F7;
  border: 1px solid transparent;
  padding: 0 15px;
  width: 83%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sidebar-widget__content .search input:focus {
  border: 1px solid #F31717;
}

.sidebar-widget__content .search button {
  position: absolute;
  border: 0;
  background: #F31717;
  height: 55px;
  width: 55px;
  line-height: 55px;
  color: #FFFFFF;
  right: 0;
  cursor: pointer;
}

/* Blog post*/
.sidebar-widget__content.blog-border-bottom {
  padding-bottom: 12px;
  border-bottom: 1px solid #E7E7E7;
}

.sidebar-widget__content .blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar-widget__content .blog-wrap .blog-img {
  margin-right: 15px;
}

.sidebar-widget__content .blog-wrap .blog-post a:hover h6 {
  color: #F31717;
}

.sidebar-widget__content .blog-wrap .blog-post a h6 {
  font-size: 15px;
  color: #133344;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 0px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sidebar-widget__content .blog-wrap .blog-post .meta span {
  color: #F31717;
  font-size: 12px;
  font-weight: 600;
}

.sidebar-widget__content .blog-wrap .blog-post .meta span i {
  margin-right: 7px;
}

/*Categities link*/
.sidebar-widget__content .categories-link ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 50px;
  background: #F2F6F7;
  margin-bottom: 20px;
  line-height: 50px;
  padding: 0 10px 0 15px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sidebar-widget__content .categories-link ul li:hover {
  background-color: #F31717;
}

.sidebar-widget__content .categories-link ul li:hover a {
  color: #FFFFFF;
}

.sidebar-widget__content .categories-link ul li:hover span {
  background-color: #D61212;
}

.sidebar-widget__content .categories-link ul li a {
  color: #000000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sidebar-widget__content .categories-link ul li span {
  width: 38px;
  height: 33px;
  background: #000000;
  text-align: center;
  line-height: 33px;
  margin-top: 8px;
  display: inline-block;
  color: #FFFFFF;
  font-size: 13px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

/* Photo Gallery */
.sidebar-widget__content .sidebar-gallery {
  overflow: hidden;
}

.sidebar-widget__content .sidebar-gallery ul li {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  width: 29.33%;
  float: left;
}

.sidebar-widget__content .sidebar-gallery ul li a::after {
  position: absolute;
  content: "";
  height: 0%;
  width: 0%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #000000;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sidebar-widget__content .sidebar-gallery ul li a i {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #FFFFFF;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sidebar-widget__content .sidebar-gallery ul li:hover i {
  visibility: visible;
  opacity: 1;
}

.sidebar-widget__content .sidebar-gallery ul li:hover a::after {
  overflow: visible;
  opacity: 0.5;
  height: 100%;
  width: 100%;
}

/* Sidebar Contact*/
.sidebar-widget__content .sidebar-contact .sidebar-contact-box {
  position: relative;
}

.sidebar-widget__content .sidebar-contact .sidebar-contact-box .sidebar-input {
  height: 45px;
  padding: 15px 15px 15px 40px;
  width: 100%;
  background: #F2F6F7;
  color: #5C727D;
  border: 1px solid transparent;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sidebar-widget__content .sidebar-contact .sidebar-contact-box .sidebar-input:focus {
  border: 1px solid #F31717;
}

.sidebar-widget__content .sidebar-contact .sidebar-contact-box .sidebar-input.text-area {
  height: 125px;
  resize: none;
  padding: 15px 15px 15px 40px;
  line-height: 15px;
}

.sidebar-widget__content .sidebar-contact .sidebar-contact-box .sidebar-input::-webkit-input-placeholder {
  font-size: 14px;
  color: #5C727D;
}

.sidebar-widget__content .sidebar-contact .sidebar-contact-box .sidebar-input:-ms-input-placeholder {
  font-size: 14px;
  color: #5C727D;
}

.sidebar-widget__content .sidebar-contact .sidebar-contact-box .sidebar-input::-ms-input-placeholder {
  font-size: 14px;
  color: #5C727D;
}

.sidebar-widget__content .sidebar-contact .sidebar-contact-box .sidebar-input::placeholder {
  font-size: 14px;
  color: #5C727D;
}

.sidebar-widget__content .sidebar-contact .sidebar-contact-box i {
  position: absolute;
  line-height: 45px;
  left: 15px;
}

.sidebar-widget__content .sidebar-contact .sidebar-contact-btn {
  border: 0;
  background: #F31717;
  color: #FFFFFF;
  padding: 14px 30px;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sidebar-widget__content .sidebar-contact .sidebar-contact-btn:hover {
  background-color: #000000;
}

/* Tags*/
.sidebar-widget__content .sidebar-tags a {
  display: inline-block;
  padding: 10px 20px;
  background: #F2F6F7;
  text-transform: capitalize;
  margin-right: 5px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sidebar-widget__content .sidebar-tags a:hover {
  background: #F31717;
  color: #FFFFFF;
}

/* Sidebas Social*/
.sidebar-widget__content .sidebar-social ul li {
  display: inline-block;
}

.sidebar-widget__content .sidebar-social ul li a {
  display: inline-block;
  height: 38px;
  width: 40px;
  background: #F2F6F7;
  text-align: center;
  line-height: 38px;
  color: #000;
  margin-right: 10px;
  margin-bottom: 5px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sidebar-widget__content .sidebar-social ul li a:hover {
  background: #F31717;
  color: #FFFFFF;
}

/*====== Single blog ======*/
.single-blog-wrap {
  padding-right: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .single-blog-wrap {
    padding-right: 0px;
  }
}

.single-blog-wrap .single-qutote-bg {
  background-image: url(/assets/img/blog/single-blog/quote-post.jpg);
  background-position: center center;
  background-repeat: no-repeat;
}

.single-blog-wrap .blog-single-qutote {
  position: relative;
  height: 270px;
  display: felex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.single-blog-wrap .blog-single-qutote .quote-wrap {
  padding: 0 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-blog-wrap .blog-single-qutote .quote-wrap {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .single-blog-wrap .blog-single-qutote .quote-wrap {
    padding: 0 10px;
  }
}

.single-blog-wrap .blog-single-qutote .quote-wrap h3 {
  font-size: 29px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .single-blog-wrap .blog-single-qutote .quote-wrap h3 {
    font-size: 20px;
  }
}

.single-blog-wrap .blog-single-qutote .quote-wrap span {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}

.single-blog-wrap .blog-text h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.single-blog-wrap .silgle-post-video-img {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-blog-wrap .silgle-post-video-img img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .single-blog-wrap .silgle-post-video-img img {
    width: 100%;
  }
}

.single-blog-wrap .silgle-post-video-img .single-blog-v-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
}

.single-blog-wrap .single-video-text h4 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.single-blog-wrap .single-video-text .video-text ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 7px;
}

.single-blog-wrap .single-video-text .video-text ul li p {
  font-size: 14px;
  margin-bottom: 0;
}

.single-blog-wrap .single-video-text .video-text ul li span {
  margin-right: 15px;
}

.single-blog-wrap .single-video-text .video-text ul li span i {
  height: 33px;
  width: 31px;
  text-align: center;
  display: block;
  font-size: 17px;
  background: #F2F6F7;
  line-height: 33px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

.single-blog-wrap .single-video-text .video-text ul li span i:hover {
  background: #F31717;
  color: #FFFFFF;
}

.single-blog-wrap .blog-text.single-border-bottom {
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 15px;
}

.single-blog-wrap .blog-text li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-blog-wrap .blog-text li span {
  margin-right: 15px;
}

.single-blog-wrap .blog-text li p {
  margin-bottom: 9px;
}

.single-blog-wrap .blog__quote-wrap .blog-meta {
  border-bottom: 0px;
}

.single-blog-wrap .single-blog-tags-social-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.single-blog-wrap .single-blog-tags-social-wrap__tags a {
  padding: 8px 20px;
  background: #F2F6F7;
  text-transform: capitalize;
  margin-right: 6px;
  margin-bottom: 5px;
  display: inline-block;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.single-blog-wrap .single-blog-tags-social-wrap__tags a:hover {
  background: #000000;
  color: #FFFFFF;
}

.single-blog-wrap .single-blog-tags-social-wrap__social .sidebar-social ul li {
  display: inline-block;
  margin-left: 10px;
}

.single-blog-wrap .single-blog-tags-social-wrap__social .sidebar-social ul li a {
  display: inline-block;
  height: 34px;
  width: 31px;
  background: #F2F6F7;
  text-align: center;
  line-height: 34px;
  color: #000000;
  font-size: 14px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.single-blog-wrap .single-blog-tags-social-wrap__social .sidebar-social ul li a:hover {
  background: #F31717;
  color: #FFFFFF;
}

.single-blog-wrap .post-comments__title h3 {
  font-size: 28px;
}

.single-blog-wrap .post-comments__latest-comments ul li .comments-box {
  overflow: hidden;
}

.single-blog-wrap .post-comments__latest-comments ul li .comments-box .comments-avatar {
  float: left;
  font-size: 16px;
  font-weight: 700;
  margin-right: 25px;
}

.single-blog-wrap .post-comments__latest-comments ul li .comments-box .comments-text {
  overflow: hidden;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 20px;
  margin-bottom: 35px;
}

.single-blog-wrap .post-comments__latest-comments ul li .comments-box .comments-text .avatar-name {
  overflow: hidden;
}

.single-blog-wrap .post-comments__latest-comments ul li .comments-box .comments-text .avatar-name h5 {
  float: left;
  margin-right: 20px;
}

.single-blog-wrap .post-comments__latest-comments ul li .comments-box .comments-text .avatar-name .comment-reply {
  color: #000000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.single-blog-wrap .post-comments__latest-comments ul li .comments-box .comments-text .avatar-name .comment-reply:hover {
  color: #F31717;
}

.single-blog-wrap .post-comments__latest-comments ul li .comments-box .comments-text .comment-date {
  margin-bottom: 5px;
}

.single-blog-wrap .post-comments__latest-comments ul li .comments-box .comments-text .comment-date span {
  font-size: 14px;
  color: #F31717;
  font-weight: 600;
}

.single-blog-wrap .post-comments__latest-comments ul li .comments-box .comments-text p {
  font-size: 15px;
  line-height: 27px;
}

.single-blog-wrap .post-comments__latest-comments ul .children {
  margin-left: 100px;
}

@media (max-width: 767px) {
  .single-blog-wrap .post-comments__latest-comments ul .children {
    margin-left: 10px;
  }
}

/*==== Comment Form ===*/
.post-comment-form {
  background: #F4F4F9;
  padding: 50px 30px 50px;
}

.post-comment-form h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.post-comment-form span {
  font-size: 16px;
  color: #133344;
  margin-bottom: 30px;
  display: inline-block;
}

.post-comment-form .blog-post-comment {
  position: relative;
}

.post-comment-form .blog-post-comment i {
  position: absolute;
  line-height: 50px;
  left: 2px;
}

.post-comment-form .blog-post-comment input {
  height: 50px;
  width: 100%;
  padding: 15px 15px 15px 30px;
  border: 0;
  background: #F4F4F9;
  border-bottom: 1px solid #133344;
}

.post-comment-form .blog-post-comment input::-webkit-input-placeholder {
  font-size: 15px;
  color: #133344;
}

.post-comment-form .blog-post-comment input:-ms-input-placeholder {
  font-size: 15px;
  color: #133344;
}

.post-comment-form .blog-post-comment input::-ms-input-placeholder {
  font-size: 15px;
  color: #133344;
}

.post-comment-form .blog-post-comment input::placeholder {
  font-size: 15px;
  color: #133344;
}

.post-comment-form .blog-post-comment .sidebar-contact.text-area {
  height: 140px;
  width: 100%;
  resize: none;
  border: 0;
  background: #F4F4F9;
  border-bottom: 1px solid #133344;
  padding: 12px 15px 15px 30px;
}

.post-comment-form .post-check {
  margin-bottom: 10px;
}

.post-comment-form .post-check span {
  font-size: 14px;
  color: #133344;
}

.post-comment-form .sidebar-contact-btn {
  border: 0;
  background: #F31717;
  color: #FFFFFF;
  padding: 10px 20px;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

.post-comment-form .sidebar-contact-btn:hover {
  background: #000000;
  color: #FFFFFF;
}

/*============**  Errorpage Area **============*/
.error-content__head {
  margin-bottom: 40px;
}

.error-content__head span {
  font-size: 150px;
  font-weight: 700;
  display: iline-block;
  padding: 0 10px;
}

@media (max-width: 767px) {
  .error-content__head span {
    font-size: 100px;
    padding: 0 5px;
  }
}

.error-content__head .error-red {
  color: red;
}

.error-content__desc {
  margin-bottom: 30px;
}

.error-content__desc h4 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .error-content__desc h4 {
    font-size: 18px;
  }
}

.error-content__desc p {
  font-size: 17px;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .error-content__desc p {
    font-size: 14px;
  }
}

/*============**  Faq Area **============*/
.collapse-wrappper.faq-ques .card .card-header h2 a {
  font-size: 22px;
}

@media (max-width: 767px) {
  .collapse-wrappper.faq-ques .card .card-header h2 a {
    font-size: 18px;
  }
}

.collapse-wrappper.faq-ques .card .card-body {
  font-size: 17px;
}

@media (max-width: 767px) {
  .collapse-wrappper.faq-ques .card .card-body {
    font-size: 15px;
  }
}

.faq-contact__title h3 {
  font-size: 35px;
}

@media (max-width: 767px) {
  .faq-contact__title h3 {
    font-size: 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .faq-contact__title h3 {
    font-size: 35px;
  }
}

/*============**  Footer Area **============*/
.footer-area {
  background-image: url(/assets/img/footer/footer-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #000000;
}

.footer-border {
  border-bottom: 1px solid #4E5267;
}

.footer-top-text__title {
  font-size: 45px;
  color: #FFFFFF;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer-top-text__title {
    font-size: 38px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-top-text__title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .footer-top-text__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.footer-top-text__title span {
  color: #F31717;
}

.footer-top-btn {
  text-align: right;
}

@media (max-width: 767px) {
  .footer-top-btn {
    text-align: left;
  }
}

.footer-widget.fotter-ml {
  margin-left: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget.fotter-ml {
    margin-left: 0px;
  }
}

@media (max-width: 767px) {
  .footer-widget.fotter-ml {
    margin-left: 0px;
  }
}

.footer-widget__title {
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.footer-widget p {
  color: #FFFFFF;
  margin-bottom: 20px;
  padding-right: 46px;
}

.footer-widget p span {
  color: #F31717;
}

.footer-widget__blog-wrap {
  overflow: hidden;
}

.footer-widget__blog-wrap a img {
  float: left;
  margin-right: 20px;
}

.footer-widget__blog-wrap .blog-content {
  float: left;
  width: 53%;
}

.footer-widget__blog-wrap .blog-content a {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 5px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  color: #fff;
  display: block;
}

.footer-widget__blog-wrap .blog-content a:hover {
  color: #F31717;
}

.footer-widget__blog-wrap .blog-content span {
  color: #FFFFFF;
  font-size: 12px;
}

.footer-widget__userful-link ul li:hover a {
  color: #F31717;
}

.footer-widget__userful-link ul li a {
  color: #FFFFFF;
  line-height: 40px;
}

.footer-widget .footer-subcribe {
  position: relative;
}

.footer-widget .footer-subcribe input {
  height: 50px;
  width: 270px;
  padding: 15px;
  padding-right: 48px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer-widget .footer-subcribe input {
    width: 235px;
  }
}

@media (max-width: 767px) {
  .footer-widget .footer-subcribe input {
    width: 200px;
  }
}

.footer-widget .footer-subcribe button {
  position: absolute;
  height: 36px;
  width: 36px;
  border: 0;
  outline: 0;
  left: 225px;
  top: 7px;
  background: #F31717;
  color: #FFFFFF;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer-widget .footer-subcribe button {
    left: 190px;
  }
}

@media (max-width: 767px) {
  .footer-widget .footer-subcribe button {
    left: 160px;
  }
}

.footer-widget .footer-subcribe button:hover {
  background-color: #000000;
}

.footer-widget__social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-widget__social ul li {
  margin-right: 15px;
}

.footer-widget__social ul li:last-child {
  margin-right: 0px;
}

.footer-widget__social ul li:hover a {
  color: #F31717;
}

.footer-widget__social ul li a {
  font-size: 13px;
  color: #FFFFFF;
}

.footer-bottom {
  padding: 30px 0 15px;
  border-top: 1px solid #4E5267;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .footer-bottom {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .footer-bottom__logo {
    text-align: center;
  }
}

.footer-bottom__copyright-text p {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: center;
}

.footer-bottom__copyright-text p span {
  color: #F31717;
}

.footer-bottom__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-bottom__menu ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

@media (max-width: 767px) {
  .footer-bottom__menu ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-bottom__menu ul li {
  margin-left: 20px;
  color: #FFFFFF;
  font-size: 15px;
}

.footer-bottom__menu ul li:first-child {
  margin-left: 0px;
}

.footer-bottom__menu ul li a {
  color: #FFFFFF;
}

.footer-bottom__menu ul li a:hover {
  color: #F31717;
}

/*============**  Sidebar Area  **============*/
.wrapper-site .wrapper-site-overlay {
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(2px);
          filter: blur(2px);
  background: #000000;
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 7;
  -webkit-transition: .3s;
  transition: .3s;
}

.wrapper-site .wrapper-site-overlay.active {
  opacity: 0.6;
  visibility: visible;
}

/*  Sidebar Menu Area  */
.sidebar-menu-area {
  background: #FFFFFF;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 90px 55px 40px 40px;
  position: fixed;
  right: -32px;
  top: 0;
  width: 380px;
  z-index: 12;
  -webkit-box-shadow: -4px 0px 20px rgba(32, 54, 86, 0.1);
  box-shadow: -4px 0px 20px rgba(32, 54, 86, 0.1);
  -webkit-transform: translateX(350px);
  transform: translateX(350px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-menu-area {
    display: none;
  }
}

.sidebar-menu-area.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-menu-area.open {
    display: none;
  }
}

.sidebar-menu-area.position-left {
  left: 0;
  right: auto;
  -webkit-transform: translateX(-350px);
  transform: translateX(-350px);
}

.sidebar-menu-area.position-left.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-menu-area.position-left.open {
    display: none;
  }
}

.sidebar-menu-area .btn-close {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: absolute;
  padding: 0.25em 0.25em;
  color: #000;
  border: 0;
  border-radius: 0.25rem;
  right: 60px;
  top: 40px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-close {
  color: #000;
  background: none;
}

.btn-close:hover {
  color: #F31717;
  cursor: pointer;
}

.btn-close:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-close i {
  font-size: 20px;
}

.sidebar-logo {
  text-align: left;
  width: 100%;
  margin-bottom: 40px;
}

.sidebar-logo a {
  background: #F31717;
  padding: 20px;
}

.sidebar-desc p {
  margin-bottom: 50px;
}

.sidebar-address {
  width: 100%;
}

.sidebar-address h3 {
  font-size: 30px;
  margin-bottom: 25px;
}

.sidebar-address ul {
  margin-bottom: 20px;
}

.sidebar-address ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.sidebar-address ul li .footer-icon {
  margin-right: 20px;
}

.sidebar-address ul li .footer-icon i {
  color: #F31717;
}

.sidebar-address ul li a {
  color: #000000;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 22px;
}

.sidebar-address ul li p {
  color: #000000;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 22px;
}

.sidebar-footer {
  width: 100%;
}

.sidebar-footer__footer-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sidebar-footer__footer-social ul li {
  margin-right: 22px;
}

.sidebar-footer__footer-social ul li a {
  color: #F31717;
}

.sidebar-footer__footer-social ul li a:hover {
  color: #000000;
}
/*# sourceMappingURL=main.css.map */