/*
@File: Torado/Insurance Company Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the template.

This files table contents are outlined below>>>>>

******************************************* 
** - DEFAULT AREA STYLE - **

** - Default Btn Area Style
** - Read More Area Style
** - Section Title Area Style
** - Header Area Style
** - Nav Area Style
** - Banner Area Style
** - Futures Area Style
** - About Area Style
** - Services Area Style
** - Ready To Talk Area Style
** - Choose Us Area Style
** - Case Studies Area Style
** - Customer Area Style
** - Team Area Style
** - Partner Area Style
** - Blog Area Style
** - Footer Area Style
** - Copy Right Area Style

** - OTHER STYLE AREA - **

** - Preloader Area Style
** - Go Top Style
** - Video wave Style

*******************************************
/*

/*
Default Style
============================*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --body-font-family: "Outfit", sans-serif;
  --body-color: #696E77;
  --main-color: #02B0C1;
  --optional-color: #4089CE;
  --heading-color: #000531;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-size: 16px;
  --mobile-font-size: 15px;
  --transition: all ease .5s;
  --border-radius: 5px;
  --box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

body {
  font-size: var(--font-size);
  font-family: var(--body-font-family);
  color: var(--body-color);
}

a {
  transition: var(--transition);
  text-decoration: none;
  color: var(--body-color);
}
a:hover {
  text-decoration: none;
  color: var(--main-color);
}
a:focus {
  text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-weight: 700;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

p {
  margin-bottom: 15px;
  line-height: 26px;
}
p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.form-control {
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background-color: rgba(255, 255, 255, 0.04);
  font-size: 16px;
  padding: 10px 20px;
  width: 100%;
  transition: var(--transition);
  border-radius: 4px;
  color: var(--white-color) !important;
}
.form-control::-moz-placeholder {
  color: #D3D3D3;
}
.form-control::placeholder {
  color: #D3D3D3;
}
.form-control:focus {
  color: var(--black-color);
  box-shadow: unset;
  outline: 0;
  border: 1px solid var(--main-color);
  background: rgba(255, 255, 255, 0.04);
}

textarea.form-control {
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

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

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

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

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

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

/*
Bg-color Style*/
.bg-color-f6f9f8 {
  background-color: #f6f9f8;
}

.bg-color-000531 {
  background-color: #000531;
}

.bg-color-f5f5f5 {
  background-color: #f5f5f5;
}

.bg-color-4089ce {
  background-color: #4089ce;
}

/*
Go Top Style*/
.go-top {
  position: fixed;
  cursor: pointer;
  right: 3%;
  top: 87%;
  background-color: var(--main-color);
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  transform: scale(0);
  visibility: hidden;
  transition: 0.9s;
  border-radius: var(--border-radius);
}
.go-top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: var(--white-color);
  transition: 0.5s;
  font-size: 20px;
}
.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--main-color);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  border-radius: var(--border-radius);
}
.go-top:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}
.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}
.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top:focus {
  color: var(--white-color);
}
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}
.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 3%;
  top: 87%;
  transform: scale(1);
}

/* Preloader Area Style
============================================*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  z-index: 9999;
}
.preloader .pl-spark-1 {
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  margin: 0 auto 18px auto;
  position: relative;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.preloader .pl-spark-1:before, .preloader .pl-spark-1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  background: var(--white-color);
  display: block;
  transform-origin: 50% 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.preloader .pl-spark-1.pl-spark-2:before {
  animation-name: scaleA;
}
.preloader .pl-spark-1.pl-spark-2:after {
  animation-name: scaleB;
}
.preloader.preloader-deactivate {
  visibility: hidden;
}

@keyframes scaleA {
  from, 50%, to {
    transform: scale(1);
  }
  25%, 75% {
    transform: scale(-1);
  }
}
@keyframes scaleB {
  from, 50%, to {
    transform: rotate(90deg) scale(0);
  }
  12.5%, 62.5% {
    transform: rotate(90deg) scale(1);
  }
  37.5%, 87.5% {
    transform: rotate(90deg) scale(-1);
  }
}
/* Default btn Area Style
============================================*/
.default-btn {
  background: #02B0C1;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 18px;
  line-height: 10px;
  color: var(--white-color);
  padding: 21px 32px;
  display: inline-block;
  overflow: hidden;
  text-align: center;
  border: none;
}
.default-btn:hover {
  color: var(--white-color);
}
.default-btn.active {
  background-color: var(--optional-color);
  color: var(--white-color);
}
.default-btn.active:hover {
  background-color: var(--optional-color);
}

/* Read More btn Area Style
============================================*/
.read-more {
  font-weight: 600;
  font-size: 18px;
  line-height: 10px;
  color: var(--heading-color);
}
.read-more img {
  margin-left: 12px;
}
.read-more:hover {
  letter-spacing: 0.5px;
}

/* Section Area Style
============================================*/
.section-title {
  max-width: 690px;
  margin: auto;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}
.section-title .top-title {
  color: var(--optional-color);
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 18px;
}
.section-title h2 {
  font-size: 44px;
  line-height: 55px;
  margin-bottom: 15px;
  position: relative;
}
.section-title h2:last-child {
  margin-bottom: 0;
}
.section-title p {
  max-width: 600px;
  margin: auto;
}
.section-title.w-565 {
  max-width: 565px;
}
.section-title.w-500 {
  max-width: 500px;
}
.section-title.mb-28 {
  margin-bottom: 28px;
}
.section-title.left-title {
  text-align: left;
  margin-left: 0;
}
.section-title.left-title .default-btn {
  position: absolute;
  top: 0;
  right: 0;
}

/* navbar Area Style
============================================*/
.top-area {
  padding-top: 15px;
  padding-bottom: 15px;
}
.top-area .container-fluid {
  max-width: 1780px;
  padding-left: 30px;
  padding-right: 30px;
}

.header-left-content {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.header-left-content li {
  border-right: 1px solid rgba(255, 255, 255, 0.29);
  display: inline-block;
  padding-right: 20px;
  margin-right: 20px;
}
.header-left-content li:last-child {
  margin-right: 0;
  padding-right: 0;
  border: none;
}
.header-left-content li img {
  margin-right: 10px;
}
.header-left-content li a {
  color: var(--white-color);
}
.header-left-content li a:hover {
  color: var(--main-color);
}
.header-left-content li span {
  color: var(--white-color);
}

.header-right-content {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: right;
  line-height: 1;
}
.header-right-content li {
  display: inline-block;
  margin-right: 7px;
  padding-right: 7px;
  border-right: 1px solid rgba(255, 255, 255, 0.29);
}
.header-right-content li:last-child {
  margin-right: 0;
  padding-right: 0;
  border: none;
}
.header-right-content li a i {
  font-size: 16px;
  color: var(--white-color);
  transition: var(--transition);
}
.header-right-content li a:hover i {
  color: var(--main-color);
}

/* navbar Area Style
============================================*/
.navbar {
  z-index: 2;
  background-color: var(--white-color);
}
.navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 0 3px 0px #000000;
  box-shadow: var(--box-shadow);
  z-index: 999;
}
.navbar.is-sticky::before {
  display: none;
}
.navbar .container-fluid {
  max-width: 1780px;
  padding-left: 30px;
  padding-right: 30px;
}
.navbar .nav-item .nav-link {
  font-size: 18px;
  line-height: 10px;
  color: #252626;
  padding: 0 22px;
  padding: 34px 22px;
}
.navbar .nav-item .nav-link:hover {
  color: var(--main-color);
}
.navbar .nav-item .nav-link.active {
  color: var(--main-color);
}
.navbar .others-option {
  margin-left: 22px;
}
.navbar .others-option ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar .others-option ul li {
  margin-right: 22px;
}
.navbar .others-option ul li:last-child {
  margin-right: 0;
}
.navbar .others-option .default-btn {
  display: block;
  padding: 21px 29px;
  background: var(--optional-color);
  font-weight: 600;
}
.navbar .others-option .option-item {
  position: relative;
  top: 12px;
}
.navbar .others-option .option-item .search-overlay {
  display: none;
}
.navbar .others-option .option-item .search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: var(--white-color);
  z-index: 2;
  padding: 20px;
  box-shadow: var(--box-shadow);
  margin-top: 18px;
}
.navbar .others-option .option-item .search-overlay.search-popup .search-form {
  position: relative;
}
.navbar .others-option .option-item .search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #dddddd;
  color: var(--heading-color);
  outline: 0;
  transition: var(--transition);
  font-size: 15px;
  padding-top: 4px;
  padding-left: 15px;
  background: var(--white-color);
}
.navbar .others-option .option-item .search-overlay.search-popup .search-form .search-input:focus {
  border-color: var(--main-color);
}
.navbar .others-option .option-item .search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: var(--main-color);
  border: none;
  width: 50px;
  outline: 0;
  color: var(--white-color);
  transition: var(--transition);
  padding: 0;
}
.navbar .others-option .option-item .search-overlay.search-popup .search-form .search-button:hover {
  background-color: var(--heading-color);
}
.navbar .others-option .option-item .search-btn {
  cursor: pointer;
  transition: var(--transition);
  color: var(--heading-color);
  text-align: center;
  font-size: 21px;
  display: inline-block;
}
.navbar .others-option .option-item .search-btn:hover {
  color: var(--main-color);
}
.navbar .others-option .option-item .close-btn {
  cursor: pointer;
  transition: var(--transition);
  color: var(--heading-color);
  text-align: center;
  display: none;
  font-size: 21px;
}
.navbar .others-option .option-item .close-btn:hover {
  color: var(--main-color);
}
.navbar .others-option .option-item .close-btn.active {
  display: block;
  color: var(--main-color);
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
/* Banner Area Style
============================================*/
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: auto;
}
.banner-content span {
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  color: var(--main-color);
  margin-bottom: 11px;
}
.banner-content h1 {
  font-weight: 800;
  font-size: 88px;
  line-height: 100px;
  margin-bottom: 23px;
}
.banner-content p {
  margin-bottom: 27px;
  max-width: 780px;
  line-height: 26px;
}
.banner-content.ptb-155 {
  padding-top: 155px;
  padding-bottom: 155px;
}

.banner-bg-img {
  background-image: url(../../assets/images/insurance-company/banner-img.jpg);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto;
  height: 100%;
  position: relative;
  z-index: 1;
}
.banner-bg-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  background-image: url(../../assets/images/insurance-company/mockup.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.banner-bg-img .shape {
  position: absolute;
  z-index: 1;
}
.banner-bg-img .shape.shape-1 {
  top: 100px;
  left: 0;
}
.banner-bg-img .shape.shape-2 {
  bottom: 150px;
  left: -130px;
}

/* Features Area Style
============================================*/
.features-bg-wrap {
  background: #FFFFFF;
  box-shadow: 0px 0px 30px rgba(85, 85, 85, 0.08);
  border-radius: 10px;
  padding: 46px 80px;
  margin-top: -70px;
  position: relative;
  z-index: 1;
}
.features-bg-wrap .col-lg-4:last-child .single-features::before {
  display: none;
}
.features-bg-wrap .col-lg-4:last-child .single-features:last-child {
  margin-right: 0;
  padding-right: 0;
}

.single-features {
  position: relative;
  z-index: 1;
  padding-right: 40px;
  margin-right: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.single-features::before {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  width: 2px;
  height: 100%;
  border-right: 2px dotted #e7e7e7;
}
.single-features .icon {
  background: #FF6F31;
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 10px;
  text-align: center;
}
.single-features .icon.icon-bg-02b0c1 {
  background-color: #02b0c1;
}
.single-features .icon.icon-bg-eeba01 {
  background-color: #eeba01;
}
.single-features h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 0;
}

/* About Area Style
============================================*/
.about-us-area {
  position: relative;
  z-index: 1;
}
.about-us-area::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 57px;
  background-color: #000531;
  z-index: -1;
}

.about-img {
  position: relative;
  background-image: url(../images/insurance-company/about-img.jpg);
  background-repeat: no-repeat;
  background-size: auto;
  height: 100%;
  border-radius: 21px;
  background-position: right;
}
.about-img .about-shape {
  position: absolute;
  top: -50px;
  left: -50px;
}

.about-content {
  margin-left: 39px;
  margin-bottom: 155px;
}
.about-content .top-title {
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--optional-color);
}
.about-content h2 {
  line-height: 55px;
  font-size: 44px;
  margin-bottom: 20px;
}
.about-content p {
  margin-bottom: 30px;
  max-width: 630px;
}
.about-content .quality-list {
  padding-left: 0;
  margin-bottom: 40px;
  list-style-type: none;
}
.about-content .quality-list li {
  border: 1px dashed #E1E3E3;
  border-radius: 3px;
  padding: 6px;
  margin-bottom: 15px;
}
.about-content .quality-list li:last-child {
  margin-bottom: 0;
}
.about-content .quality-list li span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 3px;
  background-color: var(--optional-color);
  color: var(--white-color);
  display: inline-block;
  text-align: center;
}
.about-content .quality-list li h3 {
  font-weight: 500;
  font-size: 18px;
  margin-left: 18px;
  margin-bottom: 0;
}
.about-content .year-img {
  text-align: center;
}
.about-content .year-img span {
  font-weight: 500;
  font-size: 18px;
  display: block;
  color: var(--heading-color);
  margin-top: 15px;
}
.about-content .btn-call {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.about-content .btn-call li {
  display: inline-block;
  margin-right: 30px;
}
.about-content .btn-call li:last-child {
  margin-right: 0;
}
.about-content .btn-call li .icon {
  background: rgba(2, 176, 193, 0.08);
  width: 52px;
  height: 52px;
  line-height: 52px;
  border-radius: 50px;
  text-align: center;
}
.about-content .btn-call li .default-btn {
  display: inline-flex;
}
.about-content .btn-call li .call {
  margin-left: 13px;
}
.about-content .btn-call li .call a {
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}
.about-content .btn-call li .call a:hover {
  color: var(--main-color);
}
.about-content .btn-call li .call span {
  display: block;
}

/* Counter Area Style
============================================*/
.counter-area {
  position: relative;
}
.counter-area .shape {
  position: absolute;
  z-index: 2;
}
.counter-area .shape.shape-1 {
  bottom: -165px;
  left: 50px;
}
.counter-area .shape.shape-2 {
  bottom: 100px;
  right: 100px;
}

.single-counter {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}
.single-counter h2 {
  color: var(--main-color);
  font-weight: 900;
  font-size: 64px;
  margin-bottom: 0;
}
.single-counter h2 span {
  font-family: var(--body-font-family);
}
.single-counter .title {
  color: var(--white-color);
  font-weight: 600;
  font-size: 18px;
}
.single-counter .target {
  position: relative;
  top: 8px;
  margin-left: -10px;
}

/* Video Area Style
============================================*/
.video-area {
  position: relative;
  z-index: 1;
}
.video-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 165px;
  background-color: #000531;
  z-index: -1;
}

.video-content {
  position: relative;
  text-align: center;
  z-index: 1;
}
.video-content img {
  border-radius: 10px;
}
.video-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 5, 49, 0.1);
  border-radius: 10px;
  z-index: -1;
}
.video-content .video-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}

.video-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 0;
  color: var(--main-color);
  position: relative;
  z-index: 1;
  background-color: var(--main-color);
  border-radius: 50%;
  transition: var(--transition);
}
.video-btn i {
  font-size: 42px;
  color: var(--white-color);
  position: absolute;
  top: 0;
  left: 1px;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  height: 100%;
}
.video-btn::after, .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 0;
  border-radius: 50%;
  transition: var(--transition);
  animation: ripple 1.6s ease-out infinite;
  background-color: var(--main-color);
}
.video-btn span {
  position: absolute;
  top: 0;
  right: -105px;
  width: 100px;
  font-size: 15px;
}
.video-btn:hover {
  background-color: rgba(22, 5, 107, 0.8);
}
.video-btn:hover::before, .video-btn:hover::after {
  background-color: rgba(22, 5, 107, 0.8);
}

@keyframes ripple {
  0%, 35% {
    transform: scale(0);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
/* Services Area Style
============================================*/
.single-services {
  background: var(--white-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 5px;
  padding: 35px 30px;
  transition: var(--transition);
  margin: 12px;
  margin-bottom: 30px;
}
.single-services .icon {
  width: 72px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  background: rgba(64, 137, 206, 0.1);
  border-radius: 9px;
  margin-bottom: 20px;
}
.single-services h3 {
  font-size: 22px;
  margin-bottom: 10px;
  transition: var(--transition);
}
.single-services h3 a {
  color: var(--heading-color);
}
.single-services p {
  transition: var(--transition);
}
.single-services:hover {
  background-color: var(--main-color);
}
.single-services:hover .icon {
  background-color: var(--white-color);
}
.single-services:hover h3 a {
  color: var(--white-color);
}
.single-services:hover p {
  color: var(--white-color);
}

.services-slide.owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
  margin: auto;
}
.services-slide.owl-theme .owl-nav {
  margin-top: 0 !important;
}
.services-slide.owl-theme .owl-nav .owl-prev, .services-slide.owl-theme .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(47, 20, 113, 0.05);
  border-radius: 50%;
  transition: var(--transition);
  margin: 0;
  position: absolute;
  top: 50%;
  left: -66px;
  transform: translateY(-50%);
}
.services-slide.owl-theme .owl-nav .owl-prev img, .services-slide.owl-theme .owl-nav .owl-next img {
  position: relative;
  left: -1px;
  top: -2px;
  transition: var(--transition);
}
.services-slide.owl-theme .owl-nav .owl-prev:hover, .services-slide.owl-theme .owl-nav .owl-next:hover {
  background-color: var(--optional-color);
}
.services-slide.owl-theme .owl-nav .owl-prev:hover img, .services-slide.owl-theme .owl-nav .owl-next:hover img {
  filter: brightness(100);
}
.services-slide.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -66px;
}
.services-slide.owl-theme .owl-nav .owl-next img {
  left: auto;
  right: -2px;
}

/* Choose Area Style
============================================*/
.choose-us-content {
  position: relative;
}
.choose-us-content .top-title {
  font-weight: 500;
  font-size: 18px;
  color: var(--optional-color);
  display: block;
  margin-bottom: 10px;
}
.choose-us-content h2 {
  line-height: 55px;
  font-size: 44px;
  margin-bottom: 20px;
}
.choose-us-content p {
  margin-bottom: 30px;
}
.choose-us-content .default-btn {
  margin-top: 20px;
  display: inline-flex;
}
.choose-us-content .choose-shape {
  position: absolute;
  bottom: -30px;
  right: 0;
}

.single-choose {
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  border-radius: 3px;
  margin-bottom: 20px;
}
.single-choose .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 3px;
}
.single-choose .icon::before {
  content: "";
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
  right: 0;
  width: 90px;
  height: 90px;
  background-color: #6407AD;
  border-radius: 50%;
  z-index: -1;
}
.single-choose .icon.icon-bg-ff6f31::before {
  background-color: #ff6f31;
}
.single-choose .icon.icon-bg-eeba01::before {
  background-color: #eeba01;
}
.single-choose .icon.icon-bg-4089ce::before {
  background-color: #4089ce;
}
.single-choose h3 {
  font-weight: 600;
  font-size: 20px;
  padding: 0 10px;
  margin-bottom: 0;
}

.choose-img {
  position: relative;
}
.choose-img .choose-shape-2 {
  position: absolute;
  top: 50px;
  left: -150px;
  right: 0;
  margin: auto;
}

/* Choose Area Style
============================================*/
.free-estimate-area {
  position: relative;
  z-index: 1;
}
.free-estimate-area .shape {
  position: absolute;
}
.free-estimate-area .shape.shape-1 {
  top: 140px;
  left: 230px;
}
.free-estimate-area .shape.shape-2 {
  bottom: 115px;
  right: 160px;
}

.free-estimate-img {
  position: absolute;
  bottom: 0;
  margin-right: 50px;
  left: 250px;
  z-index: -1;
}

.free-estimate-content {
  max-width: 650px;
}
.free-estimate-content .top-title {
  color: var(--optional-color);
  font-weight: 500;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}
.free-estimate-content h2 {
  font-weight: 700;
  font-size: 44px;
  line-height: 55px;
  color: var(--white-color);
  margin-bottom: 30px;
}
.free-estimate-content .nav-tabs {
  margin-bottom: 30px;
  border: none;
}
.free-estimate-content .nav-tabs .nav-item .nav-link {
  border: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  color: var(--white-color);
  padding: 11px 30px;
  font-weight: 500;
  font-size: 20px;
}
.free-estimate-content .nav-tabs .nav-item .nav-link.active {
  background-color: var(--optional-color);
}
.free-estimate-content .form-group {
  margin-bottom: 15px;
}
.free-estimate-content .form-group:last-child {
  margin-bottom: 0;
}
.free-estimate-content .form-group .form-control {
  color: var(--white-color);
  background-color: #1F234A;
  border-radius: 3px;
  height: 48px;
}
.free-estimate-content .form-group .form-control.form-select {
  background-image: url(../images/insurance-company/down-icon.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 12px 12px;
  right: 10px;
}
.free-estimate-content .form-group .form-control::-moz-placeholder {
  color: #ECECEC;
}
.free-estimate-content .form-group .form-control::placeholder {
  color: #ECECEC;
}
.free-estimate-content .range-slider {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
.free-estimate-content .range-slider p {
  font-weight: 500;
  color: var(--white-color);
  margin-bottom: 10px;
}
.free-estimate-content .range-slider .dolor {
  text-align: right;
  color: var(--white-color);
  font-weight: 500;
  margin-bottom: 10px;
}
.free-estimate-content .range-slider .dolor p {
  margin-bottom: 0;
  display: inline-block;
}
.free-estimate-content .range-slider__range {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #d7dcdf;
  outline: none;
  padding: 0;
  margin: 0;
}
.free-estimate-content .range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--optional-color);
  border: 2px solid #000531;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}

/* Process Area Style
============================================*/
.process-area {
  position: relative;
}
.process-area .shape {
  position: absolute;
}
.process-area .shape.shape-1 {
  left: 160px;
  top: 170px;
}
.process-area .shape.shape-2 {
  top: 170px;
  right: 250px;
}

.single-process {
  position: relative;
  margin-bottom: 30px;
}
.single-process .process-content {
  max-width: 309px;
  position: absolute;
  top: 50%;
  left: 135px;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
}
.single-process .process-content .icon {
  margin-bottom: 28px;
}
.single-process .process-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Testimonials Area Style
============================================*/
.testimonials-area {
  position: relative;
  z-index: 1;
}
.testimonials-area .testimonials-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.single-testimonials {
  background: var(--white-color);
  box-shadow: 0px 0px 30px rgba(2, 176, 193, 0.05);
  border-radius: 10px;
  padding: 55px 40px;
  position: relative;
}
.single-testimonials .quat-icon {
  position: absolute;
  top: 0;
  right: 30px;
}
.single-testimonials .avatar {
  border-radius: 5px;
}
.single-testimonials ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  position: absolute;
  top: 80px;
  right: 30px;
}
.single-testimonials ul li {
  display: inline-block;
}
.single-testimonials ul li i {
  color: #FFB321;
  font-size: 20px;
}
.single-testimonials h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 5px;
}
.single-testimonials p {
  margin-top: 22px;
  color: var(--heading-color);
}

.testimonials-slide.owl-theme .owl-nav {
  margin-top: 0 !important;
  position: absolute;
  top: -110px;
  right: -5px;
}
.testimonials-slide.owl-theme .owl-nav .owl-prev, .testimonials-slide.owl-theme .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(64, 137, 206, 0.07);
  transform: matrix(-1, 0, 0, 1, 0, 0);
  border-radius: 50%;
  transition: var(--transition);
  margin: 0 5px;
}
.testimonials-slide.owl-theme .owl-nav .owl-prev img, .testimonials-slide.owl-theme .owl-nav .owl-next img {
  position: relative;
  left: 0px;
  transition: var(--transition);
  top: -0.5px;
}
.testimonials-slide.owl-theme .owl-nav .owl-prev:hover, .testimonials-slide.owl-theme .owl-nav .owl-next:hover {
  background-color: var(--optional-color);
}
.testimonials-slide.owl-theme .owl-nav .owl-prev:hover img, .testimonials-slide.owl-theme .owl-nav .owl-next:hover img {
  filter: brightness(100);
}
.testimonials-slide.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -66px;
}
.testimonials-slide.owl-theme .owl-nav .owl-next img {
  left: auto;
  right: 3px;
  top: -0.5px;
}
.testimonials-slide.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}

/* Newsletter Area Style
============================================*/
.newsletter-area {
  background-image: url(../../assets/images/insurance-company/newsletter-bg-shape.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.newsletter-content h2 {
  font-size: 44px;
  line-height: 54px;
  color: var(--white-color);
  margin-bottom: 0;
}

.newsletter-form {
  position: relative;
}
.newsletter-form .form-control {
  height: 64px;
  background: var(--white-color);
  border-radius: 5px;
  border: 1px solid var(--white-color);
  color: var(--heading-color) !important;
  font-size: 15px;
}
.newsletter-form .form-control::-moz-placeholder {
  color: #939191;
  font-size: 15px;
}
.newsletter-form .form-control::placeholder {
  color: #939191;
  font-size: 15px;
}
.newsletter-form .default-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 23px 32px;
  border: none;
}

.validation-danger {
  color: #ff0000;
  font-size: 15px;
}

/* Team Area Style
============================================*/
.single-team .team-img {
  position: relative;
  margin-bottom: 10px;
  z-index: 1;
}
.single-team .team-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 5, 49, 0.46);
  border-radius: 5px;
  opacity: 0;
  transition: var(--transition);
}
.single-team .team-img img {
  border-radius: 5px;
}
.single-team .team-img ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  position: absolute;
  top: 16px;
  left: 16px;
  opacity: 0;
  transition: var(--transition);
}
.single-team .team-img ul li {
  margin-bottom: 10px;
}
.single-team .team-img ul li:last-child {
  margin-bottom: 0;
}
.single-team .team-img ul li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: var(--white-color);
  display: inline-block;
  color: #02B0C1;
  transition: var(--transition);
  border-radius: 50px;
}
.single-team .team-img ul li a:hover {
  background-color: #02B0C1;
  color: var(--white-color);
  transform: translateY(-2px);
}
.single-team .team-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
}
.single-team:hover .team-img::before {
  opacity: 1;
}
.single-team:hover .team-img ul {
  opacity: 1;
}

.team-slide.owl-theme .owl-nav {
  margin-top: 0 !important;
}
.team-slide.owl-theme .owl-nav .owl-prev, .team-slide.owl-theme .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(64, 137, 206, 0.07);
  transform: matrix(-1, 0, 0, 1, 0, 0);
  border-radius: 50%;
  transition: var(--transition);
  margin: 0;
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
}
.team-slide.owl-theme .owl-nav .owl-prev img, .team-slide.owl-theme .owl-nav .owl-next img {
  position: relative;
  top: -1px;
  left: -1px;
  transition: var(--transition);
}
.team-slide.owl-theme .owl-nav .owl-prev:hover, .team-slide.owl-theme .owl-nav .owl-next:hover {
  background: var(--optional-color);
}
.team-slide.owl-theme .owl-nav .owl-prev:hover img, .team-slide.owl-theme .owl-nav .owl-next:hover img {
  filter: brightness(100);
}
.team-slide.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -80px;
}
.team-slide.owl-theme .owl-nav .owl-next img {
  left: auto;
  right: -2px;
}

/* Blog Area Style
============================================*/
.blog-area {
  position: relative;
  z-index: 1;
}
.blog-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 375px;
  background-color: #F5F5F5;
  z-index: -1;
}
.blog-area .blog-shape {
  position: absolute;
  top: 150px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.single-blog {
  background: var(--white-color);
  box-shadow: 0px 0px 30px rgba(85, 85, 85, 0.09);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 8px;
}
.single-blog .blog-img {
  position: relative;
}
.single-blog .blog-img img {
  border-radius: 10px;
}
.single-blog .blog-content {
  padding: 30px 20px;
}
.single-blog .blog-content ul {
  padding-left: 0;
  margin-bottom: 13px;
  list-style-type: none;
  line-height: 1;
}
.single-blog .blog-content ul li {
  display: inline-block;
  margin-right: 10px;
  padding-right: 15px;
  position: relative;
  color: #696E77;
}
.single-blog .blog-content ul li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  transform: rotate(25deg);
  background-color: var(--body-color);
}
.single-blog .blog-content ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.single-blog .blog-content ul li:last-child::before {
  display: none;
}
.single-blog .blog-content ul li a {
  color: #696E77;
}
.single-blog .blog-content ul li a:hover {
  color: var(--main-color);
}
.single-blog .blog-content h3 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 0;
}
.single-blog .blog-content h3 a {
  color: var(--heading-color);
}
.single-blog .blog-content .default-btn {
  padding: 21px 32px;
  border: 1px solid rgba(2, 176, 193, 0.3);
  background-color: transparent;
  color: var(--main-color);
  margin-top: 20px;
  display: inline-flex;
  font-weight: 600;
}
.single-blog .blog-content .default-btn:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}

/* footer Area Style
============================================*/
.footer-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.footer-area .shape {
  position: absolute;
}
.footer-area .shape.shape-1 {
  top: 50%;
  left: 111px;
  transform: translateY(-50%);
}
.footer-area .shape.shape-2 {
  top: 128px;
  right: 185px;
}

.single-footer {
  padding-top: 100px;
  padding-bottom: 100px;
}
.single-footer .footer-logo {
  margin-bottom: 15px;
}
.single-footer p {
  margin-bottom: 25px;
  color: #D3D3D3;
}
.single-footer h3 {
  font-size: 24px;
  margin-bottom: 26px;
  color: var(--white-color);
}
.single-footer .social-link {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.single-footer .social-link li {
  display: inline-block;
  margin-right: 10px;
}
.single-footer .social-link li:last-child {
  margin-right: 0;
}
.single-footer .social-link li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background: rgba(242, 236, 253, 0.1);
  color: var(--main-color);
  border-radius: 50px;
  font-size: 20px;
}
.single-footer .social-link li a:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}
.single-footer .import-link {
  padding-left: 0;
  list-style: none;
}
.single-footer .import-link li {
  margin-bottom: 15px;
}
.single-footer .import-link li:last-child {
  margin-bottom: 0;
}
.single-footer .import-link li a {
  color: #D3D3D3;
}
.single-footer .import-link li a:hover {
  color: var(--main-color);
}
.single-footer .info-link {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.single-footer .info-link li {
  margin-bottom: 30px;
  color: #D3D3D3;
}
.single-footer .info-link li h4 {
  color: var(--white-color);
}
.single-footer .info-link li a {
  color: #D3D3D3;
}
.single-footer .info-link li a:hover {
  color: var(--main-color);
}
.single-footer .info-link li:last-child {
  margin-bottom: 0;
}
.single-footer .info-link li .icon {
  background: #0F143D;
  width: 41px;
  height: 41px;
  line-height: 41px;
  text-align: center;
  border-radius: 50px;
  transition: var(--transition);
}
.single-footer .info-link li .icon .f-call-icon {
  position: relative;
  top: -1px;
}
.single-footer .info-link li .icon .f-mail-icon {
  position: relative;
  top: -3px;
}
.single-footer .info-link li .icon .f-location-icon {
  position: relative;
  left: 1px;
}
.single-footer .info-link li h4 {
  font-weight: 500;
  font-size: 18px;
  font-family: var(--body-font-family);
  margin-bottom: 4px;
}
.single-footer .info-link li .info {
  margin-left: 8px;
}
.single-footer .info-link li:hover .icon {
  background: rgba(255, 255, 255, 0.06);
}
.single-footer .img-gallery {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  margin-right: -5px;
  margin-bottom: -10px;
}
.single-footer .img-gallery li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
}
.single-footer.ml-30 {
  margin-left: 30px;
}
.single-footer.ml-50 {
  margin-left: 50px;
}
.single-footer.pl-60 {
  padding-left: 60px;
}
.single-footer.bg-color-overly {
  position: relative;
  z-index: 1;
}
.single-footer.bg-color-overly::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 800px;
  height: 100%;
  background-color: #02083B;
  z-index: -1;
}

.copy-right-content {
  background-color: #02083B;
  text-align: center;
  padding-top: 33px;
  padding-bottom: 33px;
}
.copy-right-content p {
  color: #D3D3D3;
}
.copy-right-content p span {
  color: var(--main-color);
  font-weight: 700;
  font-size: 18px;
}
.copy-right-content p a {
  color: var(--main-color);
  font-weight: 700;
  font-size: 18px;
}

/* Demos Area Style
============================================*/
.all-demos-area .modal {
  --bs-modal-width: 1320px;
  text-align: center;
  background-color: var(--heading-color);
}
.all-demos-area .modal .btn-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.all-demos-area .modal-header h1 {
  font-size: 35px;
}
.all-demos-area .single-demos {
  margin-bottom: 50px;
  text-decoration: none;
}
.all-demos-area .single-demos img {
  border-radius: 10px 10px 0 0;
  box-shadow: var(--box-shadow);
}
.all-demos-area .single-demos h3 {
  font-size: 25px;
  padding: 30px;
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  border-radius: 0 0 10px 10px;
  transition: var(--transition);
}
.all-demos-area .single-demos:hover h3 {
  background-color: var(--main-color);
  color: var(--white-color);
}
.all-demos-area .modal-body {
  padding: 30px;
  padding-bottom: 0;
}
.all-demos-area .btn-close {
  background-image: url(../../assets/images/others/close.png);
  opacity: 1;
}

.demo-btn {
  position: fixed;
  top: calc(50% - 55px);
  left: 0;
  border-radius: 0 5px 5px 0;
  padding: 10px 15px;
  border: none;
}
.demo-btn span {
  writing-mode: vertical-rl;
}
.demo-btn::before {
  border-radius: 0 5px 5px 0;
}

/* Responsive Area Style
============================================*/
/* Max width 767px */
@media only screen and (max-width: 767px) {
  :root {
    --font-size: 15px;
  }
  .ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pt-100 {
    padding-top: 50px;
  }
  .pb-100 {
    padding-bottom: 50px;
  }
  .pt-70 {
    padding-top: 20px;
  }
  .pb-70 {
    padding-bottom: 20px;
  }
  body {
    font-size: var(--font-size);
  }
  .default-btn {
    padding: 18px 20px;
    font-size: 15px;
  }
  .read-more {
    font-size: 15px;
  }
  .section-title {
    margin-bottom: 30px;
    margin-top: -5px;
  }
  .section-title.mb-28 {
    margin-bottom: 16px;
  }
  .section-title .top-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .section-title h2 {
    font-size: 25px;
    line-height: 35px;
  }
  .shape {
    display: none;
  }
  /* Header Content */
  .top-area {
    display: none;
  }
  /* Navbar Content */
  .navbar .container-fluid {
    max-width: 540px;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
  }
  .navbar .nav-item .nav-link {
    font-size: 16px;
    text-align: center;
  }
  .navbar .others-option {
    position: absolute;
    top: 0;
    right: 0;
  }
  .navbar .others-option ul li:last-child {
    display: none;
  }
  .navbar .others-option .option-item {
    top: 18px;
    right: 50px;
  }
  .navbar .others-option .option-item .search-overlay.search-popup {
    right: -63px;
  }
  .demo-btn {
    padding: 18px 10px;
  }
  /* Banner Area */
  .banner-area {
    padding-top: 117px;
    padding-bottom: 50px;
  }
  .banner-area .container-fluid {
    max-width: 540px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .banner-area .p-0 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .banner-content {
    margin-bottom: 30px;
  }
  .banner-content.ptb-155 {
    padding: 0;
  }
  .banner-content span {
    font-size: 14px;
  }
  .banner-content h1 {
    line-height: normal;
    font-size: 30px;
  }
  .banner-content p {
    margin-bottom: 25px;
  }
  .banner-bg-img {
    height: 210px;
    background-size: 100%;
  }
  .banner-bg-img::before {
    display: none;
  }
  /* Features Area */
  .features-bg-wrap {
    margin-top: 50px;
    padding: 20px;
  }
  .features-bg-wrap .col-lg-4:last-child .single-features {
    margin-bottom: 0;
  }
  .features-bg-wrap .col-lg-4:last-child .single-features::before {
    display: none;
  }
  .single-features {
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
  }
  .single-features::before {
    display: none;
  }
  .single-features h3 {
    font-size: 18px;
    line-height: 28px;
  }
  /* About Area */
  .about-us-area::before {
    display: none;
  }
  .about-img .about-shape {
    display: none;
  }
  .about-content {
    margin-left: 0;
    margin-bottom: 50px;
  }
  .about-content .top-title {
    font-size: 14px;
  }
  .about-content h2 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .about-content .quality-list li h3 {
    margin-left: 12px;
    font-size: 16px;
  }
  .about-content .btn-call {
    margin-top: 20px;
  }
  .about-content .btn-call li {
    display: block !important;
  }
  .about-content .btn-call li .icon {
    margin-bottom: 5px;
  }
  .about-content .btn-call li .call {
    margin-left: 0;
  }
  /* Counter Area */
  .single-counter {
    padding: 20px;
  }
  .single-counter h2 {
    font-size: 40px;
  }
  .single-counter .title {
    font-size: 16px;
  }
  /* Video Area */
  .video-area {
    padding-top: 50px;
  }
  .video-area::before {
    display: none;
  }
  .video-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  /* Services Area */
  .single-services {
    padding: 20px;
  }
  .single-services .icon {
    margin-bottom: 14px;
  }
  .single-services h3 {
    font-size: 20px;
  }
  .services-slide.owl-theme .owl-nav {
    margin-bottom: 30px;
  }
  .services-slide.owl-theme .owl-nav .owl-next, .services-slide.owl-theme .owl-nav .owl-prev {
    position: unset;
    transform: unset;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
  }
  /* Choose Us Area */
  .choose-us-content {
    margin-left: 0;
    margin-bottom: 50px;
  }
  .choose-us-content .top-title {
    font-size: 14px;
  }
  .choose-us-content h2 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .single-choose h3 {
    font-size: 18px;
  }
  /* Estimate Area */
  .free-estimate-content {
    margin-left: 0;
  }
  .free-estimate-content .top-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .free-estimate-content h2 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .free-estimate-content .nav-tabs .nav-item .nav-link {
    padding: 6px;
    font-size: 15px;
  }
  .free-estimate-img {
    position: unset;
    text-align: center;
    padding-top: 50px;
  }
  /* Process Area */
  .single-process .process-content {
    left: 106px;
  }
  .single-process .process-content h3 {
    font-size: 20px;
  }
  /* Testimonials Area */
  .testimonials-slide.owl-theme .owl-nav {
    position: unset;
    transform: unset;
    margin-top: 30px !important;
  }
  .single-testimonials {
    padding: 20px;
  }
  .single-testimonials h3 {
    font-size: 18px;
  }
  .single-testimonials .quat-icon {
    display: none !important;
    margin-bottom: 20px;
  }
  .single-testimonials ul {
    top: 90px;
    right: 20px;
  }
  /* Newsletter Area */
  .newsletter-content h2 {
    font-size: 25px;
    line-height: 33px;
    margin-bottom: 30px;
  }
  .newsletter-form .form-control {
    height: 50px;
  }
  .newsletter-form .default-btn {
    padding: 16px 10px;
  }
  /* Team Area */
  .single-team .team-info h3 {
    font-size: 20px;
  }
  .single-team .team-img ul {
    opacity: 1;
    top: 40px;
  }
  /* Blog Area */
  .blog-area .section-title {
    margin-bottom: 10px;
  }
  .blog-area .d-flex {
    display: block !important;
    margin-bottom: 30px;
  }
  .single-blog .blog-content {
    padding: 20px 10px;
  }
  .single-blog .blog-content h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .single-blog .blog-content ul li {
    font-size: 14px;
  }
  .single-blog .blog-content .default-btn {
    padding: 16px 25px;
  }
  /* Footer Area */
  .footer-area {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .single-footer {
    padding: 0;
    margin-bottom: 30px;
  }
  .single-footer.ml-50 {
    margin-left: 0;
  }
  .single-footer.ml-30 {
    margin-left: 0;
  }
  .single-footer h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .single-footer.pl-60 {
    padding-left: 0;
  }
  .single-footer.bg-color-overly::before {
    display: none;
  }
  .team-slide.owl-theme .owl-nav {
    margin-top: 30px !important;
    margin-bottom: 30px;
  }
  .team-slide.owl-theme .owl-nav .owl-next, .team-slide.owl-theme .owl-nav .owl-prev {
    position: unset;
    transform: unset;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
  }
  /* All Demos Content */
  .all-demos-area .modal-header h1 {
    font-size: 25px;
    text-align: left;
  }
  .all-demos-area .single-demos h3 {
    padding: 20px;
    font-size: 20px;
  }
  .all-demos-area .modal-body {
    padding: 20px;
  }
  .all-demos-area .modal .btn-close {
    background-color: #000;
    top: 33px;
    right: 15px;
    z-index: 99;
  }
}
/* Min width 576px to Max width 767px */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-content .btn-call li {
    display: flex !important;
  }
  .about-content .btn-call li .icon {
    margin-bottom: 0;
  }
  .about-content .btn-call li .call {
    margin-left: 13px;
  }
  .free-estimate-content .nav-tabs .nav-item .nav-link {
    padding: 6px 20px;
    font-size: 16px;
  }
  .process-shape-1 {
    display: none;
  }
  .single-process .process-content {
    position: unset;
    transform: unset;
  }
  .single-process .process-content .icon {
    margin-bottom: 20px;
  }
}
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  :root {
    --font-size: 15px;
  }
  .ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pt-100 {
    padding-top: 50px;
  }
  .pb-100 {
    padding-bottom: 50px;
  }
  .pt-70 {
    padding-top: 20px;
  }
  .pb-70 {
    padding-bottom: 20px;
  }
  body {
    font-size: var(--font-size);
  }
  .default-btn {
    padding: 18px 20px;
    font-size: 15px;
  }
  .read-more {
    font-size: 15px;
  }
  .section-title {
    margin-bottom: 30px;
    margin-top: -5px;
  }
  .section-title.mb-28 {
    margin-bottom: 16px;
  }
  .section-title .top-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .section-title h2 {
    font-size: 30px;
    line-height: 35px;
  }
  .shape {
    display: none;
  }
  /* Header Content */
  .top-area {
    display: none;
  }
  /* Navbar Content */
  .navbar .navbar-brand {
    margin-right: 5px;
  }
  .navbar .container-fluid {
    max-width: 720px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .navbar .navbar-nav {
    margin-bottom: 0 !important;
  }
  .navbar .nav-item .nav-link {
    padding: 15px 11px !important;
    font-size: 16px !important;
  }
  .navbar .others-option {
    margin-left: 10px !important;
  }
  .navbar .others-option ul li {
    margin-right: 0;
  }
  .navbar .others-option ul li .default-btn {
    padding: 12px 8px;
    font-size: 13px;
  }
  .navbar .others-option ul li:last-child {
    display: none;
  }
  .navbar .others-option .option-item {
    top: 0;
  }
  .demo-btn {
    padding: 18px 10px;
  }
  /* Banner Area */
  .banner-area {
    padding-top: 117px;
    padding-bottom: 50px;
  }
  .banner-area .container-fluid {
    max-width: 720px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .banner-area .p-0 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .banner-content {
    margin-bottom: 30px;
  }
  .banner-content.ptb-155 {
    padding: 0;
  }
  .banner-content span {
    font-size: 14px;
  }
  .banner-content h1 {
    line-height: normal;
    font-size: 35px;
  }
  .banner-content p {
    margin-bottom: 25px;
  }
  .banner-bg-img {
    height: 420px;
    background-size: 100%;
  }
  .banner-bg-img::before {
    display: none;
  }
  /* Features Area */
  .features-bg-wrap {
    margin-top: 50px;
    padding: 20px;
  }
  .features-bg-wrap .col-lg-4:last-child .single-features {
    margin-bottom: 0;
  }
  .features-bg-wrap .col-lg-4:last-child .single-features::before {
    display: none;
  }
  .single-features {
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
  }
  .single-features::before {
    display: none;
  }
  .single-features h3 {
    font-size: 18px;
    line-height: 28px;
  }
  /* About Area */
  .about-us-area::before {
    display: none;
  }
  .about-img .about-shape {
    display: none;
  }
  .about-content {
    margin-left: 0;
    margin-bottom: 50px;
  }
  .about-content .top-title {
    font-size: 14px;
  }
  .about-content h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .about-content .quality-list li h3 {
    margin-left: 12px;
    font-size: 16px;
  }
  /* Counter Area */
  .single-counter {
    padding: 20px;
  }
  .single-counter h2 {
    font-size: 40px;
  }
  .single-counter .title {
    font-size: 16px;
  }
  /* Video Area */
  .video-area {
    padding-top: 50px;
  }
  .video-area::before {
    display: none;
  }
  .video-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  /* Services Area */
  .single-services {
    padding: 20px;
  }
  .single-services .icon {
    margin-bottom: 14px;
  }
  .single-services h3 {
    font-size: 20px;
  }
  .services-slide.owl-theme .owl-nav {
    margin-bottom: 30px;
  }
  .services-slide.owl-theme .owl-nav .owl-next, .services-slide.owl-theme .owl-nav .owl-prev {
    position: unset;
    transform: unset;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
  }
  /* Choose Us Area */
  .choose-us-content {
    margin-left: 0;
    margin-bottom: 50px;
  }
  .choose-us-content .top-title {
    font-size: 14px;
  }
  .choose-us-content h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .single-choose h3 {
    font-size: 18px;
  }
  /* Estimate Area */
  .free-estimate-content {
    margin-left: 0;
    max-width: 100%;
  }
  .free-estimate-content .top-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .free-estimate-content h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .free-estimate-content .nav-tabs .nav-item .nav-link {
    padding: 10px 30px;
    font-size: 16px;
  }
  .free-estimate-img {
    position: unset;
    text-align: center;
    padding-top: 50px;
  }
  /* Process Area */
  .single-process .process-content {
    left: 106px;
  }
  .single-process .process-content h3 {
    font-size: 20px;
  }
  /* Testimonials Area */
  .testimonials-area .testimonials-shape {
    display: none;
  }
  .testimonials-slide.owl-theme .owl-nav {
    position: unset;
    transform: unset;
    margin-top: 30px !important;
  }
  .single-testimonials {
    padding: 20px;
  }
  .single-testimonials h3 {
    font-size: 18px;
  }
  .single-testimonials .quat-icon {
    display: none !important;
    margin-bottom: 20px;
  }
  .single-testimonials ul {
    top: 90px;
    right: 20px;
  }
  /* Newsletter Area */
  .newsletter-content h2 {
    font-size: 30px;
    line-height: 33px;
    margin-bottom: 30px;
  }
  .newsletter-form .form-control {
    height: 50px;
  }
  .newsletter-form .default-btn {
    padding: 16px 10px;
  }
  /* Team Area */
  .single-team .team-info h3 {
    font-size: 20px;
  }
  /* Blog Area */
  .single-blog .blog-content {
    padding: 20px 10px;
  }
  .single-blog .blog-content h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .single-blog .blog-content ul li {
    font-size: 14px;
  }
  .single-blog .blog-content .default-btn {
    padding: 16px 25px;
  }
  /* Footer Area */
  .footer-area {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .single-footer {
    padding: 0;
    margin-bottom: 30px;
  }
  .single-footer.ml-50 {
    margin-left: 0;
  }
  .single-footer.ml-30 {
    margin-left: 0;
  }
  .single-footer h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .single-footer.pl-60 {
    padding-left: 0;
  }
  .single-footer.bg-color-overly::before {
    display: none;
  }
  .team-slide.owl-theme .owl-nav {
    margin-top: 30px !important;
    margin-bottom: 30px;
  }
  .team-slide.owl-theme .owl-nav .owl-next, .team-slide.owl-theme .owl-nav .owl-prev {
    position: unset;
    transform: unset;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
  }
  /* All Demos Content */
  .all-demos-area .modal-header h1 {
    font-size: 30px;
    text-align: left;
  }
  .all-demos-area .single-demos h3 {
    padding: 20px;
    font-size: 20px;
  }
  .all-demos-area .modal-body {
    padding: 20px;
  }
  .all-demos-area .modal .btn-close {
    background-color: #000;
    top: 33px;
    right: 15px;
    z-index: 99;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Navbar Area */
  .navbar .nav-item .nav-link {
    font-size: 16px;
    padding: 34px 15px;
  }
  .navbar .others-option .default-btn {
    font-size: 15px;
    padding: 21px 19px;
  }
  /* Banner Area */
  .banner-area .p-0 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .banner-content h1 {
    font-size: 52px;
    line-height: 65px;
  }
  .banner-bg-img::before {
    left: -185px;
  }
  /* Features Area */
  .single-features {
    padding-right: 0;
    margin-right: 0;
  }
  .single-features::before {
    display: none;
  }
  .single-features h3 {
    font-size: 22px;
  }
  .features-bg-wrap {
    padding: 40px;
  }
  /* About Area */
  .about-content {
    margin-left: 1px;
    margin-bottom: 80px;
  }
  /* Services Area */
  .single-services {
    padding: 20px;
  }
  .services-slide.owl-theme .owl-nav .owl-prev {
    left: -20px;
  }
  .services-slide.owl-theme .owl-nav .owl-next {
    right: -20px;
  }
  /* Free Estimate Area */
  .free-estimate-img {
    left: 0;
  }
  .free-estimate-content .nav-tabs .nav-item .nav-link {
    font-size: 18px;
    padding: 10px 14px;
  }
  .single-process .process-content {
    left: 90px;
  }
  /* Testimonials Area */
  .testimonials-area .testimonials-shape {
    display: none;
  }
  .single-testimonials {
    padding: 30px;
  }
  /* Team Area */
  .team-slide.owl-theme .owl-nav .owl-prev {
    left: -20px;
  }
  .team-slide.owl-theme .owl-nav .owl-next {
    right: -20px;
  }
  .single-team .team-info h3 {
    font-size: 20px;
  }
  /* Blog Area */
  .single-blog .blog-content h3 {
    font-size: 20px;
  }
  .single-footer.pl-60 {
    padding-left: 0;
  }
  .single-footer::before {
    display: none;
  }
  .single-footer.ml-30 {
    margin-left: 0;
  }
  .single-counter {
    padding: 15px;
  }
  .single-counter h2 {
    font-size: 55px;
  }
  .single-counter .title {
    font-size: 15px;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  /* Banner Area */
  .banner-content {
    max-width: 470px;
  }
  .banner-content h1 {
    font-size: 70px;
    line-height: 85px;
  }
  /* Features Area */
  .single-features {
    padding-right: 0;
    margin-right: 0;
  }
  .single-features::before {
    display: none;
  }
  /* Footer Area */
  .single-footer .img-gallery li img {
    max-width: 70px;
  }
  /* Services Area */
  .services-slide.owl-theme .owl-nav .owl-prev {
    left: -35px;
  }
  .services-slide.owl-theme .owl-nav .owl-next {
    right: -35px;
  }
  /* Team Area */
  .team-slide.owl-theme .owl-nav .owl-prev {
    left: -35px;
  }
  .team-slide.owl-theme .owl-nav .owl-next {
    right: -35px;
  }
  .free-estimate-img {
    left: 0;
  }
  .single-process .process-content {
    left: 118px;
  }
}
/* Min width 1400px to Max width 1550px */
@media only screen and (min-width: 1400px) and (max-width: 1550px) {
  .banner-content {
    max-width: 552px;
    margin-left: auto;
  }
  .banner-content h1 {
    font-size: 84px;
  }
  /* Services Area */
  .services-slide.owl-theme .owl-nav .owl-prev {
    left: -40px;
  }
  .services-slide.owl-theme .owl-nav .owl-next {
    right: -40px;
  }
  /* Team Area */
  .team-slide.owl-theme .owl-nav .owl-prev {
    left: -40px;
  }
  .team-slide.owl-theme .owl-nav .owl-next {
    right: -40px;
  }
  .free-estimate-img {
    left: 0;
  }
}
/* Only Mobil Menu Max width 991px */
@media only screen and (max-width: 991px) {
  .header-area {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 1010;
  }
  .navbar .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
  .navbar .nav-item .nav-link {
    padding: 15px 0;
  }
  .navbar .others-option {
    margin-left: 0;
  }
  .navbar .others-option .default-btn {
    width: auto;
    display: inline-block;
  }
  .navbar-toggler {
    line-height: 1;
    padding: 0;
    border-radius: 0;
  }
  .navbar-toggler.menu-icon {
    width: 40px;
    padding: 4px 0;
    cursor: pointer;
    position: relative;
    box-shadow: none;
    border: none;
  }
  .navbar-toggler.menu-icon span {
    width: 100%;
    height: 4px;
    display: block;
    background-color: var(--main-color);
    margin: 6px 0;
    transition: 0.5s;
  }
  .navbar-toggler.menu-icon.active span {
    position: absolute;
    width: calc(100% - 16px);
    top: calc(50% - 8px);
  }
  .navbar-toggler.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg);
  }
  .navbar-toggler.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .navbar-toggler.menu-icon.active span:nth-child(2) {
    transform: rotate(-45deg);
    display: none;
  }
}/*# sourceMappingURL=insurance-company.css.map */