﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #3c4458 !important;
}

a {
  color: #62d438;
}
a.disabled{
  color: #62d438 !important;
  pointer-events: none;
}
a:hover {
  color: #303466 !important;
  text-decoration: none;
}


h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}
 h1 {
   font-size: 48px;
   font-weight: 700;
 }
 
 h2 {
   font-size: 34px;
 }
 
 h3 {
   font-size: 30px;
 }
 
 h4 {
   font-size: 24px;
   font-weight: 700;
 }
 
 h5 {
   font-size: 24px;
 }
 
 h6 {
   font-size: 20px;
   font-weight: 700;
 }
 
 p {
   font-size: 14px;
}
a {
	font-size: 18px;
}
@media (max-width: 1600px) {
    h1 {
   font-size: 40px;
   line-height: 40px;
 }
 h2 {
   font-size: 25px;
 }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  background: #303466 !important;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #748ec6 !important;
  transition: background 0.2s ease-in-out;
}
/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.vk-btn {
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    display: inline-block;
	border: 0;
	font-weight: 600;
	cursor: pointer;
}
.vk-btn.blue{
    background: #303466;
	color: #fff;
}
.vk-btn.blue:hover{
    background: #62d438;
	color: #fff;
}
.vk-btn.green{
    background: #62d438;
	color: #fff;
}
.vk-btn.green:hover{
    background: #303466;
	color: #fff;
}
.vk-btn.light{
    background: #f0f2f5;
	color: #62d438;
}
.vk-btn.light:hover{
    background: #303466;
	color: #fff;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  font-size: 14px;
  transition: all 0.5s;
}
#topbar .container{
	border-bottom: 1px solid #d8d8d8;
	padding: 8.7px 15px;
}
#topbar a{
  font-size: 14px;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #3c4458;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #62d438;
}

#topbar .contact-info i {
  color: #62d438;
  padding-right: 4px;
  margin-left: 15px;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}
#topbar .account-links a img, .breadcrumbs ol li a img, .mobl-top-items li a img  {
    height: 20px;
    margin-right: 10px;
}
#topbar .account-links a {
  color: #3c4458;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .account-links a:hover {
  color: #62d438;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
}
#header.header-transparent, #topbar.header-transparent {
    background: transparent;
}
#header.header-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	  top: 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#header .logo a {
  color: #2c4964;
}

@media (max-width: 992px) {
  #header {
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 15px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #3c4458;
  font-size: 16px;
  transition: 0.3s;
  padding: 5px 2px;
  text-transform: uppercase;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #62d438 !important;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #3c4458 !important;
  border: none;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #62d438;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}
.mobl-top-items {
    display: none;
}
@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}
@media (max-width: 991px) {
.mobl-top-items {
    display: block;
}
}
/* Claim Button */
.claim-btn {
  margin-left: 25px;
}

@media (max-width: 830px) {
.claim-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
}
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 45px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}
.mobile-nav-active .mobile-nav-toggle{
	top: 15px;
}

.mobile-nav-toggle i {
  color: #303466;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #303466;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #62d438;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(28, 47, 65, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
@media (max-width: 575px) {
#header .logo img {
	height: 50px;
}
.mobile-nav-toggle{
	top: 30px;
	padding:0;
}
.claim-btn {
    margin: 0 45px 0 0;
    font-size: 14px;
}
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 50px 0 100px 0;
  background-image: url('../img/background/banner.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  margin-top: 40px;
}

#hero h1 {
  margin: 0 0 10px 0;
  line-height: 56px;
  color: #303466;
}

#hero h2 {
  margin-bottom: 50px;
  font-size: 30px;
  font-weight: 300;
}
#hero .order-lg-2 {
    margin-top: 130px;
}
#hero .order-lg-2 .left-icons {
    padding: 0;
}
#hero .order-lg-2 .right-icons {
    padding: 0 0 0 5px;
}
#hero .order-lg-2 .serv-icon {
    background: #303466;
	margin-bottom: 5px;
}
#hero .order-lg-2 .serv-icon a{
	cursor: pointer;
}
#hero .order-lg-2 .serv-txt {
    color: #fff;
    margin-left: 15px;
	font-size: 18px;
}
#hero .order-lg-2 .btn-sec {
    text-align: center;
    margin-top: 20px;
}
#hero .order-lg-2 .btn-sec h4 {
	font-weight: 300;
}
#hero .order-lg-2 .btn-sec a {
    color: #62d438;
	cursor: pointer;
}
#hero .order-lg-1 .man-text {
    position: absolute;
    bottom: -40px;
    text-align: center;
    width: 100%;
}
@media (max-width: 1600px) {
#hero {
  background-image: url('../img/background/banner-1600.jpg');
  background-size: 100%;
  padding-bottom:120px;
}
#hero .order-lg-1 .man-text {
    bottom: 35px;
}
#hero h1 {
    line-height: 40px;
}
#hero h2 {
    font-size: 25px;
    margin-bottom: 30px;
}
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }
  #hero .serv-icon {
    text-align: left;
}
  #hero {
  background-image: url('../img/background/banner-mobile.png');
background-position: top 10% center;
    margin-top: 110px;
    background-color: #fafafa;
background-size: auto;
padding-bottom: 50px;
}
#hero .order-lg-2 {
    margin-top: 450px;
}
#hero .order-lg-2 .right-icons {
    padding: 0;
}
#hero .order-lg-1 .man-text {
    position: relative;
    bottom: 0;
    top: -20px;
}
section#features {
    padding-bottom: 0px;
}
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
  #hero .order-lg-2 .serv-icon {
    text-align: left;
}
}

@media (max-width: 575px) {
#hero{
	margin-top: 80px;
}
#hero .hero-img img {
    width: 80%;
  }
  #hero .order-lg-2 .serv-icon {
    text-align: left;
}

#hero .order-lg-2 .left-icons, #hero .order-lg-2 .right-icons, .calculator-tabs {
    padding: 0 15px;
}

}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f2f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #fafafa;
  min-height: 40px;
  margin-top: 146px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 105px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
@media (max-width: 575px) {
.breadcrumbs {
    margin-top: 80px;
}
}
/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.products .content {
  padding: 30px 0;
}
.products a {
    color: #303466;
}
.products .content .icon-box .icon-wrap {
	background: #fafafa;
	text-align: center;
	margin-bottom: 30px;
}
.products .content .icon-box h4{
	padding: 30px 0;
}
}
.products .content .icon-box i {
  font-size: 48px;
  float: left;
}


@media (max-width: 991px) {
  .products .image {
    text-align: center;
  }
  .products .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .products .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# whatsapp
--------------------------------------------------------------*/
.whatsapp .content + .content {
  margin-top: 50px;
}
#whatsapp {
	background-image: url('../img/background/background-whatsapp.png');
	padding-bottom:160px;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.whatsapp .details-wrap .whatsapp-img{
    margin-top: -15px;
}
.whatsapp .whatsapp-desc {
    padding-top: 20px;
}
.whatsapp .whatsapp-form {
    background: #303466;
	padding: 30px 20px 40px 20px;
	color: #fff;
	margin-bottom: 20px;
}
.whatsapp-form .vk-btn {
    float: right;
}
.whatsapp .whatsapp-form .whatsapp-num{
    background-color: #edf3f8;
	border: 0;
	border-radius: 0;
	padding: 25px 10px;
  background-image: url('../img/background/chat.png');
  /* background-size: 400px 100px; */
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) calc(100% - 12px);
}
.man-text2 {
    position: absolute;
    right: 60px;
    bottom: -90px;
    z-index: 1;
}
.man-text {
  /* padding-top: 10px; */
  /* background-color: #ccc !important;
  box-shadow: #f1f1f1; */
  border-radius: 10px;
  /* opacity: 0.9; */
  z-index: 1;
}
.man-text p, .man-text2 p {
    font-style: italic;
}
.details-wrap {
    position: relative;
}
@media (max-width: 1600px) {
#whatsapp {
  background-image: url('../img/background/whatsapp-1600.png');
  background-size: 100%;
}
.whatsapp .whatsapp-form .whatsapp-num{
	padding: 20px 10px;
	background-position: calc(100% - 10px) calc(100% - 8px);
}
.whatsapp .whatsapp-form {
	padding: 20px 20px 20px 20px;
}
.man-text2 {
    bottom: -40px;
    right: 40px;
}
}
@media (max-width: 991px) {
#whatsapp {
	  background-image: url('../img/background/whatsapp-mobile.png');
    padding-bottom: 240px;
    background-position: bottom center;
    background-size: 490px 300px;
    background-color: #eee;
}
.whatsapp .details-wrap .whatsapp-img {
    margin-top: 0;
    text-align: center;
}
.whatsapp .whatsapp-form {
    padding: 30px 20px 60px 20px;
}
.whatsapp .man-text2 {
    position: absolute;
    right: unset;
    bottom: -120px;
    z-index: 1;
    left: 10px;
    width: 50%;
}
}

/*--------------------------------------------------------------
# Calculator
--------------------------------------------------------------*/
#Calculator {
	background-image: url('../img/background/background-calculator.png');
	position: relative;
	margin-top: -160px;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	padding-top: 250px;
}

.calculator-tabs{
  padding: 0;;
}
.cal-tab-content h4{
	font-weight: 600;
}
.cal-tab-content p, .cal-tab-content h4{
	line-height: 40px;
}
#Calculator #benefit_dropdown {
    width: 100%;
    padding: 10px 0 10px 10px;
}
.calculator-tabs .list-group-item {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 0;
    border: 0;
	background: #eee;
	color: #3c4458;
}
.calculator-tabs .list-group-item.active{
	background-color: #62d438;
	color: #fff;
}

.calculator-tabs .list-group-item img {
    margin-right: 10px;
	opacity: 0;
}
.calculator-tabs .list-group-item {
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position-x: 9px;
    background-position-y: 10px;
}
.calculator-tabs .list-group-item.accident {
    background-image: url('../img/icons/icon-calculator-type-1.png');
}
.calculator-tabs .list-group-item.accident.active {
    background-image: url('../img/icons/icon-calculator-type-over1.png');
}
.calculator-tabs .list-group-item.business {
    background-image: url('../img/icons/icon-calculator-type-2.png');
}
.calculator-tabs .list-group-item.business.active {
    background-image: url('../img/icons/icon-calculator-type-over2.png');
}
.calculator-tabs .list-group-item.home {
    background-image: url('../img/icons/icon_home_calculator.png');
}
.calculator-tabs .list-group-item.home.active {
    background-image: url('../img/icons/icon_home_active_calculator.png');
}
.calculator-tabs .list-group-item.fire {
    background-image: url('../img/icons/icon_fire_calculator.png');
}
.calculator-tabs .list-group-item.fire.active {
    background-image: url('../img/icons/icon_fire_active_calculator.png');
}
.calculator-tabs .list-group-item.motor {
    background-image: url('../img/icons/icon-calculator-type-5.png');
}
.calculator-tabs .list-group-item.motor.active {
    background-image: url('../img/icons/icon-calculator-type-over5.png');
}
.cal-tab .cal-tab-content:not(.active){
  display: none;
}
.vertical .progress-bar {
float: left;
height: 35px;
width: 10px;
margin-right: 5px;
}

.vertical .progress-track {
  position: relative;
  width: 100%;
  height: 100%;
  background: #989899 !important;/*#446686;#B6EA7D */
}

.vertical .progress-fill {
  position: relative;
  background: #342c63 ;/*#62d438;*/
  height: 100%;
  width: 100%;
}
.vertical .progress-unfill {
  position: relative;
  background:#737475 !important;/*#62d438;*/
  height: 0%;
  width: 100%;
}

.amount {
    text-align: left;
    line-height: 35px;
    float: left;
    font-weight: 600;
    margin-left: 10px;
}
@media (max-width: 1600px) {
#Calculator {
  background-image: url('../img/background/calculator-1600.png');
  margin-top: -210px;
  background-size: 100%;
}
}
@media (max-width: 991px) {
#Calculator {
	background-image: none;
margin-top: 0;
    padding-top: 40px;
}
}
@media (max-width: 575px) {
.calculator-tabs {
    padding: 0 15px;
	
}
}

/*--------------------------------------------------------------
# Claim
--------------------------------------------------------------*/
#claim {
	background-image: url('../img/background/claim.png');
	height: 820px;
	position: relative;
	margin-top: -100px;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.claim-desc {
    padding-top: 100px;
}
.claim p {
    margin-top: 40px;
    line-height: 30px;
}
@media (max-width: 1600px) {
#claim {
  background-image: url('../img/background/claim-1600.png');
}
}
@media (max-width: 991px) {
#claim {
	background-image: url('../img/background/claim-mobile.png');
margin-top: 0;
    background-position: bottom center;
    background-size: auto;
    background-color: #eee;
    height: auto;
}
#claim .claim-desc {
    padding-top: 0;
    padding-bottom: 350px;
}
}
/*--------------------------------------------------------------
# Money
--------------------------------------------------------------*/
#money {
	background-image: url('../img/background/money.png');
	position: relative;
	margin-top: -240px;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.money p {
    margin-top: 40px;
    line-height: 30px;
}
@media (max-width: 991px) {
#money {
	background-image: url('../img/background/money-mobile.png');
    margin-top: 0;
    background-position: bottom center;
    background-size: auto;
}
#money .claim-desc {
    padding-top: 0;
    padding-bottom: 220px;
}
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .category-title{
	text-align: center;
}
.pricing {
    background-image: url(../img/background/pricing-bg.png);
    background-repeat: no-repeat;
}
.pricing .pro-sec {
  padding-top: 50px;
}
.pricing .benefits{
	text-align:  left;
}
.pricing .box {
  padding: 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
  text-align: center;
  border-radius: 20px;
}
.pricing h2 {
    color: #62d438;
	font-size: 26px;
	font-weight: 700;
	margin-top: 30px;
}

.pricing h4 {
  font-weight:700;
}
.pricing .total-sum {
    color: #525869;
}
.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #62d438;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}
.pricing .vk-btn{
	margin-top: 60px;
	padding: 8px 70px;
}
.pricing .featured {
  border-top-color: #62d438;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# career page
--------------------------------------------------------------*/

#career{
padding: 10px 0 5px 0;
}
.career {
height: auto;
max-width: 100%;
}


.UploadCV {
border: dotted;
border-color: black;
 }

 .section3 {
   border:solid;
   border-color: cadetblue;
 }

 .col-lg-4 {
   margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
 }
.custom-file {
  margin: 20px 50px;
}

.positions {
  background-color: #fafafa;
}

.navbar li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  float: left;
}

.navbar a {
  display: block;
  color: #3c4458;
  text-align: center;
  padding: 5px 45px;
  text-decoration: none;

}

div.gallery {
  margin: 35px;
 
  float: left;
  width: 300px;
  text-align: center;
  border-radius: 15px;
}

div.gallery1 {
  margin: 35px;
  float: left;
  width: 200px;
  text-align: center;
  border-radius: 15px;
}

div.gallery img {
  width: 100%;
  height: 250px;
}

div.desc {
  padding: 5px;
  text-align: center;
}


/* end of career page */

.marketing .col-lg-3 {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  
}
.marketing h2 {
  font-weight: 400;
}
/* rtl:begin:ignore */
.marketing .col-lg-3 p {
  margin-right: .75rem;
  margin-left: .75rem;
}
/*---------------------- */

.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  /* rtl:remove */
  letter-spacing: -.05rem;
}
/*--------------------------------------------------------------
# Product Page
--------------------------------------------------------------*/
.product-des .box{
	text-align: center;
}
.product-des .box img{
	box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
	border-radius: 20px;
}
@media (max-width: 420px) {
.product-des .box img{
	width:100%;
}
}
.product-des .pro-det h2 {
    font-weight: 700;
}
.product-des .pro-det .price {
    font-size: 32px;
    color: #62d438;
}
.product-des .pro-det {
    padding-left: 80px;
}
.product-des .ben-li {
    list-style: none;
	margin-top: 40px;
}
.product-des .ben-li li{
    padding: 14px 40px;
    margin-bottom: 12px;
    background: #f1f1f1;
    border-radius: 10px;
}
.product-des .benefits li::marker {
    color: #62d438;
}
.related-pro .box{
	box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
	border-radius: 20px;
}
.related-pro {
    background-image: url(../img/background/related-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
}
.related-pro .related-head {
    padding-bottom: 50px;
}
.related-pro .pro-sec {
    text-align: center;
}
.product-des .policy-price {
    padding-bottom: 40px;
}
.product-des .policy-price .vk-btn {
    margin-top: 10px;
}
.related-pro .box{
	padding: 80px 0;
}
.related-pro .ins-det{
	margin-top: 30px;
}
.related-pro .pro-price {
    margin-top: 30px;
}
.related-pro .pro-price h2 {
    font-size: 26px;
    color: #62d438;
    font-weight: 600;
}
.book-policy form input, .book-policy form textarea, .book-policy form select {
  box-shadow: none;
}
.book-policy form input, .book-policy form select {
    height: 44px;
}
.book-policy .form-control:focus {
    border-color: #62d438;

	box-shadow: 0 0 0 .2rem rgba(98,212,56,.25);
}
.book-policy input.vk-btn.green {
    height: auto;
}
.book-policy .buttons {
    text-align: right;
}
.form-control2 {
  border-color: #62d438;
  width: 210px;
 display:block;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #194b7e
}
@media (max-width: 991px) {
.product-des .pro-det {
    margin-top: 70px;
	padding: 0 15px;
}
}

/*--------------------------------------------------------------
# POP UP Models
--------------------------------------------------------------*/
.modal {
	background: rgba(255,255,2555,0.8);
	z-index: 9999;
}
.modal .modal-lg {
    max-width: 950px;
}
.modal .close {
    text-align: right;
    margin-right: 20px;
    margin-top: 10px;
}
.modal .modal-lg {
    max-width: 950px;
	text-align: center;
}
.modal .modal-lg .modal-content {
	border:0 ;
	border-radius: 0;
}
#motor .modal-content {
    background-image: url(../img/background/popup-img.png);
    background-repeat: no-repeat;
    background-size: cover;
}

#motor .pop-up-btn {
    margin-top: 80px;
    margin-bottom: 70px;
}
#motor .pop-up-btn .vk-btn {
    margin: 10px 0;
}
@media (max-width: 991px) {
#motor .modal-lg h1 {
	font-size: 30px;
}
}
@media (max-width: 575px) {
#motor .modal-lg h1 {
	font-size: 24px;
}
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #eee;
  padding: 0 0 30px 0;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #eee;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

#footer .footer-top h4 {
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #3c4458;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #303466;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #303466;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #27282c;
  color: #fff;
  text-decoration: none;
}
#footer .py-4 {
    border-top: 2px solid #39434c;
}
#footer .copyright {
  text-align: center;
}
.agm-modal{
  width: 800px;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #47536e;
}
@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 5px 0;
  }
}

/* IMAGE OVERLAY */

.module {
  background: url("../img/vka-building.jpg");
  background-attachment: fixed;
  /* width: 500px;
  height: 350px; */
  position: relative;
  overflow: hidden;
  margin: 20px;
}
.module > header {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 10px;
  background: inherit;
  background-attachment: fixed;
}
.module > header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  background-attachment: fixed;
  -webkit-filter: blur(12px);
  filter: blur(12px);
  transform: scale(2) translateY(20px);
}
.module > header > h1 {
  margin: 0;
  color: white;
  position: relative;
  z-index: 1;
}



* {
  box-sizing: border-box;
}

/*
COOKIES
*/


  .button-fixed{
  bottom: 0;
  position: fixed;
  right: 0;
  border-radius: 4px;
  }
  .fas{
  cursor: pointer;
  font-size: 24px;
  }

  /*** AGM **

  #countdown{
    width: 465px;
    height: 112px;
    text-align: center;
    /* background: #222;
    background-image: -webkit-linear-gradient(top, #222, #333, #333, #222); 
    background-image:    -moz-linear-gradient(top, #222, #333, #333, #222);
    background-image:     -ms-linear-gradient(top, #222, #333, #333, #222);
    background-image:      -o-linear-gradient(top, #222, #333, #333, #222); 
    border: 1px solid #111;
    border-radius: 5px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
    margin: auto;
    padding: 24px 0;
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
  }
  
   #countdown:before{
    content:"";
    width: 8px;
    height: 65px;
     background: #444;
    background-image: -webkit-linear-gradient(top, #555, #444, #444, #555); 
    background-image:    -moz-linear-gradient(top, #555, #444, #444, #555);
    background-image:     -ms-linear-gradient(top, #555, #444, #444, #555);
    background-image:      -o-linear-gradient(top, #555, #444, #444, #555); 
    border: 1px solid #111;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    display: block;
    position: absolute;
    top: 48px; left: -10px;
  }
  
  #countdown:after{
    content:"";
    width: 8px;
    height: 65px;
    background: #444;
    background-image: -webkit-linear-gradient(top, #555, #444, #444, #555); 
    background-image:    -moz-linear-gradient(top, #555, #444, #444, #555);
    background-image:     -ms-linear-gradient(top, #555, #444, #444, #555);
    background-image:      -o-linear-gradient(top, #555, #444, #444, #555); 
    border: 1px solid #111;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    display: block;
    position: absolute;
    top: 48px; right: -10px;
  } 
  
  #countdown #tiles{
    position: relative;
    z-index: 1;
  }
  
  #countdown #tiles > span{
    width: 92px;
    max-width: 92px;
    font: bold 48px 'Droid Sans', Arial, sans-serif;
    text-align: center;
     color: #111;
    background-color: #ddd;
    background-image: -webkit-linear-gradient(top, #bbb, #eee); 
    background-image:    -moz-linear-gradient(top, #bbb, #eee);
    background-image:     -ms-linear-gradient(top, #bbb, #eee);
    background-image:      -o-linear-gradient(top, #bbb, #eee); 
    border-top: 1px solid #fff;
    border-radius: 3px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7);
    margin: 0 7px;
    padding: 18px 0;
    display: inline-block;
    position: relative;
  }
  
  /* #countdown #tiles > span:before{
    content:"";
    width: 100%;
    height: 13px;
    background: #111;
    display: block;
    padding: 0 3px;
    position: absolute;
    top: 41%; left: -3px;
    z-index: -1;
  } 
  
  #countdown #tiles > span:after{
    content:"";
    width: 100%;
    height: 1px;
    /* background: #eee;
    border-top: 1px solid #333; 
    display: block;
    position: absolute;
    top: 48%; left: 0;
  }
  
  #countdown .labels{
    width: 100%;
    height: 25px;
    text-align: center;
    position: absolute;
    bottom: 8px;
  }
  
  #countdown .labels li{
    width: 102px;
    font: bold 15px 'Droid Sans', Arial, sans-serif;
     color: #f47321;
    text-shadow: 1px 1px 0px #000; 
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
  }
  */